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

/* ========================================================
 * SETTING
======================================================== */
@media all and (max-width:1280px){
	:root{
		--header-top: 20px;
		--header-fixed-top: 0px;
		--header-height: 100px;
	}
}
@media all and (max-width:800px){
	:root{
		--area-padding: 5vw;
		--header-top: 10px;
		--header-fixed-top: 0px;
		--header-height: 80px;
		--sub-menu-height: 5rem;
		--sub-visual-height: 100vh;
	}
}
@media all and ( max-width: 480px ){
	:root{
		--sub-menu-height: 5.5rem;
	}
}

/* ========================================================
 * 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:1880px){
	.area-wide{padding:0 var(--area-padding); max-width:none;}
}
@media all and (max-width:1600px){
	.area-box{padding:0 var(--area-padding); max-width:none;}
}
@media all and (max-width:1460px){ 
	.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.top-fixed #headerInnerWrap{background: rgba(0, 0, 0, 0.15); backdrop-filter: blur(2rem);}
	
	/* -------- Header :: UTIL BOX -------- */
	.header-util-box{padding-right:70px;}
	/* 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 .gnb-2dep-box .area-box{padding: 0;}
	#navigation .gnb-2dep-box .gnb-tit{display: none;}
	#navigation > li{border-bottom:1px solid #e7e7e7;}
	#navigation > li:first-child{border-top:1px solid #e7e7e7}
	#navigation > li > a {position:relative; display:block; padding: 2rem var(--area-padding); color:#fff; font-size:1.8rem; font-weight:500;}
	#navigation > li.active > a{color:var(--main-color); font-weight: 700;}
	#navigation > li.has-2dep > a:before{font-family:xeicon; content: "\e914"; position:absolute; top:50%; right:var(--area-padding); font-size:1.3em; transform:translateY(-50%);}
	#navigation > li.has-2dep.active > a:before{content: "\e91b";}
	/* GNB Mobile ::  메뉴영역 :: 2차 */
	#navigation > li .gnb-2dep-box{display:none; padding:1.5rem 0; background-color:#333;}
	#navigation > li .gnb-2dep > ul li{height:auto !important;}
	#navigation > li .gnb-2dep > ul li > a{display:block; color:rgba(255,255,255,0.7); font-weight:500; font-size:1.6rem; padding:1.2rem var(--area-padding); }
	#navigation > li .gnb-2dep > ul li.on > a{color:#fff; 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 :: 스타일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:var(--header-height); bottom:var(--header-height); left:0; padding-top:0;}
	.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{
		text-align:center; 
		border:0; 
		opacity:0;
		transform:translateY(-20px);
		transition:all 0s 0s;
	}
	.gnb-style-full #navigation > li:first-child {border:0}
	.gnb-style-full #navigation > li > a {}
	.gnb-style-full #navigation > li .gnb-icon i{display:none;}
	.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.8s;}
	.gnb-style-full.open #navigation > li:nth-child(6){transition-delay:0.9s;}
	.gnb-style-full.open #navigation > li:nth-child(7){transition-delay:1.0s;}

	/* -------- Header :: 네비게이션 오픈 버튼 -------- */
	.nav-open-btn{
		position:fixed; top: calc(26px + var(--header-top)); right:var(--area-padding); z-index:10000; 
		width: 40px; height: 45px; display: flex; align-items: center; gap: 4px; transition:var(--transition-custom); transition-property: top;
	}
	.nav-open-btn .line{
		width: 10px; height: 20px; background-color: var(--main-color); transform: skew(-30deg) translate(0px,2px); transition:var(--transition-custom);
	}
	.nav-open-btn.active{gap: 0;}
	.nav-open-btn.active .line{width:20px; height:2px;}
	.nav-open-btn.active .line:nth-child(2){opacity: 0; display: none;}
	.nav-open-btn.active .line:nth-child(1){
		transform: skew(0deg) translate(10px,0px) rotate(45deg);
	}
	.nav-open-btn.active .line:nth-child(3){
		transform: skew(0deg) translate(-10px,0px) rotate(-45deg);
	}

	#header.top-fixed .nav-open-btn{top: calc(26px + var(--header-fixed-top));}
}
@media all and ( max-width: 800px ){
	#header .logo a{height:21px;}

	/* -------- Header :: UTIL BOX -------- */
	.header-util-box{padding-right:60px;}
	/* Header :: 사이트 이동 버튼 */
	.header-link-list li{margin-left:15px;}
	.header-link-list li:first-child{margin-left:0}
	.header-link-list li a{width: 60px; height: 30px; font-size: 15px;}

	/* Header :: 사이트맵, 네비게이션 버튼 */
	.nav-open-btn{top: calc(15px + var(--header-top));}
	#header.top-fixed .nav-open-btn{top: calc(15px + var(--header-fixed-top));}
}

/* ****************** FOOTER ********************** */
@media all and (max-width:1280px){
	
}
@media all and (max-width:800px){
	/* -------- FOOTER :: 상단 -------- */
	#footerTop{padding:6rem 0;}

	/* Footer :: 푸터로고 */
	.foot-logo svg{height: 24px;}

	/* Footer :: 정보 */
	.footer-address-info-box{margin-top: 5rem; display: block;}
	.footer-address-list{width: 100%;}
	.footer-address-list + .footer-address-list{margin-top: 3rem;}
	.footer-address-list h5{margin-bottom: 1.5rem; font-size: 1.8rem; line-height: 1.3;}
	.footer-address-list dl + dl{margin-top: 1rem;}
	.footer-address-list dl dt,
	.footer-address-list dl dd{width: calc(100% - 12.5rem); padding-right: 0; font-size:1.4rem; line-height:1.3;}
	.footer-address-list dl dt{width: 12.5rem; font-weight: 500; color: #000;}
	.footer-address-list + .footer-address-list dl dt{width: 12.5rem;}
	.footer-address-list a{color:inherit}

	#footerTop .footer-right-con{margin-top: 5rem; width: 100%; display: flex; flex-wrap:wrap; align-items: center; justify-content: space-between;}

	/* Footer :: 개인정보처리방침 버튼 */
	.foot-privacy-btn{padding: 0 4rem 0 2rem; width: calc(50% - 0.5rem); height:4.5rem; font-size: 1.4rem; border-radius: 4.5rem; }
	.foot-privacy-btn:after{right:1.5rem; font-size:1.6rem;}

	/* Footer :: 패밀리사이트 */
	.family-site-box{margin-top: 0; width:calc(50% - 0.5rem);}
	.family-site-box .family-site-open-btn{height:4.5rem; padding: 0 4rem 0 2rem; font-size: 1.4rem; border-radius: 4.5rem;}
	.family-site-box .family-site-open-btn:after{right:1.8rem; font-size:1.6rem;}
	.family-site-list{bottom:calc(100% - 0.3rem); padding:10px 0; border-radius: 2rem;}
	.family-site-list a{padding:10px 20px; font-size:1.4rem;}

	/* -------- FOOTER :: 하단 -------- */
	#footerBottom .area-box{padding-top: 3rem !important; padding-bottom: 3rem !important; align-items: flex-start; flex-direction: column;}

	/* Footer :: Copyright */
	.footer-copyright{width: 100%; font-size:1.4rem; line-height: 1.3;}

	/* Footer :: SNS 리스트 */
	.foot-sns-menu{margin-top: 2rem; width: 100%;}
	.foot-sns-menu li{margin-left:1.5rem}
	.foot-sns-menu li:first-child{margin-left:0}
	.foot-sns-menu li a i{font-size:2rem;}
	.icon-naver-svg{height: 1.8rem;}
}

/* ****************** SUB LAYOUT ********************** */
@media all and (max-width:1460px){ 
	/*  SUB LAYOUT :: 컨텐츠 레이아웃 */
	#content:not(.wide){padding:18rem var(--area-padding)}
	#content.wide{padding:18rem 0 0 0}
}
@media all and (max-width:1280px){
	/*  SUB LAYOUT :: 컨텐츠 레이아웃 */
	#content:not(.wide){padding:14rem var(--area-padding)}
	#content.wide{padding:14rem 0 0 0}
	/*  SUB LAYOUT :: 비주얼 */
	#visual .visual-img-con img{max-height: 100%;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); width: auto;}

}
@media all and (max-width:800px){
	/*  SUB LAYOUT :: 비주얼 */
	#visual .visual-tit{font-size:6.3rem;}
	#visual .visual-sub-txt{padding-top:3rem; font-size:1.9rem; line-height: 1.6;}
	#visual .scroll-icon{margin: 4.5rem auto 0;}
	#visual .scroll-icon .bar{width:3px; height:9rem;}
	/*  SUB LAYOUT ::  서브메뉴(스타일1,2,3) */
	#topMenu01,
	#topMenu02,
	#topMenu03{display:none}
	/*  SUB LAYOUT :: 서브메뉴(스타일4) */
	#topMenu04{margin-top: calc(-1 * (var(--sub-menu-height) + 80px)); height:calc(var(--sub-menu-height) + 80px);}
	#topMenu04 .cm-top-menu{flex-direction: column; align-items: center; justify-content: center; box-sizing: border-box;}
	/* 위치정보(location) */
	.location li{margin-left: 4rem; font-size:1.6rem;}
	.location li i{font-size:1.6rem; margin-top:-0.1rem;}
	.location li:before,
	.location li:after{margin-top: -0.25rem; left: -1.8rem; width: 0.5rem; height: 0.5rem;}
	.location li:before{left: -2.8rem;}
	/* 메뉴리스트 */
	#topMenu04 .menu-location-box{margin-top: 2rem; width: 100%; display: flex; align-items: center; justify-content: center;}
	#topMenu04 .menu-location{width: 48.5%; max-width:220px;}
	#topMenu04 .menu-location > .cur-location{position:relative; display:block; width:100%; height:var(--sub-menu-height); padding:0 3.5rem 0 2rem; background-color: var(--main-color); border-radius: calc(var(--sub-menu-height) / 2); text-align:left; transition: border-radius 0.3s 0.45s;}
	#topMenu04 .menu-location > .cur-location span{display:block; width:100%; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; line-height:var(--sub-menu-height); font-size:1.7rem; letter-spacing:-0.02em; font-weight: 600; color: #fff;}
	#topMenu04 .menu-location > .cur-location .arrow{position:absolute; top:50%; right:1.5rem; margin-top:-0.8rem; font-size:2rem; color: #fff;}
	#topMenu04 .menu-location.open > .cur-location{border-radius: calc(var(--sub-menu-height) / 2) calc(var(--sub-menu-height) / 2) 0 0; transition: border-radius 0s 0s;}
	#topMenu04 .menu-location.open > .cur-location .arrow{transform:rotate(-180deg);}
	#topMenu04 .menu-location .location-menu-con{display:none; position:absolute; top:100%; left:0; right:0px; background-color:var(--main-color); z-index:11; border-radius: 0 0 2rem 2rem;}
	#topMenu04 .menu-location .location-menu-con li:last-child{padding-bottom: 1.5rem;}
	#topMenu04 .menu-location .location-menu-con li a{display:block; padding: 1rem 2rem; font-size:1.6rem; line-height: 1.3; letter-spacing:-0.02em; font-weight: 400; color: #fff; opacity: 0.7; word-break:keep-all;}
	#topMenu04 .menu-location .location-menu-con li.on{position:relative;}
	#topMenu04 .menu-location .location-menu-con li.on a{opacity: 1; font-weight:700;}
	#topMenu04 .menu-location.location2{margin-left: 1rem;}
	#topMenu04 .menu-location.location2 > .cur-location,
	#topMenu04 .menu-location.location2 .location-menu-con{background-color: #fff;}
	#topMenu04 .menu-location.location2 .location-menu-con li a {color: #000;}
	/* // */

	/*  SUB LAYOUT :: 상단정보 (공통) */
	#contentInfoCon{margin-bottom: 5rem;}
	#contentInfoCon .content-sub-tit{font-size:1.9rem; line-height: 1.3;}
	#contentInfoCon .content-tit{font-size: 4.2rem; line-height: 1.1;}
	#contentInfoCon .content-sub-tit + .content-tit{margin-top: 2rem;}

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

@media all and (max-width:640px){
	#visual.sub-visual-pr .visual-img-con img {left: 30%;}
}

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