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

/* ========================================================
 * SETTING
======================================================== */
@media all and (max-width:1280px){
	:root{
		--header-height: 80px;
		--header-top:34px;
	}
}
@media all and (max-width:800px){
	:root{
		--area-padding: 5vw;
		--header-top:5vw;
	}
}
@media all and ( max-width: 480px ){
	
}

/* ========================================================
 * 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:1900px){
	.area-wide {padding:0 var(--area-padding); max-width:none;}
}
@media all and (max-width:1780px){
	.area-wrap {padding:0 var(--area-padding); max-width:none;}
}
@media all and (max-width:1660px){	/* max-width : (area-box width) + 60px */
	.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:1440px){ 
	.area-sub{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:1660px){
    #headerInner { padding: 0 calc(2 * var(--area-padding));}
	.sub-wrap #headerInner {padding: 0 var(--area-padding);}
}
@media all and ( max-width: 1366px ){
	/* -------- Header :: GNB(PC) -------- */
	#gnb > ul > li > a{font-size:18px; padding:0 40px}
	#gnb > ul > li .gnb-2dep ul li a{font-size:14px; }
}
@media all and ( max-width: 1280px ){
	.fullpage-html #header{position:relative;}
	#header {top: var(--header-top);}
	#headerInnerWrap{position:fixed; z-index:99;top: var(--header-top); }
	
	#header.top-fixed {top: 0;}
	#header.top-fixed #headerInnerWrap{background-color:rgba(255,255,255,0.2); backdrop-filter:blur(1rem); top: 0;}
	#header.top-fixed .nav-open-btn {top: 18px;}
	
	.sub-wrap #header.top-fixed #headerInnerWrap {background-color:rgba(0,0,0,0.2); }
	
	/* Header :: 로고 */
	#header .logo img { height: 37.5px !important; width: auto !important; }
	#header.sitemap-open .logo { opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }

	/* -------- Header :: UTIL BOX -------- */
	.header-util-box{ padding-right: 0; gap: 6px; }
	/* Header :: 사이트맵 버튼 — 인라인 스타일이 flex로 유지 */
	.sitemap-line-btn, .sitemap-custom-btn{ width: 40px; height: 40px; }
	/* Header :: 언어 셀렉트 모바일 크기 */
	.header-lang-select select { height: 32px; font-size: 1.2rem; padding: 0 26px 0 10px; background-size: 10px; background-position: right 8px center; }
	/* Header :: 로그인/회원가입 — 모바일 헤더에서 숨김 (햄버거 메뉴로 이동) */
	.header-auth-box {display: none !important;}
	/* 햄버거 메뉴 상단 auth 버튼 — 헤더바(header-height) 아래로 밀어 가림 방지 */
	#gnbM .header-util-menu-box {margin-top: var(--header-height);}
	.gnb-auth-box {display: flex; align-items: center; gap: 8px; padding: 0 var(--area-padding); height: var(--header-height); border-bottom: 1px solid #eee;}
	.gnb-auth-box .header-auth-btn {height: 3.6rem; padding: 0 1.6rem; font-size: 1.4rem; flex: 1; justify-content: center;}
	/* 흰 배경 위에서 텍스트/테두리 색상 보정 */
	.gnb-auth-box .header-login-btn {color: #333; border-color: rgba(0,0,0,0.22);}
	.gnb-auth-box .header-login-btn:hover {color: #000; border-color: #333;}

	.header-lang-list {display: none;}

	/* Footer :: 푸터로고 */
	.foot-logo img { height: 33px !important; width: auto !important; }

	/* -------- 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);   
		padding-top:var(--header-top);
		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:15px var(--area-padding); color:#000; font-size:17px; 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:15px 0; background-color:#f2f2f2; }
	#navigation > li .gnb-2dep > ul > li{height:auto !important;}
	#navigation > li .gnb-2dep > ul > li > a{display:block; color:#000; font-size:14px; padding:12px 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;}
	
	/* -------- 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; border:1px solid #e5e5e5; margin-left:-1px}
	.header-util-menu-box .lang-select li:first-child{margin-left:0;}
	.header-util-menu-box .lang-select li > a{position:relative; display:block; min-width:18px; text-align:center ; height:40px; line-height:40px; padding:0 10px; color:#555; font-size:12px; font-weight:500;}	
	.header-util-menu-box .lang-select li.cur{border-color:var(--main-color); position:relative; z-index:1;}
	.header-util-menu-box .lang-select li.cur a{color:var(--main-color); z-index:1;}
	/* 회원메뉴 */
	.member-menu-box{
		display:flex;
		justify-content: space-around;
		height:var(--header-height);
		text-align:center; 
		padding:10px 0; 
		padding-right:60px;
		box-sizing: border-box; 
	}
	.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:#444;  padding:6px 0}
	.member-menu-box li a i{font-size:30px;}
	.member-menu-box li a strong{display:block; padding-top:5px; font-size:13px; letter-spacing:-0.5px; font-weight:400;}
	.header-util-menu-box .lang-select + .member-menu-box{border-top:1px solid #e7e7e7; padding-right:0;}
	/* 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:50px;  right:calc(2*var(--area-padding)); z-index:10000; 
		width:48px; height:48px;
		transition:var(--transition-custom); 
	}
	.nav-open-btn .dot{
		position: absolute; top: 50%; left: 50%; margin: -24px 0 0 -24px; transition:var(--transition-custom);
	}
	.nav-open-btn .dot i {font-size: 48px; color: #000; transition:var(--transition-custom)}
	
	.nav-open-btn.active .dot i  {color: #000;}
	.nav-open-btn.active .dot:nth-child(1){
		 transform: translateY(0) rotate(45deg);
	}
	.nav-open-btn.active .dot:nth-child(2){
		  transform: translateY(0) rotate(-45deg);
	}
	
	#header.top-fixed .nav-open-btn .line{background-color:#333}
	.sub-wrap .nav-open-btn {right: var(--area-padding);}
}
@media all and ( max-width: 800px ){
	.nav-open-btn {top: 44px;}
}
@media all and ( min-width: 481px ) and ( max-width: 1280px ) {
	.nav-open-btn.active{right:20px;}
}
@media all and ( max-width: 480px ){

	/* Header :: 햄버거 메뉴 auth 버튼 — 소형 모바일 */
	.gnb-auth-box .header-auth-btn {height: 3.2rem; font-size: 1.3rem;}

	/* Header :: 언어선택 */
	.header-lang{width:60px; margin-left:5px}
	.header-lang strong{display:none;}
	.header-lang > ul{border-color:#ccc;}
	.header-lang > ul > li > a{padding:0; text-align:center;}
	
	/* Header :: GNB(Mobile) */
	#navigation > li > a{font-size:15px;}
	#navigation > li .gnb-2dep > ul > li > a{font-size:13px;}

	/* Header :: 언어선택 및 회원메뉴 */
	/* 언어선택 */
	.header-util-menu-box .lang-select li > a{height:38px; line-height:38px}
	/* 회원메뉴 */
	.member-menu-box{padding:5px 0;}
	.member-menu-box li a{ padding:4px 0}
	.member-menu-box li a i{font-size:20px;}
	.member-menu-box li a strong{padding-top:5px;}
	.gnb-style-full .member-menu-box li a{padding:10px 0;}

}

/* ****************** FOOTER ********************** */
@media all and (max-width:1660px){
	.to-top-btn,
	.footer-quick-menu {right: var(--area-padding);}
	
}
@media all and (max-width:1280px){
	
	.footer-inner-con {padding: 7rem 0;}
	.footer-address-list { margin-left: 0; margin-bottom: 3rem;}
}
@media all and (max-width:800px){
	.footer-inner-con {display: block;}
	.to-top-btn {width: 6rem; height: 6rem;}
	.to-top-btn.bottom-fixed {bottom: 2rem;}
	.to-top-btn.footer-fixed {bottom: 14rem;}
	.to-top-btn i {line-height: 6rem; font-size: 2.6rem;}
	.footer-quick-menu a,
	.footer-quick-menu .quick-menu-btn {width: 6rem; height: 6rem; line-height: 6rem;  border-radius:6rem; }
	.footer-quick-menu a:before,
	.footer-quick-menu .quick-menu-btn:before { border-radius:6rem; }
	.footer-quick-menu a i,
	.footer-quick-menu .quick-menu-btn i {line-height: 6rem; font-size: 2.6rem;}
	.footer-quick-menu a:hover,
	.footer-quick-menu .quick-menu-btn:hover {padding: 0 10rem 0 1rem;}
	.footer-quick-menu a.quick-menu-phone,
	.footer-quick-menu .quick-menu-btn.quick-menu-phone,
	.footer-quick-menu a.quick-menu-kakao,
	.footer-quick-menu .quick-menu-btn.quick-menu-kakao,
	.footer-quick-menu a.quick-menu-naver,
	.footer-quick-menu .quick-menu-btn.quick-menu-naver,
	.footer-quick-menu a.quick-menu-reservation,
	.footer-quick-menu .quick-menu-btn.quick-menu-reservation {height: 6rem; border-radius: 50%; display: flex !important; flex-direction: column !important; justify-content: center; align-items: center; gap: 0.2rem;}
	.footer-quick-menu a.quick-menu-phone:before,
	.footer-quick-menu .quick-menu-btn.quick-menu-phone:before,
	.footer-quick-menu a.quick-menu-kakao:before,
	.footer-quick-menu .quick-menu-btn.quick-menu-kakao:before,
	.footer-quick-menu a.quick-menu-naver:before,
	.footer-quick-menu .quick-menu-btn.quick-menu-naver:before,
	.footer-quick-menu a.quick-menu-reservation:before,
	.footer-quick-menu .quick-menu-btn.quick-menu-reservation:before {border-radius: 50%;}
	.footer-quick-menu a.quick-menu-phone i,
	.footer-quick-menu .quick-menu-btn.quick-menu-phone i,
	.footer-quick-menu a.quick-menu-reservation i,
	.footer-quick-menu .quick-menu-btn.quick-menu-reservation i {font-size: 1.8rem; line-height: 1 !important; display: block; transform: none;}
	.footer-quick-menu a.quick-menu-kakao svg,
	.footer-quick-menu .quick-menu-btn.quick-menu-kakao svg,
	.footer-quick-menu a.quick-menu-naver svg,
	.footer-quick-menu .quick-menu-btn.quick-menu-naver svg {display: block;}
	.quick-btn-label {font-size: 1.2rem; font-weight: 800; line-height: 1; display: block; white-space: nowrap;}
	.footer-quick-menu.bottom-fixed {bottom: 8rem;}
	.footer-quick-menu.footer-fixed {bottom: 20rem;}
	.footer-left-con,
	.footer-right-con {float: none;}
	.footer-inner-con {padding: 5rem 0 4rem;}
	.foot-logo {padding-bottom: 3rem;}
	.foot-logo img { height: 25px !important; width: auto !important; }
	.foot-logo svg {width: 158px; height: 46px;}
	.foot-sns-menu {padding-top: 0;}
	.footer-address-info-box {margin-bottom: 3rem;}
	.footer-address-list strong {font-size: 1.8rem; margin-bottom: 1.4rem;}
	.footer-address-list dl {font-size: 1.5rem;}
	
	.foot-quick-menu a {margin-left: 0; width: 25rem; height: 5rem; font-size: 1.6rem; padding: 0 2.3rem;}
	.foot-quick-menu a + a {margin-top: 1rem;}
	.footer-right-middle {margin-top: 2.5rem; display: flex; justify-content: space-between;}
	.footer-right-middle:after {display: none;}
	.foot-menu {float: none; margin-left: 0; margin-right: 3rem;}
	.foot-menu li a {font-size: 1.6rem;}
	.footer-copyright {margin-top: 1rem; font-size: 1.3rem;}
}

/* 모바일 하단 QUICK 바 */
.mobile-consult-bar,
.mobile-top-btn {display: none;}

@media all and (max-width:800px){
	:root {
		--mobile-consult-bar-height: 6.4rem;
		--mobile-consult-tab-overlap: 3.8rem;
		--mobile-consult-safe-height: calc(var(--mobile-consult-bar-height) + var(--mobile-consult-tab-overlap));
	}

	body {padding-bottom: var(--mobile-consult-bar-height);}

	/* 모바일 우측 하단 플로팅 버튼 임시 비활성화 */
	.footer-quick-menu {display: none !important;}

	.mobile-consult-bar {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 199;
		display: grid;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		height: var(--mobile-consult-bar-height);
		padding: 0.9rem 0.4rem 0.5rem;
		border-top: none;
		background: #ffffff;
		box-shadow: 0 -0.8rem 2.4rem rgba(0,0,0,0.1);
		box-sizing: border-box;
	}
	.mobile-consult-tab {
		display: block;
		position: absolute;
		left: 50%;
		top: calc(var(--mobile-consult-tab-overlap) * -1);
		width: 9rem;
		height: 3.9rem;
		border-radius: 2.2rem 2.2rem 0 0;
		background: #fff;
		color: #4A68D7;
		font-family: "Jost", sans-serif;
		font-size: 1.3rem;
		font-weight: 600;
		line-height: 3.8rem;
		text-align: center;
		letter-spacing: 0;
		transform: translateX(-50%);
		pointer-events: none;
	}
	.mobile-consult-item {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
		min-width: 0;
		border: 0;
		background: transparent;
		color: #4A68D7;
		font-family: inherit;
		text-align: center;
		cursor: pointer;
	}
	.mobile-consult-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 2.8rem;
		height: 2.8rem;
		border-radius: 50%;
		color: #4A68D7;
		background: rgba(36,75,99,0.08);
		box-shadow: 0 0.3rem 1.4rem rgba(0,0,0,0.1);
	}
	.mobile-consult-icon i {
		font-size: 1.8rem;
		line-height: 1;
	}
	.mobile-consult-icon svg {
		display: block;
		width: 1.7rem;
		height: 1.7rem;
	}
	.mobile-consult-item span:last-child {
		display: block;
		width: 100%;
		overflow: hidden;
		font-size: 1.05rem;
		font-weight: 600;
		line-height: 1.2;
		letter-spacing: 0;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
	.mobile-consult-item:active .mobile-consult-icon {
		background: rgba(36,75,99,0.2);
		color: #244b63;
	}
	.mobile-top-btn {
		position: fixed;
		right: 1.4rem;
		bottom: 9.2rem;
		z-index: 100;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0.2rem;
		width: 5.4rem;
		height: 5.4rem;
		border: 0;
		border-radius: 50%;
		background: #fff;
		color: #4A68D7;
		box-shadow: 0 0.8rem 2rem rgba(36,75,99,0.2);
		font-family: inherit;
		font-size: 1.05rem;
		font-weight: 800;
		line-height: 1;
		letter-spacing: 0;
		cursor: pointer;
	}
	.mobile-top-btn svg {
		display: block;
		width: 1.7rem;
		height: 1.7rem;
	}
	.mobile-top-btn:active {
		background: rgba(36,75,99,0.12);
		color: #244b63;
	}
}

/* -------- FOOTER :: 새 레이아웃 반응형 -------- */
@media all and (max-width:1280px){
	.ft-wrap {padding: 4rem 0 5rem;}
}
@media all and (max-width:800px){
	.ft-wrap {padding: 3.5rem 0 4rem;}
	.ft-company-name,
	.ft-company-legal {display: none;}
	.ft-bottom {flex-direction: column; align-items: center; gap: 2.5rem;}
	.ft-contact {flex-direction: column; align-items: center; gap: 2rem; width: 100%;}
	.ft-col {flex: none; width: 100%; text-align: center;}
	.ft-col dt {text-align: center;}
	.ft-col dd {text-align: center;}
	.ft-copy {text-align: center;}
	.ft-logo {justify-content: center;}
	.ft-logo img {height: 30px;}
	.ft-top-sep {margin: 0 1.2rem;}
}
@media all and (max-width:480px){
	.ft-contact {gap: 1.5rem;}
	.ft-toplist {gap: 0.5rem 0; justify-content: center;}
	.ft-top-sep {margin: 0 1rem;}
}

/* ****************** SUB LAYOUT ********************** */
@media all and (max-width:1280px){
	/*  SUB LAYOUT :: 비주얼 */
	#visual .visual-txt-con{}
	/*  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:10rem var(--area-padding)}
	#content.wide{padding:10rem 0 0 0}
}

@media all and (max-width:800px){
	/*  SUB LAYOUT :: 비주얼 */
	#visual .visual-tit{font-size: 5rem;}
	
	#visual .visual-con-bottom {display: block; margin-top: 1rem;}
	
	
	/* SUB LAYOUT :: 위치정보(location) */
	.location {padding-top: 0; margin-bottom: 1.5rem;}
	.location li{font-size:12px;}
	.location li:before{margin:0 6px 0 4px; top:0px;}
	.location li i{margin-top:0px; font-size:16px;}
	/*  SUB LAYOUT :: 이전페이지,다음페이지 버튼 */
	.sub-page-controls-btn .sub-page-name{display:none}
	/*  SUB LAYOUT ::  서브메뉴(스타일1,2,3) */
	#topMenu01,
	#topMenu02,
	#topMenu03{display:none}
	/*  SUB LAYOUT :: 서브메뉴(스타일4) */
	#topMenu04 .side-menu-inner {padding-left: 0;}
	#topMenu04 .menu-location {margin-left: 0; width: 100%;}
	#topMenu04 .menu-location.location1 {display: none;}
	#topMenu04 .menu-location > .cur-location {width: 100%;  padding: 0 3rem 0 2.8rem;}
	#topMenu04 .menu-location > .cur-location span {font-size: 1.6rem;}
	

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