@charset "utf-8";

/* header */
.header { position: fixed; left: 0; top: 0; width: 100%; height: var(--header-H); background-color: rgba(0, 0, 0, 0.9); z-index: 900; }
.header__inner { position: relative; display: flex; justify-content: center; width: calc(100% - 40px); max-width: 1720px; height: 100%; margin: 0 auto; }
.header .gnb { height: 100%; color: #fff; }
.header .logo { position: absolute; left: 0; top: 50%; width: 199px; transform: translateY(-50%); }
.gnb .gnb__list { display: flex; height: 100%; }
.gnb .gnb__list > li { position: relative; height: 100%; padding: 5px 0; transition: transform 0.3s; }
.gnb .gnb__list > li > a { display: flex; justify-content: center; align-items: center; height: 100%; padding: 0 35px; font-size: 18px; font-weight: 600; text-align: center; }
.gnb .lnb { position: absolute; left: 50%; top: calc(100% + 15px); width: fit-content; visibility: hidden; opacity: 0; transition: 0.3s; transform: translateX(-50%); }
.gnb .gnb__list > li:hover { transform: translateY(5px); }
.gnb .gnb__list > li:hover > a { color: var(--main-color); }
.gnb .gnb__list > li:hover .lnb { top: 100%; visibility: visible; opacity: 1; } 
.gnb .lnb__list { padding: 30px 35px; border-radius: 15px; background-color: rgba(0, 0, 0, 0.9); -webkit-backdrop-filter: blur(7.5px); backdrop-filter: blur(7.5px); }
.gnb .lnb__list > li { font-size: 17px; font-weight: 500; color: #ccc; white-space: nowrap; text-align: center; }
.gnb .lnb__list > li + li { margin-top: 0.88em; }
.gnb .lnb__list > li > a { transition: 0.3s; }
.gnb .lnb__list > li > a:hover { color: var(--main-color); }
.header-btn__area { position: absolute; right: 0; top: 50%; display: flex; align-items: center; transform: translateY(-50%); z-index: 10; }
.lang__box { position: absolute; right: 40px; top: -12px; border: 2px solid #fff; border-radius: 50px; width: 100px; color: #fff; font-size: 16px; font-weight: 600; transition: 0.3s; }
.lang__box.fade-out { visibility: hidden; opacity: 0; }
.btn-lang { display: flex; justify-content: center; align-items: center; gap: 10px; width: 100%; height: 41px; margin-right: 20px; border: none; background-color: transparent; font-size: inherit; font-weight: inherit; color: #fff; background-color: transparent; }
.btn-lang::before { content: ""; display: block; width: 20px; height: 20px; background: url("/img/common/icon_lang.svg") no-repeat center center/contain; }
.btn-lang::after { content: ""; display: block; width: 8px; height: 5px; background: url("/img/common/icon_lang_arrow.svg") no-repeat center center/contain; transition: 0.3s; }
.lang__box .lang__list { display: none; width: 100%; padding-bottom: 8px; margin-top: -4px; }
.lang__box .lang__list > li {padding-left: 44px; color: #AAAAAA; }
.lang__box .lang__list > li + li { margin-top: 5px; }
.lang__box .lang__list > li > a { transition: 0.3s; }
.lang__box .lang__list > li > a:hover { color: #000; }
.lang__box.on { background-color: rgba(255, 255, 255, 0.9); border-radius: 15px; }
.lang__box.on .btn-lang { color: #000; }
.lang__box.on .btn-lang::before , .lang__box.on .btn-lang::after { -webkit-filter: invert(1); filter: invert(1); }
.lang__box.on .btn-lang::after { transform: rotateX(180deg); }
#btnMenu { position: relative; width: 20px; height: 20px; border: none; background-color: transparent; }
#btnMenu > span { position: absolute; display: block; width: 100%; height: 2px; background-color: #fff; transition: 0.3s; }
#btnMenu > span:nth-child(1) { left: 0; top: calc(50% - 8px); }
#btnMenu > span:nth-child(2) { left: 0; top: 50%; }
#btnMenu > span:nth-child(3) { left: 0; top: calc(50% + 8px); }
#btnMenu.on > span { border-radius: 5px; background-color: #000000; }
#btnMenu.on > span:nth-child(2) { opacity: 0; }
#btnMenu.on > span:nth-child(1) { top:50%; transform: rotate(45deg); }
#btnMenu.on > span:nth-child(3) { top:50%; transform: rotate(-45deg); }
#allMenu { position: fixed; left: 0; top: 0; display: none; width: 100%; height: 100%; background-color: #fff; }
#allMenu .header__inner { display: block; max-width: 1880px; padding: calc(var(--header-H) + 20px) 0; }
.menu__area { overflow-y: auto; height: 100%; padding: 20px 0; scrollbar-width: none;  }
#allMenu .inner::-webkit-scrollbar { display: none; }
.menu__area .gnb__list { display: flex; flex-wrap: wrap; align-content: flex-start; gap: 20px; height: 100%; }
.menu__area .gnb__list > li { overflow: hidden; position: relative; display: flex; flex-direction: column; align-items: center; width: calc((100% - 60px)/4); min-height: 340px; padding: 60px 20px 20px; border: 1px solid transparent; border-radius: 40px; background-color: #F8F8F8; font-size: 19px; color: #AAAAAA; text-align: center; }
.menu__area .gnb__list > li::before { content: ""; position: absolute; left: 0; top: 0; display: block; width: 100%; height: 100%;  background: linear-gradient(180deg, #292929 0%, #111 100%); opacity: 0; transition: 0.3s; }
.menu__area .gnb__list > li * { transition: 0.3s; }
.menu__area .gnb__list > li > a { position: relative; margin-bottom: 1.38em; font-size: 1.89em; font-weight: 600; z-index: 1; }
.menu__area .gnb__list > li.menu-logo { display: flex; justify-content: center; align-items: center; border-color: transparent; background-color: transparent; }
.menu__area .gnb__list > li.menu-logo::before { display: none; }
.menu__area .gnb__list .lnb { width: 100%; transition: none; }
.menu__area .lnb__list { position: relative; display: flex; flex-wrap: wrap; gap: 20px 10px; z-index: 1; }
.menu__area .lnb__list > li { width: calc(50% - 5px); }
.menu__area .lnb__list > li > a { font-weight: 600; color: #AAA; }
.menu__area .gnb__list > li:not(.menu-logo):hover { border-color: #292929;}
.menu__area .gnb__list > li:hover::before { opacity: 1; }
.menu__area .gnb__list > li:hover > a { color: var(--main-color); }
.menu__area .lnb__list > li > a:hover { color: var(--main-color); }
.menu__area .copyright { position: absolute; right: 30px; bottom: 50px; font-family: "Rubik", sans-serif; font-size: 15px; color: #ccc; }

/* footer */
.footer { position: relative; padding: 100px 0; color: #fff; border-top: 1px solid rgba(255, 255, 255, 0.1); background-color: #000; z-index: 10; }
.footer__inner { width: calc(100% - 40px); max-width: 1720px; margin: 0 auto; }
.footer__top { padding-bottom: 60px; border-bottom: 1px solid rgba(255, 255, 255, 0.3) ; }
.site-map .gnb__list { display: flex; gap: 30px; }
.site-map .gnb__list > li { flex: 1; }
.site-map .gnb__list > li > a { font-size: 21px; font-weight: 600; }
.site-map .lnb { margin-top: 30px; }
.site-map .lnb__list > li { font-size: 18px; font-weight: 300; color: #888; }
.site-map .lnb__list > li + li { margin-top: 0.83em; }
.site-info { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 60px; }
.site-info .copyright { font-size: 16px; font-weight: 500; color: #888; }
.site-info .policy-link { display: flex; gap: 20px; margin-top: 15px; font-size: 16px; font-weight: 500; }
.site-info .sns-link { display: flex; gap: 5px; }
.site-info .sns-link > a { display: flex; justify-content: center; align-items: center; width: 55px; height: 55px; border-radius: 50%; background-color: #222222; }
.footer__bottom { display: flex; justify-content: space-between; align-items: flex-end; padding-top: 60px; }
.footer__bottom > .box { width: 100%; max-width: 1000px; }
.footer__bottom .logo { width: 199px; }
.footer__bottom .logo svg { width: 100%; }
.company-info { display: flex; gap: 10px 20px; margin-top: 60px; }
.company-info .col { width: 100%; max-width: 420px; }
.company-info dl { display: flex; font-size: 18px; font-weight: 300; }
.company-info dl + dl { margin-top: 15px; }
.company-info dl dt { width: 80px; padding-right: 10px; font-weight: 600; }
.company-info dl dd { max-width: calc(100% - 80px); }
.footer__bottom .btn-top { font-size: 92px; font-weight: 600; color: #333; border: none; background-color: transparent; }

.footer.color-w { border-top: 1px solid #E5E5E5; background-color: #fff; color: #111; }
.footer.color-w .footer__top { border-color: #E5E5E5; }
.footer.color-w .site-map .lnb__list > li { color: #555; }
.footer.color-w .site-info .copyright { color: #111; }
.footer.color-w .footer__bottom .logo svg path { fill: #ccc; }
.footer.color-w .site-info .sns-link > a { background-color: #F8F8F8; }
.footer.color-w .footer__bottom .btn-top { color: #ccc; }
.footer.color-w .site-info .sns-link > a > svg path { fill: #ccc; }
.footer.color-w .company-info dl dd { color: #555; }

/* common */
.inner {  width: calc(100% - 40px); max-width: 1720px; margin: 0 auto; }
.logo > a { display: block; }
.logo > a > img { width: 100%; }
.mo-br { display: none; }

.swiper-opt__area .swiper-button-next, .swiper-opt__area .swiper-button-prev { position: static; margin-top: 0; }
.swiper-button-prev::after, .swiper-button-next::after { display: none; }

/* btn */
.button__wrap { display: flex; justify-content: center; align-content: center; gap: 10px; }
.btn { display: flex; justify-content: center; align-items: center; }
.btn-box { width: 320px; height: 85px; border: 2px solid #fff; font-size: 19px; font-weight: 600; color: #fff; }
.btn-box.color-main { border-color: var(--main-color); background-color: var(--main-color); }

/* font */
.font-IBM { font-family: var(--font-IBM); }

@media screen and (max-width: 1600px) {
    .gnb .gnb__list > li > a { padding: 0 25px; }
}

@media screen and (max-width: 1400px) {
    .header .logo { width: 160px; }
    .gnb .gnb__list > li > a { padding: 0 20px; font-size: 16px; }
    .gnb .lnb__list { padding: 20px 25px; }
    .gnb .lnb__list > li { font-size: 15px; }
    .menu__area .gnb__list > li { padding: 20px 10px; border-radius: 30px; height: 250px; min-height: initial; font-size: 16px; }
    .site-map .lnb__list > li { font-size: 16px; }
}

@media screen and (max-width: 1200px) {
    .gnb { display: none; }
    .footer { padding: 60px 0; }
    .site-map { display: none; }
    .site-info { margin-top: 0; }
    .footer__bottom .btn-top { font-size: 60px; }
}
@media screen and (min-width: 1025px) {
    .menu__area .gnb__list .lnb { display: block !important; }
}
@media screen and (max-width: 1024px) {
    :root {
        --header-H: 60px;
    }
    .header .logo { width: 140px; }
    .lang__box { top: -9px; width: 90px; font-size: 14px; }
    .btn-lang { height: 35px; gap: 8px; }
    .btn-lang::before { width: 18px; height: 18px; }
    .lang__box .lang__list > li { padding-left: 39px; }

    #allMenu .header__inner { padding: var(--header-H) 0 60px; }
    .menu__area .gnb__list { display: block; }
    .menu__area .gnb__list > li { display: block; width: 100%; height: auto; max-height: initial; padding: 0; border: 1px solid #F8F8F8; border-radius: 15px; background-color: transparent; text-align: left; }
    .menu__area .gnb__list > li + li { margin-top: 10px; }
    .menu__area .gnb__list > li > a { display: block; padding: 15px 20px; margin-bottom: 0; font-size: 22px; }
    .menu__area .gnb__list > li.menu-logo { display: none; }
    .menu__area .lnb { display: none; max-width: 500px; padding: 15px 20px; }
    .menu__area .copyright { width: 100%; right: 0; bottom: 20px; transform: none; font-size: 14px; text-align: center; }
    .menu__area .gnb__list > li.on { border-color: #292929;}
    .menu__area .gnb__list > li.on::before { opacity: 1; }
    .menu__area .gnb__list > li.on > a { color: var(--main-color); }
    .menu__area .lnb__list > li > a:hover { color: var(--main-color); }

    .footer__top { padding-bottom: 30px; }
    .site-info .sns-link > a { width: 40px; height: 40px; }
    .site-info .sns-link > a > svg { transform: scale(0.7); }
    .footer__bottom { position: relative; padding-top: 30px; }
    .footer__bottom .logo { width: 140px; }
    .company-info dl { font-size: 16px; }
    .footer__bottom .btn-top { position: absolute; right: 0; top: 30px; font-size: 36px; }

    .btn-box { width: 180px; height: 45px; font-size: 16px; }
}
@media screen and (max-width: 768px) {
    .footer { padding: 40px 0; }
    .site-info { flex-direction: column-reverse; align-items: flex-start; row-gap: 30px; }
    .site-info .policy-link { margin-top: 15px; gap: 10px; font-size: 14px; }
    .site-info .copyright { font-size: 14px; }
    .company-info { flex-direction: column; margin-top: 30px; }
    .company-info .col { max-width: initial; }
    .company-info dl { font-size: 14px; }
    .company-info dl + dl { margin-top: 10px; }

    .mo-br { display: inline; }
}