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

/* ========================================================
 * SETTING
======================================================== */
@media all and (max-width:1279px){
	:root{
		--header-top: 10px;
		--header-height: 120px;
		--header-fixed-height: 100px;
	}
}
@media all and (max-width:800px){
	:root{
		--area-padding: 5vw;
		--header-height: 100px;
		--header-fixed-height: 100px;
		--sub-visual-height: 48rem;
		--sub-menu-height: 8rem;
	}
}

/* ========================================================
 * FONT SIZE
======================================================== */
@media all and (max-width:1536px){
	html{font-size:0.6510vw;} /* 10 */
}
@media all and (max-width:1279px){
	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:1860px){
	.area-wide{padding:0 var(--area-padding); max-width:none;}
}
@media all and (max-width:1660px){
	.area-box{padding:0 var(--area-padding); max-width:none;}
}
@media all and (max-width:1500px){
	.area-sub{padding:0 var(--area-padding); max-width:none;}
}
@media all and (max-width:1260px){ 
	.area{padding:0 var(--area-padding); max-width:none;}
}
@media all and (max-width:1279px){ 
	.pc-br{display:none;}
	.display-m{display:block;}
	.display-pc{display:none;}
}
@media all and (max-width:800px){ 
	.m-br{display:block;}
}

/* ****************** HEADER ********************** */
@media all and ( max-width: 1536px ){
	#header .logo a {height: 42px;}
}
@media all and ( max-width: 1279px ){
	/* -------- Header :: UTIL BOX -------- */
	.header-util-box{padding-right:120px;}
	/* 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:#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{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:#333; font-size:2rem; font-weight:500; }
	#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; transform:translateY(-50%);}
	#navigation > li.has-2dep.active > a:before{content: "\e91b";}
	/* GNB Mobile ::  메뉴영역 :: 2차 */
	#navigation > li .gnb-2dep{display:none; padding:2.2rem 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.8rem; padding: 1.2rem var(--area-padding); }
	#navigation > li .gnb-2dep > ul > li.on > a{color:#000; font-weight:500;}
	/* 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{
		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.9s;}
	.gnb-style-full.open #navigation > li:nth-child(6){transition-delay:0.9s;}

	/* -------- Header :: 네비게이션 오픈 버튼 -------- */
	.nav-open-btn-wrap{display: block; position:fixed; top:var(--header-top); right:var(--area-padding); z-index:10000; transition:var(--transition-custom);}
	.nav-open-btn{width:80px; height:var(--header-height); display:flex; flex-direction:column; justify-content: center; box-sizing:border-box; transition:var(--transition-custom); transition-property:height;}
	.nav-open-btn .line{display:block; width:80px; height:4px; background-color:#fff; margin: 6px auto; transition:var(--transition-custom);}
	.nav-open-btn:hover .line,
	.nav-open-btn.active .line{width: 54px;}
	.nav-open-btn.active .line{background-color: #000;}
	.nav-open-btn.active .line:nth-child(1){
		transform: translateY(8px) rotate(45deg);
	}
	.nav-open-btn.active .line:nth-child(2){
		transform: translateY(-8px) rotate(-45deg);
	}
	
	#header.top-fixed:before{height:var(--header-fixed-height); transform:translateY(0);}
	/* #header.top-fixed #headerInnerWrap{height: var(--header-fixed-height); position: fixed; z-index: 99;} */
	#header.top-fixed .logo .cm-logo-svg .mark-logo *{fill:#6F1D46}
	#header.top-fixed .header-lang .lang-open-btn{border-color:rgba(0,0,0,0.3); color:#000;}
	#header.top-fixed .header-lang > ul > li > a{color: #000; border:2px solid rgba(0,0,0,0.3);}
	#header.top-fixed .header-lang > ul > li > a:hover{border-color: #000;}
	#header.top-fixed .nav-open-btn-wrap{top: 0;}
	#header.top-fixed .nav-open-btn{width:80px; height:var(--header-fixed-height);}
	#header.top-fixed .nav-open-btn .line{background:#000;}
}
@media all and ( max-width: 800px ){
	#header .logo a {height: 38px;}

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

	/* Header :: 언어선택 */
	.header-lang {width:9rem; width: auto;}
	.header-lang .lang-open-btn {width:100%; height:4rem; padding:0 1.8rem 0 1rem; padding: 0 1rem; border: 0;}
	.header-lang .lang-open-btn i {font-size:2.4rem;}
	.header-lang .lang-open-btn strong{font-size:1.2rem; display: none;}
	.header-lang > ul {top:4rem; left: 50%; margin-left: -4.5rem; width: 9rem;}
	.header-lang > ul > li{padding-top: 0.6rem;}
	.header-lang > ul > li > a{height:4rem; padding:0 1.5rem;}

	.nav-open-btn{width:56px;}
	.nav-open-btn .line{width:56px; height:3px; margin: 5px auto;}
	.nav-open-btn:hover .line,
	.nav-open-btn.active .line{width: 42px;}
	.nav-open-btn.active .line:nth-child(1){
		transform: translateY(7px) rotate(45deg);
	}
	.nav-open-btn.active .line:nth-child(2){
		transform: translateY(-7px) rotate(-45deg);
	}
	#header.top-fixed .nav-open-btn{width: 56px;}
}


/* ****************** FOOTER ********************** */
@media all and (max-width:1860px){
	#rightBar {left: var(--area-padding); margin-left: 1.2rem;}
	.share-top-btn-group{right: var(--area-padding); margin-right: 0;}
}
@media all and (max-width:1279px){
	.share-top-btn-group{bottom: 1.5rem !important; display: flex !important; opacity: 1 !important;}
	.share-btn-wrapper.quick-ver{margin-right: 1rem; margin-bottom: 0;}
	.to-top-btn .icon-box{transition: all 0s;}
	
	.main-visual-inquiry-box.top-fixed a,
	.share-btn-wrapper.quick-ver,
	.to-top-btn{padding: 0;}
	
	#footer{padding-bottom: 5rem;}
	#footerTop{display: block;}
	.foot-menu {margin-top: 3rem;}
	#footerBottom .area-wide{padding-bottom: 4rem !important;}
}
@media all and (max-width:800px){
	/* -------- FOOTER :: 상단 -------- */
	#footerTop{padding:5rem 0 4rem; display: block;}

	/* Footer :: 정보 style02 */
	.footer-address-info-box{flex-wrap:wrap;}
	.footer-address-list{width: 100%;}
	.footer-address-list + .footer-address-list{margin-top: 2rem;}
	.footer-address-list dl{margin-top: 2rem;}
	.footer-address-list dl:first-child{margin-top: 0;}
	.footer-address-list dl dt,
	.footer-address-list dl dd{width: calc(100% - 11rem); font-size: 1.5rem; line-height: 1.3;}
	.footer-address-list dl dt{width: 11rem; font-weight: 700;}

	/* Footer :: 푸터메뉴 */
	#footerTop .footer-right-con{}
	.foot-menu{margin-top: 3rem; max-width: 40rem; justify-content: space-between;}
	.foot-menu li{width: calc(33.33% - 1rem); padding-left:2rem; padding-left: 0;}
	.foot-menu li:first-child{padding-left:0}
	.foot-menu li a{padding: 2rem; width: 12rem; height: 12rem;}
	.foot-menu li a i{font-size: 2.4rem;}
	.foot-menu li a b{font-size: 1.4rem; line-height: 1.42;}

	/* -------- FOOTER :: 하단 -------- */
	#footerBottom .area-wide{padding-top: 4rem !important; padding-bottom: 4rem !important; display: block;}

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

	/* Footer :: SNS 리스트 */
	.foot-sns-menu{margin-top: 2rem; text-align:left;}
	.foot-sns-menu li{margin-left:4rem}
	.foot-sns-menu li:first-child{margin-left:0}
	.foot-sns-menu li a{font-size:2.4rem; line-height:1.5;}
}

/* ****************** SUB LAYOUT ********************** */
@media all and (max-width:1279px){
	/*  SUB LAYOUT :: 서브메뉴(스타일2,3,4) */
	#topMenu02 .area,
	#topMenu03 .area,
	#topMenu04 .area{padding:0;}
	#topMenu02 .area,
	#topMenu03 .area{margin:0 -1px}	
	/*  SUB LAYOUT :: 컨텐츠 레이아웃 */
	#content:not(.wide){padding:12rem var(--area-padding)}
	#content.wide{padding:12rem 0 0 0}
}
@media all and (max-width:800px){
	/*  SUB LAYOUT :: 비주얼 */
	#visual .table-cell-layout{vertical-align: bottom;}
	#visual .visual-txt-container{margin-top: 0; padding-bottom: 14rem;}
	#visual .visual-tit{font-size:4.4rem;}
	#visual .visual-sub-txt{font-size:1.8rem; line-height: 1.3; padding-top: 1.5rem;}
	/*  SUB LAYOUT ::  서브메뉴(스타일1,2,3) */
	#topMenu01,
	#topMenu02,
	#topMenu03{display:none}
	/* -------- SUB LAYOUT :: 서브메뉴 모바일 -------- */
	#topMenuM{display:block; position: absolute; bottom: 0; width: 100%; height:calc(var(--sub-menu-height) + 1px); z-index: 99;}
	#topMenuM .top-menu-wrapper{position:absolute; top:0; left:0; right:0; height:var(--sub-menu-height); }
	#topMenuM .top-menu-wrapper:before{position: absolute; content:''; left: var(--area-padding); right: var(--area-padding); height:2px; background:#fff; content: '';}
	#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:#fff; font-weight:500; font-size:1.8rem;}
	#topMenuM .menu-location > .cur-location .arrow{position:absolute; top:50%; right:var(--area-padding); width:2.4rem; height:2.4rem; margin-top:-1.2rem; font-size:2.4rem; color: #fff;}
	#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:5rem; padding:0 var(--area-padding); font-size:1.7rem; 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:-1.2rem;}

	/*  SUB LAYOUT :: 상단정보 (공통) */
	#contentInfoCon{margin:0 auto 4rem;}
	#contentInfoCon .content-tit{font-size:3.8rem;}

	/*  SUB LAYOUT :: 컨텐츠 레이아웃 */
	#content:not(.wide){padding: 8rem var(--area-padding)}
	#content.wide{padding: 8rem 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;}
}