@charset "UTF-8";

/* common */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600;700;800&display=swap');
@font-face {
    font-family: 'S-CoreDream-3Light';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-3Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'S-CoreDream-4Regular';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-4Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'S-CoreDream-5Medium';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-5Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html, body {width: 100%; overflow-x: hidden;}

* {
    list-style: none;
    font-family: 'Noto Sans KR', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img {border: 0;}


/* common header */

.common_header {
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: all 0.3s;
    overflow: hidden;
}
.common_header.active {
    height: 315px;
    background-color: #F4F4F4;
}
.common_header.shadow {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header_top_bar {
    width: 100%;
    height: 100px;
    padding: 0 50px;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}
.header_top_bar.active {
    background-color: #FFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header_logo_wrap {
    height: 30px;
    transition: all 0.3s;
    z-index: 400;
    position: fixed;
    top: 35px;
    left: 50px;
}
.header_logo_wrap img {height: 100%; display: block;}

.header_gnb_wrap {
    width: calc(100% - 200px);
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header_gnb_wrap > li {
    position: relative;
    height: 100%;
    transition: all 0.3s;
}
.header_gnb_wrap > li > a {
    padding: 10px 25px;
    height: 100%;
    display: flex;
    align-items: center;
    color: #FFF;
    text-decoration: none;
    font-family: 'Dosis', sans-serif;
    font-size: 19px;
    font-weight: 500;
    transition: all 0.3s;
}
.header_gnb_wrap > li > a.active {
    color: #333;
}
.header_lnb_wrap {
    margin: 0;
    padding: 30px 0 0 0;
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: absolute;
    top: 100px;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s;
}
.header_lnb_wrap.active {
    background-color: #FFF;
    width: 340px;
    z-index: 2000;
    box-shadow: 0px 10px 10px 1px #DDD;
}

.header_lnb_wrap > li > a {
    font-family: 'Dosis', sans-serif;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    display: inline-block;
}
.header_etc {
    width: 120px;
    height: 40px;
    margin-left: 80px;
    display: flex;
    align-items: center;
    position: relative;
}
.header_lang_wrap {
    display: flex;
    align-items: center;
    position: relative;
    width: 60px;
}
.header_lang_wrap > a {
    color: #FFF;
    text-decoration: none;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 12px;
    font-weight: 500;
}
.header_lang_wrap > a.active {
    color: #333;
    font-weight: 700;
}

.header_lang_wrap > a > img {
    position: relative;
    top: 1px;
    margin-right: 5px;
}
.header_lang_list {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 92px;
}
.header_lang_list > li > a {
    color: #333;
    text-decoration: none;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 0;
    display: block;
}
.header_lang_list > li > a.active::after {
    content: "✓";
    font-family: 'Noto Sans KR', sans-serif;
    margin-left: 3px;
}
.header_lang_list > li > a > img {
    position: relative;
    top: 1px;
    margin-right: 5px;  
}
.header_menu_trigger {
    width: 40px;
    height: 40px;
    padding: 9px;
    display: block;
    position: fixed;
    top: 30px;
    right: 50px;
    z-index: 9999;
    transition: all 0.3s;
}
.header_menu_trigger > span {
    display: block;
    background-color: #FFF;
    width: 22px;
    height: 2px;
    position: absolute;
    transition: all 0.3s;
    overflow: hidden;
}
.header_menu_trigger > span.active {
    background-color: #333;
}
.header_menu_trigger > span:nth-child(1) {top: 11px;}
.header_menu_trigger > span:nth-child(2) {top: 19px;}
.header_menu_trigger > span:nth-child(3) {top: 27px;}

.header_menu_trigger.toggle > span:nth-child(1) {top: 19px; transform: rotate(45deg); background-color: #333;}
.header_menu_trigger.toggle > span:nth-child(2) {opacity: 0;}
.header_menu_trigger.toggle > span:nth-child(3) {top: 19px; transform: rotate(-45deg); background-color: #333;}

/* sitemap popup */

.sitemap_popup {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 200;
    display: none;
    background-color: #FFF;
}
.sitemap_list {
    width: calc(100% - 500px);
    height: 100vh;
}
.sitemap_gnb_list {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
}
.sitemap_gnb_list > li {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    width: 100%;
    height: 20%;
    border-bottom: 1px solid #EEE;
    padding: 0 100px;
    transition: all 0.3s;
}
.sitemap_gnb_list > li > .item_main {
    margin-right: 100px;
}
.sitemap_gnb_list > li > .item_main > a {
    color: #AAA;
    text-decoration: none;
    font-size: 30px;
    font-weight: 700;
    transition: all 0.3s;
}
.sitemap_gnb_list > li > .item_main > a:hover {
    color: #333;
}
.sitemap_gnb_list > li > .item_sub > a {
    color: #333;
    text-decoration: none;
    margin-right: 40px;
    font-size: 18px;
    font-weight: 400;
    position: relative;
    transition: all 0.3s;
}
.sitemap_gnb_list > li > .item_sub > a::after {
    content: "";
    border-right: 1px solid #EEE;
    width: 100%;
    height: 20px;
    position: relative;
    left: 22px;
    top: 1px;
}
.sitemap_gnb_list > li > .item_sub > a:last-child::after {
    display: none;
}
.sitemap_logo {
    width: 500px;
    height: 100vh;
    border-left: 1px solid #EEE;
    transition: all 0.3s;
}
.sitemap_logo > ul {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
}
.sitemap_logo > ul > li:first-child {
    width: 100%;
    height: calc(100% - 230px);
    position: relative;
}
.sitemap_logo > ul > li:first-child::before {
    content: "";
    width: 300px;
    height: 155px;
    position: absolute;
    top: 50%;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    background-image: url("../imgs/logo_symbol.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
}
.sitemap_logo > ul > li:last-child {
    width: 100%;
    height: 230px;
    padding: 0 50px 50px 50px;
}
.sitemap_logo > ul > li:last-child > h3 {
    font-size: 18px;
    line-height: 100%;
    margin-bottom: 5px;
    color: #333;
}
.sitemap_address {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 300;
    color: #333;
}
.sitemap_copy_item {
    font-size: 14px;
    color: #333;
    font-weight: 300;
    margin-top: 5px;
}
.sitemap_copy_item > span {
    margin-right: 30px;
    font-weight: 500;
}
.sitemap_copyright {
    color: #AAA;
    font-size: 12px;
    margin-top: 30px;
}

/* mobile gnb menu */

.mob_lang_wrap {
    position: fixed;
    top: 30px;
    right: 100px;
    width: 60px;
    height: 40px;
    z-index: 500;
    display: none;
    flex-flow: row wrap;
    align-items: center;
    transition: all 0.3s;
}

.mob_lang_wrap > a {
    color: #FFF;
    text-decoration: none;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s;
}
.mob_lang_wrap > a.active {
    color: #333;
    font-weight: 700;
}
.mob_lang_wrap > a > img {
    position: relative;
    top: 1px;
    margin-right: 5px;
}
.mob_lang_list {
    display: none;
    position: absolute;
    margin: 0;
    padding: 0;
    top: 34px;
    left: -11px;
    background-color: #FFF;
    border-radius: 3px;
    border: 1px solid #EEE;
}
.mob_lang_list > li {
    border-bottom: 1px solid #EEE;
}
.mob_lang_list > li:last-child {
    border-bottom: none;
}
.mob_lang_list > li > a {
    color: #333;
    text-decoration: none;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 10px;
    display: block;
    transition: all 0.3s;
    position: relative;
    width: 74px;
}

.mob_lang_list > li > a.active::after {
    content: "✓";
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 10px;
    font-weight: 700;
    margin-left: 4px;
    color: #ffd800;
    position: relative;
    bottom: 1px;
}
.mob_lang_list > li > a > img {
    position: relative;
    top: 1px;
    margin-right: 5px;  
}
.mob_gnb_wrap {
    width: 100%;
    height: 100vh;
    background-color: #FFF;
    display: none;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 300;
    overflow: hidden;
}
.mob_gnb_list {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    top: 130px;
}
.mob_gnb_list > li {
    position: relative;
    border-top: 1px solid #DDD;
}
.mob_gnb_list > li > a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 12px 16px;
    font-family: 'S-CoreDream-3Light';
    font-size: 16px;
    position: relative;
}
.mob_gnb_list > li > a::before {
    content: "-";
    margin-right: 10px;
}
.mob_gnb_list > li > a > i {
    position: absolute;
    right: 0;
    margin-right: 12px;
    display: none;
}
.mob_gnb_list > li:last-child {
    border-bottom: 1px solid #DDD;
}
.mob_lnb_list {
    width: 100%;
    margin: 0;
    display: none;
    border-top: 1px solid #DDD;
    background-color: #EEE;
    padding: 12px 0;
}

.mob_lnb_list > li > a {
    color: #333;
    text-decoration: none;
    font-family: 'S-CoreDream-4Regular';
    font-size: 14px;
    display: block;
    padding: 6px 20px;
    text-indent: 14px;
}

/* common footer */

.common_footer {
    width: 100%;
    padding: 40px;
    display: flex;
    flex-flow: row wrap;
    background-color: #222;
}
.cmn_footer_copy {
    width: calc(100% - 160px);
    margin-right: 20px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}
.cmn_footer_copy > div {
    color: #4e4e4e;
    font-size: 14px;
    line-height: 180%;
    width: 100%;
}
.cmn_footer_copy > div > strong {
    color: #FFF;
    margin-right: 30px;
}
.cmn_footer_copy > div:first-child {
    padding-bottom: 10px;
    border-bottom: 1px solid #111;
    margin-bottom: 6px;
}
.cmn_footer_copy > div > span.block {
    display: inline;
}
.cmn_footer_copy > div > span.block > span.part_block {
    display: inline;
    white-space: nowrap;
}
.cmn_footer_copy > div > span.block > span.part_block > span {
    color: #FFF;
}
.cmn_footer_copy > div > span.block > span.part_block > span.margin {
    margin-right: 20px;
    margin-left: 20px;
}
.cmn_footer_copy > div > span.block > span.part_block > span.strong {
    margin-right: 20px;
    margin-left: 20px;
}
.cmn_footer_copy > div:last-child {
    color: #FFF;
}
.cmn_footer_copy > div:last-child > span {
    color: #e4cc00;
    font-weight: 500;
}
.cmn_footer_logo {
    width: 140px;
    display: flex;
    align-items: center;
}
.cmn_footer_logo > a > img {
    width: 100%;
    display: block;
}

@media only screen and (max-width: 1400px) {

    /* sitemap popup */

    .sitemap_list {
        width: calc(100% - 400px);
    }
    .sitemap_gnb_list > li {
        padding: 0 50px;
    }
    .sitemap_gnb_list > li > .item_main {
        margin-right: 50px;
    }
    .sitemap_gnb_list > li > .item_main > a {
        font-size: 20px;
    }
    .sitemap_gnb_list > li > .item_sub > a {
        font-size: 14px;
        margin-right: 30px;
    }
    .sitemap_gnb_list > li > .item_sub > a::after {
        left: 18px;
    }
    .sitemap_logo {
        width: 400px;
    }

    /* common footer */ 
    .cmn_footer_copy > div > span.block {
        display: block;
    }
    .cmn_footer_copy > div > span.block > span.part_block > span.margin {
        margin-left: 0px;
    }

}

@media only screen and (max-width: 1200px) {

    /* common header */

    .header_gnb_wrap {
        width: calc(100% - 140px);
    }

    .header_etc {
        width: 100px;
        margin-left: 40px;
    }

}

@media only screen and (max-width: 992px) {

    /* common header */

    .header_logo_wrap {
        position: fixed;
    }

    .header_gnb_wrap {
        display: none;
    }

    .header_menu_trigger {
        position: fixed;
    }

    /* sitemap popup */

    .header_etc {
        display: none;
    }

    /* mobile gnb menu */

    .mob_lang_wrap {
        display: flex;
    }

    /* common footer */

    .cmn_footer_copy > p {
        font-size: 13px;
    }    
}

@media only screen and (max-width: 768px) {

    /* common header */

    .common_header {
        height: 70px;
    }
    .header_logo_wrap {
        top: 20px;
        left: 20px;
    }
    .header_menu_trigger {
        top: 15px;
        right: 10px;
    }

    /* mobile gnb menu */

    .mob_lang_wrap {
        top: 15px;
        right: 60px;
    }

    /* common footer */

    .common_footer {
        padding: 20px;
    }
    .cmn_footer_copy {
        width: 100%;
        margin-right: 0;
        order: 2;
    }
    .cmn_footer_copy > div {
        font-size: 12px;
    }
    .cmn_footer_logo {
        width: 100%;
        order: 1;
    }
    .cmn_footer_logo > a > img {
        width: 140px;
        margin-bottom: 20px;
    }
    .cmn_footer_copy > div > span.block > span.part_block {
        display: block;
    }
    .cmn_footer_copy > div > span.block > span.part_block > span.strong {
        margin-left: 0px;
    }

}