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

/* ========================================================
 * SETTING
======================================================== */
@media all and (max-width:1280px){
	:root{
		--header-height: 75px;
		--sub-menu-fixed-height: 5rem;
	}
}
@media all and (max-width:800px){
	:root{
		--area-padding: 5vw;
		--sub-visual-height: 30rem;
		--sub-menu-height: 6rem;
	}
}

/* ========================================================
 * 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:1735px){
	.area-box{padding:0 var(--area-padding); max-width:none;}
}
@media all and (max-width:1600px){ 
	.area{padding:0 var(--area-padding); max-width:none;}
}
@media all and (max-width:1360px){ 
	.area-min{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;}
}

@media all and (max-width:800px){ 
	.pc-middle-br {display: none;}
	.display-pc800{display:none;}
	.display-m800{display:block;}
}

@media all and (max-width:480px){ 
	.pc-min-br {display: none;}
	.m-min-br{display:block;}
}

/* ****************** HEADER ********************** */
@media all and (max-width:1735px){ 
	#gnb > ul {max-width: none; padding: 0 calc(var(--area-padding) + 140px);}
}
@media all and ( max-width: 1280px ){
	/* #headerInnerWrap{position:fixed; z-index:99;} */
	#header .logo a{height: 32px;}
	
	/* -------- Header :: UTIL BOX -------- */
	.header-util-box{display: none;}
	/* 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:-102%;
		width:100%; 
		height:100%; 
		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: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 > li{}
	#navigation > li:first-child{margin-top: 1rem;}
	#navigation > li > a {position:relative; display:block; padding:2.5rem var(--area-padding); color:#333; font-size:1.8rem; line-height: 1.3; letter-spacing: -0.025em; font-weight:700;}
	#navigation > li.active > a{color:var(--main-color2);}
	#navigation > li.has-2dep > a:before{font-family:xeicon; content: "\e942"; position:absolute; top:50%; right:var(--area-padding); font-size:1.8rem; transform:translateY(-50%); color: #999;}
	#navigation > li.has-2dep.active > a:before{content: "\e945";}
	/* GNB Mobile ::  메뉴영역 :: 2차 */
	#navigation > li .gnb-2dep{display:none; padding:1.7rem var(--area-padding); background-color:#f6f6f6; }
	#navigation > li .gnb-2dep > ul{display: flex; flex-wrap:wrap;}
	#navigation > li .gnb-2dep > ul > li{width: 50%; height:auto !important;}
	#navigation > li .gnb-2dep > ul > li > a{display:block; color:#555; font-size:1.5rem; line-height: 1.3; letter-spacing: -0.05em; padding:1.3rem 0;}
	#navigation > li .gnb-2dep > ul > li:nth-child(even) > a{padding-left: 1.5rem;}
	#navigation > li .gnb-2dep > ul > li.on > a{color:#222; font-weight:700;}
	/* 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 :: 언어선택 및 회원메뉴 -------- */
	/* 언어선택 */
	.header-util-menu-box .lang-select{height:var(--header-height); display:flex; align-items:center; padding:0 var(--area-padding);}
	.header-util-menu-box .lang-select li{float:left; margin-left:2rem}
	.header-util-menu-box .lang-select li:first-child{margin-left:0;}
	.header-util-menu-box .lang-select li > a{position:relative; display:block; height:22px; line-height:22px; color:#999; font-size:1.5rem; letter-spacing: -0.025em; font-weight:700; border-bottom: 1px solid #fff;}	
	.header-util-menu-box .lang-select li.cur a{color:var(--main-color2); border-bottom-color: var(--main-color2);}
	/* gnb full style일때 회원메뉴 위치이동 */
	.gnb-style-full .member-menu-box{position:absolute; bottom:0px; left:0px; right:0; margin-right:0px; padding:0; border-top:1px solid #e7e7e7;}
	.gnb-style-full .member-menu-box li a{padding:16px 0;}

	/* -------- Header :: 네비게이션 오픈 버튼 -------- */
	.nav-open-btn{
		display:block; position:fixed; top:12.5px; right:var(--area-padding); z-index:10000; 
		width:50px; height:50px; display:flex; flex-direction:column; align-items: flex-end; justify-content: center; box-sizing:border-box;
		transition:var(--transition-custom); 
	}
	.nav-open-btn .line{display:block; width:25px; height:3px; background-color:var(--main-color); margin: 3.5px 0; transition:var(--transition-custom);}
	.nav-open-btn .line.line2{width: 50px; background-color:#666;}

	.nav-open-btn.active{align-items: center;}
	.nav-open-btn.active .line.line2,
	.nav-open-btn.active .line{width: 40px; background-color:var(--main-color);}
	.nav-open-btn.active .line:nth-child(1){
		transform: translateY(5px) rotate(45deg);
	}
	.nav-open-btn.active .line:nth-child(2){
		transform: translateY(-5px) rotate(-45deg);
	}
	
	/* -------- Header :: sub ver -------- */
	.sub-wrap #header .logo .color{opacity: 0; visibility: hidden;}
	.sub-wrap #header .logo .white{opacity: 1; visibility: visible;}
	.sub-wrap .nav-open-btn .line.line2{background-color: #fff;}
	
	/* -------- Header :: fixed ver -------- */
	#header.top-fixed{position: fixed; top:0;}
	#header.top-fixed #headerInnerWrap{background-color:#fff; border-bottom:1px solid #eee;}
	.sub-wrap #header.top-fixed .logo .color{opacity: 1; visibility: visible;}
	.sub-wrap #header.top-fixed .logo .white{opacity: 0; visibility: hidden;}
	.sub-wrap #header.top-fixed .nav-open-btn .line{background-color:var(--main-color);}
	.sub-wrap #header .nav-open-btn.active .line.line2,
	.sub-wrap #header.top-fixed .nav-open-btn.active .line.line2,
	.sub-wrap #header.top-fixed .nav-open-btn .line.line2{background-color:#666;}
}

/* ****************** FOOTER ********************** */
@media all and (max-width:800px){
	#footerInner{padding:5rem 0;}
	#footerInner .area-box{display: block;}
	.footer-left-con{width: 100%; display:block;}
	.footer-right-con{width: 100%; display:block;}

	/* -------- FOOTER :: 왼쪽 -------- */
	/* Footer :: 푸터로고 */
	.foot-logo{width: 100%;}
	.foot-logo img{height: 4.3rem; max-height: 43px;}

	.foot-info-group{margin-top: 3.5rem; width: 100%;}
	/* Footer :: 정보 */
	.footer-address p{font-size:1.6rem; line-height:1.5;}

	/* Footer :: 정보 style02 */
	.footer-address-list{margin-top: 1.5rem;}
	.footer-address-list dl{margin-right:3.5rem;}
	.footer-address-list dl:last-child{margin-right:0}
	.footer-address-list dl dt,
	.footer-address-list dl dd{font-size:1.6rem; line-height:1.5;}
	.footer-address-list dl dt{margin-right:1.5rem;}

	.foot-family-sns{margin-top: 3.5rem; display: flex; flex-wrap:wrap; align-items: center;}
	/* Footer :: 패밀리사이트 */
	.family-site-box{width:20rem;}
	.family-site-box .family-site-open-btn{height:4.5rem; line-height:4.5rem; padding:0 2.5rem; font-size:1.5rem;}
	.family-site-box .family-site-open-btn:after{right:2rem; font-size:1.8rem;}

	/* Footer :: SNS 리스트 */
	.foot-sns-list{margin-left: 1rem;}
	.foot-sns-list li{margin-left:1rem;}
	.foot-sns-list li:first-child{margin-left:0;}
	.foot-sns-list li a{width:4.5rem; height:4.5rem;}
	.foot-sns-list li a i{font-size:2.2rem; opacity: 0.5;}

	/* -------- FOOTER :: 오른쪽 -------- */
	/* Footer :: 푸터메뉴 */
	.foot-menu{margin-top: 2.5rem; display: flex; flex-wrap:wrap;}
	.foot-menu li{padding-left:3rem; line-height:3rem;}
	.foot-menu li:first-child{padding-left:0;}
	.foot-menu li a{font-size:1.6rem; opacity: 0.8;}

	/* Footer :: Copyright */
	.footer-copyright{margin-top: 1rem; font-size:1.3rem; line-height: 1.5;}
}

/* ****************** SUB LAYOUT ********************** */
@media all and (max-width:1600px){ 
	#content:not(.wide){padding:13rem var(--area-padding);}
	#content:not(.wide) #contentInfoCon{padding: 0;}
	#visual .visual-txt-container{padding-right: 3rem; box-sizing: border-box;}
}
@media all and (max-width:1280px){
	/*  SUB LAYOUT :: 컨텐츠 레이아웃 */
	#content:not(.wide){padding:10rem var(--area-padding)}
	#content.wide{padding:10rem 0 0 0}
}
@media all and (max-width:800px){
	/*  SUB LAYOUT :: 비주얼 */
	#visual .table-cell-layout {padding-bottom: 7rem;}
	#visual .visual-txt-container{padding-right: 1.5rem;}
	#visual .visual-sub-txt{font-size:1.5rem; line-height: 1.3;}
	#visual .visual-sub-txt:before{top: -1.7rem; right: -1.5rem; width: 2.5rem; height: 2.5rem;}
	#visual .visual-tit{margin-top: 1.5rem; font-size:5rem;}
	/*  SUB LAYOUT ::  서브메뉴(스타일1,2,3) */
	#topMenu01,
	#topMenu02,
	#topMenu03{display:none}
	#topMenu01 .side-menu-inner:before{display: none;}
	/* -------- SUB LAYOUT :: 서브메뉴 모바일 -------- */
	#topMenuM{margin-top: calc(-1 * var(--sub-menu-height)); display: block; position: relative; top: 0; left: 0; width: 100%; height:var(--sub-menu-height); box-shadow:1.5rem 1.5rem 3rem -0.75rem rgba(0,0,0,0.1); z-index: 99;}
	#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);}
	#topMenuM .menu-location{position:relative; box-sizing:border-box; width:100%; background-color: rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);}
	#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:#fff; font-weight:400; font-size:1.7rem; letter-spacing: -0.05em;}
	#topMenuM .menu-location > .cur-location .arrow{position:absolute; top:50%; right:var(--area-padding); width:3rem; height:3rem; margin-top:-1.5rem; font-size:2rem; color: #fff; background-color: var(--main-color); border-radius: 100%; display: flex; align-items: center; justify-content: center; box-shadow:1.5rem 1.5rem 3rem -0.75rem rgba(0,0,0,0.1);}
	#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 br {display: none;}
	#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);}
	/* 서브메뉴 Fixed */
	#topMenuM.top-fixed .top-menu-wrapper{position:fixed; top:var(--header-height); left:0px; z-index:9999;}
	#topMenuM.top-fixed .menu-location{background-color: rgba(0,0,0,0.5);}

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

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