@charset "utf-8";

@font-face {
    font-family: 'GmarketSansMedium';
    src: url('../font/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root{
    --bg-navi-color:#003DD4;
    --d-blue-color:#003DD4;
    --black-color:#222;
    --navi-color:#145597;
    --blue-color:#287FDE !important;
    --red-color:#e61956 !important;
    --yellow-color:#E8661A !important;
    --bg-color:#EFEFEF;
    --bg-color-1: #f7f7f7;
    --border-color:#D5D5D5;

    --bdrdus-20:20px;
    --bdrdus-10:10px;
    --bdrdus-5:5px;

    --ani-1:all 0.2s ease;
}

/*공통*/
.wrap {display:flex; align-items:normal; justify-content:flex-start; flex-direction:column; min-height:100vh; overflow: hidden;}
.sub-layout { flex:1; }
.inner {margin:0 auto; width:100%; max-width:1440px; box-sizing: border-box;}
.auto-scroll {width:100%;height:100%;overflow-y:auto;}
.stop_scroll { height: 100% !important; overflow: hidden !important; }

*:focus-visible{ outline:3px solid #000; outline-offset: -3px; }

/*헤더 탑*/
#header-top {position: relative; background: linear-gradient(90deg, #338BEB, #3A99FF);min-width:375px;}
#header-top .header-top-in:after {position: absolute; content: ''; display: block; width:calc(50vw - 460px); min-width:285px;top:0; right:0; height:40px; background-color:#003DD4; border-radius: 0 0 0 30px;}
#header-top .inner {position: relative; z-index:1; display: flex; height:40px; align-items: center; justify-content: flex-end; flex-direction: row; flex-wrap: wrap;}
#header-top .inner .sns-box {display:flex; gap:10px; margin-right:40px;}
#header-top .inner .sns-box li {width:25px; height:25px;}
#header-top .inner .sns-box li a {display:block; width:100%; height:100%; background-repeat:no-repeat; background-position: center;}
#header-top .inner .sns-box li a.f_sns {background-image:url('../img/common/icon_facebook.svg');}
#header-top .inner .sns-box li a.i_sns {background-image:url('../img/common/icon_Instagram.svg');}
#header-top .inner .sns-box li a.k_sns {background-image:url('../img/common/icon_kakao.svg');}
#header-top .inner .sns-box li a.y_sns {background-image:url('../img/common/icon_youtube.svg');} 
#header-top .inner .sns-box li a.i_location {background-image:url('../img/main/eng_ic_location.png');} 
#header-top .inner .util-box {display:flex; gap:18px;}
#header-top .inner .util-box .link-btn {position:relative; display:inline-flex; color:#fff; font-size:15px; height:40px; align-items: center;}
#header-top .inner .util-box .link-btn:before {content: ''; display:block; position: absolute; top:14px; left:-11px; width:1px; height:12px; background-color:#ffffff52;}
#header-top .inner .util-box .language {padding-left:24px;  background:url('../img/common/icon_language.svg') no-repeat left center;}
#header-top .inner .util-box .language:before {display:none;}
#header-top .inner .util-box .icon-1 {padding-left:24px;  background:url('../img/common/icon_head-top-util-01.svg') no-repeat left center;}
#header-top .inner .util-box .icon-2 {padding-left:20px;  background:url('../img/common/icon_head-top-util-02.svg') no-repeat left center;}
.font-controls {position:absolute;left:0;top:0;width:auto;height:40px;display:flex;align-items: center;gap:6px;color:#fff;font-size:15px;}
.font-controls > span {padding-right:5px;}
.font-controls button{width:24px;height:24px;position:relative;display: inline-flex;justify-content: center;align-items: center;border:1px solid #ffffff80;}
.font-controls button:hover,
.font-controls button:active {border:1px solid #fff;background:#ffffff10}
.font-controls button.increase:before {content:"";display:block;width:13px;height:2px;background:#fff;}
.font-controls button.increase:after {content:"";display:block;width:2px;height:13px;background:#fff;position:absolute;left:50%;transform:translateX(-50%);}
.font-controls button.decrease:before {content:"";display:block;width:13px;height:2px;background:#fff;}
.font-controls button.reset:before {content:"";display:block;width:13px;height:14px;background:url(../img/sub/icon_seh_reset_w.png) 50% 50%;background-size:contain;}

/*헤더 메뉴*/
#header {position:relative; border-bottom:1px solid var(--border-color); width: 100%; height: 80px; z-index:99;}
#header.move{position: fixed !important; background-color: #fff !important; z-index: 101 !important; top: 0 !important;}
#header .hade-in {position:relative; width:100%; height:80px;}
#header .hade-in .logo {position:absolute; transform:translateY(-50%); top:50%;}
#header .hade-in .logo a {width:100%; display:block;}
#header .hade-in .logo a img {width:100%;}
#header .head-util {position:absolute; top:50%; right:0; transform:translateY(-50%);display:flex;gap:15px;}
#header .head-util a {display:inline-flex; width:30px; height:30px; background-position:center; background-repeat:no-repeat; background-position:center;}
#header .head-util a.search-btn {background-image:url("../img/common/icon_header_search.svg"); transition:all 0.4s ease;}
#header .head-util a.search-btn:hover{ animation: bounceTwice .6s ease;  }
@keyframes bounceTwice {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}
#header .head-util a.siteMap-btn {width:26px; height:22px; border-top:2px solid #fff; border-bottom:2px solid #fff; background:none !important; margin-top:2px; position:relative;}
.sub #header .head-util a.siteMap-btn,
.sub #header .head-util a.siteMap-btn:before{ border-color:#000; }
#header .head-util a.siteMap-btn:before {
    content: "";
    display: block;
    width: 50%;
    height: 2px;
    border-bottom:2px solid #fff;
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    transform: translateY(-50%);
    transition: width 0.3s ease, left 0.3s ease;
}
#header .head-util a.siteMap-btn:hover:before {
    width: 100% !important;
    right: 0;
}
#header .head-util .user-popup {position: absolute; top:40px; right:0px; width:250px; border:1px solid #ccc; padding:25px 20px 20px; background-color:#eff6fb; box-sizing: border-box; border-radius:20px; box-shadow: 2px 2px 4px 0px #0c0c0c1c;}
#header .head-util .user-popup::before {content:''; display:block; position:absolute; top:-9px; right:38px; width:37px; height:9px; background:url('../img/common/img_user_popup_be.png') no-repeat center;}
#header .head-util .user-popup .name {text-align: center; font-weight:bold; font-size:18px; margin-bottom:10px;}
#header .head-util .user-popup .btn-box {display:flex; align-items:center; justify-content: center; gap: 10px; width:100%; border-radius:40px; height:40px; background-color:#fff; box-shadow: 0 0 4px #c6cadf;}
#header .head-util .user-popup .btn-box a {transition:all 0.3s; margin-left:0; display:inline-flex; width:auto; height:auto; color:#555;}
#header .head-util .user-popup .btn-box a + a {margin-left:10px; position: relative;}
#header .head-util .user-popup .btn-box a + a::before {content:''; display:block; position:absolute; top:6px; left:-10px; width:1px; height:12px; background-color:#ccc;}
#header .head-util .user-popup .btn-box a:hover {color:#406ddd; font-weight:bold;}
#header .head-util .user-popup .btn-close {position: absolute; top:10px; right:10px; width:25px; height:25px; background-color:#fff; border:1px solid #ccc; border-radius:50%;}
#header .head-util .user-popup .btn-close:before{content: " ";display: block;position: absolute;width:13px;height: 1px;background: #333;transform: rotate(45deg);left: 5px;top: 12px;}
#header .head-util .user-popup .btn-close:after{content: " ";display: block;position: absolute;width: 1px;height: 13px;background: #333;transform: rotate(225deg);left: 11px;top: 6px;}


/*메뉴+사이트맵*/
#header .head-gnb {width:100%;height: 80px; max-width: 1440px;}
#header .hade-in .logo{width:221px; height:44px;}
#header .head-gnb .inner {padding-left:260px;}
.header-body.on {height: auto; position: absolute;width: 100%; background-color: #fff; z-index: 99;box-shadow: 3px 30px 30px rgba(0, 0, 0, 0.05);}
.head-gnb .gnb {width:100%;max-width:100%; height: 60px;padding-top: 7px;box-sizing: border-box; padding:0 !important;margin:0 auto;z-index:10;}
.head-gnb .depth-1 {float: left; display: block; box-sizing: border-box;white-space:nowrap;/*min-width:180px;*/ margin-top:5px; text-align: center;}  
.head-gnb .depth-1 .link:after{ content:" "; display:block; position:absolute; width:8px; height:8px; background:#003DD4; border-radius:10px; top:12px; right:6px; opacity:0; transition:all 0.4s ease; transform:translateY(-5px); }
.head-gnb .depth-1 .link{ position:relative; }
.head-gnb .depth-1.selected > .link:after,
.head-gnb .depth-1 > .link:hover:after{ opacity:1; transform:translateY(0); }
.head-gnb .depth-1 > a {display: inline-block; padding: 10px 0px; height: 50px;}
.head-gnb .depth-1 a > span {padding: 0px 30px; }
.head-gnb .depth-1 a:hover > span,
.head-gnb .depth-1 a.on > span {color:#003DD4;}
.head-gnb .gnb .depth-1.selected > a span {color:#003DD4;}
.head-gnb .gnb .depth-1 .text {  padding: 7px 15px;line-height:50px; font-weight: bold; font-size: 22px; width: 100%;}
.head-gnb .gnb .depth-2{display: block;transition: all .3s ease; width: 100%; height: 0; overflow: hidden;}  
.head-gnb .gnb .depth-2.on {padding: 0px 0 15px 0;transition: all ease 0.3s; height: auto;display: block;}
.head-gnb .gnb .depth-2-wrap > ul > li a{display: inline-block !important; width: 100%;}
.head-gnb .gnb .depth-2-wrap > ul > li a:is(:hover,:focus) span{ color:#003DD4 !important; }
.head-gnb ul.depth-2-ul{ display:flex; flex-direction: column; flex-wrap:wrap; height:200px; }
.head-gnb ul.depth-2-ul .text.small{font-size: 17px ; font-weight: 500;margin-right: 0; line-height: 1.8;word-break: keep-all;display:block;box-sizing: border-box;line-height:1.4;}
.head-gnb ul.depth-2-ul .text.small:hover{color: #406ddd;}
.head-gnb ul.depth-2-ul .link.windows .text.small:hover > img{filter: invert(39%) sepia(26%) saturate(5713%) hue-rotate(213deg) brightness(91%) contrast(88%);}
.head-gnb ul.depth-2-ul .link.windows {position: relative; display: inline-block;}
.head-gnb ul.depth-2-ul .link.windows .text.small > img {width: 13px; margin-left: 5px; vertical-align: baseline;}
.head-gnb .gnb .depth-1:nth-child(3) ul.depth-2-ul{ flex-direction: row; width:220px; }
.head-gnb .gnb .depth-1:nth-child(3) ul.depth-2-ul > li{ width:50%; }
.head-gnb .gnb .depth-1:nth-child(1){ margin:5px 40px 0; }
.head-gnb .gnb .depth-1:nth-child(2){ margin:5px 10px 0 30px; }
.head-gnb .gnb .depth-1:nth-child(3),
.head-gnb .gnb .depth-1:nth-child(4){ margin:5px 10px 0; }

/*.head-gnb .gnb .depth-1{ margin:5px 20px 0; }*/

#header .head-util .infoRls-btn{width:auto;max-height:32px;border-radius:20px;display:flex;justify-content:center;align-items: center;border:0;padding:5px 10px; padding-right:15px; margin-left:-10px; margin-right:-10px;}
#header .head-util .infoRls-btn span{width:auto !important; color:#fff;}
#header .head-util .infoRls-btn:before{content:"";display:block;width: 34px;height: 28px;background:url(../img/main/ic_lib.png) no-repeat center center; background-size:28px; filter: brightness(100) contrast(100) invert(0);}
#header .head-util .infoRls-btn:before{background:url(../img/main/ic_info.png) no-repeat center center;}
#header .head-util .infoRls-btn:hover{background:#000;} 

.sub #header .head-util .infoRls-btn span,
#header .header-body.on .head-util .infoRls-btn span,
#header:hover .head-util .infoRls-btn span,
#header.move .head-util .infoRls-btn span{width:auto !important; color:#000;}
.sub #header .head-util .infoRls-btn:before,
#header .header-body.on .head-util .infoRls-btn:before,
#header:hover .head-util .infoRls-btn:before,
#header.move .head-util .infoRls-btn:before{content:"";display:block;width: 34px;height: 28px;background:url(../img/main/ic_lib.png) no-repeat center center; background-size:28px; filter: brightness(0) contrast(100) invert(0);}
.sub #header .head-util .infoRls-btn:before,
#header .header-body.on .head-util .infoRls-btn:before,
#header:hover .head-util .infoRls-btn:before,
#header.move .head-util .infoRls-btn:before{background:url(../img/main/ic_info.png) no-repeat center center;}
.sub #header .head-util .infoRls-btn:hover,
#header .header-body.on .head-util .infoRls-btn:hover,
#header:hover .head-util .infoRls-btn:hover,
#header.move .head-util .infoRls-btn:hover{background:#f8f8f8;} 

#header  a.lib {width:auto;height:30px;position:relative;display: inline-flex;justify-content: center;align-items: center;}
#header  a.lib span {display: block; transform-origin:left center;width:0; overflow:hidden; transition: width 0.6s ease; }
#header  a.lib:hover:before ,
#header  a.lib:focus:before ,
#header  a.lib:active:before {border-color:#000;}
#header  a.lib:hover span,
#header  a.lib:focus span,
#header  a.lib:active span {width:60px;} 
#header  a.lib:before {content:"";display:block;width: 34px;height: 28px;background:url(../img/main/ic_lib.png) 50% 50% no-repeat;background-size:90%;filter: brightness(0) contrast(100) invert(1); }
.sub #header a.lib:before,
#header:hover a.lib:before,
#header.move  a.lib:before,
#header .header-body.on  a.lib:before {filter: brightness(0) contrast(100) invert(0);}


/* PC 사이트맵*/
.siteMap-menu {display:block; background: #fff; z-index: 99; position: absolute; visibility: hidden;border: 1px solid #e8e8e8; box-shadow: 3px 30px 30px rgba(0,0,0,0.05); top: calc(50vh - 150px); border:1px solid #333; width:98%; left: 15px;} 
#header .siteMap-menu.open{visibility: visible !important;}
.siteMap-menu.open::after{background-color: #000;display: block;position: fixed;width: 100%;height: 100%;top: 0;right: 0;transition: 0.2s opacity ease;opacity: 0.7;content: " ";z-index: -1;}
.siteMap-menu .siteMap-in .gnb{display: flex;}
.siteMap-menu .mo_menu_bottom {display:none;}
.siteMap-menu .siteMap-in .inner {padding: 0;}
.siteMap-menu .pc-top > a{width: 30px; height: 30px; display: block;}
.siteMap-menu .pc-top .close::before{content: " ";display: block;position: absolute;width: 25px;height: 1px;background: #333;transform: rotate(45deg);left: 3px;top: 15px;}
.siteMap-menu .pc-top .close::after{content: " ";display: block;position: absolute;width: 1px;height: 25px;background: #333;transform: rotate(225deg);left: 15px;top: 3px;}
.siteMap-menu .mo-top{display: none;}
.siteMap-menu .gnb li.depth-1{width: 25%;}
.siteMap-menu.pc .gnb li.depth-1 .more{display: none;}
.siteMap-menu.open .gnb li.depth-1 > .link{line-height: 60px;padding: 0 40px;font-size: 18px;background-color: #f8f8f8;font-weight: bold; display: block; text-align: center;}
.siteMap-menu .gnb li.depth-1 a .text {font-size: 18px; font-weight: bold;}
.siteMap-menu .gnb li.depth-1 a .text.small{font-weight: 500;word-break: keep-all;}
.siteMap-menu .gnb li.depth-1 a .text.small:hover{color: #406ddd;}
.siteMap-menu .gnb li.depth-1 > .depth-2{padding: 20px;}
.siteMap-menu.open .gnb li.depth-1{background-color: #fff;}
.siteMap-menu.open .gnb li.depth-1 > .depth-2{text-align: center;}
.siteMap-menu.open .gnb li.depth-1 > .depth-2 ul li {padding: 10px;}
.siteMap-menu.open .gnb li.depth-1 > .depth-2 ul li .link.windows {position: relative;}
.siteMap-menu.open .gnb li.depth-1 > .depth-2 ul li .link.windows .text.small > img {width: 13px; margin-top: 7px;margin-left: 5px;}
.siteMap-menu .gnb li.depth-1 a .text.small:hover > img {filter: invert(39%) sepia(26%) saturate(5713%) hue-rotate(213deg) brightness(91%) contrast(88%);}

/*SITEMAP-MENU*/
#header .header-in .siteMap-menu {position:fixed;top:0; visibility: hidden; left: 0;width:100%;height: 100%;border: none;box-shadow: 0 0 0;background: transparent;}
#header .header-in .siteMap-menu .siteMap-in  {border-radius: 0 0 0 100px;background: #fff;box-shadow: 10px 20px 20px #0003;position: absolute;top: 0;right: 0;max-width: 1380px;width: 100%;padding: 80px 50px; box-sizing: border-box; }/* 250718 YP add */
#header .header-in .siteMap-menu.open .gnb {display:flex;flex-flow:column;width:100%;padding: 20px 0 0 0;}
#header .header-in .siteMap-menu.open .gnb span{ text-shadow: none; }
#header .header-in .siteMap-menu.open .gnb li.depth-1 {background:transparent;display:flex;align-items: stretch;justify-content: start;flex-flow:row wrap;gap:30px;width:100%;}
#header .header-in .siteMap-menu.open .gnb li.depth-1 > .link {padding:0 0 0 40px;font-size:20px;color:#2c4b9c;font-family:"GmarketSansMedium";font-weight:600;background:transparent;display: block;text-align: left;width: 220px;box-sizing: border-box;}
#header .header-in .siteMap-menu.open .gnb li.depth-1 > .link span{ color:#2c4b9c; }
.siteMap-menu .gnb li.depth-1 > .depth-2 {flex:1;/* padding-top:5px; */}
#header .siteMap-menu.open .gnb li.depth-1 .depth-2-ul {background:transparent; display: flex;align-items: stretch;flex-wrap: wrap; gap:14px; justify-content: start;width: 100%;} 
#header .siteMap-menu.open .gnb li.depth-1 .depth-2 ul > li {flex: 0 0 15%;text-align: left;padding:0; } 
#header .siteMap-menu.open .gnb li.depth-1 .depth-2-ul > li:nth-child(3)   {flex: 0 0 150px;}
#header .siteMap-menu.open .gnb li.depth-1 .depth-2-ul > li .link {font-size:18px;color:#222;font-weight:500;font-family:"GmarketSansMedium";min-width:150px;height:30px;line-height:1.4;}
#header .siteMap-menu.open .gnb li.depth-1 .depth-2-ul > li .link  span{ color:#222; }
#header .siteMap-menu.open .gnb li.depth-1 .depth-2-ul li .link {
    display: inline;
    background-image: linear-gradient(120deg, #d8e3ffe8 0%, #d8e3ffe8 100%);
    background-repeat: no-repeat;
    background-size: 0 80%;
    background-position: 0 88%;
    transition: background-size 0.3s ease-in-out;
  }
  
#header .siteMap-menu.open .gnb li.depth-1 .depth-2-ul li .link:hover {
    background-size: 100% 80%;
  }
#header .siteMap-menu.open .gnb li.depth-1 .depth-2-ul ul {background:transparent;display:flex;flex-flow: column;justify-content: start;align-items: start;flex: 1;margin-top: 12px;}
#header .siteMap-menu.open .gnb li.depth-1 .depth-2-ul ul li .link {font-size:16px;color:#222;font-family: 'Pretendard', sans-serif;font-weight: 400;height:auto;}
#header .siteMap-menu.open .gnb li.depth-1 .depth-2-ul ul li .link span {padding:5px 10px 5px 20px;line-height:1.2;display:block;}
#header .siteMap-menu.open .gnb li.depth-1 .depth-2 ul li li {max-width:100%;} 
.siteMap-menu .pc-top {position:absolute;top:30px;right:30px;border:none;width: auto;display: flex;justify-content: end;align-items: center;}
.siteMap-menu .pc-top .close {border:none;position:relative;transition: transform 0.3s ease;} 
.siteMap-menu .pc-top .close:hover { transform: rotate(180deg);}
.siteMap-menu .pc-top  .sns-box {display: flex;flex-flow:row nowrap;justify-content: end;align-items: center;gap:10px;}
.siteMap-menu .pc-top  .sns-box a {display:block;width:40px;height:40px;border:1px solid #0003;border-radius:20px;display: flex;justify-content: center;align-items: center;}
.siteMap-menu .pc-top  .sns-box a:before {content:"";display: block;width:20px;height:20px;background:url(../img/main/ic_youtube2.png) no-repeat 50% 50%;background-size:contain;}
.siteMap-menu .pc-top  .sns-box a.y_sns:before {background-image:url(../img/main/ic_youtube2.png);}
.siteMap-menu .pc-top  .sns-box a.f_sns:before {background-image:url(../img/main/ic_facebook.png);}
.siteMap-menu .pc-top  .sns-box a.i_sns:before {background-image:url(../img/main/ic_insta.png);}
.siteMap-menu .pc-top  .sns-box a.i_location:before {background-image:url(../img/main/eng_ic_location.png);}
.siteMap-menu .pc-top  .sns-box a:hover {border-color:#000;}
.siteMap-menu .pc-top .util-box {margin:0 15px;display:flex;}
.siteMap-menu .pc-top .link-btn.language,
.siteMap-menu .pc-top .link-btn.lib,
.siteMap-menu .pc-top .infoRls-btn{width:auto;max-height:32px;border-radius:20px;display:flex;justify-content:center;align-items: center;border:0;padding:5px 10px; padding-right:15px;}
.siteMap-menu .pc-top .link-btn.language:before {content:"";display:block;width: 20px;height: 20px;background:url(../img/common/icon_language.svg) no-repeat center center;filter: brightness(0) contrast(100) invert(0) !important;}
.siteMap-menu .pc-top .link-btn.language span {color:#111; width:40px !important;}
.siteMap-menu .pc-top .link-btn.lib span,
.siteMap-menu .pc-top .infoRls-btn span{width:auto !important;}
.siteMap-menu .pc-top .link-btn.lib:before,
.siteMap-menu .pc-top .infoRls-btn:before{content:"";display:block;width: 34px;height: 28px;background:url(../img/main/ic_lib.png) no-repeat center center; background-size:28px; filter: brightness(0) contrast(100) invert(0) !important;}
.siteMap-menu .pc-top .infoRls-btn:before{background:url(../img/main/ic_info.png) no-repeat center center;}
.siteMap-menu .pc-top .link-btn.language:hover,
.siteMap-menu .pc-top .link-btn.language:focus,
.siteMap-menu .pc-top .link-btn.lib:hover,
.siteMap-menu .pc-top .link-btn.lib:focus,
.siteMap-menu .pc-top .infoRls-btn:hover,
.siteMap-menu .pc-top .infoRls-btn:focus{background:#f8f8f8;} 

/*페이징*/
.paging {margin-top:40px; margin-bottom:30px; display:flex; justify-content: center;}
.paging .paging_inner {display: flex; gap:5px;}
.paging .paging_inner .number {display:flex; margin:0 10px; gap:5px;}
.paging .paging_inner .number a:hover {text-decoration: underline;}
.paging .paging_inner a, .paging .paging_inner span {display:inline-flex; width:44px; height:44px;  text-align: center; justify-content: center; align-items: center; font-size:17px; font-weight: bold; box-sizing: border-box;}
.paging .paging_inner a.page_btn { border:1px solid var(--border-color); background-position:center; background-repeat: no-repeat; transition: var(--ani-1)}
.paging .paging_inner a.page_btn:hover {border-color:#222; box-shadow: 2px 2px 4px #00000038;}
.paging .paging_inner a.first {background-image: url('../img/sub/btn_first.png');}
.paging .paging_inner a.prev {background-image: url('../img/sub/btn_prev.png');}
.paging .paging_inner a.next {background-image: url('../img/sub/btn_next.png');}
.paging .paging_inner a.last {background-image: url('../img/sub/btn_last.png');}
.paging .paging_inner .page_on {border:1px solid var(--black-color); }

/*버튼*/
.btn {display:inline-block; padding:5px 10px; min-height:40px; font-size: 18px; color:var(--black-color); text-align: left; vertical-align: middle; border:1px solid var(--black-color);background-color:#fff; transition: var(--ani-1); box-sizing: border-box;}
.btn:hover {box-shadow: 2px 2px 4px #00000038;}
.btn.icon {display: inline-flex; align-items: center;justify-content: start; gap:10px; padding:5px 20px;white-space: nowrap;;}
.btn.icon:after {display:inline-block; content:''; background-repeat: no-repeat; background-position:center; background-size: 100%;}
.btn.small {min-height:35px; font-size:16px;}
.btn-reset:after {width:15px; height:17px; background-image:url('../img/sub/icon_seh_reset.png');}
.btn-reset.on:before,
.btn-reset:active:after {background-image:url('../img/sub/icon_seh_reset_w.png');}
.r_arrow:after {width:10px; height:18px; background-image: url('../img/sub/btn_r_arrow.png');}
.r_arrow.on:before,
.r_arrow:active:after {width:10px; height:18px; background-image: url('../img/sub/btn_r_arrow_w.png');}
.btn-i-arrow {position: relative; width:15px; height:20px;}
.btn-i-arrow:before {position:relative; display:block; content:''; right:-3px; width:10px; height:10px; transform: rotateZ(315deg); border-left:2px solid var(--black-color); border-bottom:2px solid var(--black-color); box-sizing: border-box;}
.btn-i-arrow.close:before {transform: rotateZ(135deg); top:3px;}
.btn.icon.right:after {display:none;}
.btn.icon.right:before {display:inline-block; content:''; background-repeat: no-repeat; background-position:center;}
.btn.b-s-40 {min-height:40px; font-size:18px;}
.btn-summary:before {width:20px; height:17px; background-image:url('../img/sub/btn_summary.svg');}
.btn-summary.on:before,
.btn-summary:active:before {background-image:url('../img/sub/btn_summary_w.svg');}
.btn-view:before {width:20px; height:18px; background-image:url('../img/sub/btn_search_b.svg');}
.btn-view.on:before,
.btn-view:active:before {background-image:url('../img/sub/btn_search_w.svg');}
.btn-down:before {width:19px; height:17px; background-image:url('../img/sub/icon_down.svg');}
.btn-down.on:before,
.btn-down:active:before {background-image:url('../img/sub/icon_down_w.svg');}
.btn-win-arrow:before {width:20px; height:21px; background-image:url('../img/sub/btn_win_arrow.png');}
.btn-win-arrow.on:before ,
.btn-win-arrow:active:before {background-image:url('../img/sub/btn_win_arrow_w.png');}
.glasses:before {width:18px; height:17px; background-image: url('../img/sub/btn_glasses.png');}
.glasses.on:before ,
.glasses:active:before {background-image: url('../img/sub/btn_glasses_w.png');}
.btn.icon.vod:before {width:19px; height:17px; background-image:url('../img/sub/icon_vod.png');width:20px;height:17px;}
.btn.icon.vod.on:before,
.btn.icon.vod:active:before {background-image:url('../img/sub/icon_vod_w.png');}
.btn.icon.go {display: inline-flex;justify-content: center;align-items: center;gap:5px;min-height:35px;padding:5px 10px;}
.btn.icon.go span {font-size:16px;}
.btn.icon.go:after {content:"";display:block;width:8px;height:8px;border:2px solid #888;border-bottom:none;border-left:none;transform:rotate(45deg);}

.btn.blue-btn {width:100%; text-align: center; border-color:var(--d-blue-color); color:var(--d-blue-color); border-radius:var(--bdrdus-10);}
.btn-i-close {position: relative; width:14px; height:14px; background: url('../img/sub/btn_close.png') no-repeat center;}
.btn-i-B-close {position: relative; width:19px; height:19px; background: url('../img/sub/btn_popup_close.svg') no-repeat center;}
.btn.big {padding: 5px 30px; min-width:250px; height:60px; text-align: center; justify-content:center;}
.btn.big span {font-size:20px; font-weight:500;}
a.btn.big { display:inline-flex; align-items: center; }
.btn:active {background-color: var(--d-blue-color); color:#fff; border-color: var(--d-blue-color);}
.btn-list:before {width:19px; height:19px; background-image:url('../img/sub/icon_list.png');}  
.btn-list.on:before,
.btn-list:active:before {background-image:url('../img/sub/icon_list_w.png');}
.btn-webzine:before {width:21px; height:19px; background-image:url('../img/sub/icon_webzine.png');}  
.btn-webzine.on:before,
.btn-webzine:active:before {background-image:url('../img/sub/icon_webzine_w.png');}
.btn.icon.on {background-color:#003dd4;transition: var(--ani-1);}  
.btn.icon.on span {color:#fff;}
.btn-pdf:before {width:19px; height:19px; background-image:url('../img/sub/icon_pdf.png');background-size:100%;}
.btn-pdf.on:before,
.btn-pdf:active:before {background-image:url('../img/sub/icon_pdf_w.png');} 
.disabled {opacity: .3; pointer-events:none;}
/*하단 버튼*/
.bottom-btn-wrap {display:flex; gap:10px;}
.bottom-btn-wrap.center {justify-content: center;flex:1;}
.bottom-btn-wrap {margin:50px 0;}

.btn.point{ background:#003dd4; border:0; }
.btn.point span{ color:#fff; }
.btn.point:hover{ background:#000; }

/*라벨*/
/*.label-box {display:inline-flex; justify-content: center; align-items: center; min-width:80px; height:33px; padding:2px 10px; font-size:14px; font-weight:500; box-sizing: border-box;}
.label-box.blue { color:var(--blue-color); border:1px solid var(--blue-color); background-color:#F5FAFF;}
.label-box.navi { color:var(--navi-color); border:1px solid var(--navi-color); background-color:#eaf3fa;}*/
.radius-box {margin-left:5px; padding:4px 10px; display:inline-block; background-color: var(--bg-color); font-size:14px; border-radius:15px; color:#222;}
.radius-box.type-02 {background-color:#e9eff8; padding:2px 10px;}
a.radius-box.type-02 {background-color:#e9eff8;border:1px solid #e9eff8;box-sizing: border-box; padding:2px 10px;white-space: nowrap;}
a.radius-box.type-02:hover {background-color:#e9eff8;color:#003dd4;border-color: #003dd4;box-shadow: 2px 2px 4px #00000038;}
.label-bg-box {display:inline-block;margin-left:5px; padding:3px 10px; display:inline-block; color:#fff; font-size:15px;white-space:nowrap; border-radius:2px;}
.label-bg-box.spss {background-color:#971837;}
.label-bg-box.xl {background-color:#16864c;}
.label-bg-box.default {background:#e9eff8;border:1px solid #ddd;color:#111;}

/*텍스트 리스트*/
.dot-list {display:flex;flex-flow:column nowrap;gap:10px;}
.dot-list > li {position: relative; padding-left:10px; line-height:1.4;}
.dot-list > li::before {position: absolute; display:block; content: ''; top:8px; left:0; width:5px; height:5px; border-radius:20px; background-color:#a1a1a1;} 

/*탭*/
.tab-content {display: none;}
.tab-button.on {display: block;}
.tab-content.show {display: block;}

/*커스텀스크롧바*/
.scrollbar::-webkit-scrollbar {
    width: 10px;
}
.scrollbar::-webkit-scrollbar-track { 
    background-color: #ebebeb;
}
.scrollbar::-webkit-scrollbar-thumb { 
    background-color: #c6cbce;
}
.scrollbar::-webkit-scrollbar-button {
    display: none;
}

.scrollbar::-webkit-scrollbar-track,
.scrollbar::-webkit-scrollbar-thumb {
    border-radius: 5px;
}
.scrollbar {overflow:auto;}
/*체크박스*/
.ck-box input[type="checkbox"] {/*visibility:hidden;*/ position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;}
.ck-box label {display: inline-block; position: relative; left: 0; min-height: 22px; padding-left: 32px; line-height: 22px; font-size: 15px; word-break: break-all; }
.ck-box input[type="checkbox"] + label:after { content: ""; position: absolute; top: 12px; margin-top: -12px; left: 0; width: 22px; height: 22px; background: #fff; border: 2px solid #ddd; -webkit-box-sizing: border-box; box-sizing: border-box; border-radius: 5px; }
.ck-box input[type="checkbox"]:checked + label {font-weight: 600; }
.ck-box input[type="checkbox"]:checked + label:before {
    content: '';
    display: block;
    position: absolute;
    width: 9px;
    height: 5px;
    left: 6px;
    top: 6px;
    background: none;
    border-top: 2px solid var(--blue-color);
    border-right: 2px solid var(--blue-color);
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    z-index: 1;
}
.ck-box input[type="checkbox"]:checked + label:after {}
.ck-box.title input[type="checkbox"] + label:before {top: 16px;}
.ck-box.title input[type="checkbox"]:checked + label:before {top: 6px;}
.ck-box input[type="checkbox"]:hover + label:after, .ck-box input[type="checkbox"]:focus + label:after { border-color: #000;}

/*라디오박스*/
.radio-box input[type="radio"] {/*visibility:hidden;*/ position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;}
.radio-box label {display: inline-block; position: relative; left: 0; min-height: 22px; padding-left: 20px; line-height: 22px; font-size: 15px; word-break: break-all; white-space:nowrap;}
.radio-box input[type="radio"] + label:after { content: ""; position: absolute; top: 15px; margin-top: -12px; left: 0; width: 16px; height: 16px; background: #fff; border: 2px solid #627ab7; -webkit-box-sizing: border-box; box-sizing: border-box; border-radius: 22px; }
.radio-box input[type="radio"]:checked + label {font-weight: 600; }
.radio-box input[type="radio"]:checked + label:before {
    content: '';
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    left: 4px;
    top: 7px;
    background: var(--d-blue-color);
    border-radius:22px;
    z-index: 1;
}
.radio-box.title input[type="radio"]:checked + label:after {border-color:var(--d-blue-color);}
.radio-box.title input[type="radio"] + label:before {top: 16px;}
.radio-box.title input[type="radio"]:checked + label:before {top: 6px;}
.radio-box input[type="radio"]:hover + label:after, .radio-box input[type="radio"]:focus + label:after { border-color: #000;}
.radio-box-wrap {display:flex; gap:10px; flex-wrap: wrap; }
.radio-box-wrap .radio-box {display:inline-flex; align-items:center; flex-wrap: wrap; }
.radio-box.annex .inp-box {width:200px;}

/*이메일 박스*/
.e_mail {display: flex; align-items: center; gap:10px; flex-wrap: wrap; }
.e_mail select {width:150px;}

/*동의 체크박스*/
.ck-box-yes input[type="checkbox"] {/*visibility:hidden; */position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;}
.ck-box-yes label {position:relative; display:flex; width:100%; min-height:40px; justify-content: space-between; align-items:center; cursor: pointer;}
.ck-box-yes label:before {transition: var(--ani-1); position: absolute; display:block; content:''; width:100%; min-height:40px; height:100%; border:2px solid #003dd4; font-weight:500; border-radius:5px; background-color:#fff; box-sizing: border-box;}
.ck-box-yes label span.txt {z-index:1; display:inline-flex; padding:10px 50px 10px 15px; min-height:40px; font-size:16px; align-items: center; font-weight:700; background-repeat: no-repeat; background-position:center left; box-sizing: border-box;}
.ck-box-yes input[type="checkbox"]:hover + label:before, .ck-box-yes input[type="checkbox"]:focus + label:before {box-shadow: 2px 2px 4px #00000038;}
.ck-box-yes .check-icon { width: 22px;height: 22px;border-radius: 50%; border:2px solid #003dd4;box-sizing:border-box;position: absolute; right: 15px; top: 50%; transform: translateY(-50%);}
.ck-box-yes .check-icon:before {content: ""; position: absolute; box-sizing: border-box; width: 25%; height: 50%; left: 50%; top: 50%; transform: translateX(-50%) translateY(-70%) rotateZ(40deg); border-right: 2px solid #fff; border-bottom: 2px solid #fff; margin-top:1px;}
.ck-box-yes [type="checkbox"]:checked + label:before {background-color:#003dd4;}
.ck-box-yes [type="checkbox"]:checked + label span.txt {color:#fff;}
.ck-box-yes [type="checkbox"]:checked + label .check-icon {background-color:#fff;}
.ck-box-yes [type="checkbox"]:checked + label .check-icon:before {border-color:var(--d-blue-color);}

/*동의 체크박스*/
.ck-box-yesno > div {position:relative; display:flex; min-height:40px; justify-content: space-between; align-items:center; gap:10px; padding:10px; width:100%; height:auto; border:2px solid #003dd4; font-weight:500; border-radius:5px; background-color:#fff; box-sizing: border-box;}
.ck-box-yesno div span.txt {z-index:1; display:inline-flex; padding:0; font-size:16px; align-items: center; font-weight:700; background-repeat: no-repeat; background-position:center left; box-sizing: border-box; flex:1;}
.ck-box-yesno div .radio-box{ flex:0; display: flex; align-items: center; }
.ck-box-yesno div .radio-box label{ font-size:16px; }

/*검색박스*/
.search-inp-box {display:flex; gap:5px;}
.search-inp-box input[type="text"] {width:250px; height:40px; border:2px solid var(--d-blue-color); font-size:18px; box-sizing: border-box;}
.search-inp-box .bnt-i-search {width:40px; height:40px; background:var(--d-blue-color) url('../img/sub/btn_search_w.svg') no-repeat center;}
.search-inp-box.b-s-40 input[type="text"] {height:40px;}
.search-inp-box.b-s-40 .bnt-i-search {height:40px;}
.sel-inp-box {display:flex;border-left:2px solid var(--d-blue-color);}
.sel-inp-box select {width:120px; height:40px; font-size:18px; border:2px solid var(--d-blue-color);border-left:0; border-right:0; box-sizing: border-box;}
.sel-inp-box input[type="text"] {border-left:0; width:300px;}
.search-inp-box.default {border:1px solid #e5e5e5;border-radius: 25px;padding:3px;}
.search-inp-box.default .sel-inp-box {border-left:0;border-radius: 25px 0 0 25px;}
.search-inp-box.default input[type="text"] { border:0;flex:1;}
.search-inp-box.default select {border:0;border-radius: 25px 0 0 25px;padding-left:15px;}
.search-inp-box.default  .bnt-i-search {border-radius:25px;}
.search-inp-box.default + .btn.icon.btn-reset {display:none;}
/*공통 - 레이아웃*/
.flex {display:flex;}
.inline-flex {display:flex;flex-flow:row wrap;}
.align-c-flex {display:flex;align-items: center; gap:10px;}
.flex-initial{flex: initial !important;}
.g-5 {gap:5px;}
.j-flex-end {justify-content: flex-end;}
.f-d-column {flex-direction: column;}
.t_red {color:var(--red-color);}
.m_t_5 {margin-top:5px !important;}
.m_t_10 {margin-top:10px !important;}
.m_t_20 {margin-top:20px !important;}
.m_t_40 {margin-top:40px !important;}
.m_t_80 {margin-top:80px !important;}
.m_l_5 {margin-left:5px !important;}
.m_t_-10{margin-top:-10px !important;}
.w_100pct {width:100% !important;}
.w_150px {width:150px !important;}
.h_120px {height:120px !important;}
.pad_10{ padding:10px; }
.position_r {position: relative !important;}
.min_w980 {min-width:980px !important;}

.top-cont-schBox .right-box .btn.icon.right.btn-down{ width:auto; padding:5px 10px; }

/*footer*/
#footer {width:100%;height:auto;background:#353849;position:relative;}
#footer .inner {padding:30px 0;height:100%;}
#footer .foot-wrap {display: flex;justify-content: start;align-items: start;flex-flow:row wrap;gap:40px;}
#footer .f-logo {flex:0 0 240px;height:50px;background:url(../img/common/logo_footer.png) no-repeat 0 50%;}
#footer .f-menu {flex:1;display:flex;flex-flow:column;align-items: start;gap:20px;white-space: nowrap;}
#footer .f-menu ul {display: flex;justify-content: start;align-items: center;flex-flow:row wrap;}
#footer .f-menu ul li {position:relative;}
#footer .f-menu ul li:before {content:"";display:block;width:1px;height:12px;background:#fff;position:absolute;top:12px;left:0;transform:translate3d(-50%);opacity:.3;}
#footer .f-menu ul li:first-child:before{display:none;}
#footer .f-menu ul li a{display:block; font-size:15px;color:#fff;padding:10px 20px;}
#footer .f-menu ul li a span {opacity: .8;}
#footer .f-menu ul li a:hover span,
#footer .f-menu ul li a:focus span,
#footer .f-menu ul li a:active span {opacity: 1;}
#footer copyright {display:flex;justify-content: start;gap:10px;flex-flow:column;padding-left:20px;opacity: .7;}
#footer copyright p {font-size:15px;color:#fff;font-weight: 300;}


/* 250703 YP 기존 미디어쿼리 하단 이동 */


/* 이슬 정보공개 사이트맵 */
.siteMapInfoRls-menu {position: fixed;width: 100%;height: 100%;top: 0;right: 0; z-index: 99; visibility:hidden; }
.siteMapInfoRls-menu .siteMap-in{display:block; background: #fff; border-radius:30px; z-index: 99; position: absolute; box-shadow: 3px 30px 30px rgba(0,0,0,0.05); top: 50%; left:50%; transform:translate(-50%,-50%); width: 500px; z-index: 2; overflow:hidden; 
    font-family: "GmarketSansMedium"; }
.siteMapInfoRls-menu:after {background-color: #000;display: block;position: fixed;width: 100%;height: 100%;top: 0;right: 0;transition: 0.2s opacity ease; opacity:0.7;content: " ";z-index: -1;} 
.siteMapInfoRls-menu.open{visibility: visible;}
.siteMapInfoRls-menu .siteMapInfoRls-in .gnb{display: flex;}
.siteMapInfoRls-menu .mo_menu_bottom {display:none;}
.siteMapInfoRls-menu .siteMapInfoRls-in .inner {padding: 0;}
.siteMapInfoRls-menu .pc-top{position: absolute; right: 15px; width: 30px; height: 30px; top: 15px;}
.siteMapInfoRls-menu .pc-top > a{width: 30px; height: 30px; display: block;}
.siteMapInfoRls-menu .pc-top .close::before{content: " ";display: block;position: absolute;width: 25px;height: 1px;background: #333;transform: rotate(45deg);left: 3px;top: 14px;}
.siteMapInfoRls-menu .pc-top .close::after{content: " ";display: block;position: absolute;width: 1px;height: 25px;background: #333;transform: rotate(225deg);left: 14px;top: 2px;}
.siteMapInfoRls-menu .mo-top{display: none;}
.siteMapInfoRls-menu .gnb li.depth-1{width: 100%;}
.siteMapInfoRls-menu.pc .gnb li.depth-1 .more{display: none;}
.siteMapInfoRls-menu.open .gnb li.depth-1 > .link{line-height: 60px;padding: 0 40px; background-color: #f8f8f8;font-weight: bold; display: block; text-align: center; color: #2c4b9c !important; box-shadow: none !important;}
.siteMapInfoRls-menu.open .gnb li.depth-1 > .link span{ font-size: 20px;color: #2c4b9c !important; text-shadow: none !important;}
.siteMapInfoRls-menu .gnb li.depth-1 a .text {font-size: 16px; font-weight: bold;}
.siteMapInfoRls-menu .gnb{padding:0 !important; }
.siteMapInfoRls-menu .gnb li.depth-1 a .text.small{font-weight: 500;word-break: keep-all;color:#333 !important; text-shadow: none !important;}
.siteMapInfoRls-menu .gnb li.depth-1 a .text.small:hover{color: #406ddd;}
.siteMapInfoRls-menu .gnb li.depth-1 > .depth-2{padding: 20px;}
.siteMapInfoRls-menu.open .gnb li.depth-1{background-color: #fff;}
.siteMapInfoRls-menu.open .gnb li.depth-1 > .depth-2{text-align: center;}
.siteMapInfoRls-menu.open .gnb li.depth-1 > .depth-2 ul li {padding: 10px;}
.siteMapInfoRls-menu.open .gnb li.depth-1 > .depth-2 ul li .link.windows {position: relative;}
.siteMapInfoRls-menu.open .gnb li.depth-1 > .depth-2 ul li .link.windows .text.small > img {width: 13px; margin-top: 7px;margin-left: 5px;}
.siteMapInfoRls-menu .gnb li.depth-1 a .text.small:hover > img {filter: invert(39%) sepia(26%) saturate(5713%) hue-rotate(213deg) brightness(91%) contrast(88%);}

/*SITEMAP-MENU ENG

.sub.eng #header .gnb{ padding:0 90px; }
.sub.eng #header .header-in .siteMap-menu {position:fixed;top:0;left: 0;width:100%;height: 100%;border: none;box-shadow: 0 0 0;background: transparent;}
.sub.eng #header .header-in .siteMap-menu .siteMap-in  {border-radius: 0 0 0 100px;background: #fff url(../img/main/eng_bg_menu.png) no-repeat right bottom;box-shadow: 10px 20px 20px #0003;position: absolute;top: 0;right: 0;max-width: 1260px;width: 100%;padding: 80px 50px; box-sizing: border-box;}
.sub.eng #header .header-in .siteMap-menu.open .gnb {display:flex;flex-flow:column;width:100%;padding: 20px 0 0 0;}
.sub.eng #header .header-in .siteMap-menu.open .gnb li.depth-1 {background:transparent;display:flex;align-items: stretch;justify-content: start;flex-flow:row wrap;gap:30px;width:100%;}
.sub.eng #header .header-in .siteMap-menu.open .gnb li.depth-1 > .link {padding:0 0 0 40px;font-size:20px;color:#2c4b9c;font-family:"GmarketSansMedium";font-weight:600;background:transparent;display: block;text-align: left;width: 220px;box-sizing: border-box;}
.sub.eng .siteMap-menu .gnb li.depth-1 > .depth-2 {flex:1;/* padding-top:5px; * /}
.sub.eng #header .siteMap-menu.open .font-controls{ margin-right:10px; }
.sub.eng #header .siteMap-menu.open .gnb li.depth-1 .depth-2-ul {background:transparent; display: flex;align-items: stretch;justify-content: start;width: 100%;} 
.sub.eng #header .siteMap-menu.open .gnb li.depth-1 .depth-2 ul > li {flex: 0 0 25%;text-align: left;padding:0;} 
.sub.eng #header .siteMap-menu.open .gnb li.depth-1 .depth-2-ul > li:nth-child(3)   {flex: 0 0 150px;}
.sub.eng #header .siteMap-menu.open .gnb li.depth-1 .depth-2-ul > li .link {font-size:18px;color:#222;font-weight:600;font-family:"GmarketSansMedium";min-width:150px;height:30px;line-height:1.4;}
.sub.eng #header .siteMap-menu.open .gnb li.depth-1 .depth-2-ul ul {background:transparent;display:flex;flex-flow: column;justify-content: start;align-items: start;flex: 1;margin-top: 12px;}
.sub.eng #header .siteMap-menu.open .gnb li.depth-1 .depth-2-ul ul li .link {font-size:16px;color:#222;font-family: 'Pretendard', sans-serif;font-weight: 400;height:auto;}
.sub.eng #header .siteMap-menu.open .gnb li.depth-1 .depth-2-ul ul li{ padding:5px 10px 5px 15px; }
.sub.eng #header .siteMap-menu.open .gnb li.depth-1 .depth-2-ul ul li .link span {padding:0px;line-height:1.2;display:inline;}
.sub.eng #header .siteMap-menu.open .gnb li.depth-1 .depth-2 ul li li {max-width:100%;} 
.sub.eng #header .siteMap-menu .pc-top {position:absolute;top:30px;right:30px;border:none;width: auto;display: flex;justify-content: end;align-items: center;}
.sub.eng #header .siteMap-menu .pc-top .close {border:none;position:relative;transition: transform 0.3s ease;} 
.sub.eng #header .siteMap-menu .pc-top .close:hover { transform: rotate(180deg);}
.sub.eng #header .siteMap-menu .pc-top  .sns-box {display: flex;flex-flow:row nowrap;justify-content: end;align-items: center;gap:10px;}
.sub.eng #header .siteMap-menu .pc-top  .sns-box a {display:block;width:40px;height:40px;border:1px solid #0003;border-radius:20px;display: flex;justify-content: center;align-items: center;}
.sub.eng #header .siteMap-menu .pc-top  .sns-box a:before {content:"";display: block;width:20px;height:20px;background:url(../img/main/ic_youtube2.png) no-repeat 50% 50%;background-size:contain;}
.sub.eng #header .siteMap-menu .pc-top  .sns-box a.y_sns:before {background-image:url(../img/main/ic_youtube2.png);}
.sub.eng #header .siteMap-menu .pc-top  .sns-box a.f_sns:before {background-image:url(../img/main/ic_facebook.png);}
.sub.eng #header .siteMap-menu .pc-top  .sns-box a.i_sns:before {background-image:url(../img/main/ic_insta.png);}
.sub.eng #header .siteMap-menu .pc-top  .sns-box a.i_location:before {background-image:url(../img/main/eng_ic_location.png);}
.sub.eng #header .siteMap-menu .pc-top  .sns-box a:hover {border-color:#000;}
.sub.eng #header .siteMap-menu .pc-top .util-box {margin:0 15px;}
.sub.eng #header .siteMap-menu .pc-top .link-btn.language {width:auto;max-height:32px;border-radius:20px;display:flex;justify-content:center;align-items: center;gap:10px;border:1px solid #0008;padding:5px 10px;box-sizing:border-box;}
.sub.eng #header .siteMap-menu .pc-top .link-btn.language:before {content:"";display:block;width: 20px;height: 20px;background:url(../img/common/icon_language.svg) no-repeat center center;filter: brightness(0) contrast(100) invert(0);}
.sub.eng #header .siteMap-menu .pc-top .link-btn.language span {color:#111;}
.sub.eng #header .siteMap-menu .pc-top .link-btn.language:hover {border-color:#000;} 
.sub.eng #header .go{font-size:14px !important;height:38px;width:100%;padding:12px 20px 8px 20px;justify-content: space-between;}
.sub.eng #header .go:after {content: "";display: block;width: 28px;height: 13px;background: url(../img/main/eng_ic_go.png) no-repeat center right; background-size: cover;} 
*//* 250724 YP */

/* 영문 서브 헤더 변경 */
.sub.eng .header-top-in {background:transparent;}
.sub.eng #header-top {position:absolute;top:0;left:0;}
.sub.eng #header-top .inner .util-box .language{padding-left:30px;}
.sub.eng #header-top .inner .util-box .language span {font-size:16px;}
.sub.eng #header-top {background:transparent;}
.sub.eng #header-top .header-top-in:after {display:none;}
.sub.eng #header {width:80px;height:100%;position:fixed;top:0;right:0;background:#fff;border:none;z-index:10; box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);} 
.sub.eng #header .header-in ,
.sub.eng #header .header-body,
.sub.eng #header .hade-in {width:100%;height:100%;padding:0;display:flex;justify-content: center;box-sizing: border-box;} 
.sub.eng #header .header-in h1 {width:40px;height:101px;position:absolute;top:50%;transform:translateY(-50%); margin-top:-60px;}
.sub.eng #header .header-in h1 a {display:block;}

.sub.eng #header .header-in .inner {height:100%;}
.sub.eng #container.inner {position:relative;min-height:calc(100vh - 260px);margin: 70px auto;z-index: 1;display:flex;align-items: center;}
.sub.eng #header .head-util {position:absolute;top:10px;right:0;width: auto;height:35px;transform: translate(-25px, 10px);display:flex;justify-content:end;flex-flow:row nowrap;align-items: center;}
.sub.eng #header .head-util button {width:35px;height:35px;}
.sub.eng #header .head-util .util-box {position:relative;display: flex;justify-content: start;align-items: center;margin-right:80px;}
.sub.eng #header .head-util .font-controls,
.sub.eng #header .head-util .link-btn.language,
.sub.eng #header .head-util .login-btn,
.sub.eng #header .head-util .sns-box,
.sub.eng #header .search-btn{display:none;}  
.sub.eng #header .head-util a.siteMap-btn {
    position: absolute;
    top: 5px;
    right: 0;
    background-image: url(../img/common/icon_header_menu.png) !important;
    border: 0 !important;
    height: 25px;
    margin-top: 0;
    background-repeat: no-repeat !important;
}
.sub.eng #header .head-util a.siteMap-btn:before {content:"";display: block;width:50%;height:4px;background:#fff;position:absolute;top:50%;left:0;right:auto; border:0; transform:translateY(-50%);transition: width 0.3s ease, left 0.3s ease;}
.sub.eng #header .head-util a.siteMap-btn:hover:before {width: 0 !important; left: 0;}
.sub.eng #header .header-in .siteMap-menu {position:fixed;top:0;left: 0;width:100%;height: 100%;border: none;box-shadow: 0 0 0;background: transparent;}
.sub.eng #header .header-in .siteMap-menu .siteMap-in  {border-radius: 0 0 0 100px;background: #fff url(../img/main/eng_bg_menu.png) no-repeat right bottom;box-shadow: 10px 20px 20px #0003;position: absolute;top: 0;right: 0;max-width: 1260px;width: 100%;padding: 80px 50px;}
.sub.eng #header .header-in .siteMap-menu.open .gnb {display:flex;flex-flow:column;width:100%;padding: 20px 0 0 0;}
.sub.eng #header .header-in .siteMap-menu.open .gnb li.depth-1 {background:transparent;display:flex;align-items: stretch;justify-content: start;flex-flow:row wrap;gap:30px;width:100%;}
.sub.eng #header .header-in .siteMap-menu.open .gnb li.depth-1 > .link {padding:0 0 0 40px;font-size:20px;color:#2c4b9c;font-family:"GmarketSansMedium";font-weight:600;background:transparent;display: block;text-align: left;width: 220px;box-sizing: border-box;}
.sub.eng .siteMap-menu .gnb li.depth-1 > .depth-2 {flex:1;/* padding-top:5px; */}

.sub.eng #header .siteMap-in .font-controls button{ width:40px; height:40px; border-radius:40px;     border: 1px solid #0003; }
.sub.eng #header .siteMap-in .search-btn{ width:40px; height:40px; border-radius:40px; border: 1px solid #0003;  display:block; /*margin-left:10px;*/ position:relative;}
.sub.eng #header .siteMap-in .search-btn:before{ content:" "; display:block; width:24px; height:24px; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); background:url("../img/common/icon_header_search.svg"); background-size:24px; margin-left:-1px; margin-top:-1px; }
.sub.eng #header .siteMap-in .search-btn:hover,
.sub.eng #header .siteMap-in .font-controls button:hover{ border:1px solid #000; }

/*.eng-main #header .siteMap-menu.open .font-controls{ margin-right:10px; }*//* 250724 YP */
.eng-main #header .siteMap-in .font-controls button{ width:40px; height:40px; border-radius:40px;     border: 1px solid #0003; }
.eng-main #header .siteMap-in .search-btn{ width:40px; height:40px; border-radius:40px; border: 1px solid #0003;  display:block; margin-left:10px; position:relative;}
.eng-main #header .siteMap-in .search-btn:before{ content:" "; display:block; width:24px; height:24px; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); background:url("../img/common/icon_header_search.svg"); background-size:24px; margin-left:-1px; margin-top:-1px; }
.eng-main #header .siteMap-in .search-btn:hover,
.eng-main #header .siteMap-in .font-controls button:hover{ border:1px solid #000; }
.eng-main #header .siteMap-in .font-controls {position:relative; left:0;top:0;width:auto;height:40px;display:flex;align-items: center;gap:6px;color:#000;font-size:15px;}
.eng-main #header .siteMap-in .font-controls > span {padding-right:5px;}
.eng-main #header .siteMap-in .font-controls button{width:38px;height:38px;position:relative;display: inline-flex;justify-content: center;align-items: center;border:1px solid #0005;border-radius:18px;}
.eng-main #header .siteMap-in .font-controls button:hover,
.eng-main #header .siteMap-in .font-controls button:active {border:1px solid #000;background:transparent;}
.eng-main #header .siteMap-in .font-controls button.increase:before {content:"";display:block;width:13px;height:2px; background:#000;}
.eng-main #header .siteMap-in .font-controls button.increase:after {content:"";display:block;width:2px;height:13px;position:absolute;left:50%;transform:translateX(-50%); background:#000;}
.eng-main #header .siteMap-in .font-controls button.decrease:before {content:"";display:block;width:13px;height:2px; background:#000;}
.eng-main #header .siteMap-in .font-controls button.reset:before {content:"";display:block;width:13px;height:14px;background:url(../img/main/ic_reset.png) 50% 50% no-repeat;background-size:contain;}

/*footer eng > main *//* 250703 YP 이동 */
.eng-main #footer {width:100%;min-height:120px;height:120px;background:#333740;position:relative;left:0;bottom:0;z-index:10;box-sizing: border-box;}
.eng-main #footer .inner {padding:30px 0;}
.eng-main #footer .foot-wrap {display: flex;justify-content: start;align-items: center;flex-flow:row wrap;gap:40px;}
.eng-main #footer .f-logo {flex:0 0 150px;height:60px;background:url(../img/main/eng_logo_footer.png) no-repeat 0 50%;}
.eng-main #footer copyright {display:flex;justify-content: start;gap:10px;flex-flow:column;padding-left:0;opacity: .7;}
.eng-main #footer copyright p {font-size:15px;color:#fff;font-weight: 300;}

/*footer eng > sub *//* 250703 YP 이동 */
.eng #footer {width:100%;min-height:120px;height:120px;background:#333740;position:relative;left:0;bottom:0;z-index:10;box-sizing: border-box;}
.eng #footer .inner {padding:30px 0;}
.eng #footer .foot-wrap {display: flex;justify-content: start;align-items: center;flex-flow:row wrap;gap:40px;}
.eng #footer .f-logo {flex:0 0 150px;height:60px;background:url(../img/main/eng_logo_footer.png) no-repeat 0 50%;}
.eng #footer copyright {display:flex;justify-content: start;gap:10px;flex-flow:column;padding-left:0;opacity: .7;}
.eng #footer copyright p {font-size:15px;color:#fff;font-weight: 300;}



/*메인 팝업*/
.main_popup {
    position: fixed;
    top: 150px;
    left: 50%;
    margin-left:-700px;
    background: white;
    border: 1px solid #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 99;
    min-width:500px;
    padding-top:50px;
}
.main_popup .pop_top{
    position:absolute;
    height:50px;
    padding:15px;
    box-sizing: border-box;
    width:100%;
    border-bottom:1px solid #ddd;
    background:#fff;
    display:flex;
    justify-content: space-between;
    align-items: center;
    top:0;
    left:0;
}

.main_popup .pop_top .today_close{
    display:inline-flex;
    gap:10px;
    align-items: center;
    font-family: 'GmarketSansMedium';
    font-size:15px;
}

.main_popup .pop_img{
    max-width:500px;
    position:relative;
}

.main_popup .pop_img .main_pop_item{
    max-width:500px;
    display:flex;
    justify-content: center;
    align-items: center;
    opacity:1;
    transform:translateY(0);
}

.main_popup .pop_img .slide-contr{
    position:relative;
    bottom:0;
    left:0;
    background:rgba(0,0,0,1);
    display:flex;
    justify-content: center;
    align-items: center;
    gap:5px;
    width:100%;
    z-index: 10;
    height:35px;
    box-sizing: border-box;
    padding:0 20px;
}

.main_popup .pop_img .main_pop_item img{
    max-width:100%;
    object-fit: contain;
}

.close-btn {
    position: relative;
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    border-radius:20px;
}
.close-btn:hover{
    background:#eee;
}

.close-btn::before,
.close-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background-color: #333;
    transform-origin: center;
}

.close-btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.pop_img .slide-contr .swiper-pagination{
    position:relative;
    top:auto;
    left:auto;
    right:auto;
    bottom:auto;
    width:auto;
    gap:7px;
}

.pop_img .slide-contr .swiper-pagination-bullet{
    width:10px;
    height:10px;
    opacity:0.5;
}
.pop_img .slide-contr .swiper-pagination-bullet-active{
    opacity:1;
}

.pop_img .swiper-button-next, 
.pop_img .swiper-button-prev{
    width:20px;
    height:20px;
    position:relative;
    top:auto;
    left:auto;
    right:auto;
    bottom:auto;
    margin-top:0;
}
.pop_img .swiper-button-prev:after,
.pop_img .swiper-button-next:after{
    width:8px;
    height:8px;
}

/* 250701 YP sitemap edit 
.siteMap-menu .pc-top{ right: 60px !important; }
.siteMap-menu .close{ display: block; width: 30px; height: 30px; position: absolute; top: 35px; right: 30px; border:none; transition: transform 0.3s ease; }
.siteMap-menu .close::before{ content: " "; display: block; width: 25px; height: 1px; position: absolute; left: 2px; top: 15px; background: #333; transform: rotate(45deg); }
.siteMap-menu .close::after{ content: " "; display: block; width: 1px; height: 25px; position: absolute; left: 14px; top: 3px; background: #333; transform: rotate(225deg); }
.siteMap-menu .close:hover,
.siteMap-menu .close:focus { transform: rotate(180deg);}
*/

/* 250718 YP */
#header .hade-in .logo a{ margin-left: -5px; }
#header .head-gnb .inner{ padding-right: 430px; }
.siteMap-menu .pc-top{ gap: 10px; }
.siteMap-menu .pc-top .util-box{ margin: 0; }
.siteMapInfoRls-menu .siteMap-in{ z-index: 100; }
.main_popup:before { content: '';  /*position: fixed; top: 0; right: 0; bottom: 0; left: 0; background: rgba(0, 0, 0, 0.7); z-index: -1;*/ }

.sub.eng #header .siteMap-menu.open .gnb li.depth-1 .depth-2 ul > li{ flex: 0 0 calc(33% - 7px); }

/* 개인정보처리방침 색상 250804 YP */
.h_p_color{ color: #2c4b9c !important; }/* 사이트맵 내 */
.f_p_color{ color: #f3e716 !important; }/* footer */


/* main popup size */
.main_popup .pop_img .swiper-wrapper { max-height: 650px !important;}



/*반응형*/

@media(max-width: 1600px) {

    /* 250718 YP */

}
@media(max-width: 1440px) {
    
    .inner {padding-left:10px; padding-right:10px; margin:0 auto;} 
    .font-controls {padding-left:15px;}
    #footer .foot-wrap  {gap:20px;}
    #footer .f-menu ul{flex-flow: row nowrap;}
    #footer .f-menu {white-space: nowrap;}

    /* 250718 YP */
    .inner { padding-left:20px; padding-right:20px; }
    #header .head-gnb .gnb {padding: 0;}
    #header .head-gnb .inner{ padding: 5px 350px 0 310px; padding: 5px 430px 0 250px; }
    #header .head-gnb .depth-1{ margin: 0 !important; display: flex; flex-wrap: wrap; justify-content: center; width: 25%; }
    #header .head-gnb .gnb .depth-1:nth-child(3) ul.depth-2-ul{ width: auto; }
    #header .head-gnb ul.depth-2-ul .text.small{ padding: 8px 3px; white-space: normal; line-height: 1.2; }
    
    #header .header-body.on .head-gnb .inner{ padding: 5px 300px 0 260px; padding: 5px 430px 0 250px; transition: all 0.4s ease;}
    #header .header-body.on .head-gnb .gnb .depth-1{ width: 23%; }
    #header .header-body.on .head-gnb .gnb .depth-1:nth-child(3),
    #header .header-body.on .head-gnb .gnb .depth-1:nth-child(4){ width: 27%; }

    #header .siteMap-menu.pc .siteMap-in{ padding: 80px 20px !important; } 
    #header .siteMap-menu.open .gnb li.depth-1 > .link{ width: 160px; }
    #header .siteMap-menu.open .gnb li.depth-1 .depth-2-ul > li:nth-child(3){ flex: 0 0 15%; }

    .siteMapInfoRls-menu .siteMap-in .inner{ padding: 0; }

	#footer .inner{ padding-left: 20px; padding-right: 20px; }
    #footer .f-menu ul{ gap: 0 40px; padding: 5px 0;}
    #footer .f-menu ul li:before{ left: -20px; top: 8px; }
    #footer .f-menu ul li a{ padding: 5px 0; }
	#footer copyright{ padding-left: 0; }

    

}
@media(max-width: 1280px) {
    
    /* 250703 YP 
    .head-gnb .gnb{ display: none; }

    .head-gnb .gnb .depth-1 .text{ font-size: 20px; }
    .head-gnb ul.depth-2-ul .text.small{ font-size: 15px; }
    */

    /* 250718 YP */
    #header .head-gnb .inner{ padding: 5px 160px 0 300px;}
    #header .header-body.on .head-gnb .inner{ padding: 5px 120px 0 260px; }
    #header .head-util{ gap: 20px !important; }
    #header .head-util .font-controls,
    #header .head-util a.link-btn,
    #header .head-util a.info{ display: none !important; }
    #header .siteMap-menu.open .gnb li.depth-1 .depth-2 ul > li{ flex: 0 0 18.5% !important; }


}
@media(max-width: 1080px) {

    #header .header-body.on .head-gnb .inner{ padding: 5px 100px 0 240px; }

}
@media(max-width: 1024px) {

    /* 헤더 메뉴 */
    .head-gnb .gnb, #header .head-util a.login-btn, #header .head-util a.user-btn, #header .head-util .user-popup {display: none;}
    
    /* 모바일 버전 사이트맵 */
    /*
    .siteMap-menu .gnb{width: calc(100% - 50px); background-color: #fff; position: fixed; z-index: 99;right: -100%; height: 100%;transition: right .3s ease-in-out;top: 0;}
    .siteMap-menu .gnb.open{right: 0%;display: inline-block; overflow-y: auto; padding-top: 50px;}
    .siteMap-menu .gnb li.depth-1 {display: inline-block; width: 100%;border-bottom: 1px solid #e8e8e8;position: relative; padding: 0;}
    .siteMap-menu .gnb li.depth-1:last-child{margin-bottom:150px}
    .siteMap-menu .gnb li.depth-1 a > span{width: 100%;padding: 5px 10px;font-size: 20px; display: block; font-weight: 500; box-sizing: border-box;}
    .siteMap-menu.open {top: 0; border: unset; background: transparent;}
    .siteMap-menu .siteMap-in .inner {position: relative;}
    .siteMap-menu.open .gnb li.depth-1 > .link {text-align: left; padding: 0; background: #fff;}
    .siteMap-menu.open .gnb li .more{width: 10px; height: 7px;position: absolute; right: 25px; transform: rotate(225deg);top: 25px;}
    .siteMap-menu.open .gnb li .more::after{width: 2px;height: 12px;content: '';display: block;position: absolute;top: 0;background: #000;}
    .siteMap-menu.open .gnb li .more::before{width: 12px;height: 2px;content: '';display: block;position: absolute;top: 0;background: #000;}
    .siteMap-menu .gnb li.depth-1.on .more{transform: rotate(45deg); transition: 0.5s ease;}
    .siteMap-menu .mo-top{width: calc(100% - 50px); border: none; height: 50px;background-color: #f8f8f8; display: block; position: fixed; right: 0; top: 0; z-index: 100; right: -100%; transition: right .3s ease-in-out;}
    .siteMap-menu .mo-top.open{right: 0;}
    .siteMap-menu .close{display: block;font-size: 0px;position: absolute;right: 15px;top: 15px;cursor: pointer;width: 20px;height: 20px;z-index: 100;}
    .siteMap-menu .close::before{content: " ";display: block;position: absolute;width: 20px;height: 2px;background: #333;transform: rotate(45deg);left: 0;top: 9px;}
    .siteMap-menu .close::after{content: " ";display: block;position: absolute;width: 2px;height: 20px;background: #333;transform: rotate(225deg);left: 8px;top: 0px;}
    .siteMap-menu .close.open{display: block;}
    .siteMap-menu .pc-top{display: none;}
    .siteMap-menu .depth-2{display: none; padding-top: 0;}
    .siteMap-menu .depth-2.on{display: block; padding: 0px !important;}
    .siteMap-menu .depth-2-wrap {width: 100%;background-color: #f8f8f8;padding:0px;}
    .siteMap-menu.open ul li.depth-1 > .depth-2{margin-top: 0px;}
    .siteMap-menu .gnb li.depth-1 > .depth-2 ul li {padding: 0px; text-align: left;}
    .siteMap-menu .gnb li.depth-1 a .text.small {font-weight: 500; font-size: 16px;}
    .mo_background {background-color: #000; display: none;position: fixed; width: 100%; height: 100%;top: 0;right: 0; transition: 0.2s opacity ease; opacity: 0.7;z-index: 98;}
    .mo_background.open{display: block;}
    *//* 250718 YP */

    /* 로그아웃 & 마이페이지  */
    .siteMap-menu .mo_menu_bottom{ z-index: 99; display: flex; bottom: 0; padding: 10px; justify-content: center; align-items: center; width: calc(100% - 50px); position: fixed;box-sizing: border-box; background-color: #27389f; opacity: 0; right: -100%;height: 50px; transition: right .3s ease-in-out;}
    .siteMap-menu.open .mo_menu_bottom{opacity: 1; right: 0; gap:20px;}
    .siteMap-menu .mo_menu_bottom a {font-size: 16px; color:#fff; position: relative; display:inline-block;}
    .siteMap-menu .mo_menu_bottom a + a {padding-left:20px;}
    .siteMap-menu .mo_menu_bottom a + a::before {content:''; position: absolute; display:block; margin-top:1px; top:50%; transform:translateY(-50%); left:0; width:1px; height:12px; background-color:#ffffff75;}
    /*.siteMap-menu .mo_menu_bottom .login-btn::before {background:url("../img/common/btn_login_header.png") no-repeat left; background-size: 12px; content: ""; display: inline-block; width: 16px; height: 16px;}*/ 

    /* 250703 YP */
    #gnb{ display: none; }
    #footer .foot-wrap {flex-flow:column wrap;}
    #footer .f-logo {flex:0 0 50px;width:100%;}
    #footer .f-menu {flex:1 1 100%;width:100%;}
    
    /* 250718 YP */
    .siteMap-menu.open::after{ opacity: 0.8; }
    #header .header-in .siteMap-menu .siteMap-in{ width: 630px !important; height: 100%; z-index: 99; padding: 0 !important; border-radius: 0 !important; background-image: unset !important; }
    #header .header-in .siteMap-menu .siteMap-in .inner{ height: 100%; }
    #header .header-in .siteMap-menu .pc-top{ position: unset; flex-wrap: wrap; justify-content: flex-end; gap: 10px; width: 100%; padding: 15px 40px 15px 40px; background: #e8e8e8; box-sizing: border-box; }
    #header .header-in .siteMap-menu .pc-top .util-box{ position: unset; flex-wrap: wrap; margin: 0; }
    #header .header-in .siteMap-menu .gnb{width: calc(100% - 50px); background-color: #fff; position: fixed; z-index: 99;right: -100%; height: 100%;transition: right .3s ease-in-out; top: 0;}
    #header .header-in .siteMap-menu .gnb.open{right: 0%;display: inline-block; overflow-y: auto; padding-top: 50px;}
    #header .header-in .siteMap-menu .gnb li.depth-1 {display: inline-block; width: 100%;border-bottom: 1px solid #e8e8e8;position: relative; padding: 0;}
    #header .header-in .siteMap-menu .gnb li.depth-1:last-child { margin-bottom: 4px; }
    #header .header-in .siteMap-menu .gnb li.depth-1 a > span{width: 100%;font-size: 20px; display: block; font-weight: 500; box-sizing: border-box; font-size: 18px;}
    #header .header-in .siteMap-menu .gnb li.depth-1 a > i{ width: 40px; height: 40px; position: absolute; top: 10px; right: 10px; }
    #header .header-in .siteMap-menu .gnb li.depth-1 a > i:before{ 
        content: ''; display: block; position: absolute; width: 12px; height: 12px; top: 17px; right: 6px; background: none; border-top: 2px solid #0003; border-right: 2px solid #0003; 
        -webkit-transform: translate(-50%, -50%) rotate(135deg); -ms-transform: translate(-50%, -50%) rotate(135deg); transform: translate(-50%, -50%) rotate(135deg); transition: .2s;
    }
    #header .header-in .siteMap-menu .gnb li.depth-1.active a > i:before{ top: 24px; transform: translate(-50%, -50%) rotate(315deg); border-color: #000; }
    #header .header-in .siteMap-menu .depth-2{display: none; padding-top: 0;}
    /*#header .header-in .siteMap-menu .depth-1.active .depth-2{display: block; padding: 0px !important;}*/
    #header .header-in .siteMap-menu .depth-2-wrap {width: 100%;background-color: #f8f8f8;padding:0px;}
    #header .header-in .siteMap-menu .gnb li.depth-1 > .depth-2 ul li {padding: 0px; text-align: left;}
    #header .header-in .siteMap-menu .gnb li.depth-1 a .text.small {font-weight: 500; font-size: 16px;}
    #header .header-in .siteMap-menu .close{display: block;font-size: 0px;position: absolute; top: 20px; left: -60px; width: 40px;height: 40px;z-index: 100;}
    #header .header-in .siteMap-menu .close::before{content: " ";display: block;position: absolute;width: 30px;height: 2px;background: #fff;transform: rotate(45deg);left: 6px;top: 19px;}
    #header .header-in .siteMap-menu .close::after{content: " ";display: block;position: absolute;width: 2px;height: 30px;background: #fff;transform: rotate(225deg);left: 20px;top: 5px;}
    #header .header-in .siteMap-menu .close.open{display: block;}
    
    .mo_background {background-color: #000; display: none;position: fixed; width: 100%; height: 100%;top: 0;right: 0; transition: 0.2s opacity ease; opacity: 0.7;z-index: 98;}
    .mo_background.open{display: block;}
    
    #header .header-in .siteMap-menu.open .siteMap-in .inner{ overflow-y: auto; height: calc(100% - 82px) !important; padding: 20px 40px 40px; }
    #header .header-in .siteMap-menu.open .siteMap-in .gnb{ position: unset; padding-top: 0 !important; background: unset; }
    #header .header-in .siteMap-menu.open .gnb li.depth-1{ flex-direction: column; flex-wrap: wrap; gap: 0 !important; }
    #header .header-in .siteMap-menu.open .gnb li.depth-1 > .link { width: 100% !important; text-align: left; padding-left: 20px !important; background: #fff; }
    #header .header-in .siteMap-menu.open .gnb li.depth-1 > .depth-2{ padding: 0;border-top: 1px solid #e8e8e8; }
    #header .header-in .siteMap-menu.open .gnb li.depth-1 .depth-2-ul{ box-sizing: border-box; flex-direction: column !important; padding: 20px 40px !important; gap: 16px; }
}
@media screen and (max-width: 980px) {

/************
	sub
************/
    /* 250728 YP */
    .popup-wrap.on,
	.popup-wrap .popup-box {width:100%;}

}
@media screen and (max-width: 768px) { 
    #header .hade-in .logo {width:150px;} 
    .font-controls {display: none;}
    #footer .f-menu ul{flex-flow:row wrap;}
    
    /* 250703 YP */
    #header .hade-in .logo{ width:auto; zoom: 0.9; }
    #footer {zoom:.9;} 
    #footer copyright {white-space:normal;}

    /* 250721 YP */
    #header .header-in .siteMap-menu .siteMap-in{ width: calc(100% - 80px) !important; }
    #header .header-in .siteMap-menu.open .pc-top{ padding: 20px 10px; justify-content: center; gap: 10px 20px; }
    #header .header-in .siteMap-menu.open .pc-top .util-box > a{ height: 24px; }
    #header .header-in .siteMap-menu.open .siteMap-in .inner{ padding: 0 0 40px; }

    #footer .f-menu ul{ gap: 0 20px; }
    #footer .f-menu ul li:before{ display: none; }


}
@media screen and (max-width: 480px) { 
    #header .header-in .siteMap-menu.open .siteMap-in .inner{ padding: 0; }
    #header .header-in .siteMap-menu .pc-top .util-box .link-btn.language span{ font-size: 13px; width: auto !important; }
    #header .header-in .siteMap-menu .pc-top .util-box .link-btn.lib span,
    #header .header-in .siteMap-menu .pc-top .util-box .info span{ font-size: 13px; width: auto !important; }
    #header .header-in .siteMap-menu .pc-top .util-box .link-btn.language:before{ width: 24px; background-position: 0; background-size: 20px !important; }
    #header .header-in .siteMap-menu .pc-top .util-box .link-btn.lib:before{ width: 32px; background-position: 0; background-size: 26px !important; }
    #header .header-in .siteMap-menu .pc-top .util-box .info:before { width: 24px; background-position: 0; background-size: 25px !important; }
}