@charset "UTF-8";
/*@import url('/css/font/font.css');*/

/**/
.btn {
    font-size:1.8rem;
}

/* 기본 */
body.no-scroll {
    overflow: hidden;
    height: 100%;
    position: fixed;
    width: 100%;
    touch-action: none;
}
.wrap {
    position: relative;
    width: 1600px;
    margin: 0 auto;
}
#sub-contents .wrap {
    width: 1400px;
}

/* ────────────────────── header ────────────────────── */
#header {
    z-index: 999;
    position: relative;
    width: 100%;
    height: 96px;
    background: #fff;
}
#header .inner {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 80px);
    height: 100%;
    margin: 0 auto;
}
#header .logo {
    flex: 1;
    display: flex;
    align-items: center;
}
#header .logo a {
    display: block;
    width: 224px;
    height: 40px;
    background-image: url(/images/common/logo.png);
    background-repeat: no-repeat;
    background-position: left top;
    font-size: 0;
}

/* 모바일 버튼 */
.mbtn-box {
    display: none;
}
/* 모바일 메뉴 */
.mtop-menu {
    display: none;
}

/* 1depth */
.gnb > ul {
    display: flex;
}
.gnb > ul > li {
    position: relative;
}
.gnb > ul > li > a {
    display: block;
    padding: 0 45px;
    color: #222;
    font-weight: 600;
    font-size: 1.15em;
    line-height: 100px;
    transition: all .4s;
    -webkit-transition: all .4s;
}
.gnb > ul > li > a strong {
    color: #066CB0;
    font-weight: 600;
}
.gnb > ul > li.on > a {
    color: #066CB0;
}

/* 2depth */
.gnb > ul > li > .lnb {
    z-index: 21;
    visibility: hidden;
    opacity: 0;
    padding: 20px 5px;
    text-align: center;
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    background: rgba(0, 0, 0, 0.24);
    border-radius: 10px;
    box-shadow: rgba(255, 255, 255, 0.24) 0px 0px 10px 0px;
    backdrop-filter: blur(10px);
    transition: all .4s;
    -webkit-transition: all .4s;
    box-shadow: 5px 7px 15px rgba(0, 0, 0, .1);
}
.gnb > ul > li.on > .lnb {
    visibility: visible;
    opacity: 1;
    top: 80px;
}
.gnb > ul > li.on > .lnb:after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    width: 65%;
    height: 4px;
    margin: auto;
    background: #066CB0;
    border-radius: 10px;
}
.gnb > ul > li > .lnb > li a {
    position: relative;
    display: block;
    color: #ccc;
    line-height: normal;
    padding: 7px 0;
    font-size: 16px;
    transition: all .4s;
}
.gnb > ul > li > .lnb > li a:hover {
    color: #fff;
}


/* header - right */
.link_area {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}
/* 문의하기 */
.link_area .contact {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15.9rem;
    height: 48px;
    border-radius: 48px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: transparent;
    color: #000;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
}
.link_area .contact span {
    display: block;
    padding-right: 24px;
    background: url(/images/common/inquire_arrow.png) no-repeat right 6px center;
    transition: all 0.4s ease-in-out;
}
.link_area .contact:hover span {
    background-position: right center;
}
/* 글로벌 */
.link_area .language {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    width: 12rem;
    height: 48px;
    border-radius: 48px;
    border: 1px solid rgba(0, 0, 0, 0.10);
}
.link_area .language::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 14px;
    background: #e5e5e5;
    transform: translate(-50%, -50%)
}
.link_area .language .on {
    color: #000;
    font-size: 1.6rem;
    font-weight: 500;
}
.link_area .language a {
    position: relative;
    display: block;
    padding: 0 9px;
    color: #b2b2b2;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
}

.language .hover-bar {
    display: none;
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: rgba(65, 169, 198, 0.3);
    transition: all 0.25s ease;
    pointer-events: none;
}

.language:hover .hover-bar {
    display: block;
}

/* ───────── 서브 페이지용 ───────── */
#sub-page #header {
    background: transparent;
}
#sub-page #header .logo a {
    background-image: url(/images/common/logo_w.png);
}

#sub-page .gnb > ul > li > a {
    color: #fff;
}
#sub-page .gnb > ul > li.on > a {
    color: #9AD6FF;
}

#sub-page .gnb > ul > li > .lnb {
    background: rgba(0, 0, 0, 0.45);
}
#sub-page .gnb > ul > li > .lnb > li a {
    color: #eee;
}
#sub-page .gnb > ul > li > .lnb > li a:hover {
    color: #fff;
}

#sub-page .link_area .contact {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}
#sub-page .link_area .contact span {
    background-image: url(/images/common/inquire_arrow_w.png);
}
#sub-page .link_area .language {
    border-color: rgba(255, 255, 255, 0.4);
}
#sub-page .link_area .language::before {
    background: rgba(255, 255, 255, 0.4);
}
#sub-page .link_area .language a {
    color: rgba(255, 255, 255, 0.6);
}
#sub-page .link_area .language .on {
    color: #fff;
}
#sub-page .language .hover-bar {
    background: rgba(255, 255, 255, 0.25);
}
@media only screen and (max-width:1023px) {
    #sub-page .mbtn-box .menu-open span:before,
    #sub-page .mbtn-box .menu-open:after,
    #sub-page .mbtn-box .menu-open span:after {
        background-color: #fff;
    }
}

/* ────────────────────── //header ────────────────────── */


/* ────────────────────── 서브 페이지 ────────────────────── */
#sub-page .container {margin-top: -100px;}
/* ───────── Sub Visual ───────── */
.sub-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 500px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.sub-visual .svis-inner {
    text-align: center;
    color: #fff;
    margin-top: 100px;
}
.sub-visual .svis-title {
    margin-bottom: 3.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 6.2rem;
    font-weight: 600;
    line-height: 1;
}
.sub-visual .svis-location {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 1.6rem;
}
.sub-visual .svis-location li {
    position: relative;
    padding-right: 15px;
    color: #ccc;
}
.sub-visual .svis-location li::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 5px;
    height: 10px;
    background: url(/images/common/location_arrow.png);
}
.sub-visual .svis-location li:last-child::after {
    display: none;
}
.sub-visual .svis-location .current {
    color: #fff;
}



/* ───────── Depth2 ───────── */
.sub-menu {
    background: #224078;
}
.sub-menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
}
.sub-menu li a {
    padding: 0 4rem;
    color: #d5e2f5;
    font-size: 1.8rem;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
}
.sub-menu li.on a {
    color: #fff;
    border-bottom: 3px solid #fff;
    padding-bottom: 22px;
}
.sub-menu li a:hover {
    color: #fff;
}

/* ───────── contents ───────── */
#sub-contents {
    overflow: hidden;
    min-height: 800px;
    /* padding: 8rem 0 0; */
    background: #fff;
    text-align: center;
}
.sub-head-title {
    text-align:center;
    margin-top:8rem;
    margin-bottom: 6rem;
    padding-top: 5.8rem;
    background: url(/images/common/stit_deco.png) no-repeat center top;
}
.sub-head-title h3 {
    color: #1a1a1a;
    font-size: 5.4rem;
    font-weight: 700;
}
.sub-head-title .txt {
    color: #5B5B5B;
    text-align: center;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    margin-top:2rem;
}
.sub-head-desc {
    z-index: 0;
    position: relative;
    padding-top: 18rem;
    padding-bottom: 14rem;
    color: #282828;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.3;
}
.sub-head-desc span {
    content: "";
    z-index: -1;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    color: #f1f5f8;
    font-family: 'Montserrat', sans-serif;
    font-size: 26rem;
    font-weight: 600;
    line-height: 0.83;
    letter-spacing: -0.04em;
}
.sub-head-desc strong {
    font-weight: 600;
}
.sub-head-desc em {
    color: #066cb0;
    font-style: normal;
}

/* ────────────────────── //서브 페이지 ────────────────────── */



/* ────────────────────── Footer ────────────────────── */
#footer {
    background: #000;
    color: #fff;
}
#footer > .inner {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem;
}
.footer-text {
    flex-grow: 1;
    flex-shrink: 0;
}

.footer-menu {
    display: flex;
}
.footer-menu > li {
    width: 200px;
    text-align: right;
}
.footer-menu > li strong {
    display: block;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
}
.footer-menu > li .depth2 {
    color: #ccc;
    font-size: 1.5rem;
}
.footer-menu > li .depth2 li {
    margin-bottom: 1.2rem;
}

#footer .contact {
    margin: 4rem 0;
    font-size: 2.4rem;
    font-weight: 600;
}
.footer-info span {
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
    padding-right: 2.5rem;
    font-size: 1.6rem;
    font-weight: 300;
}
.footer-info .tel::before {
    content: "";
    position: absolute;
    top: 5px;
    right: 12px;
    display: block;
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
}
.footer-info strong {
    display: inline-block;
    margin-right: 8px;
    font-weight: 600;
}
.footer-info .addr {
    display: block;
    padding-right: 0;
}
.footer-info address {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 300;
}
#footer .copyright {
    display: block;
    margin-top: 8px;
    color: #999;
    font-size: 1.6rem;
    font-weight: 400;
}

/* ────────────────────── //Footer ────────────────────── */





/* ────────────────────── 반응형 ────────────────────── */
@media only screen and (max-width:1599px) {
    /* --- 기본 --- */
    .wrap {
        width: 94%;
    }
    #sub-contents .wrap {
        width: 94%;
    }
    /* --- menu --- */
    .gnb > ul > li > a {
        padding: 0 2rem;
    }
    
    /* --- footer --- */
    #footer > .inner {
        padding: 4%;
    }
    .footer-menu > li {
        width: 120px;
    }

}
@media only screen and (max-width:1299px) {
    /* --- header --- */
    #header .inner {
        width: 94%;
    }

    /* --- menu --- */
    .gnb > ul > li > a {
        padding: 0 1rem;
    }
    
    /* header - right */
    .link_area .contact {
        display: none;
        width: 12rem;
    }
    .link_area .language {
        width: 10rem;
    }
}

@media only screen and (max-width:1023px) {
    
    /* --- header --- */
    #header {
        height: 80px;
    }
    #header .inner {
        width: 94%;
    }
    #header .logo a {
        width: 164px;
        height: 30px;
        background-size: contain;
    }

    /* --- 메뉴 --- */
    .gnb > ul {
        display: none;
    }
    
    /* 모바일 버튼 */
    .mbtn-box {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 20px;
    }
    .mbtn-box .menu-open {
        z-index: 101;
        display: block;
        position: relative;
        width: 25px;
        height: 21px;
        margin: 0;
        font-size: 0;
    }
    .mbtn-box .menu-open span:before { /* 위 */
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 25px;
        height: 3px;
        background-color: #222;
        transition: all 0.4s;
        -webkit-transition: all 0.4s;
        border-radius: 5px;
    }
    .mbtn-box .menu-open:after { /* 가운데 */
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 21px;
        height: 3px;
        margin: auto 0;
        background-color: #000;
        transition: all 0.4s;
        -webkit-transition: all 0.4s;
        border-radius: 5px;
    }
    .mbtn-box .menu-open span:after { /* 하단 */
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 25px;
        height: 3px;
        background-color: #000;
        transition: all 0.4s;
        -webkit-transition: all 0.4s;
        border-radius: 5px;
    }

    /* 모바일 버튼_on */
    .mbtn-box .menu-open.on {
        z-index: 1000;
        display: block;
        position: relative;
        width: 27px;
        height: 27px;
        font-size: 0;
    }
    .mbtn-box .menu-open.on span:before { /* 위 */
        content: "";
        position: absolute;
        left: 0;
        top: 11px;
        width: 25px;
        height: 3px;
        background-color: #000;
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }
    .mbtn-box .menu-open.on:after { /* 가운데 */
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0;
        height: 3px;
        margin: auto 0;
        background-color: #000;
    }
    .mbtn-box .menu-open.on span:after { /* 하단 */
        content: "";
        position: absolute;
        left: 0;
        top: 11px;
        width: 25px;
        height: 3px;
        background-color: #000;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
    }


    /* 모바일 메뉴 */
    .mtop-menu {
        display: block;
    }
    .mtop-menu {
        overflow-y: auto;
        display: none;
        position: fixed;
        left: 0;
        top: 70px;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        box-shadow: rgba(255, 255, 255, 0.24) 0px 0px 10px 0px;
        backdrop-filter: blur(10px);
    }
    .mtop-menu > ul {
        max-width: 94%;
        width: 100%;
        margin: 0 auto;
    }
    .mtop-menu > ul > li {
        position: relative;
    }
    .mtop-menu ul li a {
        display: block;
        height: 60px;
        padding-left: 20px;
        color: #222;
        font-size: 2rem;
        font-weight: 600;
        line-height: 60px;
    }
    .mtop-menu > ul > li > a {
        border-top: 1px solid #000;
    }
    .mtop-menu > ul > li:last-child > a {
        border-bottom: 1px solid #000;
    }
    .mtop-menu > ul > li.on > a {
        color: #066CB0;
        border-bottom: 1px dashed #ccc;
    }
    .mtop-menu > ul > li .lnb {
        display: none;
    }
    .mtop-menu > ul > li .lnb li {
        position: relative;
        padding-left: 15px;
    }
    .mtop-menu > ul > li .lnb li a {
        display: block;
        height: 40px;
        border-bottom: 1px dashed #ccc;
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 40px;
        text-align: left;
        color: #666;
    }
    .mtop-menu > ul > li .lnb li:last-child a {
        border-bottom: 0;
    }

    .mtop-menu > ul > li .lnb li:hover a,
    .mtop-menu > ul > li .lnb li:focus a {
        color: #1A98BB;
    }


    /* --- header - right --- */
    .link_area .contact {
        height: 38px;
    }
    .link_area .language {
        height: 38px;
    }
    .link_area .language a {
        padding: 0 7px;
    }
    .language .hover-bar {
        width: 30px;
        height: 30px;
    }

    .sub-visual {
        height: 400px;
    }
    .sub-visual .svis-inner {
        margin-top: 5rem;
    }
    .sub-visual .svis-title {
        margin-bottom: 2rem;
    }
    .sub-menu li a {
        padding: 0 2rem;
    }
    .sub-menu li.on a {
        padding: 0 2rem 2.2rem;
    }
    .sub-head-title {
        margin-bottom: 3rem;
        padding-top: 4rem;
    }
    .sub-head-title h3 {
        font-size: 3.6rem;
    }
    .sub-head-desc {
        padding-top: 8rem;
        padding-bottom: 6rem;
        font-size: 1.8rem;
    }
    .sub-head-desc span {
        font-size: 16rem;
    }

    /* --- footer --- */
    #footer > .inner {
        width: 94%;
        margin: 0 auto;
        padding: 4rem 0;
    }
    .footer-text {
        flex-grow: 0;
        flex-shrink: 1;
        width: 100%;
    }
    .footer-logo img {
        width: 164px;
        height: 30px;
        object-fit: contain;
    }
    .footer-menu {
        display: none;
    }
}

@media only screen and (max-width:767px) {
    /* header */
    #header {
        height: 60px;
    }
    #header .logo a {
        width: 137px;
        height: 25px;
    }
    
    /* 모바일 메뉴 */
    .mbtn-box {
        margin-left: 14px;
    }
    .mtop-menu {
        top: 60px;
    }
    .mtop-menu ul li a {
        height: 50px;
        line-height: 50px;
    }

    /* --- header - right --- */
    .link_area li:first-child {
        display: none;
    }

    
    .sub-visual {
        height: 200px;
    }
    .sub-visual .svis-inner {
        margin-top: 3rem;
    }
    .sub-visual .svis-title {
        margin-bottom: 1rem;
        font-size: 3.6rem;
    }
    .sub-visual .svis-location {
        gap: 5px;
        font-size: 1.3rem;
    }
    .sub-visual .svis-location li {
        padding-right: 10px;
    }
    .sub-menu .wrap {
        overflow-x: auto;
        overflow-y: hidden;
    }
    .sub-menu ul {
        height: 60px;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    .sub-menu li {
        flex-shrink: 0;
    }
    .sub-menu li a {
        font-size: 1.6rem;
    }
    .sub-menu li.on a {
        padding: 0 2rem 1.9rem;
    }
    .sub-head-title {
        margin-top: 5rem;
        margin-bottom: 1rem;
        padding-top: 3rem;
        background-size: 30px;
    }
    .sub-head-title h3 {
        font-size: 2.4rem;
    }
    .sub-head-desc {
        padding-top: 5%;
        padding-bottom: 5rem;
        font-size: 1.3rem;
    }
    .sub-head-desc span {
        font-size: 6rem;
    }


    /* --- footer --- */
    .footer-logo img {
        width: 137px;
        height: 25px;
    }
    #footer .contact {
        margin: 2.5rem 0;
    }
    .footer-info {
        display: block;
    }
    .footer-info span::before {
        display: none;
    }
}
