    .hover-text {
        display: inline-block;
        transition: transform 0.3s ease, color 0.3s ease;
        font-size: 16px;
        color: #000;
    }
    .hover-text:hover {
        transform: translateY(-3px);
        color: #007bff;
    }
    .hover-text-sub {
        display: inline-block;
        transition: transform 0.3s ease, color 0.3s ease;
    }
    .hover-text-sub:hover {
        transform: translateY(1px);
    }

    .menu-bar {
        background-color: #fff;
        border-bottom: 1px solid #ddd;
        padding: 0 50px;
    }
    .menu {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
    }
    .menu > li {
        position: relative;
        margin: 0 15px;
    }
    .menu > li > a {
        padding: 30px 30px;
        font-family: 'NanumSquareBold';
        font-size: clamp(18.6666666667px, 1.6949152542vw, 20px);
        color: #464646;
        font-weight: 500;
        text-shadow: 0 0;
        text-decoration: none;
        text-align: center;
        width: 100%;
        display: block;
        position: relative;
    }
    .menu > li:hover > a {
        color: #0046D5;
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #fff;
        border: 1px solid #9E9E9E;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        list-style: none;
        padding: 10px 0;
        border-radius: 5px;
        min-width: 200px;
        z-index: 1000;
    }
    .dropdown-menu li {
        padding: 10px 20px;
    }
    .dropdown-menu li a {
        text-decoration: none;
        color: #000;
        font-family: 'NanumBarunGothic';
        font-size: 15px;
        font-weight: 400;
        display: block;
    }
    .dropdown-menu li a:hover {
        color: #124875;
        font-weight: 800;
    }
    .dropdown-menu li:hover {
        background-color: #E0F0FF;
    }
    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .quick-menu-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }
    .toggle-button {
        background: none;
        border: none;
        font-size: 1.2em;
        cursor: pointer;
        padding: 0;
        color: #3C3C3C;
        transition: transform 0.3s ease;
        transform: rotate(180deg);
    }
    .toggle-button:not(.expanded) {
        transform: rotate(0deg);
    }
    .quick-menu-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    .quick-menu-content.expanded {
        max-height: 500px;
        transition: max-height 0.3s ease-in;
    }

    .parent-background {
        transition: background-color 0.3s ease;
    }
    body {
        transition: background-color 0.3s ease;
    }

    .overlay-background {
        display: none;
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.6);
        z-index: 998;
    }
    .fullscreen-menu {
        display: none;
        position: fixed;
        top: 40%;
        left: 50%;
        max-width: 1200px;
        min-width: 1200px;
        height: 700px;
        background-color: #fff;
        z-index: 999;
        overflow-y: auto;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        transform: translate(-50%, -50%);
        border-radius: 10px;
        border: 1px solid #333;
	}
    .menu-header {
		display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid #ddd;
        background-color: #f7f7f7;
    }
    .menu-title {
		font-size: 24px;
        font-weight: bold;
        color: #000;
	}
    .close-button {
        background: none;
        border: none;
        font-size: 40px;
        cursor: pointer;
        color: #333;
        font-weight: bold;
        transition: color 0.2s ease;
    }
    .close-button:hover {
        color: #f00;
    }
    .menu-content {
		padding: 20px;
    }
    .menu-column {
        display: flex;
        flex-direction: column;
        margin-top: 20px;
		margin-bottom: 20px;
        margin-left: 20px;
    }
    .menu-column h3 {
        font-family: 'NanumSquareBold';
        font-size: clamp(20px, 2vw, 20px);
        color: #000;
        margin-bottom: 10px;
    }
    .menu-column ul {
        list-style: none;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
    }
    .menu-column ul li {
        margin-bottom: 12px;
        font-size: 16px;
        white-space: nowrap;
        color: #5D5D5D;
    }

    .hamburger-menu {
        width: 30px;
        height: 22px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        margin-left: 20px;
        margin-right: -30px;
        margin-top: 2px;
    }
    .hamburger-menu span {
        display: block;
        height: 4px;
        width: 35px;
        background-color: #333;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(13px) rotate(45deg);
        background-color: #f00;
    }
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-13px) rotate(-45deg);
        background-color: #f00;
    }

    .slider-container {
        max-width: 1200px;
        width: 100%;
        position: relative;
        overflow: hidden;
    }
    #jy_mainVisual .slides,
    #jy_mainVisual .slides .slide-bg,
    #jy_mainVisual .slides .slide-bg .slide {
        width: 100%;
        height: 100%;
    }
    #jy_mainVisual .slides .slide-bg .slide img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        max-width: 100%;
    }

    .bx-controls-auto-item { display:none; }

















