@charset "UTF-8";

:root {
    --m-title-font: 2.5rem; /*40px*/
    --m-title-sm-font: 2.38rem; /*40px*/
}

body {
    scroll-behavior: smooth;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: 0.3s;
}
header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: block;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}
header a {
    color: #fff;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}
.toggleBtn {
    display: none;
}

.mainMenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1420px;
    width: 100%;
    margin: 0 auto;
}
header img.over {
    display: none;
}
.mainMenu .gnbMenu {
    display: flex;
    z-index: 1;
}
.mainMenu .gnbMenu > li > a {
    position: relative;
    display: block;
    font-size: var(--mdbig-font);
    font-weight: 600;
    padding: 30px;
}
.mainMenu .gnbMenu > li > a:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: -1px;
    height: 3px;
    background-color: var(--menu-color);
    z-index: 2;
    transition: 0.3s;
}
.mainMenu .gnbMenu > li.on > a,
.mainMenu .gnbMenu > li:hover > a {
    color: var(--menu-color);
}
.mainMenu .gnbMenu > li.on > a:after,
.mainMenu .gnbMenu > li:hover > a:after {
    left: 0;
    right: 0;
}

.mainMenu .gnbMenu > li .subMenu {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0;
    background: #fff url(../img/bg-gnb.png) repeat-y top center;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: 0.3s;
}
.mainMenu .gnbMenu > li:hover .subMenu {
    height: 210px;
    border-top: 1px solid #e1e1e1;
}
.mainMenu .gnbMenu > li:hover .subMenu {
    height: 210px;
}
.mainMenu .gnbMenu > li:hover .subMenu.sub1 {
    height: 210px;
}
.mainMenu .gnbMenu > li:hover .subMenu.sub2 {
    height: 270px;
}
.mainMenu .gnbMenu > li:hover .subMenu.sub3 {
    height: 315px;
}
.mainMenu .gnbMenu > li:hover .subMenu.sub4 {
    height: 449px;
}
.mainMenu .gnbMenu > li:hover .subMenu.sub5 {
    height: 360px;
}
.mainMenu .gnbMenu > li .subMenu .submenu-inner {
    display: flex;
    width: 1420px;
    height: 100%;
    margin: 0 auto;
    z-index: 2;
}
.mainMenu .gnbMenu > li .subMenu .submenu-inner > h3 {
    width: 300px;
    height: 100%;
    font-size: 30px;
    color: #fff;
    padding-top: 38px;
}
.mainMenu .gnbMenu > li .subMenu .submenu-inner > h3 > p {
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    margin-top: 8px;
}

.mainMenu .gnbMenu > li .subMenu.sub1 {
    background: #fff url(../img/gnb-notice.png) no-repeat calc(50% - 1344px) top;
}
.mainMenu .gnbMenu > li .subMenu.sub2 {
    background: #fff url(../img/gnb-saleinfo.png) no-repeat calc(50% - 1344px) top;
}
.mainMenu .gnbMenu > li .subMenu.sub3 {
    background: #fff url(../img/gnb-data.png) no-repeat calc(50% - 1344px) top;
}
.mainMenu .gnbMenu > li .subMenu.sub4 {
    background: #fff url(../img/gnb-member.png) no-repeat calc(50% - 1344px) top;
}
.mainMenu .gnbMenu > li .subMenu.sub5 {
    background: #fff url(../img/gnb-about.png) no-repeat calc(50% - 1344px) top;
}
/*
.mainMenu .gnbMenu > li .subMenu.sub1 .submenu-inner > h3 {
    background: #ebecf5 url(../img/img-top-notice.png) no-repeat left bottom;
}
.mainMenu .gnbMenu > li .subMenu.sub2 .submenu-inner > h3 {
    background: #ebecf5 url(../img/img-top-sale.png) no-repeat left bottom;
}
.mainMenu .gnbMenu > li .subMenu.sub3 .submenu-inner > h3 {
    background: #ebecf5 url(../img/img-top-info.png) no-repeat left bottom;
}
.mainMenu .gnbMenu > li .subMenu.sub4 .submenu-inner > h3 {
    background: #ebecf5 url(../img/img-top-member.png) no-repeat left bottom;
}
.mainMenu .gnbMenu > li .subMenu.sub5 .submenu-inner > h3 {
    background: #ebecf5 url(../img/img-top-about.png) no-repeat left bottom;
}
*/
.mainMenu .gnbMenu > li .subMenu .submenu-inner > ul {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
    height: 100%;
    background-color: #fff;
    padding: 30px 0 30px 30px;
}
.mainMenu .gnbMenu > li .subMenu .submenu-inner > ul > li {
    width: 170px;
}
.mainMenu .gnbMenu > li .subMenu .submenu-inner > ul > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    height: 60px;
    background-color: #f4f5fa;
    border-radius: 6px;
    transition: 0.3s;
}
.mainMenu .gnbMenu > li .subMenu .submenu-inner > ul > li:hover > a {
    color: #fff;
    background-color: var(--menu-color);
}
.mainMenu .gnbMenu > li .subMenu .submenu-inner > ul > li > ul {
    margin-top: 5px;
}
.mainMenu .gnbMenu > li .subMenu .submenu-inner > ul > li > ul > li > a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: var(--small-font);
    font-weight: 600;
    color: #414141;
    min-height: 45px;
    border-bottom: 1px solid #ddd;
    padding: 8px 0 8px 14px;
    transition: 0.3s;
}
.mainMenu .gnbMenu > li .subMenu .submenu-inner > ul > li > ul > li > a:hover {
    color: var(--menu-color);
    background-color: #f7f7f7;
    border-bottom: 1px solid var(--menu-color);
}
.mainMenu .gnbMenu > li .subMenu .submenu-inner > ul > li > ul > li > a::before {
    content: "";
    position: absolute;
    left: 5px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #333;
}
header.shrink,
header:hover {
    background-color: #fff;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
}

header.shrink::after,
header:hover::after {
    background-color: #eaeaea;
}
header.shrink a,
header:hover a {
    color: #333;
    text-shadow: none !important;
}
header.shrink img.over,
header:hover img.over {
    display: inline-block !important;
}
header.shrink img.normal,
header:hover img.normal {
    display: none !important;
}

.mainMenu .m-utilBox {
    display: none;
}
.mainMenu .utilBox > ul {
    display: flex;
    align-items: center;
    font-size: 15px;
}
.mainMenu .utilBox > ul > li {
    font-weight: 500;
    border-right: 1px solid #ccc;
}
.mainMenu .m-utilBox > ul > li:nth-child(3) > a img {
    display: none;
}
.mainMenu .utilBox > ul > li:last-child {
    border: none;
}
.mainMenu .utilBox > ul > li > a {
    display: inline-block;
    vertical-align: middle;
    line-height: 16px;
    padding: 0 12px;
}
.mainMenu .utilBox > ul > li > a.insta {
    padding: 0;
}

.searchBtn {
    cursor: pointer;
}
.m-top-btn {
    display: none;
}

#dropdownMenu {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #fff;
    padding: 40px 0 20px;
    box-sizing: border-box;
    overflow: hidden;
    opacity: 0;
    transition: 0.2s;
    box-shadow: 3px 10px 10px rgba(0, 0, 0, 0.3);
    z-index: 0;
}
#dropdownMenu.show {
    opacity: 1;
    min-height: 250px;
}
.searchArea {
    position: relative;
    width: 760px;
    margin: 0 auto;
    text-align: center;
}
.searchArea .scForm {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: 1px solid #3268f0;
    border-radius: 80px;
    font-size: 20px;
    padding: 1px 24px;
}
.searchArea .scForm input {
    width: 100%;
    line-height: 60px;
    border: none;
}
.searchArea input::placeholder {
    font-size: var(--mdbig-font);
}
.searchArea .key {
    padding: 20px 0;
    text-align: left;
}
.searchArea .key span {
    display: inline-block;
    font-size: var(--default-font);
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 4px 12px;
    margin: 5px;
}

/* 데스크톱용 내비게이션 활성화 */
@media (min-width: 768px) {
    .sticky-header .nav-links {
        display: flex;
    }
}

/* common */
section {
    padding: 90px 0;
}
section h2 {
    font-size: 2.25rem; /* 36px */
    font-weight: bold;
    margin-bottom: 16px;
    text-align: center;
}

.content-container {
    max-width: 1390px;
    margin: 0 auto;
}
.content-container .title {
    max-width: 1420px;
    width: 100%;
    text-align: center;
    font-size: var(--basic-font);
    color: #747474;
    margin-bottom: 50px;
}
.content-container h3 {
    font-size: var(--m-title-font);
    color: #212121;
    margin-bottom: 14px;
}

/* Section 1 */
.mainVideo {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #ccc;
    overflow: hidden;
}
.mainVideo span.dim {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../img/gradient.png) no-repeat left top;
    background-size: cover;
    opacity: 0.5;
    z-index: 1;
}
.mainVideo #myVideo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.mainVideo .text {
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    font-size: 4.25rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    z-index: 2;
}
.mainVideo .text .typing_text,
.mainVideo .text .lottie-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.mainVideo .text strong,
.mainVideo .text span {
    position: relative;
    display: block;
}
.mainVideo .text strong {
    animation: text_animate 0.9s 0.7s ease-in-out forwards;
}
.mainVideo .text span {
    font-size: 2.063rem;
    opacity: 0;
    animation: text_animate 0.7s ease-in-out forwards;
}
@keyframes text_animate {
    from {
        opacity: 0;
        top: -60px;
    }
    to {
        opacity: 1;
        top: 0;
    }
}
.full-screen {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f0f0f0 url(../img/apt.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}
.full-screen::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}
.full-screen .hero-content {
    position: relative;
    z-index: 10;
    color: white;
    padding: 24px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}
.full-screen h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.full-screen p {
    font-size: 1.25rem;
    font-weight: 300;
}
.main-text {
    position: absolute;
    font-size: 70px;
    color: #fff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 55;
}
.main-text strong {
    display: block;
    font-size: 110px;
}

/* ====Text Animation=== */
.animation-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    padding: 20px;
    z-index: 55;
}
#line1 {
    font-size: 4em; /* 폰트 크기 조정 */
    font-weight: 700;
    white-space: nowrap; /* 줄바꿈 방지 */
    overflow: hidden; /* 타이핑 효과를 위한 필수 속성 */
    width: 0; /* 타이핑 시작 전 너비를 0으로 강제 설정 */
    border-right: 3px solid white; /* 깜빡이는 커서 */
    margin-bottom: 20px;
    transition: border-color 0.5s ease;
}
#line2 {
    font-size: 70px;
    font-weight: 500;
    opacity: 0; /* 초기 숨김 */
    margin-bottom: 5px;
    transition: opacity 2.5s ease-out, transform 2.5s ease-out;
}
#line3 {
    font-size: 110px;
    font-weight: 800;
    opacity: 0; /* 초기 숨김 */
    transition: opacity 2.5s ease-out, transform 2.5s ease-out;
}
/* 3. CSS 애니메이션 정의 */
@keyframes typing {
    /* 텍스트의 총 너비를 계산하여 단계적으로 표시 */
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
/* 삭제 단계에서 커서 깜빡임을 위한 Keyframes */
@keyframes delete-blink-caret {
    from,
    to {
        border-color: transparent;
    }
    50% {
        border-color: white;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* 4. 애니메이션 클래스 */
.is-typing {
    /* 3초 동안 30단계로 타이핑 (글자당 0.1초) */
    animation: typing 3s steps(30, end) forwards, delete-blink-caret 0.75s step-end infinite;
}
/* 삭제 시 커서 깜빡임만 적용 (타이핑 애니메이션 제거) */
.is-deleting {
    /* 텍스트 삭제 중 커서만 깜빡이게 유지 */
    animation: delete-blink-caret 0.75s step-end infinite;
}
.cursor-hidden {
    border-color: transparent !important;
}
.is-visible {
    /* Line 2, 3의 페이드 인 시작 */
    animation: fadeIn 2.5s ease-out forwards;
}
.centerMiddle {
    width: 700px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


/* Section 2 */
#section-2 {
    width: 100%;
    text-align: center;
    background-image: url(../img/m-sec-bg1.png), url(../img/m-sec-bg2.png);
    background-position: left bottom, right top;
    background-repeat: no-repeat;
}
.boxs {
    display: flex;
    justify-content: space-between;
}
.feature-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.feature-box p {
    color: #6b7280; /* Gray 500 */
}
.feature-box > a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: #212121;
}
.feature-box > a .box-inner {
    position: relative;
    text-align: left;
    padding: 40px 35px;
    width: 254px;
    height: 280px;
    border-radius: 24px;
    box-shadow: 0 0 42px 0 rgba(0, 0, 0, 0.08);
}
.feature-box > a .box-inner span {
    position: absolute;
    left: 30px;
    bottom: 30px;
}
.feature-box > a .box-inner img.on {
    display: none;
}
.feature-box > a .box-inner .linkArrow {
    position: absolute;
    right: 25px;
    bottom: 30px;
    width: 52px;
    height: 52px;
    text-align: center;
    background-color: #f0f0f0;
    border-radius: 50%;
}
.feature-box > a .box-inner .linkArrow img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.feature-box > a .box-inner h4 {
    font-size: 28px;
    margin-bottom: 4px;
}
.feature-box > a .box-inner p {
    line-height: 1.4rem;
    color: #555;
}
.feature-box > a .box-inner {
    background-color: #fff;
    overflow: hidden;
    transition: 0.3s;
}
.feature-box > a .box-inner::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    background-color: #333;
    opacity: 0;
    z-index: -1;
    transition: 0.3s;
}
.feature-box > a .box-inner:hover::after {
    width: 100%;
    height: 100%;
    border-radius: 0;
    opacity: 1;
}
.feature-box > a .box-inner:hover h4 {
    color: #fff;
}
.feature-box > a .box-inner:hover p {
    color: #fff;
}
.feature-box > a .box-inner:hover img.block {
    display: none;
}
.feature-box > a .box-inner:hover img.on {
    display: block;
}
.feature-box > a .box-inner:hover .linkArrow {
    background-color: rgba(0, 0, 0, 0);
}
.feature-box > a .box-inner#step1:hover::after {
    background-color: #fcca00;
}
.feature-box > a .box-inner#step2:hover::after {
    background-color: #e9474d;
}
.feature-box > a .box-inner#step3:hover::after {
    background-color: #3fb046;
}
.feature-box > a .box-inner#step4:hover::after {
    background-color: #039cd9;
}
.feature-box > a .box-inner#step5:hover::after {
    background-color: #0e0042;
}

/* Section 3 */
.newsTabArea {
    width: 100%;
    text-align: center;
    background-color: #f4f5f6;
    background: #0e0042 url(../img/m3-visual.png) no-repeat center bottom;
    padding: 120px 0;
}
.newsTabArea h3 {
    font-size: var(--main-big-title);
    line-height: 4rem;
}
.newsTabArea h4 {
    display: none;
}

.card {
    backdrop-filter: blur(15px);
    background-color: rgba(0, 0, 0, 0.4);
    height: 378px;
    font-size: var(--big-font);
    color: #fff;
    text-align: left;
    border-radius: 24px;
    padding: 50px 40px;
    transition: 0.3s;
}
.card:hover {
    backdrop-filter: blur(15px);
    background-color: rgba(0, 0, 0, 0.8);
    height: 378px;
    color: #fff;
    border-radius: 24px;
}
.card .categoy {
    display: inline-block;
    font-size: var(--basic-font);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 8px 14px;
}
.card .title {
    min-height: 140px;
    margin: 30px 0 14px;
}
.card .date {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cm-linkArrow {
    width: 56px;
    height: 56px;
    background: url(../img/arrow-link-sm-w.png) no-repeat center center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: 0.3s;
}
.cm-linkArrow:hover,
.card:hover .cm-linkArrow {
    background: url(../img/arrow-link-big-w.png) no-repeat center center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* 공통 버튼 스타일 */
.slider-control-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0);
    border: none;
    cursor: pointer;
    z-index: 10;
    border-radius: 6px;
    padding: 8px 10px;
    transition: background 0.3s;
}
.slider-control-button:hover {
    background: rgba(0, 0, 0, 0.1);
}
.slider-control-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.prev-button {
    left: 0;
}
.next-button {
    right: 0;
}
.prev-button.out {
    left: -15px;
}
.next-button.out {
    right: -15px;
}

/* ----------------------- 1. 탭 (Tab) 스타일 ----------------------- */
.tab-controls {
    display: flex;
    justify-content: center;
    gap: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 50px;
}

.tab-button {
    padding: 0 10px 34px 10px;
    cursor: pointer;
    border: none;
    font-family: "Pretendard", "Poppins", sans-serif;
    font-size: 38px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.tab-button:hover {
    color: #fff;
}

.tab-button.active {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    border-bottom: 8px solid #e9474d;
}

.tab-content {
    max-width: 1420px;
    width: 100%;
    margin: 0 auto;
    border-top: none;
    min-height: 100px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ----------------------- 2. 싱글 슬라이더 스타일 ----------------------- */
.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.slider-wrapper .slider-control-button img {
    height: 28px;
    filter: drop-shadow(1px 1px 8px rgba(0, 0, 0, 0.6));
}
.slider-wrapper .prev-button {
    left: 0;
}
.slider-wrapper .next-button {
    right: 0;
}

.slides-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 448px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.slide:nth-child(1) {
    background-color: #4caf50;
}
.slide:nth-child(2) {
    background-color: #2196f3;
}
.slide:nth-child(3) {
    background-color: #ff9800;
}
.slide:nth-child(4) {
    background-color: #e91e63;
}

.slider-pagination {
    text-align: center;
    padding: 10px 0;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
    cursor: pointer;
}

.dot.active {
    background-color: #1a73e8;
}

/* ----------------------- 3. 자동 배너 슬라이더 스타일 ----------------------- */
.auto-banner-wrapper {
    position: relative;
    overflow: hidden;
}

.auto-slides-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.banner-slide {
    min-width: 33.3333%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    padding: 10px;
}
.banner-slide > a {
    display: block;
    width: 100%;
}
.banner-slide dl {
    text-align: left;
    width: 100%;
}
.banner-slide dl > dt {
    margin-bottom: 25px;
    width: 100%;
}
.banner-slide dl > dt > p {
    font-size: var(--big-font);
    font-weight: 600;
    padding-bottom: 6px;
    width: 95%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.banner-slide dl > dt > span {
    font-size: var(--basic-font);
    color: #777;
    font-weight: 400;
}
.banner-slide dl > dd {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 320px;
    background: #f5f5f5;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}
.banner-slide dl > dd > img {
    width: auto !important;
    height: 110% !important;;
}

.linkTitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 40px;
}

/* ----------------------- 4. 메뉴 탭 & 4개 슬라이더 스타일 ----------------------- */
.tab-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 15px;
}
.tab-slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.menu-item-slide {
    min-width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}
.menu-item-slide:last-child {
    border-right: none;
}
.menu-item-slide > a {
    width: 100%;
}

/* ----------------------- 5. 파트너 로고 슬라이더 스타일 ----------------------- */
.logo-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    padding: 10px 0;
    /* 버튼 공간 확보 */
    min-height: 70px;
}

.logo-slides-container {
    display: flex;
    align-items: center;
    /* 클론 포함된 콘텐츠가 스크롤될 수 있도록 크기 설정 */
    width: fit-content;
    transition: transform 0.5s ease-in-out;
}

.logo-slide {
    /* 로고 크기가 모두 다를 수 있도록 min-width는 작게 설정 */
    flex-shrink: 0;
    padding: 15px 30px;
    height: 70px;
    line-height: 40px;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    color: #555;
    margin-right: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* 다양한 너비 시뮬레이션을 위한 스타일 */
.logo-slide:nth-child(3n + 1) {
    min-width: 120px;
}
.logo-slide:nth-child(3n + 2) {
    min-width: 180px;
}
.logo-slide:nth-child(3n + 3) {
    min-width: 150px;
}

/* 섹션 4: 고객 후기 박스 스타일 */
#section-4 {
    display: flex;
    padding: 0;
    font-family: "Poppins", "Pretendard", sans-serif;
    color: #fff;
}
#section-4 > div {
    flex: 1;
    padding: 90px 0;
}
#section-4 .saleTitle {
    display: flex;
    justify-content: space-between;
    font-size: var(--m-title-font);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 14px;
}
#section-4 .saleTitle a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}
#section-4 .saleTitle a:hover {
    background-color: rgba(0, 0, 0, 0.15);
}
.saleInfo {
    display: flex;
    justify-content: flex-end;
    background-color: #039cd9;
}
.saleInfo > div {
    max-width: 640px;
    width: 100%;
    margin-right: 70px;
}
.saleInfo .detail {
    display: flex;
    justify-content: space-around;
    padding: 40px 0 30px 0;
}
.saleInfo .detail dl {
    color: #fff;
    text-align: center;
}
.saleInfo .detail dd strong {
    font-size: 56px;
    font-weight: 800;
}.saleInfo .scroll {
     display: flex;
     justify-content: space-between;
     overflow: hidden;
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 8px;
     background-color: rgba(0, 0, 0, 0.04);
     padding: 5px 10px;
    height: 77px;

     /*
     overflow-y: auto;
     scrollbar-color: rgba(0, 0, 0, 0.5) rgba(255, 255, 255, 0.1); /* Firefox 지원을 위한 속성 *
     scrollbar-width: thin; /* Firefox 지원을 위한 속성 *
     */
 }
/* 스크롤바 전체 영역 *
.saleInfo .scroll::-webkit-scrollbar {
    width: 12px; /* 스크롤바의 너비 *
}
.saleInfo .scroll::-webkit-scrollbar-track {
    background: none; /* 밝은 회색 배경 *
    border-radius: 10px;
}
/* 스크롤 핸들 (움직이는 부분) *
.saleInfo .scroll::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.5); /* 인디고 색상 *
    border-radius: 10px;
}
/* 스크롤 핸들 호버 시 *
.saleInfo .scroll::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.7); /* 더 진한 인디고
}
    */
.saleInfo .scroll > ul {
    width: 80%;
}
.saleInfo .scroll li {
    font-size: var(--basic-font);
    color: #fff;
    padding: 5px 0;
    padding-right: 15px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.saleInfo .scroll li > strong {
    display: inline-block;
    font-size: var(--default-font);
    font-weight: 500;
    background-color: #2fb7a7;
    padding: 2px 6px;
    margin-right: 5px;
    border-radius: 4px;
}
.saleInfo .scroll .allView {
    display: flex;
    text-align: center;
    text-decoration: underline;
    align-items: center;
    background-color: #2fb7a7;
    border-radius: 6px;
    padding: 0 16px;
    margin: 5px 0;
    transition: 0.3s;
}
.saleInfo .scroll .allView:hover {
    background-color: #066eb8;
}

.saleStats {
    display: flex;
    justify-content: flex-start;
    background-color: #3fb046;
}
.saleStats > div {
    max-width: 640px;
    width: 100%;
    margin-left: 70px;
}
.saleStats .detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.saleStats .detail .total dd {
    font-size: var(--big-font);
}
.saleStats .detail .total dd strong {
    font-size: 100px;
    font-weight: 800;
}
.saleStats .detail .unit > dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0;
}
.saleStats .detail .unit > dl:last-child {
    border-bottom: none;
}
.saleStats .detail .unit > dl > dt {
    width: 150px;
}
.saleStats .detail .unit > dl > dd {
    text-align: right;
}
.saleStats .detail .unit > dl > dd strong {
    font-size: 26px;
}

/* 섹션 5 */
.lawBanner {
    display: flex;
    justify-content: space-between;
}
.lawBanner > div {
    width: 660px;
}
.lawBanner .tab-controls {
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    border-bottom: 1px solid #999;
    margin-bottom: 10px;
}
.lawBanner .tab-button {
    padding: 0 4px 20px 4px;
    font-size: 40px;
    font-weight: 700;
    color: #777;
    transition: all 0.3s ease;
}
.lawBanner .tab-button:hover {
    color: #0e0042;
}
.lawBanner .tab-button.active {
    font-size: 40px;
    color: #0e0042;
    font-weight: 700;
    border-bottom: 6px solid #e9474d;
}
.lawBanner .tab-button {
    padding: 0 4px 20px 4px;
    font-size: 38px;
    font-weight: 500;
    color: #777;
}
.lawBanner .tab-content {
    max-width: 1420px;
    width: 100%;
    margin: 0 auto;
    border-top: none;
    min-height: 100px;
}

.lawList {
    font-size: 20px;
}
.lawList a {
    display: block;
    background: url(../img/m-btn-down-arrow.png) no-repeat right center;
    border-bottom: 1px solid #ddd;
    padding: 23px 2px;
}
.lawList a > span {
    display: inline-block;
    font-size: var(--default-font);
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 3px 8px;
    margin-right: 10px;
}

/* 섹션 6 */
#section-6 {
    background-color: #eff1f7;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    width: 100%;
}
.grid-container > li {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    font-size: 16px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 1px 1px 14px rgba(0, 0, 0, 0.06);
}
.grid-container > li.moreBtn {
    font-family: "Poppins", "Pretendard", sans-serif;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: 0.3s;
}
.grid-container > li.moreBtn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #eff1f7;
    transition: 0.3s;
}
.grid-container > li.moreBtn a > strong {
    font-size: 80px;
    font-weight: 800;
    line-height: 90%;
    transition: 0.3s;
}
.grid-container > li.moreBtn a:hover {
    color: #fff;
    background-color: #3d4766;
}
.grid-container > li.moreBtn a:hover > strong {
    color: #fff;
}

/* 섹션 8: CTA */
#section-8 {
    background-color: #f0f0f0;
}
.slidePadding {
    padding: 0 15px;
}

/* Slide */
.fixed-slider-wrapper {
    position: relative;
}

.fixed-slider-viewport {
    overflow: hidden;
}

.fixed-slider-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    list-style: none;
    padding: 0;
    margin: 0;
}

.fixed-slider-item {
    flex-shrink: 0;
    padding: 4px;
    box-sizing: border-box;
}

.fixed-content {
    height: 100px;
    background-color: #ffe0e0;
    border: 1px solid #ffcccc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

/* 고정 너비 계산 */
.view-1 .fixed-slider-item {
    width: 100%;
}
.view-3 .fixed-slider-item {
    width: calc(100% / 3);
}
.view-6 .fixed-slider-item {
    width: calc(100% / 6);
}

.fixed-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px;
    background-color: rgba(100, 100, 100, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    z-index: 10;
    border-radius: 4px;
}

.fixed-nav-btn.prev {
    left: 0;
}
.fixed-nav-btn.next {
    right: 0;
}

/*footer*/
footer {
    background-color: #212430;
}
.footer-inner {
    font-size: var(--default-font);
    color: #eee;
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
}
.footer-inner .footerLink {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-inner .footerLink > ul {
    display: flex;
    align-items: center;
    height: 80px;
}
.footer-inner .footerLink > ul > li {
    position: relative;
    padding: 0 14px;
}
.footer-inner .footerLink > ul > li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 2px;
    height: 2px;
    border-radius: 3px;
    background-color: #fff;
}
.footer-inner .footerLink > ul > li:first-child {
    padding-left: 0;
}
.footer-inner .footerLink > ul > li:first-child::before {
    display: none;
}
.footer-inner .footerInfo {
    text-align: center;
    padding: 30px 0;
}
.footer-inner .footerInfo p.logo {
    padding-bottom: 20px;
}
.footer-inner .footerInfo p.copy {
    color: #999;
    margin-top: 5px;
}
.footer-inner .footerInfo p span {
    display: inline-block;
    line-height: 1rem;
    padding: 0 14px;
    margin: 0 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-inner select {
    color: #fff;
    line-height: 38px;
    background: #212430 url(../img/btn-select-w-down.svg) no-repeat right 14px center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
}

/* 2. 팝업 버튼 스타일 */
.popup-button {
    /* 버튼처럼 보이도록 스타일링 */
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff; /* 파란색 배경 */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    margin-top: 50px;
}
.popup-button:hover {
    background-color: #0056b3; /* 호버 시 색상 변경 */
    transform: translateY(-1px);
}
/* 3. 모달 오버레이 (배경) 스타일 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: auto;
    animation: none; /*is-visible 충돌로 인하여 추가*/
}
/* 4. 모달 콘텐츠 박스 스타일 */
.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: fadeIn 0.3s ease-out;
}
.modal-content h2 {
    color: #1b48bb;
    margin-bottom: 20px;
}
.modal-content .c1 img,
.modal-content .c2 img{
    max-width: 100%;
}
/* 5. 닫기 버튼 스타일 */
.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}
.close-button:hover,
.close-button:focus {
    color: #333;
}
.popup-btn-area {
    text-align: center;
    margin-top: 20px;
}
.popup-ok {
    padding: 8px 15px;
    background-color: #1b48bb;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer
}
/* 6. 모달 등장 애니메이션 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* 7. 모달이 보일 때 */
.modal.is-visible {
    display: flex; /* 모달을 보이게 함 */
}


@media screen and (max-width: 480px) {
    .footer-inner {
        width: 100%;
    }
    .footer-inner .footerLink {
        flex-direction: column;
        padding-bottom: 20px;
    }
    .footer-inner .footerLink > ul {
        height: 60px;
    }
    .footer-inner .footerLink > ul > li {
        padding: 0 8px;
    }
    .footer-inner .footerInfo p.logo > img {
        width: 180px;
    }
}

/* -------------------------------------- */
/* 8. 스크롤 애니메이션 (JS와 연동) */
/* -------------------------------------- */
.animate-item {
    /* 초기 상태: 아래로 30px 이동 및 투명 */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-item.active {
    opacity: 1;
    transform: translateY(0);
}
/* 첫 섹션 요소의 transition-delay 유지 */
.full-screen .animate-item:nth-child(1) {
    transition-delay: 0.1s;
}
.full-screen .animate-item:nth-child(2) {
    transition-delay: 0.3s;
}
.full-screen .animate-item:nth-child(3) {
    transition-delay: 0.5s;
}

/* 섹션 2 요소의 transition-delay */
#section-2 .animate-item:nth-child(1) {
    transition-delay: 0.1s;
}
#section-2 .animate-item:nth-child(2) {
    transition-delay: 0.2s;
}
#section-2 .feature-box:nth-child(1) {
    transition-delay: 0.3s;
}
#section-2 .feature-box:nth-child(2) {
    transition-delay: 0.6s;
}
#section-2 .feature-box:nth-child(3) {
    transition-delay: 0.9s;
}
#section-2 .feature-box:nth-child(4) {
    transition-delay: 1.2s;
}
#section-2 .feature-box:nth-child(5) {
    transition-delay: 1.5s;
}

/* 섹션 3 요소의 transition-delay */
#section-3 .animate-item:nth-child(1) {
    transition-delay: 0.1s;
}
#section-3 .project-card:nth-child(1) {
    transition-delay: 0.3s;
}
#section-3 .project-card:nth-child(2) {
    transition-delay: 0.5s;
}
#section-3 .project-card:nth-child(3) {
    transition-delay: 0.7s;
}
#section-3 .project-card:nth-child(4) {
    transition-delay: 0.9s;
}

/* 섹션 4 요소의 transition-delay */
#section-4 .animate-item:nth-child(1) {
    transition-delay: 0.1s;
}
#section-4 .testimonial-box {
    transition-delay: 0.4s;
}

/* 섹션 5 요소의 transition-delay */
#section-5 .animate-item:nth-child(1) {
    transition-delay: 0.1s;
}
#section-5 .team-member:nth-child(1) {
    transition-delay: 0.3s;
}
#section-5 .team-member:nth-child(2) {
    transition-delay: 0.5s;
}
#section-5 .team-member:nth-child(3) {
    transition-delay: 0.7s;
}
#section-5 .team-member:nth-child(4) {
    transition-delay: 0.9s;
}

#section-7 .slider-control-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 44px;
    background-color: rgba(0, 0, 0, 0.0);
    border-radius: 6px;
    transform: translateY(16px);
}
#section-7 .slider-control-button:hover {
    background-color: rgba(0, 0, 0, 0.5);
}
#section-7 .slider-control-button > img {
    height: 28px;
    filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.6));
}
#section-7 .prev-button.out {
    left: 8px;
}
#section-7 .next-button.out {
    right: 8px;
}

/* 섹션 6, 7, 8 */
#section-6 .animate-item:nth-child(1) {
    transition-delay: 0.1s;
}
#section-6 .animate-item:nth-child(2) {
    transition-delay: 0.3s;
}
#section-7 .animate-item:nth-child(1) {
    transition-delay: 0.1s;
}
#section-7 .animate-item:nth-child(2) {
    transition-delay: 0.3s;
}
#section-8 .animate-item:nth-child(1) {
    transition-delay: 0.1s;
}
#section-8 .animate-item:nth-child(2) {
    transition-delay: 0.3s;
}
#section-8 .animate-item:nth-child(3) {
    transition-delay: 0.5s;
}

/* sitemap modal */
/* 모달 오버레이 */
.bhbl-sitemap-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* 반투명 배경 */
    display: none; /* 초기 숨김 */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* 다른 요소 위에 표시 */
    opacity: 0;
    transition: opacity 0.3s ease;
}
.bhbl-sitemap-overlay.is-open {
    display: flex;
    opacity: 1;
}
/* 모달 내용 컨테이너 */
.bhbl-sitemap-content {
    display: flex;
    flex-direction: column;
    background-color: white;
    color: #333;
    padding: 0 0 30px 0;
    border-radius: 12px;
    /*max-width: 90%;*/
    width: 90%;
    max-height: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow: hidden;
}
.bhbl-sitemap-overlay.is-open .bhbl-sitemap-content {
    transform: scale(1);
}
/* 사이트맵 구조 */
.sitemap-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    background: #039CD9;
    padding: 10px 30px 10px 30px;

}
/* 닫기 버튼 */
.bhbl-sitemap-close {
    float: right;
    font-size: 2em;
    line-height: 1;
    cursor: pointer;
    color: #fff;
    transition: color 0.2s;
}
.bhbl-sitemap-close:hover {
    color: #333;
}
/*
.bhbl-sitemap-content h3 {
    color: #007bff;
    margin-top: 0;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.bhbl-sitemap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
    height: 100%;
    overflow-y: auto;
}
*/
.bhbl-sitemap {
    flex: 1;
    height: 100%;
    padding-left: 30px;
    padding-right: 20px;
    margin-top: 20px;
    margin-right: 10px;
    overflow-y: auto;
}

.sitemap a:hover {
    color: #111;
    text-decoration: underline;
}
.sitemap > li {
    display: flex;
    align-items: baseline;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}
.sitemap > li > a {
    display: block;
    font-weight: bold;
    font-size: 22px;
    width: 120px;
    margin-bottom: 10px;
}
.sitemap .utilBox {
    width: 100%;
}
.sitemap .utilBox > ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}
.sitemap .utilBox > ul > li {
    border-left: 1px solid #ccc;
    padding: 0 10px;
}
.sitemap .utilBox > ul > li:first-child {
    border-left: none;
    padding-left: 0;
}
.sitemap .utilBox > ul a {
    display: block;
    line-height: 14px;
}
.sitemap .subMenu {
    flex: 1;
}
.sitemap .subMenu > ul {
    display: flex;
    gap: 20px;
}
.sitemap .subMenu > ul > li {
    width: 16%;
}
.sitemap .subMenu > ul > li > a {
    display: flex;
    justify-content: center;
    background: #f4f5fa;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 12px 5px;
    transition: .3s;
}
.sitemap .subMenu > ul > li > a:hover {
    background: #fff;
    text-decoration: none;
    border: 1px solid #999;
}
.sitemap .subMenu > ul > li > ul {
    margin-top: 10px;
}
.sitemap .subMenu > ul > li > ul > li {
    display: flex;
    gap: 4px;
    align-items: baseline;
    font-size: 16px;
    padding: 10px 5px;
    border-bottom: 1px solid #eee;
}
.sitemap .subMenu > ul > li > ul > li::before {
    content: '·';
    font-weight: bold;
}
.sitemap .subMenu > ul > li > ul > li:last-child {
    border-bottom: none;
}

@media screen and (max-width: 480px) {
    html,
    body {
        font-size: 12px;
    }
    header {
        background: #fff;
    }
    header h1 img.normal {
        display: none;
    }
    header h1 img.over {
        display: block;
    }

        /**Sub GNB**/
    .toggleBtn {
        display: block;
    }
    .logo-menubtn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 9px 10px 11px 10px;
    }
    .logo-menubtn h1 img {
        vertical-align: middle;
    }
    .searchBtn {
        cursor: pointer;
        display: flex;
        width: 40px;
        height: 40px;
    }
    .m-top-btn {
        display: flex;
    }

    .mainMenu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 100%;
    }
    .mainMenu .logo-menubtn h1 img {
        width: 200px;
    }
    .mainMenu .gnbMenu {
        position: fixed;
        top: 0;
        left: 100%;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        background-color: #fff;
        overflow-y: auto;
        z-index: 1;
        transition: 0.3s;
    }
    .mainMenu .gnbMenu.menuOpen {
        left: 0;
    }
    .mainMenu .gnbMenu > li > a {
        font-size: 18px;
        font-weight: 700;
        padding: 16px 20px 10px;
        border-top: 1px solid #999;
    }

    .mainMenu .gnbMenu > li > a:after {
        display: none;
    }

    .mainMenu .gnbMenu > li .subMenu {
        position: static;
        left: 0;
        width: 100%;
        height: auto;
        background-image: none;
        box-shadow: none;
        transition: 0.3s;
    }

    .mainMenu .gnbMenu > li:hover .subMenu,
    .mainMenu .gnbMenu > li:hover .subMenu.sub1
    .mainMenu .gnbMenu > li:hover .subMenu.sub2
    .mainMenu .gnbMenu > li:hover .subMenu.sub3
    .mainMenu .gnbMenu > li:hover .subMenu.sub4
    .mainMenu .gnbMenu > li:hover .subMenu.sub5 {
        height: auto !important;
    }
    .mainMenu .gnbMenu > li .subMenu .submenu-inner {
        display: flex;
        width: 100%;
        padding: 0 20px 20px 20px;
    }
    .mainMenu .gnbMenu > li .subMenu .submenu-inner > h3 {
        display: none;
    }
    .mainMenu .gnbMenu > li .subMenu .submenu-inner > ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        background-color: #fff;
        padding: 0;
    }
    .mainMenu .gnbMenu > li .subMenu .submenu-inner > ul > li {
        width: calc(50% - 5px);
    }
    .mainMenu .gnbMenu > li .subMenu .submenu-inner > ul > li > a {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        font-weight: 600;
        height: 45px;
        background-color: #f4f5fa;
        border-radius: 6px;
    }
    .mainMenu .gnbMenu > li .subMenu .submenu-inner > ul > li > ul {
        margin-top: 5px;
    }
    .mainMenu .gnbMenu > li .subMenu .submenu-inner > ul > li > ul > li > a {
        position: relative;
        display: flex;
        align-items: center;
        font-size: 13px;
        font-weight: 600;
        color: #414141;
        min-height: 40px;
        border-bottom: 1px solid #ddd;
        padding: 8px 0 8px 14px;
    }
    /** e: sub gnb**/

    .mainMenu .utilBox {
        display: none;
    }
    .mainMenu .m-utilBox {
        display: flex;
        justify-content: space-between;
    }
    .mainMenu .m-utilBox {
        width: 100%;
        background-color: #f7f7f7;
        padding: 10px 12px;
        z-index: 9999;
    }
    .mainMenu .m-utilBox > ul {
        display: flex;
        align-items: center;
        font-size: 14px;
    }
    .mainMenu .m-utilBox > ul > li {
        font-weight: 500;
        border-right: 1px solid #ccc;
    }
    .mainMenu .m-utilBox > ul > li:last-child {
        border: none;
    }
    .mainMenu .m-utilBox > ul > li > a {
        display: block;
        line-height: 14px;
        padding: 0 8px;
    }

    #dropdownMenu {
        top: 58px;
        background-color: #fff;
        padding: 20px 14px;
    }
    #dropdownMenu.show {
        min-height: 195px;
    }
    .searchArea {
        width: 100%;
    }
    .searchArea .scForm input {
        line-height: 50px;
    }
    .searchArea .scForm a > img {
        width: 24px;
    }
    .searchArea .key {
        padding: 10px 0;
    }
    .searchArea .key span {
        padding: 2px 8px;
        margin: 3px;
    }

    section {
        padding: 50px 10px;
    }

    .content-container .title {
        margin-bottom: 20px;
    }
    .content-container h3 {
        font-size: 24px;
    }

    .full-screen,
    .mainVideo {
        height: 70vh;
    }
    #line1 {
        font-size: 28px;
    }
    #line2 {
        font-size: 32px;
    }
    #line3 {
        font-size: 50px;
    }

    #section-2 {
        background-image: none;
    }
    .feature-box > a .box-inner h4 {
        font-size: 14px;
    }
    .feature-box > a .box-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: 70px;
        padding: 0;
        box-shadow: none;
        border-radius: 0;
    }
    .feature-box > a .box-inner p {
        display: none;
    }
    .feature-box > a .box-inner h4 {
        order: 2;
    }
    .feature-box > a .box-inner span {
        position: static;
    }
    .feature-box span {
        order: 1;
    }
    .feature-box span img {
        width: 50px;
    }
    .feature-box:nth-child(2) span img,
    .feature-box:nth-child(3) span img,
    .feature-box:nth-child(5) span img{
        margin-left: 4px;
    }
    .feature-box:nth-child(4) span img{
        margin-left: 7px;
    }

    .newsTabArea {
        padding: 50px 0;
    }
    .tab-slider-wrapper {
        padding: 0 10px;
    }
    .tab-controls {
        gap: 20px;
    }
    .tab-button {
        font-size: 20px;
        padding-bottom: 24px;
    }
    .tab-button.active {
        font-size: 20px;
        border-bottom: 4px solid #e9474d;
    }
    .menu-item-slide {
        min-width: 50%;
        padding: 0 5px;
    }
    #menuTabSlider .slider-control-button > img {
        width: 12px;
    }
    .boxs {
        justify-content: space-between;
        padding: 0 10px;
    }
    .card {
        height: 200px;
        font-size: 16px;
        padding: 20px;
    }
    .card .title {
        min-height: 50px;
        margin-top: 15px;
    }
    .card .categoy {
        font-size: 12px;
    }
    .cm-linkArrow {
        width: 26px;
        height: 26px;
        border: none;
    }

    .newsTabArea {
        padding: 50px 0;
    }
    .tab-controls {
        gap: 20px;
    }
    .tab-button {
        font-size: 20px;
        padding-bottom: 24px;
    }
    .tab-button.active {
        font-size: 20px;
        border-bottom: 4px solid #e9474d;
    }

    #section-4 {
        flex-direction: column;
    }
    #section-4 > div {
        padding: 40px 10px;
    }
    #section-4 .saleTitle {
        font-size: 24px;
    }
    #section-4 .saleTitle a {
        width: 36px;
        height: 36px;
    }
    .saleInfo > div {
        margin-right: 0;
    }
    .saleInfo .detail dd strong {
        font-size: 24px;
    }
    .saleStats > div {
        margin-left: 0;
    }
    .saleStats .detail {
        padding-top: 20px;
    }
    .saleInfo .scroll {
        height: 66px;
    }
    .saleStats .detail .unit {
        padding: 0 10px 0 0;
    }
    .saleStats .detail .unit > dl {
        padding: 6px 0;
    }
    .saleStats .detail .unit > dl > dt {
        width: 90px;
    }
    .saleStats .detail .total {
        padding-left: 10px;
    }
    .saleStats .detail .total dt {
        padding-left: 5px;
    }
    .saleStats .detail .total dd strong {
        font-size: 50px;
    }
    .saleStats .detail .unit > dl > dd strong {
        font-size: 18px;
    }

    .lawBanner {
        flex-direction: column;
    }
    .lawBanner > div {
        width: 100%;
    }
    .lawBanner .tab-controls {
        justify-content: center;
        gap: 0;
    }
    .lawBanner .tab-controls button:first-child,
    .lawBanner .tab-controls button:last-child {
        flex: 1;
    }
    .lawBanner .tab-button.active,
    .lawBanner .tab-button {
        font-size: 20px;
    }
    .lawBanner .tab-button.active {
        padding-bottom: 15px;
        border-bottom: 5px solid #e9474d
    }
    .lawBanner .tab-button:nth-child(2) {
        padding-left: 6px;
        padding-right: 6px;
    }
    .lawList a {
        font-size: 14px;
        font-weight: 600;
        padding: 16px 2px;
        background-size: 30px 30px;
    }
    .slider-wrapper {
        margin-top: 50px;
    }
    .slide {
        height: 230px;
    }
    .slide img {
        width: 100%;
    }

    #section-6 {
        display: block;
    }
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .grid-container > li {
        min-height: 70px;
    }
    .grid-container > li img {
        width: 100%;
    }
    .grid-container > li.moreBtn a > strong {
        font-size: 26px;
    }
    .grid-container > li.moreBtn a > p {
        font-size: 12px;
    }

    .linkTitle {
        margin-bottom: 20px;
    }
    .banner-slide {
        min-width: 50%;
    }
    .banner-slide dl > dt {
        margin-bottom: 15px;
    }
    .banner-slide dl > dt > p {
        font-size: 14px;
    }
    .banner-slide dl > dd {
        height: 130px;
    }
    .banner-slide dd > img {
        width: 100%;
    }

    .next-button.out {
        right: 0;
    }
    .prev-button.out {
        left: 0;
    }

    #section-7 .slider-control-button {
        transform: translateY(0);
    }

    .sitemapText {
        display: none;
    }

    #section-8 {
        padding: 30px 10px;
    }
    .logo-slide {
        height: 50px;
    }
    .logo-slide > img {
        height: 100%;
    }
}