@charset "utf-8";
/* *******************************************************
 * filename : layout_responsive.css
 * description : 전체 레이아웃 반응형 CSS
 * date : 2022-06-03
******************************************************** */

/* ========================================================
 * SETTING
======================================================== */
@media all and (max-width: 1280px) {
    :root {
        --header-height: 80px;
    }
}
@media all and (max-width: 800px) {
    :root {
        --area-padding: 5vw;
        --sub-visual-height: 24rem;
        --sub-menu-height: 60px;
    }
}
@media all and (max-width: 480px) {
    :root {
        --header-height: 60px;
        --sub-menu-height: 45px;
    }
}

/* ========================================================
 * FONT SIZE
======================================================== */
@media all and (max-width: 1536px) {
    html {
        font-size: 0.651vw;
    } /* 10 */
}
@media all and (max-width: 1280px) {
    html {
        font-size: 0.8594vw;
    } /* 10 -> 11*/
}
@media all and (max-width: 800px) {
    html {
        font-size: 1.375vw;
    } /* 10 -> 11*/
}
@media all and (max-width: 640px) {
    html {
        font-size: 1.7188vw;
    } /* 10 -> 11*/
}
@media all and (max-width: 480px) {
    html {
        font-size: 2.2vw;
    } /* 10 */
}
@media all and (max-width: 390px) {
    html {
        font-size: 2.1795vw;
    } /* 10 -> 8.5 */
}

/* ========================================================
 * LAYOUT
======================================================== */
/* ****************** 공통클래스 ********************** */
@media all and (max-width: 1536px) {
    /* max-width : (area-box width) + 60px */
    .area-box {
        padding: 0 var(--area-padding);
        max-width: none;
    }
}
@media all and (max-width: 1400px) {
    .area-1340 {
        max-width: auto;
        padding: 0 var(--area-padding);
    }
}
@media all and (max-width: 1280px) {
    .area {
        padding: 0 var(--area-padding);
        max-width: none;
    }
    .m-br {
        display: block;
    }
    .pc-br {
        display: none;
    }
    .display-m {
        display: block;
    }
    .display-pc {
        display: none;
    }
}
@media all and (max-width: 800px) {
    .br-800 {
        display: none;
    }
}

/* ****************** HEADER ********************** */
@media all and (max-width: 1800px) {
    #headerInner {
        padding-left: var(--area-padding);

        margin-top: 0;
        height: var(--header-height);
        padding-top: 0;
        padding-bottom: 0;
    }

    #gnb > ul {
        margin: 0 30rem;
        max-width: none;
    }
    /* -------- Header :: UTIL BOX -------- */
    /* .header-member-list{position:absolute; right:6rem; top:-30px} */
    .header-member-list {
        position: absolute;
        right: 6rem;
        top: -30px;
        display: flex;
    }
}
@media all and (max-width: 1280px) {
    #header .logo img {
        /* height: 30px; */
        height: 50px;
        object-fit: contain;
    }
    .fullpage-html #header {
        position: absolute;
    }
    #headerInnerWrap {
        position: fixed;
        z-index: 99;
    }
    #headerInner {
        margin-top: 0;
        height: var(--header-height);
        padding: 0 var(--area-padding);
    }
    #header .logo a {
        width: 120px;
    }

    /* -------- Header :: UTIL BOX -------- */
    .header-util-box {
        padding-right: 60px;
    }
    /* Header :: 사이트맵 버튼 */
    .sitemap-line-btn,
    .sitemap-custom-btn {
        display: none;
    }
    /* Header :: member메뉴 */
    .header-member-list {
        position: static;
    }
    /* Header :: 언어선택 */
    .header-lang-list {
        display: none;
    }
    .header-lang {
        position: relative;
        display: block;
        float: left;
        margin-left: 2.1rem;
        z-index: 100;
    }
    .header-lang:before {
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        height: 0;
        content: "";
        border-radius: 30px;
        opacity: 0;
        transition: all 0.3s ease-in-out;
        background-color: var(--main-color);

        display: none;
    }
    .header-lang .lang-open-btn {
        overflow: hidden;
        position: relative;
        display: block;
        width: 100%;
        text-align: left;
        height: 100%;
        font-size: 2.2rem;
        color: #333;
        font-weight: 400;
    }
    .header-lang .lang-open-btn i {
        display: inline-block;
        vertical-align: middle;
        margin-top: -2px;
    }
    .header-lang .lang-open-btn .arrow {
        position: absolute;
        top: 50%;
        right: -8px;
        transform: translateY(-50%);
    }
    .header-lang .lang-open-btn .arrow i {
        font-size: 17.1px;
    }
    .header-lang > ul {
        /* display:none; */
        position: absolute;
        top: 100%;
        right: 0px;
        z-index: 10;
        width: 100%;
        padding-top: 5px;

        /* 20240416 */
        width: fit-content;
        background-color: var(--main-color);
        border-radius: 15px;
        padding: 1rem;
        width: 48px;
        display: flex;
        flex-direction: column;
        align-items: start;
    }
    .header-lang > ul > li > a {
        display: block;
        position: relative;
        text-align: center;
        font-size: 13px;
        line-height: 20px;
        color: #fff;
        transition: color 0.3s;
    }
    .header-lang.open:before {
        /* height: calc(100% + 110px); */
        height: calc(100% + 50px);
        opacity: 1;
    }
    .header-lang.open .lang-open-btn i {
        /* color: #fff; */
        color: #000;
    }
    .header-lang li.na {
        position: relative;
        margin-top: 6px;
        padding-top: 6px;
    }
    .header-lang li.na::before {
        position: absolute;
        content: "";
        top: 0;
        left: -4px;
        right: -4px;
        height: 2px;
        background-color: white;
    }
    /* -------- Header :: GNB(Pc) -------- */
    #gnb {
        display: none;
    }
    .gnb-overlay-bg {
        display: none;
    }

    /* -------- Header :: GNB(Mobile/기본스타일) -------- */
    .gnb-overlay-bg-m {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
    }
    #gnbM {
        display: block;
        position: fixed;
        top: 0px;
        right: -82%;
        width: 80%;
        height: 100%;
        max-width: 280px;
        /* background-color: #1b4965; */
        z-index: 9999;
        transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
        -webkit-transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
        visibility: hidden;

        /* 20240416 */
        background-color: #fff;
    }
    #gnbM.open {
        right: 0px;
        visibility: visible;
    }
    /* GNB Mobile :: 레이아웃 */
    .gnb-navigation-wrapper {
        position: relative;
        height: 100%;
        box-sizing: border-box;
        padding-top: var(--header-height);
        overflow-y: auto;
    }
    .header-util-menu-box + .gnb-navigation-wrapper {
        padding-top: 0;
        height: calc(100% - var(--header-height));
    }

    /* GNB Mobile :: 메뉴영역 :: 1차 */
    #navigation > li {
        /* border-bottom: 1px solid #1a5376; */
    }
    #navigation > li:first-child {
        /* border-top: 1px solid #1a5376; */
    }
    #navigation > li > a {
        position: relative;
        display: block;
        padding: 15px var(--area-padding);
        /* color: #fff; */
        font-size: 17px;
        font-weight: 500;
        /* 20240416 */
        color: #333;
    }
    #navigation > li.active > a {
        color: var(--main-color);
    }
    #navigation > li.has-2dep > a:before {
        font-family: xeicon;
        content: "\e914";
        position: absolute;
        top: 50%;
        right: var(--area-padding);
        font-size: 1.3em;
        transform: translateY(-50%);
    }
    #navigation > li.has-2dep.active > a:before {
        content: "\e91b";
    }
    /* GNB Mobile ::  메뉴영역 :: 2차 */
    #navigation > li .gnb-2dep {
        display: none;
        padding: 15px 0;
        /* background-color: #193e54; */
        /* 20240416 */
        background-color: var(--main-color);
    }
    #navigation > li .gnb-2dep > ul > li {
        height: auto !important;
    }
    #navigation > li .gnb-2dep > ul > li > a {
        display: block;
        color: #ffffffa6;
        font-size: 14px;
        padding: 12px var(--area-padding);
    }
    #navigation > li .gnb-2dep > ul > li.on > a {
        /* color: #58ddd0; */
        font-weight: 500;
        /* 20240416 */
        color: #fff;
    }
    /* GNB Mobile :: 메뉴영역 ::  3차 */
    #navigation > li .gnb-2dep > ul > li > .gnb-3dep {
        display: none;
        padding: 10px;
        background-color: #aaa;
        margin: 0 10px;
    }
    #navigation > li .gnb-2dep > ul > li > .gnb-3dep > li > a {
        display: block;
        padding: 8px 0;
        font-size: 13px;
        color: #fff;
    }
    #navigation > li .gnb-2dep > ul > li > .gnb-3dep > li > a:before {
        display: inline-block;
        content: "-";
        margin-right: 5px;
    }

    /* -------- GNB Mobile :: 스타일2 (Full Style) -------- */
    #gnbM.gnb-style-full {
        top: -100%;
        right: 0;
        width: 100%;
        height: 100%;
        max-width: none;
    }
    #gnbM.gnb-style-full.open {
        top: 0px;
    }
    .gnb-style-full .gnb-navigation-wrapper {
        height: auto;
        width: 100%;
        position: absolute;
        top: 0px;
        bottom: 0px;
        left: 0;
        padding-top: 0;
    }
    .gnb-style-full .header-util-menu-box + .gnb-navigation-wrapper {
        top: var(--header-height);
    }
    .gnb-style-full-member .gnb-navigation-wrapper {
        bottom: var(--header-height);
    }
    .gnb-style-full .gnb-navigation-inner {
        display: table;
        width: 100%;
        height: 100%;
    }
    .gnb-style-full #navigation {
        display: table-cell;
        vertical-align: middle;
    }
    .gnb-style-full #navigation > li {
        text-align: center;
        border: 0;
        opacity: 0;
        filter: Alpha(opacity=0);
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
        -webkit-transition: all 0s 0s;
        transition: all 0s 0s;
    }
    .gnb-style-full #navigation > li:first-child {
        border: 0;
    }
    .gnb-style-full #navigation > li > a {
    }
    .gnb-style-full #navigation > li .gnb-icon i {
        display: none;
    }
    .gnb-style-full.open #navigation > li {
        opacity: 1;
        filter: Alpha(opacity=100);
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        -webkit-transition: transform 0.8s, opacity 0.8s;
        transition: transform 0.8s, opacity 0.8s;
    }
    .gnb-style-full.open #navigation > li:nth-child(1) {
        -webkit-transition-delay: 0.3s;
        transition-delay: 0.3s;
    }
    .gnb-style-full.open #navigation > li:nth-child(2) {
        -webkit-transition-delay: 0.4s;
        transition-delay: 0.4s;
    }
    .gnb-style-full.open #navigation > li:nth-child(3) {
        -webkit-transition-delay: 0.6s;
        transition-delay: 0.6s;
    }
    .gnb-style-full.open #navigation > li:nth-child(4) {
        -webkit-transition-delay: 0.7s;
        transition-delay: 0.7s;
    }
    .gnb-style-full.open #navigation > li:nth-child(5) {
        -webkit-transition-delay: 0.9s;
        transition-delay: 0.9s;
    }
    .gnb-style-full.open #navigation > li:nth-child(6) {
        -webkit-transition-delay: 0.9s;
        transition-delay: 0.9s;
    }

    /* -------- GNB Mobile :: 언어선택 및 회원메뉴 -------- */
    /* 언어선택 */
    .header-util-menu-box .lang-select {
        height: var(--header-height);
        display: flex;
        align-items: center;
        padding: 0 var(--area-padding);
    }
    .header-util-menu-box .lang-select li {
        float: left;
        border: 1px solid #e5e5e5;
        margin-left: -1px;
    }
    .header-util-menu-box .lang-select li:first-child {
        margin-left: 0;
    }
    .header-util-menu-box .lang-select li > a {
        position: relative;
        display: block;
        min-width: 18px;
        text-align: center;
        height: 40px;
        line-height: 40px;
        padding: 0 10px;
        color: #555;
        font-size: 12px;
        font-weight: 500;
    }
    .header-util-menu-box .lang-select li.cur {
        border-color: var(--main-color);
        position: relative;
        z-index: 1;
    }
    .header-util-menu-box .lang-select li.cur a {
        color: var(--main-color);
        z-index: 1;
    }
    /* 회원메뉴 */
    .member-menu-box {
        display: flex;
        justify-content: space-around;
        height: var(--header-height);
        text-align: center;
        padding: 10px 0;
        padding-right: 60px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    .member-menu-box li {
        float: left;
        width: 50%;
        height: 100%;
        position: relative;
    }
    .member-menu-box li:before {
        content: "";
        position: absolute;
        top: 10px;
        bottom: 10px;
        left: 0px;
        width: 1px;
        background-color: rgba(0, 0, 0, 0.1);
        content: "";
    }
    .member-menu-box li:first-child:before {
        display: none;
    }
    .member-menu-box li a {
        display: block;
        color: #444;
        padding: 6px 0;
    }
    .member-menu-box li a i {
        font-size: 30px;
    }
    .member-menu-box li a strong {
        display: block;
        padding-top: 5px;
        font-size: 13px;
        letter-spacing: -0.5px;
        font-weight: 400;
    }
    .header-util-menu-box .lang-select + .member-menu-box {
        border-top: 1px solid #e7e7e7;
        padding-right: 0;
    }
    /* gnb full style일때 회원메뉴 위치이동 */
    .gnb-style-full .member-menu-box {
        position: absolute;
        bottom: 0px;
        left: 0px;
        right: 0;
        margin-right: 0px;
        padding: 0;
        border-top: 1px solid #e7e7e7;
    }
    .gnb-style-full .member-menu-box li a {
        padding: 16px 0;
    }

    /* -------- Header :: 네비게이션 오픈 버튼 -------- */
    .nav-open-btn {
        display: block;
        position: fixed;
        top: 28px;
        right: var(--area-padding);
        z-index: 10000;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        width: 30px;
        height: 21px;
        -webkit-transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
        transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
    }
    .nav-open-btn .line {
        display: block;
        width: 25px;
        height: 2px;
        background-color: #333;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .nav-open-btn.active .line {
        background-color: #000;
    }
    .nav-open-btn .line:nth-child(2) {
        margin-left: auto;
    }

    .nav-open-btn.active .line:nth-child(2),
    .nav-open-btn.active .line:nth-child(4) {
        opacity: 0;
    }
    .nav-open-btn.active .line:nth-child(1) {
        -webkit-transform: translateY(9.5px) rotate(45deg);
        transform: translateY(9.5px) rotate(45deg);
    }
    .nav-open-btn.active .line:nth-child(3) {
        -webkit-transform: translateY(-9.5px) rotate(-45deg);
        transform: translateY(-9.5px) rotate(-45deg);
    }

    /* -------- Header :: white ver -------- */
    #header.white-ver:not(.top-fixed) .nav-open-btn .line {
        background-color: #fff;
    }
    #header.white-ver .nav-open-btn.active .line {
        /* background-color: #fff; */
        background-color: #000;
    }
    #header.white-ver:not(.top-fixed) .header-lang .lang-open-btn {
        color: #fff;
    }

    /* -------- Header :: Fixed -------- */
    #header.top-fixed #headerInnerWrap {
        background-color: #fff;
        border-bottom: 1px solid #eee;
    }
}
@media all and (max-width: 800px) {
    /* Header :: 검색버튼 */
    .header-search-box {
        margin-left: 5px;
    }
    .header-search-inner {
        position: fixed;
        left: 0;
        top: var(--header-height);
        height: 38px;
        width: 100%;
        border-width: 3px;
        padding-right: 35px;
    }
    .header-search-inner .header-search-btn {
        right: 40px;
    }
    .header-search-inner .header-search-close-btn {
        height: 100%;
        width: 38px;
        border-radius: 0;
    }
}
@media all and (min-width: 481px) and (max-width: 1280px) {
    .nav-open-btn.active {
        right: 20px;
    }
}
@media all and (max-width: 480px) {
    #header .logo img {
        /* height: 30px; */
        height: 50px;
        object-fit: contain;
    }

    /* -------- Header :: UTIL BOX -------- */
    .header-util-box {
        padding-right: 40px;
    }

    /* Header :: 사이트맵, 네비게이션 버튼 */
    .nav-open-btn {
        top: 21px;
        width: 25px;
        height: 16px;
        margin-top: 0;
    }
    .nav-open-btn .line {
        width: 20px;
        height: 2px;
    }
    .nav-open-btn.active .line:nth-child(1) {
        -webkit-transform: translateY(7px) rotate(45deg);
        transform: translateY(7px) rotate(45deg);
    }
    .nav-open-btn.active .line:nth-child(3) {
        -webkit-transform: translateY(-7px) rotate(-45deg);
        transform: translateY(-7px) rotate(-45deg);
    }
    /* Header :: GNB(Mobile) */
    #navigation > li > a {
        font-size: 15px;
    }
    #navigation > li .gnb-2dep > ul > li > a {
        font-size: 13px;
    }

    /* Header :: 언어선택 및 회원메뉴 */
    /* 언어선택 */
    .header-util-menu-box .lang-select li > a {
        height: 38px;
        line-height: 38px;
    }
    /* 회원메뉴 */
    .member-menu-box {
        padding: 5px 0;
    }
    .member-menu-box li a {
        padding: 4px 0;
    }
    .member-menu-box li a i {
        font-size: 20px;
    }
    .member-menu-box li a strong {
        padding-top: 5px;
    }
    .gnb-style-full .member-menu-box li a {
        padding: 10px 0;
    }
}

/* ****************** FOOTER ********************** */
@media all and (max-width: 1280px) {
    .footer-left-con,
    .footer-right-con {
        float: none;
    }
    #footerTop .footer-left-con {
        margin-bottom: 7rem;
    }
    .footer-contact-con {
        padding-right: 0;
    }

    #footerBottom {
        flex-direction: column;
    }
    #footerBottom .footer-copyright {
        margin-top: 3rem;
    }
}

@media all and (max-width: 800px) {
    /* Footer :: 슬로건 */
    .footer-slogan-txt {
        font-size: 4.2rem;
    }
    /* Footer :: 푸터로고 */
    .foot-logo svg {
        height: 2.3rem;
    }
    /* Footer :: Contact us */
    .footer-contact-con .footer-contact-tit {
        font-size: 3.6rem;
    }
}
@media all and (max-width: 480px) {
    .footer-menu-sns-con {
        justify-content: space-between;
    }
    .foot-menu li:first-child {
        margin-top: 0;
    }
    .foot-menu li {
        padding-left: 0;
        margin-top: 15px;
        float: none;
    }
}

/* ****************** SUB LAYOUT ********************** */
@media all and (max-width: 1280px) {
    #contentTopCon {
        /* padding-top: calc(5rem + var(--header-height)); */
    }
    /*  SUB LAYOUT :: 컨텐츠 레이아웃 */
    #content:not(.wide) {
        padding: 7rem var(--area-padding);
    }
    #content.wide {
        padding: 7rem 0;
    }
    #content.content-no-padding {
        padding-top: 0rem;
        padding-bottom: 0;
    }
}

@media all and (max-width: 800px) {
    /*  SUB LAYOUT :: 컨텐츠 레이아웃 */
    #content.content-no-padding {
        padding-top: 7rem;
    }
    /* SUB LAYOUT :: 위치정보(location) */
    .location > ul {
        justify-content: center;
    }

    /*  SUB LAYOUT :: 상단정보 (공통) */
    #contentInfoCon {
        margin-bottom: 3rem;
    }
    #contentInfoCon .content-tit {
        font-size: 5rem;
        text-align: center;
    }

    /*  SUB LAYOUT ::  서브메뉴(스타일1,2,3) */
    #topMenuCon,
    #topSubMenu {
        display: none;
    }

    /*  SUB LAYOUT :: 서브메뉴 모바일 (스타일1) */
    #topMenuM01 {
        display: block;
        position: relative;
        height: calc(var(--sub-menu-height) + 1px);
        z-index: 1;
    } /* (+1 border height)*/
    #topMenuM01 .side-menu-inner {
        display: flex;
        align-items: center;
        height: var(--sub-menu-height);
        background-color: #f4f4f4;
        margin: 0 var(--area-padding);
    }
    #topMenuM01 .location-to-home-btn {
        position: absolute;
        width: var(--sub-menu-height);
        height: var(--sub-menu-height);
        left: 0px;
        top: 0px;
        background-color: #fff;
        text-align: center;
        border-right: 1px solid #ddd;
    }
    #topMenuM01 .location-to-home-btn i {
        color: var(--main-color);
        font-size: 20px;
        line-height: var(--sub-menu-height);
    }
    #topMenuM01 .menu-location {
        position: relative;
        width: 100%;
    }
    #topMenu04 .side-menu-two .menu-location {
        width: 50%;
    }
    #topMenuM01 .menu-location.location2 {
        border-left: 1px solid #dfe0e0;
    }
    #topMenuM01 .menu-location > .cur-location {
        position: relative;
        display: block;
        width: 100%;
        text-align: left;
        height: var(--sub-menu-height);
        padding: 0 30px 0 10px;
    }
    #topMenuM01 .menu-location > .cur-location span {
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: var(--sub-menu-height);
        color: #222;
        font-weight: 400;
        font-size: 15px;
    }
    #topMenuM01 .menu-location > .cur-location .arrow {
        position: absolute;
        top: 50%;
        right: 1.5rem;
        width: 20px;
        height: 20px;
        margin-top: -10px;
        font-size: 20px;
    }
    #topMenuM01 .menu-location.open > .cur-location .arrow {
        transform: rotate(-180deg);
        margin-top: -10px;
    }
    #topMenuM01 .menu-location .location-menu-con {
        display: none;
        position: absolute;
        top: 100%;
        left: 0px;
        right: 0;
        background-color: #f4f4f4;
        z-index: 11;
    }
    #topMenuM01 .menu-location.location1 .location-menu-con {
        width: calc(100% - 1px);
    }
    #topMenuM01 .menu-location .location-menu-con li a {
        display: block;
        padding: 1.1rem 1.5rem;
        font-size: 14px;
        line-height: 1.5;
        word-break: keep-all;
    }
    #topMenuM01 .menu-location .location-menu-con li.on {
        position: relative;
    }
    #topMenuM01 .menu-location .location-menu-con li.on a {
        color: var(--main-color);
        font-weight: 600;
    }
}

/* ****************** MODAL LAYERPOPUP ********************** */
@media all and (max-width: 800px) {
    /* modal layer content */
    .footer-modal-content {
        width: auto;
        margin: 50px 15px;
    }
    .footer-modal-content h1 {
        font-size: 18px;
        text-align: left;
        padding: 0 30px 15px 0;
    }
    .modal-close-btn {
        right: -3px;
        top: -3px;
    }
    .modal-close-btn i {
        font-size: 24px;
    }
    .footer-inner-box {
        padding: 15px;
    }
    .footer-inner {
        padding: 10px;
        height: 250px;
    }
}

/* ****************** SIDEBAR ********************** */
@media all and (max-width: 1280px) {
    #rightSidebar {
        display: none;
    }
}

/* ******************  FOOTER 수정 (2023-04-05)  ********************** */
/* 슬로건 텍스트 수정 */
@media all and (max-width: 800px) {
    .footer-slogan-box .slogan-inner-box {
        display: block;
    }
    .footer-slogan-box .slogan-txt {
        font-size: 1.6rem;
    }
    .footer-slogan-box .slogan-inner-box .left-txt {
        font-size: 3.8rem;
    }
    .footer-slogan-box .slogan-inner-box .right-btns {
        margin: 1rem 0;
    }
    .footer-slogan-box .slogan-inner-box .right-btns .down-btn,
    .footer-slogan-box .slogan-inner-box .right-btns .qr-img {
        width: 8rem;
        height: 8rem;
    }
}
