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

/* ========================================================
 * SETTING
======================================================== */
@media all and (max-width:1280px){
	:root{
		--header-top: 0;
		--header-load-height: 150px;
		--header-height: 100px;
		--sub-visual-height: 60rem;
	}
}
@media all and (max-width:800px){
	:root{
		--area-padding: 5vw;
		--sub-visual-height: 36rem;
		--sub-menu-height: 60px;
	}
}
@media all and ( max-width: 480px ){
	:root{
		--header-load-height: 110px;
		--header-height: 60px;
		/* --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:1840px){
	.area-wide{padding:0 var(--area-padding); max-width:none;}
}
/* @media all and (max-width:1680px){
	.area-max{padding:0 var(--area-padding); max-width:none;}
} */
@media all and (max-width:1575px){
	.area-box{padding:0 var(--area-padding); max-width:none;}
}
@media all and (max-width:1500px){ 
	.area{padding:0 var(--area-padding); max-width:none;}
}
@media all and (max-width:1280px){ 
	.pc-br{display:none;}
	.display-pc{display:none;}
	.display-m{display:block;}
}
@media all and (max-width:1260px){ 
	.area-min{padding:0 var(--area-padding); max-width:none;}
}
@media all and (max-width:800px){ 
	.m-br{display:block;}
	.pc-min-br{display:none;}
}

/* ****************** HEADER ********************** */
@media all and ( max-width: 1280px ){
	#header, #headerInnerWrap, #headerInner{height: var(--header-load-height);}
	#header .logo a {padding-bottom: 0;}
	
	/* -------- Header :: UTIL BOX -------- */
	.header-util-box{padding-right:60px;}
	/* Header :: 사이트맵 버튼 */
	.sitemap-line-btn, .sitemap-custom-btn{display:none;}

	/* -------- 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:#000; 
		/* 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:var(--header-height); overflow-y:auto;}	
	.header-util-menu-box + .gnb-navigation-wrapper{padding-top:0; height:calc(100% - var(--header-height));}
	
	/* GNB Mobile :: 메뉴영역 :: 1차 */
	#navigation{padding: 0 var(--area-padding);}
	#navigation > li{border-bottom:1px solid rgba(255,255,255,0.2);}
	#navigation > li > a {position:relative; display:block; padding:15px 0; color:rgba(255,255,255,0.4); font-size:3rem; font-weight:600; }
	#navigation > li.active > a{color:var(--main-color);}
	#navigation > li.has-2dep > a:before{font-family:xeicon; content: "\e941"; font-weight: 400; position:absolute; top:50%; right:0.5rem; font-size:2rem; transform:translateY(-50%);}
	#navigation > li.has-2dep.active > a:before{content: "\e944";}
	/* GNB Mobile ::  메뉴영역 :: 2차 */
	#navigation > li .gnb-2dep{display:none; padding:10px 0; border-top: 1px solid var(--main-color);}
	#navigation > li .gnb-2dep > ul > li{height:auto !important;}
	#navigation > li .gnb-2dep > ul > li > a{position: relative; display:block; color:rgba(255,255,255,0.4); font-size:1.8rem; line-height: 1.3; padding: 9px var(--area-padding) 9px 2rem;}
	#navigation > li .gnb-2dep > ul > li > a:before{position: absolute; top: 50%; margin-top: -0.4rem; left: 0.3rem; width: 0.4rem; height: 0.4rem; border: 0.2rem solid var(--main-color); border-radius: 100%; content: '';}
	#navigation > li .gnb-2dep > ul > li.on > a{color:#fff;}
	/* GNB Mobile :: 메뉴영역 ::  3차 */
	#navigation > li .gnb-2dep > ul > li > .gnb-3dep{display:none; padding:10px; background-color:#aaa; margin:0 10px}
	#navigation > li .gnb-2dep > ul > li > .gnb-3dep > li > a{display:block; padding:8px 0; font-size:13px; color:#fff;}
	#navigation > li .gnb-2dep > ul > li > .gnb-3dep > li > a:before{display:inline-block; content:"-"; margin-right:5px;}
	
	/* -------- GNB Mobile :: 스타일2 (Full Style) -------- */
	#gnbM.gnb-style-full{ 
		top:-100%; 
		right:0;
		width:100%; 
		height:100%;  
		max-width:none; 
	}
	#gnbM.gnb-style-full.open{
		top:0px; 
	}
	.gnb-style-full .gnb-navigation-wrapper{height:auto; width:100%; position:absolute; top:0px; bottom:0px; left:0; padding-top:0;}
	.gnb-style-full .header-util-menu-box + .gnb-navigation-wrapper{top:var(--header-height); }
	.gnb-style-full-member .gnb-navigation-wrapper{bottom:var(--header-height);}
	.gnb-style-full .gnb-navigation-inner{display:table; width:100%; height:100%;}
	.gnb-style-full #navigation{
		display:table-cell;
		vertical-align:middle;
	}
	.gnb-style-full #navigation > li{
		opacity:0;
		transform:translateY(-20px);
		transition:all 0s 0s;
	}
	.gnb-style-full.open #navigation > li{
		opacity:1.0;
		transform:translateY(0px); 
		transition:transform 0.8s, opacity 0.8s;
	}
	.gnb-style-full.open #navigation > li:nth-child(1){transition-delay:0.3s;}
	.gnb-style-full.open #navigation > li:nth-child(2){transition-delay:0.4s;}
	.gnb-style-full.open #navigation > li:nth-child(3){transition-delay:0.6s;}
	.gnb-style-full.open #navigation > li:nth-child(4){transition-delay:0.7s;}
	.gnb-style-full.open #navigation > li:nth-child(5){transition-delay:0.9s;}
	.gnb-style-full.open #navigation > li:nth-child(6){transition-delay:0.9s;}

	/* -------- Header :: 네비게이션 오픈 버튼 -------- */
	.nav-open-btn-con{position:fixed; top: 60px; right:var(--area-padding); z-index:10000; transition:var(--transition-custom); transition-property: transform,top;}
	.nav-open-btn{position: relative; top: -100px; display:block; width:30px; height:30px; display:flex; flex-wrap: wrap; justify-content: center; align-content: center; box-sizing:border-box; opacity: 0; transition: top ease-out 1.1s 0.3s, opacity ease-out 0.5s 0.3s;}
	.nav-open-btn .dot{display:block; width:4px; height:4px; background-color: rgba(255,255,255,0.2); margin: 2.5px; transition:var(--transition-custom); border-radius:4px;}
	.nav-open-btn .dot.dot2,
	.nav-open-btn .dot.dot4,
	.nav-open-btn .dot.dot6,
	.nav-open-btn .dot.dot8{background-color: rgba(255,255,255,0.9);}
	.nav-open-btn .line{position: absolute; width: 4px; height: 4px; border-radius:4px; background-color: #fff; display: block; transition:var(--transition-custom); border-radius:4px; opacity: 0;}
	.nav-open-btn .line.line1{top: 4px; left: 4px;}
	.nav-open-btn .line.line2{top: 4px; right: 4px;}
	/* active */
	.nav-open-btn.active .dot{opacity: 0;}
	.nav-open-btn.active .line{width: 30px; opacity: 1;}
	.nav-open-btn.active .line.line1{left: 0; transform: translateY(9px) rotate(45deg);}
	.nav-open-btn.active .line.line2{right: 0; transform: translateY(9px) rotate(-45deg);}

	/* -------- Header :: top-fixed -------- */
	#header.top-fixed, #header.top-fixed #headerInnerWrap, #header.top-fixed #headerInner{height: var(--header-height);}
	#header.top-fixed #headerInnerWrap{position:fixed; top: 0; background-color: rgba(0,0,0,0.8); backdrop-filter: blur(5px); z-index:99;}
	#header.top-fixed .nav-open-btn-con{top: 34px;}

	/* -------- Header :: 접속 시 -------- */
	#wrap.active-start .nav-open-btn{opacity: 1; top: 0;}
}
@media all and ( max-width: 480px ){
	#header .logo img{height:30px;}

	/* Header :: 사이트맵, 네비게이션 버튼 */
	.nav-open-btn-con{top: 40px;}
	#header.top-fixed .nav-open-btn-con{top: 16px;}
}

/* ****************** FOOTER ********************** */
@media all and (max-width:1280px){
	#footerInner .area{padding-top: 6rem; padding-bottom: 10rem; display: block;}
	.footer-left-con, .footer-right-con{width: 100%;}
	/* Footer :: 푸터로고 */
	.foot-logo{width: 100%; margin-top: 0;}
	.foot-logo img{height: 4rem;}
	/* Footer :: 정보 */
	.footer-address-info-box{width: 100%;}
	/* Footer :: 정보 */
	.footer-address-list,
	.footer-address-list + .footer-address-list{margin-top: 4rem; width: 50%;}
	.footer-address-list dl{margin-top: 1.5rem;}
	.footer-address-list dl dt,
	.footer-address-list dl dd{width: calc(100% - 8rem); font-size:1.4rem; line-height:1.5;}
	.footer-address-list dl dt{width: 8rem;}
	/* Footer :: 푸터메뉴 */
	.foot-menu{margin-top: 4.5rem; display: flex; flex-wrap:wrap; align-items: center; justify-content: center;}
	.foot-menu li{margin-top: 0; margin-left: 3.5rem;}
	.foot-menu li:first-child{margin-left: 0;}
	/* Footer :: SNS 리스트 */
	.foot-sns-menu{margin-top: 2rem;}
	.foot-sns-menu ul{justify-content: center;}
	.foot-sns-menu li{margin-left:3rem}
	.foot-sns-menu li a i{font-size:3.6rem;}
	/* Footer :: Copyright */
	.footer-copyright{margin-top: 2.5rem; text-align: center;}
}
@media all and (max-width:800px){
	/* Footer :: 정보 */
	.footer-address-list,
	.footer-address-list + .footer-address-list{width: 100%;}
}


/* ****************** SUB LAYOUT ********************** */
@media all and (max-width:1575px){
	/* 꾸밈이미지 */
	#visual .visual-bg-box{width: 46.4%;}
}
@media all and (max-width:1500px){
	/*  SUB LAYOUT :: 컨텐츠 레이아웃 */
	#content:not(.wide){padding:70px var(--area-padding)}
}
@media all and (max-width:1280px){
	#visual .visual-tit{font-size:10rem;}
	/* 꾸밈이미지 */
	#visual .visual-bg-box{width: 51.4%;}
	/*  SUB LAYOUT :: 컨텐츠 레이아웃 */
	#content.wide{padding:70px 0 0 0}
}
@media all and (max-width:800px){
	/*  SUB LAYOUT :: 비주얼 */
	#visual .visual-tit{font-size:6.2rem;}
	/* 꾸밈이미지 */
	#visual .visual-bg-box{right: 0; width: 41.4%;}
	/* SUB LAYOUT :: 위치정보(location) */
	.location{display: none;}
	/*  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 #e7e7e7; }
	#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:#333; font-weight:500; letter-spacing: -0.025em; font-size:16px;}
	#topMenuM .menu-location > .cur-location .arrow{position:absolute; top:50%; right:var(--area-padding); width:20px; height:20px; margin-top:-10px; font-size:20px; color: var(--main-color);}
	#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;}
	/* Menu OPEN */
	#topMenuM .menu-location.open > .cur-location .arrow{transform:rotate(-180deg); margin-top:-10px;}

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

	.sub-bg-circle01,
	.sub-bg-circle02{opacity: 0; visibility: hidden;}
}
@media all and (max-width:800px){
	/* 꾸밈이미지 */
	#visual .visual-bg-box {right: -5%; width: 46.4%;}
}
@media all and (max-width:480px){
	/* 꾸밈이미지 */
	#visual .visual-bg-box {right: -10%; width: 60.4%;}
}

/* ****************** 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;}
}