@charset "utf-8";
/* *******************************************************
 * filename : layout.css
 * description : 전체 레이아웃 CSS
 * date : 2022-07-26
******************************************************** */

@import url("https://cdn.jsdelivr.net/gh/wanteddev/wanted-sans@v1.0.2/packages/wanted-sans/fonts/webfonts/variable/complete/WantedSansVariable.min.css");
/* ========================================================
 * SETTING
======================================================== */
:root{
	--main-color: #1d4ea3;
	--footer-area-wide-width: 1760px;
	--area-wide-width: 1620px;
	--area-box-width: 1520px;
	--area-width: 1320px;
	--area-padding: 30px;
	--header-height: 110px;
	--header-top:0;
	--sub-visual-height: 93.3rem;
	--sub-visual-img-height: 50rem;
	--sub-menu-height: 69px;
	--full-height: 100vh;
	--transition-custom: all 0.4s ease-in-out;
	--transition-custom2: all 0.8s ease-in-out; /* data-scroll */
	--font-family1:'Wanted Sans Variable', 'Noto Sans KR', "나눔고딕", NanumGothic, "Nanum Gothic","돋움", Dotum, Arial, sans-serif;
}
/* html:not(.is-mobile) *::-webkit-scrollbar {
	width: 15px;
	height: 15px;
}
html:not(.is-mobile) *::-webkit-scrollbar-track {
	background-color: #f1f1f1;
}
html:not(.is-mobile) *::-webkit-scrollbar-thumb {
	background-color: #c1c1c1;
} */
::selection {
    background: var(--main-color);   
    color: #fff;
}
::-moz-selection {
    background: var(--main-color);    
    color: #fff;
}
body, table, th, td, button, select, input, textarea {
	font-family:var(--font-family1);
	color:#666;
	-webkit-text-size-adjust:none;
	-moz-text-size-adjust:none;
	text-size-adjust:none;
	word-break:keep-all;
}
body { background-color:#fff; }
table, th, td{word-break:break-word;}
#wrap {overflow:hidden; width:100%; min-width:320px; position:relative; }

/* ========================================================
 * LAYOUT
======================================================== */
/* ****************** 공통클래스 ********************** */
.area{ max-width:var(--area-width); margin:0px auto;}
.area-box{ max-width:var(--area-box-width); margin:0px auto; }
.area-wide{ max-width:var(--area-wide-width); margin:0px auto; }
.footer-area-wide{ max-width:var(--footer-area-wide-width); margin:0px auto; }
.full-height{height:var(--full-height);}
/* Fullpage Layout */
.fullpage-html{overflow:hidden; height:100%;}
.fullpage-html #wrap{position:static;}
/* br tag */
.m-br{display:none;}
.display-m{display:none;}

/* ****************** HEADER ********************** */
#header{
	position:relative; /* position:absolute; */ height:var(--header-height); /* top:calc(-1 * (var(--header-height))); */ top:var(--header-top); left:0; width:100%; z-index:9999; transition:var(--transition-custom2);
}
.fullpage-html #header{
	position:fixed;
}
#headerInnerWrap{position:absolute; top:0px; left:0px; width:100%; height:var(--header-height); z-index:9999; transition:var(--transition-custom); transition-property:background-color;}
#headerInner{position:relative; display:flex; align-items:center; justify-content:space-between; height:var(--header-height); margin:0px auto; padding:0 10rem; }
#header .logo{position:relative; z-index:100; }
#header .logo a{display:block; height: 3.2rem;}
#header .logo img{display:block; vertical-align:top; position:absolute; top:0; left:0;}
#header .logo img.white{opacity: 1;}
#header .logo img.black {opacity: 0;}
#header .logo.black img.white{opacity: 0;}
#header .logo.black img.black {opacity: 1;}


/* -------- Header :: UTIL BOX -------- */
.header-util-box{position:relative; z-index:100;}

/* Header :: 검색버튼 */
.header-search-box{position:relative; float:left; margin-left:10px; z-index:101; }
.header-search-box i{font-size:22px;}
.header-search-open-btn{width:32px; height:32px; color:#333;  border:1px solid #333}
.header-search-inner{
	overflow:hidden; 
	position:absolute; 
	top:0px; right:0; 
	width:200px; 
	height:32px; 
	padding-right:65px; 
	box-sizing:border-box;
	border:1px solid #333;
	background-color:#fff;
	opacity:0;
	visibility:hidden;
	transition:var(--transition-custom);
}	
.header-search-inner .header-search-word{height:30px; width:100%; vertical-align:top; background-color:transparent; border:0; color:#333; font-size:13px; font-weight:300; text-indent:10px;}
.header-search-inner .header-search-word::placeholder{color:#333;}
.header-search-inner .header-search-btn{position:absolute; top:0px; right:32px; width:32px; height:32px;}
.header-search-inner .header-search-btn i{font-size:20px; line-height:32px;}
.header-search-inner .header-search-close-btn{position:absolute; top:0px; right:0px; width:32px; height:32px; background-color:#333; color:#fff; border:1px solid #333; }
.header-search-inner .header-search-close-btn i{color:#fff;}
/* 검색 open */
.header-search-box.open .header-search-inner{
	opacity:1.0;
	visibility:visible; 
	transition:visibility 0.5s, opacity 0.5s;
}
@media all and ( min-width: 801px ){
	.header-search-inner .header-search-inner{
		transform: translateX(10px);
		transition:all 0.2s;
	}
	.header-search-box.open .header-search-inner{
		transform: translateX(0);
	}
}

/* Header :: 언어선택 */
.header-lang {position:relative; float:left; width:124px; height:30px; border:1px solid #5c5c5c; border-color:#333; z-index:100; margin-left:10px; }
.header-lang .lang-open-btn {overflow:hidden; position:relative; display:block; width:100%; text-align:left; height:100%; padding:0 10px; font-size:10px; line-height: 30px; color:#333; }
.header-lang .lang-open-btn i {display:inline-block; margin-right: 6px; vertical-align: middle; font-size:20px; margin-top:-2px; }
.header-lang .lang-open-btn .arrow{position:absolute; top:0px; right:0px;}
.header-lang .lang-open-btn .arrow i{font-size:16px;}
.header-lang > ul {display:none; position:absolute; top:30px; left:-1px; z-index:10; width:100%; border:1px solid #5c5c5c; background-color:#fff;}
.header-lang > ul > li > a{display:block; padding:0 10px; font-size:10px; line-height: 30px; color:#333;}
.header-lang > ul > li > a:hover{background-color:#f2f2f2; }
.header-lang.open .lang-open-btn .arrow i{transform:rotate(180deg); margin-top:-3px;}

/* Header :: 언어선택2 */
.header-lang-list {position:relative; float:left; z-index:100; margin:8px 0 0 22px;}
.header-lang-list li{float:left; display:flex; align-items:center; justify-content:center; width: 6rem; height: 3rem; letter-spacing:-0.5px; font-weight:600; border:2px solid #fff; box-sizing:border-box;}
.header-lang-list li:first-child{margin-left:0}
.header-lang-list li a{display:flex; align-items:center; justify-content:center; width: 100%; height: 100%; position:relative; color:#fff; transition:var(--transition-custom); font-size: 15px;font-family: "Play", sans-serif;}
.header-lang-list li.cur {background: #fff;}
.header-lang-list li.cur a {color: #58595B;}
.header-lang-list li.cur a,
.header-lang-list li a:hover{opacity:1.0;}
.header-lang-list li.cur a:after,
.header-lang-list li a:hover:after{transform:scaleX(1); transform-origin:0 0;}

.header-lang-list.black li{border:2px solid #1d4ea2;}
.header-lang-list.black li a{color:#1d4ea2;}
.header-lang-list.black li.cur {background: #1d4ea2;}
.header-lang-list.black li.cur a {color: #fff;}

/* subpage 에서의 언어선택 */
.sub-page #header:not(.sitemap-open) .header-lang-list li.cur {background:#fff;}
.sub-page #header:not(.sitemap-open) .header-lang-list li.cur a {color: #58595B;}
.sub-page #header:not(.sitemap-open) .header-lang-list li {border-color:#fff;}
.sub-page #header:not(.sitemap-open) .header-lang-list li a {color: #fff;}

/* Header :: 사이트맵버튼 */
.sitemap-line-btn{position: relative; float:left; width:52px; height:10px; display:flex; flex-wrap:wrap; margin-left:3rem; box-sizing:border-box; margin-top: 15px;}
.sitemap-line-btn .sq {position: absolute; display:inline-block; width: 52px; height: 3px; /* margin-right: 1rem; margin-bottom: 1rem; */ transition:all 0.4s;}
.sitemap-line-btn .sq:nth-child(1) {background: #ccc;top:0; left:0;}
.sitemap-line-btn .sq:nth-child(2){background: #dddddd; left:0; bottom:0;}
.sitemap-line-btn .sq:nth-of-type(even) {margin-right: 0;}
/* active */
.sitemap-line-btn.active {position:relative; z-index:100000;}
.sitemap-line-btn.active .sq {width: 52px; left:6px; height: 3px; margin: 0; position:absolute; }
.sitemap-line-btn.active .sq:nth-child(1) {transform:rotate(45deg) translateY(0px); top:0; }
.sitemap-line-btn.active .sq:nth-child(2) {transform:rotate(-45deg) translateY(0px); top:0; right:0; background: #dddddd;}

/* subpage 에서의 사이트맵버튼 */
.sub-page #header:not(.sitemap-open) .sitemap-line-btn .sq:nth-child(1),
.sub-page #header:not(.sitemap-open) .sitemap-line-btn .sq:nth-child(4) {background: #ccc;}

/* -------- Header :: GNB(PC) -------- */
.gnb-overlay-bg{position:fixed; top:0; left:0; width:100%; height:100%; visibility:hidden; opacity:0; background:rgba(0,0,0,0.5); z-index:9997;  transition:var(--transition-custom); }	/* gnb overlay BG */
.gnb-overlay-bg.open{visibility:visible; opacity:1.0;}
#gnb{position:absolute; text-align:center; top:0; left:0px; width:100%; z-index:99;}
#gnb > ul{display:inline-block;}
#gnb > ul > li{position:relative; float:left; word-break:keep-all;}
#gnb > ul > li > a{
	position:relative; z-index:100; display:block; line-height:var(--header-height); padding:0 5rem; text-align:center; color:#fff; font-size:1.7rem; letter-spacing:-0.025em; font-weight:600; transition:var(--transition-custom);
}
#gnb > ul > li > a > i {font-size:2.4rem; position: relative; top:5px;}
#gnb > ul > li > a:hover,
#gnb > ul > li > a:focus,
#gnb > ul > li.on > a{color:var(--main-color) !important;}
#gnb > ul > li.color > a {color: #111 !important;}
#gnb > ul > li.on.color > a{color:var(--main-color) !important;}

/* GNB :: 2차 전체메뉴 */
#gnbBg{
	overflow:hidden; 
	position:absolute; 
	left:0; top:0px; 
	width:100%; 
	height:0; 
	background:#fff; 
	z-index:98;
	opacity:0;
	transition:height 0.3s ease-in-out, opacity 0.2s ease-in-out;
}
#gnbBg:after{position:absolute; top:var(--header-height); width:100%; left:0; height:1px; background-color:#ddd; content:"";}
#gnb.total-menu > ul > li .gnb-2dep{
	position:absolute; 
	top:var(--header-height); 
	left:0px; 
	z-index:99;
	width:100%; 
	text-align:left; 
	border-right:1px solid #ddd;
	opacity:0;filter:Alpha(opacity=0);
	height:0;
    transition: all 0.2s 0s;
	transition-delay: 0s;
	visibility:hidden;
}
#gnb.total-menu > ul > li:first-child .gnb-2dep{border-left:1px solid #ddd;}
#gnb.total-menu > ul > li .gnb-2dep:before {
	content:""; position:absolute; left:0; top:0px; width:0; left:50%; height:1px; background-color:var(--main-color); 
	transition:var(--transition-custom);
}
#gnb.total-menu > ul > li:hover .gnb-2dep:before {width:100%; left:0;}
#gnb.total-menu > ul > li .gnb-2dep ul{padding:13px 0px;}
#gnb.total-menu > ul > li .gnb-2dep ul li{position:relative;}
#gnb.total-menu > ul > li .gnb-2dep ul li a{ display:block;  padding:7px 15px; color:#333; font-size:14px; letter-spacing:-0.5px; font-weight:400; line-height:1.3; transition:var(--transition-custom); }
#gnb.total-menu > ul > li .gnb-2dep ul li a:hover{color:var(--main-color);}

/* GNB :: 2차메뉴 Over (높이변경) */
#gnb.open #gnbBg{height:350px; opacity:1.0;filter:Alpha(opacity=100);}
#gnb.open > ul > li .gnb-2dep{
	height:250px; opacity:1.0;filter:Alpha(opacity=100);
	visibility:visible;
    transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out 0.2s;
}

/* GNB :: 2차 각각메뉴 */
#gnb.each-menu > ul > li .gnb-2dep{
	/* display:none; */
	position:absolute; 
	top:calc(var(--header-height) - 0px); 
	left:50%;
	transform:translateX(-50%);
	z-index:99;
	/* width:100%; */ 
	width:180px;
	text-align:left; 
	visibility:hidden;
	opacity:0;filter:Alpha(opacity=0);
	transition:all 0.2s cubic-bezier(0.4, 0, 1, 1);
}
#gnb.each-menu > ul > li .gnb-2dep:before{
	content:""; 
	position:absolute; top:0px; left:0px; right:0px; 
	height:0; 
	background-color:var(--main-color); 
	transition:all 0.2s cubic-bezier(0.4, 0, 1, 1);
}
#gnb.each-menu > ul > li .gnb-2dep:after,
#gnb.each-menu > ul > li .gnb-2dep.open:after {content:""; width:0; height:0; border:solid transparent; border-width:0px 9px 18px 9px; border-color: transparent transparent var(--main-color) transparent;position:absolute; left:50%; top:-18px; transform:translateX(-50%);}

#gnb.each-menu > ul > li .gnb-2dep ul{padding:15px 0px;}
#gnb.each-menu > ul > li .gnb-2dep ul li{position:relative; padding:8px 10px; opacity:0; transition:all 0s 0s; }
#gnb.each-menu > ul > li .gnb-2dep ul li a{display:block; color:#fff; font-size:16px; text-align:center; line-height:1.4; opacity:0.9;}
#gnb.each-menu > ul > li .gnb-2dep ul li a:hover{opacity:1.0; text-decoration: underline;}
/* over했을때 */
#gnb.each-menu > ul > li .gnb-2dep.open{visibility:visible; opacity:1.0;}
#gnb.each-menu > ul > li .gnb-2dep.open:before{height:100%;}
#gnb > ul > li .gnb-2dep.open ul li{opacity:1.0; transition:var(--transition-custom2);}
#gnb > ul > li .gnb-2dep.open ul li:nth-child(1){transition-delay:0.1s;}
#gnb > ul > li .gnb-2dep.open ul li:nth-child(2){transition-delay:0.2s;}
#gnb > ul > li .gnb-2dep.open ul li:nth-child(3){transition-delay:0.3s;}
#gnb > ul > li .gnb-2dep.open ul li:nth-child(4){transition-delay:0.4s;}
#gnb > ul > li .gnb-2dep.open ul li:nth-child(5){transition-delay:0.5s;}
#gnb > ul > li .gnb-2dep.open ul li:nth-child(6){transition-delay:0.6s;}
#gnb > ul > li .gnb-2dep.open ul li:nth-child(7){transition-delay:0.7s;}
#gnb > ul > li .gnb-2dep.open ul li:nth-child(8){transition-delay:0.8s;}

/* -------- Header :: GNB(Mobile) -------- */
.nav-open-btn{display:none;}
#gnbM{display:none}

/* ****************** FOOTER ********************** */
/* -------- FOOTER :: 레이아웃 -------- */
/* Footer :: TOP버튼 */
/* .to-top-btn{
	position:absolute; 
	top:-12rem; 
	right:10rem;
	display:flex;
	flex-direction:column-reverse;
	justify-content:center;
	align-items:center;
	width:80px; 
	height:80px;  
	text-align:center; 
	color:#333; 
	z-index:99;
	border:1px solid #105271;
	color:#105271;
	box-sizing:border-box;
	opacity:0;
	transition:var(--transition-custom);
	border-radius:50%;
	font-size:12px;
	box-sizing:border-box;
} */
.sub-page .to-top-btn{
	position:absolute; 
	top:-14rem; 
	right:10rem;
	display:flex;
	flex-direction:column-reverse;
	justify-content:center;
	align-items:center;
	width:80px; 
	height:80px;  
	text-align:center; 
	color:#333; 
	z-index:99;
	border:2px solid #105271;
	color:#105271;
	box-sizing:border-box;
	/* opacity:0; */
	transition:var(--transition-custom);
	border-radius:50%;
	font-size:12px;
	box-sizing:border-box;
	background:none;
	backdrop-filter:none;
}
.sub-page .to-top-btn em {color: #105271; font-size:12px;}
/* #mainFooter .to-top-btn {position:absolute; 
	top:-12rem; 
	right:10rem;
	display:flex;
	flex-direction:column-reverse;
	justify-content:center;
	align-items:center;
	width:80px; 
	height:80px;  
	text-align:center; 
	color:#333; 
	z-index:99;
	border:2px solid #105271;
	box-sizing:border-box;
	opacity:0;
	transition:var(--transition-custom);
	border-radius:50%;
	box-sizing:border-box; overflow:hidden; background: none; backdrop-filter: none;}
#mainFooter .to-top-btn em {font-size:12px; color:#105271;}
.to-top-btn.bottom-fixed{bottom:15px; opacity:1.0;}
#mainFooter .to-top-btn i{position: relative; display:inline-block; font-size:16px; transition:var(--transition-custom); color: #105271; z-index:99;} */
#mainFooter .to-top-btn {display:none;}
.hq-main-page .to-top-btn {position:fixed; 
	/* top:-12rem;  */
	bottom:4rem;
	right:4rem;
	display:flex;
	flex-direction:column-reverse;
	justify-content:center;
	align-items:center;
	width:80px; 
	height:80px;  
	text-align:center; 
	color:#333; 
	z-index:99;
	border:2px solid #105271;
	opacity:0;
	transition:var(--transition-custom);
	border-radius:50%;
	box-sizing:border-box; overflow:hidden; background: none; backdrop-filter: none; transform:translateY(120%); padding:0;}

.hq-main-page .to-top-btn.bottom-fixed{bottom:15px; opacity:1.0;}
.hq-main-page .to-top-btn:hover i{transform:translateY(-3px)}
/* #mainFooter.active-section .to-top-btn{opacity:1; transform: translateY(0);} */
.hq-main-page .to-top-btn.on {opacity:1; transform: translateY(0);}

.hq-main-page .to-top-btn.ab {position:absolute; right:var(--area-padding); bottom:8.5%;}


@media all and (max-width:1280px){
	.sub-page .to-top-btn {top:-90px; right:var(--area-padding); backdrop-filter:blur(10px); background:rgba(255,255,255,0.1);}
}

/* #fullpage .to-top-btn{display:none;} */



/* ****************** SUB LAYOUT ********************** */
/*  SUB LAYOUT :: 비주얼 */
#visual{position:relative; width:100%; height:var(--sub-visual-height); }
#visual .visual-img-con{
	position: relative;
	width: 100%;
	height: var(--sub-visual-img-height);
	overflow: hidden; 
}
#visual .visual-img-inner{
	width:100%; 
	height:100%; 
	background-size:cover !important; 
	transform: scale(1.1,1.1); 
	transition:transform 5s linear;
}
#visual .visual-txt-con{position:relative; z-index:1; text-align:left; display:table; width:100%; height:calc(var(--sub-visual-height) - var(--sub-visual-img-height));}
#visual .visual-txt-con .table-cell-layout {vertical-align:bottom;}
#visual .visual-txt-container{position:relative; width:100%; margin-bottom: calc(var(--sub-menu-height) + 30px);}
#visual .visual-tit,
#visual .visual-sub-txt,
#visual .location{
	opacity:0;
	transform: translateY(30px);
	transition:var(--transition-custom2);
	transition-property: transform, opacity;
}
#visual .visual-tit{
	font-weight: 700;
	font-size: 8rem;
	transition-delay: 0.5s;
	color: #222;
	letter-spacing: -0.03em;
	line-height: 1.25;
	margin-top: 2rem;
}
#visual .visual-sub-txt{
	font-size:16px; 
	font-weight:300; 
	padding-top:30px;
	transition-delay:0.5s;
}
#visual .location{
	transition-delay:0.5s;
}

#visual .visual-img-con .visual-img-tit {position: absolute;
    font-size: 14rem;
    line-height: 0.7;
    letter-spacing: 0;
    font-weight: 900;
    color: #fff;
    text-align: center;
    /* text-transform: uppercase; */
    left: 50%;
    bottom: 0;
    transform: translate( -50%, 30px);
    opacity: 0;
    transition: var(--transition-custom2);
    transition-property: transform, opacity;
    transition-delay: 0.7s;
    white-space: nowrap;
    }

#visual.active .visual-img-con .visual-img-tit {opacity:1; transform:translate(-50%, 0);}

/* SUB LAYOUT :: 상단효과 active */
#visual.active .visual-img-inner{
     transform: scale(1.0,1.0) rotate(0.002deg);
}
#visual.active .visual-tit,
#visual.active .visual-sub-txt,
#visual.active .location{
	opacity:1.0;
    transform: translateY(0px);
}

/* SUB LAYOUT :: 위치정보(location) */
.location{overflow:hidden; padding-top:18px;}
.location ul {text-align:left;}
.location li{display:inline-block; vertical-align:middle; color:#222; font-size:1.5rem; line-height:1.2; font-weight: 700;}
.location li a{color:inherit;}
.location li i{font-size:18px; margin-top:-1px; font-weight: 400;}
.location li:before{font-family: 'xeicon'; display:inline-block; content: "\e93f"; position:relative; top:-1px; vertical-align:middle; margin:0px 10px 0 8px; color:#222; font-size:1.8rem; font-weight: 400;}
.location li:first-child:before{display:none;}
.location li:last-child{color:#333;}

/*  SUB LAYOUT :: 이전페이지,다음페이지 버튼 */
.sub-page-controls-btn{position:absolute; top:50%; height:20px; margin-top:-10px; transition:var(--transition-custom); }
.sub-page-controls-btn.sub-prev-page-btn{left:0; }
.sub-page-controls-btn.sub-next-page-btn{right:0; }
.sub-page-controls-btn .sub-page-name{display:inline-block; vertical-align:middle; color:#fff; font-size:14px; font-weight:400;}
.sub-page-controls-btn span{display:inline-block; color:#fff; vertical-align:middle;}
.sub-page-controls-btn span i{margin-top:-2px; font-size:30px;}
.sub-page-controls-btn.sub-prev-page-btn:hover{margin-left:-10px}
.sub-page-controls-btn.sub-next-page-btn:hover{margin-right:-10px}

/*  SUB LAYOUT :: 서브메뉴(스타일1) */
#topMenu01{position: absolute;
    width: 100%;
    height: var(--sub-menu-height);
    bottom: var(--sub-visual-img-height);
    z-index: 9;
    transition: var(--transition-custom);} /* (+1 border height)*/
#topMenu01 .side-menu-inner{position:absolute; top:0; text-align:center; width:100%; height:var(--sub-menu-height); background-color: #fff; transition:var(--transition-custom);}
/* #topMenu01 .side-menu-inner:before {position: absolute;
    content: '';
    width: 100%;
    height: 0;
    bottom: 100%;
    left: 0;
    background: #fff;
    transition: var(--transition-custom);} */
#topMenu01 .side-menu-inner ul{display:flex; align-items:center; justify-content:flex-start;}
#topMenu01 .side-menu-inner ul li{float:left; max-width:300px; min-width:180px;} /* max-width 자유롭게 수정 */
#topMenu01 .side-menu-inner ul li > a{
	display:block; 
	display:table; 
	position:relative;
	width:100%;
	height:var(--sub-menu-height);
	line-height:1.2; 
	color:#333; 
	font-size:17px; 
	letter-spacing:-0.5px; 
	font-weight:600; 
	word-break:keep-all;
	transition:all 0.4s;
}
#topMenu01 .side-menu-inner ul li > a:before{
	position:absolute;
	bottom:0px;
	left:50%;
	width:0;
	height:4px;
	background-color:var(--main-color);
	content:"";
	transition:all 0.4s;
}
#topMenu01 .side-menu-inner ul li > a > span{display:table-cell; vertical-align:middle; padding:0 1.5rem; }
#topMenu01 .side-menu-inner ul li > a:hover, 
#topMenu01 .side-menu-inner ul li.on > a,
#topMenu01 .side-menu-inner ul li.selected > a {color:var(--main-color);}
#topMenu01 .side-menu-inner ul li > a:hover:before, 
#topMenu01 .side-menu-inner ul li.on > a:before,
#topMenu01 .side-menu-inner ul li.selected > a:before {width:100%; margin-left:-50%;}
#topMenu01.top-fixed .side-menu-inner {position:fixed; top:0;}

/* SUB LAYOUT :: 서브메뉴(스타일2) */
#topMenu02{position:relative; width:100%; height:calc(var(--sub-menu-height) + 1px); } /* (+1 border height)*/
#topMenu02 .side-menu-inner{text-align:center; width:100%; height:var(--sub-menu-height); border-bottom:1px solid #ddd; background-color: #fff; }
#topMenu02 .side-menu-inner ul{display:flex; align-items:center; justify-content:center;}
#topMenu02 .side-menu-inner ul li{
	float:left;
	width: 16.66%; 
	border-right:1px solid #ddd;
	box-sizing: border-box; 
	transition:var(--transition-custom);
}
#topMenu02 .side-menu-inner ul li:first-child {border-left: 1px solid #ddd;}
#topMenu02 .side-menu-inner ul li > a{
	display:block; 
	display:table; 
	position:relative;
	width:100%;
	height:var(--sub-menu-height);
	line-height:1.2; 
	color:#333; 
	font-size:17px; 
	letter-spacing:-0.5px; 
	font-weight:400; 
	word-break:keep-all;
	transition:var(--transition-custom);
}
#topMenu02 .side-menu-inner ul li > a:before{
	position:absolute;
	bottom:0px;
	left:50%;
	width:0;
	height:2px;
	background-color:var(--main-color);
	content:"";
	transition:var(--transition-custom);
}
#topMenu02 .side-menu-inner ul li > a > span{display:table-cell; vertical-align:middle; padding:0 15px; }
#topMenu02 .side-menu-inner ul li.on{background-color:#f2f2f2;}
#topMenu02 .side-menu-inner ul li > a:hover:before, 
#topMenu02 .side-menu-inner ul li.on > a:before{width:100%; width:calc(100% + 1px); margin-left:-50%;}
#topMenu02 .side-menu-inner ul li:hover > a, 
#topMenu02 .side-menu-inner ul li.on > a{color:var(--main-color);}

/* SUB LAYOUT :: 서브메뉴(스타일3) */
#topMenu03{position:relative; width:100%; height:calc(var(--sub-menu-height) + 1px); } /* (+1 border height)*/
#topMenu03 .side-menu-inner{text-align:center; width:100%; height:var(--sub-menu-height); border-bottom:1px solid #ddd; background-color: #fff; }
#topMenu03 .side-menu-inner ul{display:flex; align-items:center; justify-content:center; }
#topMenu03 .side-menu-inner ul li{
	float:left;
	width:25%;
	vertical-align:middle;
	border-right:1px solid #ddd;
	transition:var(--transition-custom);
}
#topMenu03 .side-menu-inner ul li:first-child {border-left: 1px solid #ddd; margin-left:0}
#topMenu03 .side-menu-inner ul li > a{
	display:block; 
	display:table; 
	position:relative;
	width:100%;
	height:var(--sub-menu-height);
	line-height:1.2; 
	color:#333; 
	font-size:17px; 
	letter-spacing:-0.5px; 
	font-weight:400; 
	word-break:keep-all;
	transition:var(--transition-custom);
}
#topMenu03 .side-menu-inner ul li > a:before{
	position:absolute;
	bottom:0px;
	left:50%;
	width:0;
	height:2px;
	background-color:var(--main-color);
	content:"";
	transition:var(--transition-custom);
}
#topMenu03 .side-menu-inner ul li > a > span{display:table-cell; vertical-align:middle; padding:0 15px; }
#topMenu03 .side-menu-inner ul li.on{background-color:#f2f2f2;}
#topMenu03 .side-menu-inner ul li > a:hover:before, 
#topMenu03 .side-menu-inner ul li.on > a:before{width:100%; margin-left:-50%;}
#topMenu03 .side-menu-inner ul li:hover > a, 
#topMenu03 .side-menu-inner ul li.on > a{color:var(--main-color);}

/*  SUB LAYOUT :: 서브메뉴(스타일3) */
#topMenu04{position:relative; width:100%; height:calc(var(--sub-menu-height) + 1px); } /* (+1 border height)*/
#topMenu04 .side-menu-inner{width:100%; height:var(--sub-menu-height); border-bottom:1px solid #ddd; background-color: #fff;}
#topMenu04 .location-to-home-btn{float:left; width:var(--sub-menu-height); height:var(--sub-menu-height); background-color:#fff; text-align:center; border-right:1px solid #ddd; border-left:1px solid #ddd;}
#topMenu04 .location-to-home-btn i{color:var(--main-color); font-size:24px; line-height:var(--sub-menu-height);}
#topMenu04 .menu-location{position:relative; float:left; width:260px;}
#topMenu04 .menu-location > .cur-location{position:relative; display:block; width:100%; height:var(--sub-menu-height); padding:0 35px 0 20px; border-right:1px solid #ddd; text-align:left}
#topMenu04 .menu-location > .cur-location span{display:block; width:100%; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; line-height:var(--sub-menu-height); color:#222; font-weight:400; font-size:18px; letter-spacing:-0.5px;}
#topMenu04 .menu-location > .cur-location .arrow{position:absolute; top:50%; right:10px; width:20px; height:20px;margin-top:-10px; font-size:20px;}
#topMenu04 .menu-location.open > .cur-location .arrow{transform:rotate(-180deg); margin-top:-10px;}
#topMenu04 .menu-location .location-menu-con{display:none; position:absolute; top:100%; left:-1px; right:0px; border:1px solid #ddd; border-top:0; background-color:#fff; z-index:11; padding-bottom:10px }
#topMenu04 .menu-location .location-menu-con li a{display:block; padding:10px 20px; font-size:15px; word-break:keep-all; line-height:1.5;}
#topMenu04 .menu-location .location-menu-con li.on{position:relative;}
#topMenu04 .menu-location .location-menu-con li.on a{color:var(--main-color); font-weight:500;}
/* 선택된메뉴앞에 bullet 넣을때 */
/* #topMenu04 .menu-location .location-menu-con li.on a{padding-left:25px;}
#topMenu04 .menu-location .location-menu-con li.on a:before{content:""; position:absolute; top:50%; left:10px; width:7px; height:3px; margin-top:-1px; background-color:var(--main-color)} */
/* // */

/* SUB LAYOUT :: 서브메뉴 Fixed (공통) */
@media all and (min-width:1025px){
	.fixed-sub-menu.top-fixed .side-menu-inner{position:fixed; top:0px; left:0px; z-index:9999;}
}

/* SUB LAYOUT :: 모바일메뉴(공통)  */
#topMenuM{display:none;}

/*  SUB LAYOUT :: 컨텐츠 레이아웃 */
#content:not(.wide){padding:100px 0}
#content.wide{padding:100px 0 0 0}

/*  SUB LAYOUT :: 상단정보 (공통) */
#contentInfoCon{position:relative; margin:0 auto 50px; text-align:center; }
#contentInfoCon .content-tit{color:#333; font-size:38px; font-weight:600; letter-spacing:-0.6px;}
#contentInfoCon .content-tit:after{display:block; content:""; width:58px; height:2px; margin:30px auto 0; background-color:#040508}
#contentInfoCon .content-sub-tit{color:#888; font-weight:300; margin-top:30px; font-size:16px; letter-spacing:-0.8px; word-break:keep-all;}
/*  SUB LAYOUT :: 상단정보(타이틀+location) */
#contentInfoCon.content-title-location{text-align:left;}
#contentInfoCon.content-title-location .content-tit{float:left;}
#contentInfoCon.content-title-location .content-tit:after{display:none;}
#contentInfoCon.content-title-location .location{float:right;}

/* ****************** MODAL LAYERPOPUP ********************** */
/* modal layer */
.modal-fixed-pop-wrapper{display:none; overflow-y:scroll; overflow-x:hidden;  position:fixed; top:0px; left:0px; width:100%; height:100%; z-index:9999; background:#000; background:rgba(0,0,0,0.8);}
.modal-fixed-pop-inner{position:absolute; display:table; width:100%; height:100%; text-align:center;}
.modal-inner-box{ position:relative; display:table-cell; vertical-align:middle;}
.modal-loading{position:absolute; top:50%; left:50%; margin:-25px 0 0 -25px; z-index:10000;}
.modal-inner-content{text-align:left;}
.loading {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 8px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@-webkit-keyframes spin {
  to { transform: rotate(360deg); }
}
/* modal layer content */
.footer-modal-content{position:relative; width:96%; max-width:1000px; margin:20px auto; }
.footer-modal-content h1{font-size:24px; font-weight:600; letter-spacing:-0.5px; text-align:center; padding:0 50px 20px; color:#fff;}
.modal-close-btn{position:absolute; top:-6px; right:-6px; color:#fff; }
.modal-close-btn i{font-size:38px;}
.modal-close-btn i:hover {color:#fff}
.footer-inner-box{padding:30px; background-color:#fff; }
.footer-inner{padding:20px; height:400px; overflow-y:auto; overflow-x:hidden; border:1px solid #ddd; }

/* arrow 공통 */
.arrow-wrap {display:flex; align-items:center;}
.arrow-right-wrap .arrow-head {position: relative; display:inline-block; width: 0px; height: 0px; border-left: 5.5px solid #fff; border-top: 4px solid transparent; border-bottom: 4px solid transparent; z-index:1;}
.arrow-left-wrap {flex-direction:row-reverse;}
.arrow-left-wrap .arrow-head {display:inline-block; width: 0px; height: 0px; border-right: 5.5px solid #fff; border-top: 4px solid transparent; border-bottom: 4px solid transparent;}
.arrow-wrap em {display:inline-block; width: 15px; height: 2px; background: #fff;}



/* 서브 스크롤 헤더 및 snb효과 */
.sub-page #header{position: fixed; transition:var(--transition-custom);}
.sub-page #header.top-fixed{top:calc(-1 * (var(--header-height)));}

.sub-page #header #headerInnerWrap:before{position: absolute; content:''; width:100%; height:1px; background:#eee; bottom:1px; left:0; opacity:0; transition:var(--transition-custom);}
.sub-page #header.top-fixed:not(.sitemap-open) #headerInnerWrap:before{opacity:1;}

.sub-page #topMenu01 .side-menu-inner:after{position: absolute; content:''; width:100%; height:1px; background:#eee; bottom:-1px; left:0; opacity:0; transition:var(--transition-custom);}
.sub-page #topMenu01.top-fixed .side-menu-inner:after{opacity:1;}

/* scroll-up */
.sub-page #header.top-fixed.scroll-up{top:0;}
#topMenu01.top-fixed .side-menu-inner{position: fixed; top:0;}

.sub-page #header.scroll-up{top:var(--header-top);}
#topMenu01.top-fixed.scroll-up .side-menu-inner{top:var(--header-height);}
#topMenu01.top-fixed .side-menu-inner:before{height:100%;}

#topMenu01 .side-menu-inner{position: absolute; top:0;}




/* layerpopup */
.layerpopup{display:none;position:fixed;left:0;top:0;right:0;bottom:0;background:rgba(0,0,0,0.4);z-index:9999;overflow:auto;}
.layerpopup .pop_wrap{margin:50px auto;padding:47px 37px 48px;background:#fff;box-sizing:border-box;border:1px solid #c1c1c1;position:relative;}
.layerpopup .pop_wrap .pop_head{text-align:center;padding-bottom:50px;font-size:30px;color:#08a7dd;letter-spacing:-0.05em;line-height:35px; font-weight:bold;}
.layerpopup .pop_wrap .text_top{font-size:18px;line-height:28px;letter-spacing:-0.05em;text-align:center;color:#666}
.layerpopup .pop_wrap .btn_wrap_pop{margin:46px 0 0;text-align:center;}
.layerpopup .pop_wrap .btn_wrap_pop .btn{display:inline-block;width:250px;height:70px;line-height:70px;background:#0060b9;font-size:18px;color:#fff;font-weight:500;}
.layerpopup .pop_wrap .btn_pop_close{display:block;width:55px;height:55px;position:absolute;right:37px;top:33px;box-sizing:border-box;text-indent:-9999px;border:1px solid #08a7dd;overflow:hidden;padding:12px 0}
.layerpopup .pop_wrap .btn_pop_close:after{content:'';display:block;width:30px;height:30px;position:absolute;top:12px;left:12px;background:url(../../images/btn_pop_close.png) no-repeat 0 0;margin:0 auto;transition:all 0.3s}
.layerpopup .pop_wrap .btn_pop_close:hover:after{transform:rotate(180deg);}

/* 개인정보 동의 팝업 */
.pop_privacy_term .pop_wrap{width:1000px}
.pop_privacy_foot .pop_wrap{width:1000px}

/* 이메일 무단 수집 거부 */
.pop_email_reject .pop_wrap{width:1000px}
.pop_email_reject .pop_wrap .text_top{font-size:18px;line-height:28px;letter-spacing:-0.05em;text-align:center;color:#666}
.pop_email_reject .pop_wrap .box{margin:35px 0 0;padding:24px 23px 24px 27px;border:1px solid #c3c3c3;background:#fafafa;}
.pop_email_reject .pop_wrap .box .list_txt_01 li{color:#666; position:relative; padding-left:13px; padding-bottom:8px; line-height:20px;font-size:15px;}
.pop_email_reject .pop_wrap .box .list_txt_01 li:last-child {padding-bottom:0;}
.pop_email_reject .pop_wrap .box .list_txt_01 li:before {content:''; width:5px; height:5px; border-radius:50%; background-color:#666; position:absolute; left:0; top:6px;}

.pop_cont {margin-top:30px;}
.term_wrap{font-size:16px;color:#666;line-height:26px;letter-spacing:-0.05em}
.term_wrap strong{font-weight:500}
.term_wrap .txt_top{padding:0 0 15px;text-align:center;font-size:17px;color:#666;line-height:25px;letter-spacing:-0.05em}
.term_wrap .tit_term{margin:25px 0 12px;font-size:20px;color:#222;font-weight:500;letter-spacing:-0.05em}
.term_wrap .tit_term:first-child{margin-top:0}
.term_wrap .tbl_box{display:table;width:100%;border:1px solid #c3c3c3;letter-spacing:-0.05em}
.term_wrap .tbl_box .row{display:table-row;}
.term_wrap .tbl_box .col_th{display:table-cell;width:216px;background:#fafafa;border-top:1px solid #dedede;vertical-align:middle;text-align:center;font-weight:500;}
.term_wrap .tbl_box .col_td{display:table-cell;padding:25px 20px;border-top:1px solid #dedede;}
.term_wrap .tbl_box .col_td strong{font-weight:500;}
.term_wrap .tbl_box .row:first-child .col_th,
.term_wrap .tbl_box .row:first-child .col_td{border-top:none}
.term_wrap .bd_box{border:1px solid #c3c3c3;background:#fcfcfc;padding:25px;}
.term_wrap .bd_box span {padding-left:10px;}
.term_wrap .bd_box strong {font-weight:bold;}
.term_wrap .bu_dot li{padding-left:5px;}
.term_wrap .bu_dot li i{display:inline-block;width:5px;margin-left:-5px}
.term_wrap .bu_etc{padding:25px 25px 15px;}
.term_wrap .bu_etc li{padding-left:17px;}
.term_wrap .bu_etc li i{display:inline-block;width:17px;margin-left:-17px; }


.refund {width:100%; background-color:#f9f9f9; padding:50px; margin-top:150px;}
.refund_tit1 {font-size:23px; line-height:33px; color:#333; padding:0 0 10px; font-weight:700}
.refund_txt1 {font-size:20px; line-height:30px;}
.refund_tit {font-size:20px; line-height:30px; color:#333; padding:50px 0 10px;}
.refund li {font-size:17px; line-height:20px; padding-bottom:10px; position:relative; padding-left:15px; color:#666}
.refund li:last-child {padding-bottom:0;}
.refund li:before {width:5px; height:5px; border-radius:50%; background-color:#666; content:''; position:absolute; left:0; top:8px;}

@media all and (max-width:1000px){
	.layerpopup .pop_wrap{padding:30px 20px 30px;background:#fff;box-sizing:border-box;border:1px solid #c1c1c1;position:relative;}
	.layerpopup .pop_wrap .pop_head{padding:0 0 0px;font-size:25px;color:#08a7dd;letter-spacing:-0.05em;line-height:35px; font-weight:bold;}
	.layerpopup .pop_wrap .text_top{font-size:15px;line-height:25px;}
	.pop_privacy_term .pop_wrap{width:96%; margin: 0 2%;}
	.pop_privacy_foot .pop_wrap{width:96%; margin: 0 2%;}
	.pop_email_reject .pop_wrap{width:96%; margin: 0 2%;}
	
	.term_wrap .tit_term{margin:25px 0 12px;font-size:18px;color:#222;font-weight:500;letter-spacing:-0.05em}
	.term_wrap .bd_box{padding:20px; font-size: 15px;}
	.term_wrap .bu_etc{padding:25px 0px 15px;}
	.term_wrap .bu_etc li{font-size: 15px;}
	
	.layerpopup .pop_wrap .btn_wrap_pop .btn{display:inline-block;width:250px;height:40px;line-height:40px;background:#0060b9;font-size:18px;color:#fff;font-weight:500;}
	.layerpopup .pop_wrap .btn_pop_close{display:block;width:40px;height:40px;position:absolute;right:20px;top:20px;box-sizing:border-box;text-indent:-9999px;border:1px solid #08a7dd;overflow:hidden;padding:12px 0}
	.layerpopup .pop_wrap .btn_pop_close:after{width:20px; height:20px;top:10px;left:9px; background-image: 20px; background-size: 20px; background-position: center;}
}

@media all and (max-width:800px){
	.refund {padding:30px; margin-top:80px;}
	.refund_tit1 {font-size:20px; line-height:30px; color:#333; padding:0 0 10px;}
	.refund_txt1 {font-size:17px; line-height:27px;}
	.refund_tit {font-size:17px; line-height:27px; color:#333; padding:30px 0 5px;}
	.refund li {font-size:13px; line-height:20px; padding-bottom:5px; position:relative; padding-left:10px; color:#666}
	.refund li:before {width:3px; height:3px; border-radius:50%; background-color:#666; content:''; position:absolute; left:0; top:8px;}
}
