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

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

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

/* ========================================================
 * LAYOUT
======================================================== */
/* ****************** 공통클래스 ********************** */
@media all and (max-width:1890px){
	.area-wide{padding:0 var(--area-padding); max-width:none;}
}
@media all and (max-width:1780px){
	.area-box{padding:0 var(--area-padding); max-width:none;}
}
@media all and (max-width:1360px){
	.area{padding:0 var(--area-padding); max-width:none;}
}
@media all and (max-width:1280px){ 
	.m-br{display:block;}
	.pc-br{display:none;}
	.display-m{display:block;}
	.display-pc{display:none;}
}

/* ****************** HEADER ********************** */
@media all and ( max-width: 1280px ){
	.fullpage-html #header{position:relative;}
	#headerInnerWrap{position:fixed; z-index:99;}
	
	/* -------- Header :: UTIL BOX -------- */
	.header-util-box{padding-right:70px;}
	/* Header :: 사이트맵 버튼 */
	.sitemap-line-btn, .sitemap-custom-btn{display:none;}

	/* Header :: 회원메뉴 */
	.header-member-list li{margin-left:2rem;}
	.header-member-list li:first-child{margin-left:0}
	.header-member-list li a{font-size: 11px;}
	.header-member-list li a i{margin-right: 1rem; font-size: 24px;}

	/* -------- Header :: GNB(Pc) -------- */
	#gnb{display:none;}
	.gnb-overlay-bg{display:none}

	/* -------- Header :: GNB(Mobile/기본스타일) -------- */
	.gnb-overlay-bg-m{display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.5); z-index:9998;}	
	#gnbM{ 
		display:block; 
		position:fixed; 
		top:0px; 
		right:-82%;
		width:80%; 
		height:100%;  
		max-width:280px; 
		background-color:#fff; 
		z-index:9999; 
		transition:var(--transition-custom);   
		visibility:hidden;
	}
	#gnbM.open{
		right:0px; 
		visibility:visible;
	}
	/* GNB Mobile :: 레이아웃 */
	.gnb-navigation-wrapper{position:relative; height:100%; box-sizing:border-box; padding-top: calc(var(--header-height) - 2px); overflow-y:auto;}	
	.header-util-menu-box + .gnb-navigation-wrapper{padding-top:0; height:calc(100% - var(--header-height));}
	
	/* GNB Mobile :: 메뉴영역 :: 1차 */
	#navigation > li{border-bottom:1px solid #e7e7e7;}
	#navigation > li:first-child{border-top:2px solid #000;}
	#navigation > li > a {position:relative; display:block; padding:2rem calc(var(--area-padding) + 2rem) 2rem var(--area-padding); color:#000; font-size:1.8rem; line-height: 1.2; font-weight:700;}
	#navigation > li.active > a{color:var(--main-color);}
	#navigation > li.has-2dep > a:before{font-family:xeicon; content: "\e914"; position:absolute; top:50%; right:var(--area-padding); font-size:1.3em; font-weight: 400; transform:translateY(-50%);}
	#navigation > li.has-2dep.active > a:before{content: "\e91b";}
	/* GNB Mobile ::  메뉴영역 :: 2차 */
	#navigation > li .gnb-2dep{display:none; padding:15px 0; background-color:#f2f2f2; }
	#navigation > li .gnb-2dep > ul > li{height:auto !important;}
	#navigation > li .gnb-2dep > ul > li > a{display:block; color:#888; font-size:1.7rem; line-height: 1.3; padding:1.5rem var(--area-padding); }
	#navigation > li .gnb-2dep > ul > li.on > a{color:#000; font-weight:600;}
	/* GNB Mobile :: 메뉴영역 ::  3차 */
	#navigation > li .gnb-2dep > ul > li > .gnb-3dep{display:none; padding:10px; background-color:#aaa; margin:0 10px}
	#navigation > li .gnb-2dep > ul > li > .gnb-3dep > li > a{display:block; padding:8px 0; font-size:13px; color:#fff;}
	#navigation > li .gnb-2dep > ul > li > .gnb-3dep > li > a:before{display:inline-block; content:"-"; margin-right:5px;}

	/* -------- GNB Mobile :: 회원메뉴 -------- */
	/* 회원메뉴 */
	.member-menu-box{
		display:flex;
		justify-content: space-around;
		height:var(--header-height);
		text-align:center; 
		padding:10px 0; 
		padding-right: calc(60px + var(--area-padding));
		box-sizing: border-box; 
		visibility: hidden;
		opacity: 0;
	}
	.member-menu-box li{float:left; width:50%; height:100%; position:relative;}
	.member-menu-box li:before{content:""; position:absolute; top:10px; bottom:10px; left:0px; width:1px; background-color:rgba(0,0,0,0.1); content:"";}
	.member-menu-box li:first-child:before{display:none;}
	.member-menu-box li a{display:block; color:#000; padding:6px 0}
	.member-menu-box li a i{font-size:24px;}
	.member-menu-box li a strong{display:block; padding-top: 7px; font-size:11px; letter-spacing:-0.025em; font-weight:700;}
	.header-util-menu-box .lang-select + .member-menu-box{border-top:1px solid #e7e7e7; padding-right:0;}

	/* -------- Header :: 네비게이션 오픈 버튼 -------- */
	.nav-open-btn-box{position:fixed; top:24px; right:var(--area-padding); z-index:10000; display: block;}
	.nav-open-btn{display:block; position: relative; width: 30px; height:30px; margin: 10px 10px; transition: transform 0.2s cubic-bezier(.8, .5, .2, 1.4);}
	.nav-open-btn span{position: absolute; width: 5px; height: 5px; background-color: #fff; display: block; border-radius: 50%; transition: background-color 0.4s ease-in-out 0s, position 0.5s cubic-bezier(.8, .5, .2, 1.4) 0.2s, top 0.5s cubic-bezier(.8, .5, .2, 1.4) 0.2s, bottom 0.5s cubic-bezier(.8, .5, .2, 1.4) 0.2s, left 0.5s cubic-bezier(.8, .5, .2, 1.4) 0.2s, right 0.5s cubic-bezier(.8, .5, .2, 1.4) 0.2s;}
	.nav-open-btn span:nth-child(1){left: 0; top: 0;}
	.nav-open-btn span:nth-child(2){left: 12px; top: 0;}
	.nav-open-btn span:nth-child(3){right: 0; top: 0;}
	.nav-open-btn span:nth-child(4){left: 0; top: 12px;}
	.nav-open-btn span:nth-child(5){position: absolute; left: 12px; top: 12px;}
	.nav-open-btn span:nth-child(6){right: 0px; top: 12px;}
	.nav-open-btn span:nth-child(7){left: 0px;bottom: 0px;}
	.nav-open-btn span:nth-child(8){position: absolute; left: 12px; bottom: 0px;}
	.nav-open-btn span:nth-child(9){right: 0px; bottom: 0px;}

	.nav-open-btn.active{transform: rotate(180deg);}
	.nav-open-btn.active span{background-color: #000; border-radius: 50%;}
	.nav-open-btn.active span:nth-child(2) {left: 6px; top: 6px;}
	.nav-open-btn.active span:nth-child(4) {left: 6px; top: 18px;}
	.nav-open-btn.active span:nth-child(6) {right: 6px; top: 6px;}
	.nav-open-btn.active span:nth-child(8) {left: 18px; bottom: 6px;}
	
	/* -------- Header :: top-fixed -------- */
	#header.top-fixed .cm-logo-svg .cls-1{fill: var(--main-color);}
	#header.top-fixed #headerInnerWrap{background-color:#fff;}
	#header.top-fixed #headerInner{border-bottom-color:#000;}
	#header.top-fixed .header-member-list li a{color: #000;}
	#header.top-fixed .nav-open-btn span{background-color:#000;}
}
@media all and ( max-width: 800px ){
	#header .logo a {height: 4.6rem;}

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

	/* Header :: 사이트맵, 네비게이션 버튼 */
	.nav-open-btn-box{top:14px; right:var(--area-padding);}
	.nav-open-btn{width: 30px; height:30px; margin: 10px 10px;}

	/* -------- GNB Mobile :: 회원메뉴 -------- */
	/* 회원메뉴 */
	.member-menu-box{visibility: visible; opacity: 1;}
}
@media all and ( max-width: 480px ){
	#header .logo a {height: 4.2rem;}
}

/* ****************** FOOTER ********************** */
@media all and (max-width:1890px){
	.to-top-btn{right: 20px;}
}
@media all and (max-width:800px){
	.to-top-btn.bottom-fixed.absolute {bottom: 15px;}
	
	.footer-left-con,
	.footer-right-con{width: 100%; float:none;}

	/* -------- FOOTER :: 상단 -------- */
	#footerTop{padding: 6rem 0 5rem;}

	#footerTop.col02 .footer-left-con,
	#footerTop.col02 .footer-right-con{padding: 5rem 0; width: 100%; height: auto;}
	#footerTop.col02 .footer-right-con{border-top: 1px solid rgba(255,255,255,0.3); border-left:none;}

	/* Footer :: 정보 */
	.footer-address h5{margin-bottom: 2rem; font-size: 2rem; line-height: 1.3;}
	.footer-address p{font-size: 1.3rem; line-height: 1.5;}
	.footer-address p + p{margin-top: 0.7rem;}

	.footer-partners-img{margin-top: 2rem;}
	.footer-partners-img li + li{margin-left: 3rem;}

	/* -------- FOOTER :: 하단 -------- */
	#footerBottom{padding:3rem 0;}
	#footerBottom .area-wide,
	#footerBottom .area-box{justify-content: center;}

	/* Footer :: 푸터메뉴 */
	.foot-menu{justify-content: center;}
	.foot-menu li{padding-left:3rem;}
	.foot-menu li:first-child{padding-left:0}
	.foot-menu li a{font-size:1.3rem; line-height: 1.3;}

	/* Footer :: SNS 리스트 */
	.foot-sns-menu{margin-top: 2rem; justify-content: center;}
	.foot-sns-menu li{margin-left:1.5rem}
	.foot-sns-menu li:first-child{margin-left:0}
	.foot-sns-menu li a{display:block;}
	.foot-sns-menu li a i{font-size:3rem;}
	.foot-sns-menu li a svg {width: 2.6rem; height: 2.6rem;}

	/* Footer :: Copyright */
	.footer-copyright{margin-top: 2rem; position: static; transform: translateY(0); font-size:1.3rem; line-height: 1.3;}
}

/* ****************** SUB LAYOUT ********************** */
@media all and (max-width:1360px){
	/*  SUB LAYOUT :: 컨텐츠 레이아웃 */
	#content:not(.wide){padding:9rem var(--area-padding)}
	#content.wide{padding:9rem 0 0 0}
}
@media all and (max-width:800px){
	/*  SUB LAYOUT :: 비주얼 */
	#visual .table-cell-layout {padding-top: 30rem !important;}
	#visual .visual-tit{font-size:7rem;}
	#visual .visual-sub-tit{margin-top: 2rem; font-size:2.4rem; line-height: 1.3;}
	#visual .visual-sub-txt{padding-top:3rem; font-size:2.4rem; line-height: 1.3;}
	#visual .visual-sub-txt02{padding-top:2.5rem; font-size:1.8rem; line-height: 1.44;}
	/*  SUB LAYOUT ::  서브메뉴(스타일1,2,3) */
	#topMenu01,
	#topMenu02,
	#topMenu03{display:none}

	/* -------- SUB LAYOUT :: 서브메뉴 모바일 -------- */
	#topMenuM{display:block; position:relative; height:calc(var(--sub-menu-height) + 1px); } /* (+1 border height)*/
	#topMenuM .top-menu-wrapper{position:absolute; top:0; left:0; right:0; height:var(--sub-menu-height); }
	#topMenuM .top-menu-inner{position:relative; height:var(--sub-menu-height); border-bottom:1px solid #ddd; }
	#topMenuM .menu-location{position:relative; box-sizing:border-box; width:100%;}
	#topMenuM .menu-location > .cur-location{position:relative; display:block; width:100%; text-align:left; height:var(--sub-menu-height); padding:0 var(--area-padding); padding-right:calc(var(--area-padding) + 3rem); box-sizing:border-box;}
	#topMenuM .menu-location > .cur-location span{display:block; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; line-height:var(--sub-menu-height); color:#222; font-weight:400; font-size:15px;}
	#topMenuM .menu-location > .cur-location .arrow{position:absolute; top:50%; right:10px; width:20px; height:20px; margin-top:-10px; font-size:20px;}
	#topMenuM .menu-location .location-menu-con{display:none; position:absolute; top:100%; left:-1px; right:-1px; border-bottom:1px solid #ddd; background-color:#fff; z-index:11; }
	#topMenuM .menu-location .location-menu-con li{border-top:1px solid #eee;}
	#topMenuM .menu-location .location-menu-con li a{display:flex; align-items:center; width:100%; height:35px; padding:0 var(--area-padding); font-size:14px; line-height:1.5; word-break:keep-all; box-sizing:border-box;}
	#topMenuM .menu-location .location-menu-con li.on{position:relative;}
	#topMenuM .menu-location .location-menu-con li.on a{color:var(--main-color); font-weight:500;}
	/* Home 버튼 있을때 */
	#topMenuM .location-to-home-btn + .top-menu-inner{padding-left:var(--sub-menu-height)}
	#topMenuM .location-to-home-btn{position:absolute; width:var(--sub-menu-height); height:var(--sub-menu-height); left:0px; top:0px; text-align:center; }
	#topMenuM .location-to-home-btn i{color:var(--main-color); font-size:20px; line-height:var(--sub-menu-height);}
	/* 2depth 있을때 */
	#topMenuM .menu-2dep{display:flex;}
	#topMenuM .menu-2dep .menu-location{width:100%;}
	#topMenuM .menu-2dep .menu-location.location2{}
	#topMenuM .menu-2dep .menu-location .location-menu-con{border:1px solid #ddd; border-top:0; }
	/* Menu OPEN */
	#topMenuM .menu-location.open > .cur-location .arrow{transform:rotate(-180deg); margin-top:-10px;}

	/*  SUB LAYOUT :: 상단정보 (공통) */
	#contentInfoCon{padding: 3.5rem 0;}
	#contentInfoCon .content-tit{/* font-size:3rem; */font-size: 2.8rem; line-height: 1.2;}

	/*  SUB LAYOUT :: 컨텐츠 레이아웃 */
	#content:not(.wide){padding:7rem var(--area-padding)}
	#content.wide{padding:7rem 0 0 0}
}

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