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

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* fallback ★구글 아이콘 안쓰면 삭제★ */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Material-Icons.woff2") format('woff2');
}

@font-face {
    font-family: 'GounBatang';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/GowunBatang-Regular.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GounBatang';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/GowunBatang-Bold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}



/* ========================================================
 * SETTING
======================================================== */
:root{
	--main-color: #0084e9;
	--area-box-width: 1760px;
	--area-width: 1420px;
	--area-sub-width: 1320px;
	--area-padding: 30px;
	--header-top: 50px;
	--header-height: 60px; 
	/* --header-top: 40px;
	--header-height: 100px; */
	--header-top2: 40px;
	--header-height2: 100px; 
	--sub-visual-height: 70rem;
	--sub-menu-height: 60px;
	--sub-padding:24rem;
	--sub-narrow-padding:10rem;
	--full-height: 100vh;
	--transition-custom: all 0.4s ease-in-out;
	--transition-custom2: all 0.8s ease-in-out; /* data-scroll */
	--font-family1: 'Pretendard', "Noto Sans SC", "나눔고딕", NanumGothic, "Nanum Gothic","돋움", Dotum, Arial, sans-serif;
	--font-family2: 'Poppins', 'Pretendard', "나눔고딕", NanumGothic, "Nanum Gothic","돋움", Dotum, Arial, sans-serif;
	--font-family3: 'GounBatang', 'Pretendard', "나눔고딕", NanumGothic, "Nanum Gothic","돋움", Dotum, Arial, sans-serif;
}
/* html:not(.is-mobile) *::-webkit-scrollbar {
	width: 15px;
	height: 15px;
}
html:not(.is-mobile) *::-webkit-scrollbar-track {
	background-color: #f1f1f1;
}
html:not(.is-mobile) *::-webkit-scrollbar-thumb {
	background-color: #c1c1c1;
} */
::selection {
    background: var(--main-color);   
    color: #fff;
}
::-moz-selection {
    background: var(--main-color);    
    color: #fff;
}
html{font-size:10px;}
body, table, th, td, button, select, input, textarea {
	font-family:var(--font-family1);
	color:#666;
	-webkit-text-size-adjust:none;
	-moz-text-size-adjust:none;
	text-size-adjust:none;
	word-break:keep-all;
}
body { background-color:#fff; }
table, th, td{word-break:break-word;}
#wrap {overflow:hidden; width:100%; min-width:320px; position:relative; }

/* ========================================================
 * LAYOUT
======================================================== */
/* ****************** 공통클래스 ********************** */
.area{ max-width:var(--area-width); margin:0px auto;}
.area-sub{ max-width:var(--area-sub-width); margin:0px auto;}
.area-box{ max-width:var(--area-box-width); margin:0px auto; }
.full-height{height:var(--full-height);}
/* Fullpage Layout */
.fullpage-html{overflow:hidden; height:100%;}
.fullpage-html #wrap{position:static;}
/* br tag */
.m-br{display:none;}
.display-m{display:none;}
.font-poppins {font-family:var(--font-family2);}
.font-Batang {font-family:var(--font-family3);}
/* ****************** HEADER ********************** */
#header{
	position:absolute; height:var(--header-height); top:var(--header-top); left:0; width:100%; z-index:9999; transition: var(--transition-custom2);
    transition-property: top, transform; 
}
.fullpage-html #header{
	position:fixed;
}
#headerInnerWrap{position:absolute; top:0px; left:0px; width:100%; height:var(--header-height); z-index:9999; transition:var(--transition-custom); transition-property:background-color;}
#headerInner{position:relative; display:flex; align-items:center; justify-content:space-between; height:var(--header-height); margin:0px auto; width: 100%; max-width:var(--area-box-width); -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
#header .logo{position:relative; z-index:100; }
#header .logo a{display:block; height: 4.7rem;}
#header .logo img{display:block; vertical-align:top; position:absolute;}
#header .logo img.bk-ver {opacity: 0;}

/* yj 추가 :: 헤더 fixed */
.sub-wrap #header:before {
	    position: absolute;
    content: '';
    width: 100%;
    height: var(--header-height);
    transform: translateY(calc(-1 * (var(--header-height) + var(--header-top))));
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(3rem);
    top: 0;
    left: 0;
    transition: background 0.4s 
ease-in-out, transform 0.4s 
ease-in-out, height 0.8s 
ease-in-out;
}
.sub-wrap #header.sitemap-open:before {opacity: 0;}
.sub-wrap #header.top-fixed {position: fixed; top: 0; height: var(--header-height2);}
.sub-wrap #header.top-fixed:before {transform: translateY(0); height: var(--header-height2);}
.sub-wrap #header.top-fixed #headerInnerWrap {height: var(--header-height2);}
.sub-wrap #header.top-fixed #headerInner {height: var(--header-height2);}
.sub-wrap #header.top-fixed #gnb > ul {backdrop-filter: none;}
.sub-wrap #header.top-fixed #gnb > ul > li > a {line-height: var(--header-height2);}
.sub-wrap #header.top-fixed #gnb.total-menu > ul > li .gnb-2dep {top: var(--header-height2);}
.sub-wrap #header.scroll-down{transform:translateY(calc(-1 * (var(--header-height)))); height: var(--header-height2); top: calc(-1 * var(--header-top2));}
.sub-wrap #header.top-fixed.black-text-ver .logo img {opacity: 0;}
.sub-wrap #header.top-fixed.black-text-ver .logo img.bk-ver {opacity: 1;}
.sub-wrap #header.top-fixed.gnb-open #gnbBg {height: 380px !important;}

/* yj 추가 수정 :: 헤더 */
#gnb.open > ul {backdrop-filter:none;}
#gnb.open > ul > li {padding: 0 5rem;}
#gnb.open > ul > li.gnb1 {padding: 0 2rem;}
#gnb.open > ul > li.gnb6, #gnb.open > ul > li.gnb7 {padding: 0 1rem;} 

#header.top-fixed.black-text-ver #gnb > ul > li > a {color: #000;}
/* -------- Header :: UTIL BOX -------- */
.header-util-box{position:relative; z-index:100;}

/* Header :: 검색버튼 */
.header-search-box{position:relative; float:left; margin-left:10px; z-index:101; }
.header-search-box i{font-size:22px;}
.header-search-open-btn{width:32px; height:32px; color:#333;  border:1px solid #333}
.header-search-inner{
	overflow:hidden; 
	position:absolute; 
	top:0px; right:0; 
	width:200px; 
	height:32px; 
	padding-right:65px; 
	box-sizing:border-box;
	border:1px solid #333;
	background-color:#fff;
	opacity:0;
	visibility:hidden;
	transition:var(--transition-custom);
}	
.header-search-inner .header-search-word{height:30px; width:100%; vertical-align:top; background-color:transparent; border:0; color:#333; font-size:13px; font-weight:300; text-indent:10px;}
.header-search-inner .header-search-word::placeholder{color:#333;}
.header-search-inner .header-search-btn{position:absolute; top:0px; right:32px; width:32px; height:32px;}
.header-search-inner .header-search-btn i{font-size:20px; line-height:32px;}
.header-search-inner .header-search-close-btn{position:absolute; top:0px; right:0px; width:32px; height:32px; background-color:#333; color:#fff; border:1px solid #333; }
.header-search-inner .header-search-close-btn i{color:#fff;}
/* 검색 open */
.header-search-box.open .header-search-inner{
	opacity:1.0;
	visibility:visible; 
	transition:visibility 0.5s, opacity 0.5s;
}
@media all and ( min-width: 801px ){
	.header-search-inner .header-search-inner{
		transform: translateX(10px);
		transition:all 0.2s;
	}
	.header-search-box.open .header-search-inner{
		transform: translateX(0);
	}
}

/* Header :: 언어선택 */
.header-lang {position:relative; float:left; width:3.2rem; height:3.2rem;  z-index:100; }
.header-lang .lang-open-btn {overflow:hidden; position:relative; display:flex; align-items:center; justify-content:center; width:100%; text-align:left; height:100%; z-index:11;}
.header-lang .lang-open-btn span {font-size:3.2rem; color: #fff;}
.header-lang .lang-open-btn img {max-width: 100%;}
.header-lang > ul {display:none; position:absolute; top:100%; left:0; z-index:10; width:100%; padding: 1rem 0;text-align: center; }
.header-lang > ul > li > a{display:block; padding:0 0.5rem; font-size:1.4rem; line-height: 24px; color:#fff; font-weight:500;}
.header-lang > ul > li > a:hover{}
.sub-wrap #header.top-fixed.black-text-ver .header-lang .lang-open-btn span {color: #000;}
#header.gnb-open .header-lang .lang-open-btn span {color: #000;}

/* Header :: 사이트맵버튼 */
.sitemap-line-btn{float:left; width:4.2rem; height:32px; display:flex; flex-direction:column; justify-content: center; margin-left:3.2rem; box-sizing:border-box;}
.sitemap-line-btn .line{display:block; width:100%; height:4px; background-color:#fff; margin: 3.5px auto; transition:var(--transition-custom); }
#header.gnb-open .sitemap-line-btn .line {background: #000;}
#header.gnb-open .logo img {opacity: 0;}
#header.gnb-open .logo img.bk-ver {opacity: 1;}
.sub-wrap #header.top-fixed.black-text-ver .sitemap-line-btn .line {background: #000;}
/* active */
.sitemap-line-btn.active{position:relative; z-index:100000;}
.sitemap-line-btn.active .line{background:#fff}
.sitemap-line-btn.active .line:nth-child(1){
	transform: translateY(6px) rotate(45deg);
}
.sitemap-line-btn.active .line:nth-child(2){
	transform: translateY(-6px) rotate(-45deg);
}

/* -------- Header :: GNB(PC) -------- */
.gnb-overlay-bg{position:fixed; top:0; left:0; width:100%; height:100%; visibility:hidden; opacity:0; background:rgba(0,0,0,0.5); z-index:9997;  transition:var(--transition-custom); }	/* gnb overlay BG */
.gnb-overlay-bg.open{visibility:visible; opacity:1.0;}
#gnb{position:absolute; text-align:center; top:0; left:0px; width:100%; z-index:99;}
#gnb > ul{display:flex; justify-content:center; width:800px; backdrop-filter: blur(11px); max-width:var(--area-width); margin: 0 auto; border-radius:3rem; /* transition: var(--transition-custom); */}
#gnb > ul > li{position:relative; z-index: 100; float:left; word-break:keep-all; /* padding: 0 5rem; */ transition: var(--transition-custom);}
/* #gnb > ul > li.gnb1,#gnb > ul > li.gnb6, #gnb > ul > li.gnb7 {padding: 0 3rem;} */
#gnb > ul > li > a{
	position:relative; z-index:100; display:block; line-height:var(--header-height); padding:0 1.9rem; text-align:center; color:#fff; font-size:1.5rem; letter-spacing:-0.025em; font-weight:700; transition:var(--transition-custom); white-space:nowrap; cursor:default;
}
/* #gnb > ul > li > a:hover,
#gnb > ul > li > a:focus,
#gnb > ul > li.on > a{color:var(--main-color);} */

/* GNB :: 2차 전체메뉴 */
#gnbBg{
	overflow:hidden; 
	position:absolute; 
	left:0; top:calc(-1 * var(--header-top)); 
	width:100%; 
	height:0; 
	background:#fff; 
	z-index:98;
	opacity:0;
	transition:height 0.3s ease-in-out, opacity 0.2s ease-in-out;
}
/* #gnbBg:after{position:absolute; top:var(--header-height); width:100%; left:0; height:1px; background-color:#ddd; content:"";} */
#gnb.total-menu > ul > li .gnb-2dep{
	position:absolute; 
	top:var(--header-height); 
	left:0px; 
	z-index:99;
	width:100%; 
	text-align:center;
	/* text-align:left;  */
	/* border-right:1px solid #ddd; */
	opacity:0;filter:Alpha(opacity=0);
	height:0;
    transition: all 0.2s 0s;
	transition-delay: 0s;
	visibility:hidden;
}
/* #gnb.total-menu > ul > li:first-child .gnb-2dep{border-left:1px solid #ddd;} */
/* #gnb.total-menu > ul > li .gnb-2dep:before {
	content:""; position:absolute; left:0; top:0px; width:0; left:50%; height:1px; background-color:var(--main-color); 
	transition:var(--transition-custom);
} */
#gnb.total-menu > ul > li:hover .gnb-2dep:before {width:100%; left:0;}
#gnb.total-menu > ul > li .gnb-2dep ul{padding:15px 0px;}
#gnb.total-menu > ul > li .gnb-2dep ul li{position:relative;}
#gnb.total-menu > ul > li .gnb-2dep ul li a{ display:block;  padding:0.7rem 1.5rem; color:#666; font-size:1.5rem; letter-spacing:-0.5px; font-weight:500; line-height:1.3; transition:var(--transition-custom); }
#gnb.total-menu > ul > li .gnb-2dep ul li a:hover{color:var(--main-color);}

/* GNB :: 2차메뉴 Over (높이변경) */
#gnb.open #gnbBg{height:370px; opacity:1.0;filter:Alpha(opacity=100);}
#gnb.open > ul > li .gnb-2dep{
	height:250px; opacity:1.0;filter:Alpha(opacity=100);
	visibility:visible;
    transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out 0.2s;
}

#gnb.open > ul > li > a {color: #000;}

/* GNB :: 2차 각각메뉴 */
#gnb.each-menu > ul > li .gnb-2dep{
	/* display:none; */
	position:absolute; 
	top:100%; 
	left:0px; 
	z-index:99;
	width:100%; 
	text-align:left; 
	visibility:hidden;
	opacity:0;filter:Alpha(opacity=0);
	transition:all 0.2s cubic-bezier(0.4, 0, 1, 1);
}
#gnb.each-menu > ul > li .gnb-2dep:before{
	content:""; 
	position:absolute; top:0px; left:0px; right:0px; 
	height:0; 
	background-color:var(--main-color); 
	transition:all 0.2s cubic-bezier(0.4, 0, 1, 1);
}
#gnb.each-menu > ul > li .gnb-2dep ul{padding:15px 0px;}
#gnb.each-menu > ul > li .gnb-2dep ul li{position:relative; padding:8px 10px; opacity:0; transition:all 0s 0s; }
#gnb.each-menu > ul > li .gnb-2dep ul li a{display:block; color:#fff; font-size:14px; font-weight:400; text-align:center; line-height:1.4; opacity:0.9;}
#gnb.each-menu > ul > li .gnb-2dep ul li a:hover{opacity:1.0;}
/* over했을때 */
#gnb.each-menu > ul > li .gnb-2dep.open{visibility:visible; opacity:1.0;}
#gnb.each-menu > ul > li .gnb-2dep.open:before{height:100%;}
#gnb > ul > li .gnb-2dep.open ul li{opacity:1.0; transition:var(--transition-custom2);}
#gnb > ul > li .gnb-2dep.open ul li:nth-child(1){transition-delay:0.1s;}
#gnb > ul > li .gnb-2dep.open ul li:nth-child(2){transition-delay:0.2s;}
#gnb > ul > li .gnb-2dep.open ul li:nth-child(3){transition-delay:0.3s;}
#gnb > ul > li .gnb-2dep.open ul li:nth-child(4){transition-delay:0.4s;}
#gnb > ul > li .gnb-2dep.open ul li:nth-child(5){transition-delay:0.5s;}
#gnb > ul > li .gnb-2dep.open ul li:nth-child(6){transition-delay:0.6s;}
#gnb > ul > li .gnb-2dep.open ul li:nth-child(7){transition-delay:0.7s;}
#gnb > ul > li .gnb-2dep.open ul li:nth-child(8){transition-delay:0.8s;}

/* -------- Header :: GNB(Mobile) -------- */
.nav-open-btn{display:none;}
#gnbM{display:none}

/* ****************** FOOTER ********************** */
/* -------- FOOTER :: 레이아웃 -------- */
#footer{background-color:#111111; position: relative; z-index: 100;}
.footer-left-con{float:left; }
.footer-right-con{float:right;}

/* Footer :: TOP버튼 */
.to-top-btn{
	position:fixed; 
	bottom:-100px; 
	right:15px;
	display:block; 
	width:46px; 
	height:46px; 
	background-color:#fff; 
	text-align:center; 
	color:#333; 
	z-index:99;
	border:1px solid #eee;
	box-sizing:border-box;
	opacity:0;
	transition:var(--transition-custom);
	border-radius:50%;
}
.to-top-btn.bottom-fixed{bottom:15px; opacity:1.0;}
.to-top-btn i{display:inline-block; font-size:16px; line-height:46px; transition:var(--transition-custom);}
.to-top-btn:hover i{transform:translateY(-3px)}
#fullpage .to-top-btn{display:none;}

/* -------- FOOTER :: 상단 -------- */
#footerTop{padding-top: 7rem;}
.footer-top-inner {display: flex; padding-bottom: 4.5rem; border-bottom: 1px solid #fff;}
.footer-top-inner .footer-left-con {width: calc(100% - 30rem);}
.footer-top-inner .footer-right-con {width: 30rem;}

/* Footer :: 푸터로고 */
.foot-logo{display:block; padding-bottom:5rem;}

/* Footer :: 정보 style02 */
.footer-address-info-box{ letter-spacing:-0.025em; padding-top: 1rem;}
.footer-address-list {float: left; margin-right: 7rem; margin-bottom: 3rem; /*추가*/max-width: calc(33.333% - 4rem);}
.footer-address-list strong {display: block; font-size: 1.6rem; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 2rem;}
.footer-address-list dl{display: flex; font-size: 1.6rem; color: #fff; line-height: 2; font-weight: 600;}
.footer-address-list dl dt,
.footer-address-list dl dd{vertical-align:top; display:inline-block;}
.footer-address-list dl dt{width: 6.3rem;color: rgba(255,255,255,0.3);}
.footer-address-list dl dd {width: calc(100% - 6.3rem);}
.footer-address-list a{color:inherit}


/* -------- FOOTER :: 하단 -------- */
#footerBottom{ padding:4rem 0 3rem; }

/* Footer :: 푸터메뉴 */
.foot-menu{}
.foot-menu li{float:left; position:relative; padding-left:3rem; line-height:2em;}
.foot-menu li:first-child{padding-left:0}
.foot-menu li:first-child:before{display:none} 
.foot-menu li a{font-size: 1.6rem; font-weight: 600; letter-spacing: -0.025em; color: #fff; }
.foot-menu li a b{color:#333; font-weight:500;}

/* Footer :: Copyright */
.footer-copyright{font-size:1.6rem; font-weight: 600; letter-spacing: -0.025em; color: #fff; }


/* Footer :: 패밀리사이트 */
.family-site-box{position:relative; width:100%; max-width: 30rem; border:2px solid #fff; box-sizing:border-box; text-align:left; letter-spacing:-0.025em;border-radius:4rem;   }
.family-site-box .family-site-open-btn{position: relative; display:block; width:100%; height:calc(8rem - 4px); line-height:calc(8rem - 4px); padding:0 4rem; text-align:left; font-size:2rem; font-weight:600; background-color:#111; color:#fff; box-sizing:border-box; border-radius:4rem; transition:all 0.4s; transition-delay:0.4s; z-index:12;}
.family-site-box .family-site-open-btn:after{position:absolute; right:4rem; top:50%; transform:translateY(-50%); font-size:2.4rem; font-family: 'xeicon'; content:"\e945"; font-weight:400;}
.family-site-box.open .family-site-open-btn{transition-delay:0s;}
.family-site-box.open .family-site-open-btn:after{content:"\e942";}
.family-site-list{position:absolute; bottom:calc(100% - 4rem); left:-2px; right:-2px; padding:2rem 0 4rem; background-color:#111; border:2px solid #fff; border-bottom:0; border-radius:4rem 4rem 0 0; z-index:11; display:none; box-sizing:border-box;}
.family-site-list ul{overflow: auto; max-height: 30rem;}
.family-site-list a{display:block; padding:1rem 3rem; color:#fff; font-size:1.5rem;}
.family-site-list a:hover{ text-decoration:underline;}

/* ****************** SUB LAYOUT ********************** */
/*  SUB LAYOUT :: 비주얼 */
#visual{position:relative; width:100%; height:var(--sub-visual-height); background-attachment: fixed !important;}
#visual .visual-img-con{
	position:absolute; 
	top:0px; 
	left:0px; 
	width:100%;
	height:var(--sub-visual-height);
	overflow:hidden; 
}
#visual .visual-img-inner{
	width:100%; 
	height:100%; 
	background-size:cover !important; 
	transform: scale(1.1,1.1); 
	transition:transform 5s linear;
	background-attachment: fixed !important;
}

.sub-visual-inner {position: absolute; top: calc(-1*(var(--sub-visual-height))); left: 0; width: 100%; height: var(--sub-visual-height); z-index: 11;}
.sub-visual-inner .visual-txt-con{position:relative; z-index:1; text-align:center; display:table; width:100%; height:100%; color: #fff; box-sizing: border-box; }
.sub-visual-inner .visual-txt-con .table-cell-layout {vertical-align: bottom;}
.sub-visual-inner .visual-txt-container{position:relative; width:100%; padding-bottom: 8rem;}
/* .sub-visual-inner .visual-tit,
.sub-visual-inner .visual-sub-txt {
	opacity:0;
    transform: translateY(30px);
	transition:var(--transition-custom2);
	transition-property: transform, opacity;
} */
.sub-visual-inner .visual-tit{
	font-size: 8rem;
	font-weight: 600;
	
}
.sub-visual-inner .visual-sub-txt{
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: -0.025em;
	color: #fff;
	line-height: 1.3;
	margin:1.5rem 0 9.3rem;
}

/* .sub-visual-inner.active .visual-tit {animation: text-active-animation 1.3s cubic-bezier(0.4, 0, 0.2, 1) both;}
.sub-visual-inner.active .visual-tit.cm-word-split-JS.splitting .char{animation: text-active-animation 1.3s cubic-bezier(0.4, 0, 0.2, 1) both;} */


/* SUB LAYOUT :: 상단효과 active */
.sub-visual-inner.active .visual-img-inner{
     transform: scale(1.0,1.0) rotate(0.002deg);
}
/* .sub-visual-inner.active .visual-tit,
.sub-visual-inner.active .visual-sub-txt,
.sub-visual-inner.active .location{
	opacity:1.0;
    transform: translateY(0px);
} */

/*  SUB LAYOUT :: 서브메뉴(스타일4) */
#topMenu04{position:relative; height:var(--sub-menu-height);} 
#topMenu04 .side-menu-inner{width:100%; height:var(--sub-menu-height); max-width: 60rem; margin: 0 auto; border-radius: 30px; background: rgba(242,242,242,0.04); backdrop-filter:blur(1rem);}
#topMenu04 .menu-location {position:relative; float:left; width: 50%;}
#topMenu04 .menu-location > .cur-location{position:relative; display:block; width:100%; height:var(--sub-menu-height); border-radius: 30px;padding:0 5.5rem 0 4.5rem; text-align:left; z-index: 12; }
#topMenu04 .menu-location.location1 > .cur-location { background: rgba(242,242,242,0.1);  }
#topMenu04 .menu-location.location1 > .cur-location span {letter-spacing: 0;}
#topMenu04 .menu-location > .cur-location span {position: relative; display:block; width:100%;white-space:nowrap; overflow:hidden; text-overflow:ellipsis; line-height:var(--sub-menu-height); color:#fff; font-weight:600; font-size:1.8rem; letter-spacing:-0.025em;  z-index:1;}
#topMenu04 .menu-location > .cur-location .arrow{position:absolute; top:50%; right:3.5rem; width:20px; height:20px;margin-top:-10px; font-size:20px; color: #fff; z-index:1;}
#topMenu04 .menu-location.open > .cur-location .arrow{transform:rotate(-180deg); margin-top:-10px;}
#topMenu04 .menu-location .location-menu-con{display:none; position:absolute; top:0; left:0; right:0px;  z-index:11; padding:calc(var(--sub-menu-height) + 1rem) 0 1rem; border-radius: 3rem; background: var(--main-color);}
#topMenu04 .menu-location .location-menu-con li a{display:block; text-align: left; padding:1rem 4.5rem; font-size:1.8rem; word-break:keep-all; line-height:1.5; color:#fff; letter-spacing: -0.025em;
    font-weight: 600;}
#topMenu04 .menu-location .location-menu-con li.on{position:relative;}


/* SUB LAYOUT :: 서브메뉴 Fixed (공통) */
@media all and (min-width:1025px){
	.fixed-sub-menu.top-fixed .side-menu-inner{position:fixed; top:0px; left:0px; z-index:9999;}
}

/* SUB LAYOUT :: 모바일메뉴(공통)  */
#topMenuM{display:none;}

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

/*  SUB LAYOUT :: 상단정보 (공통) */
#contentInfoCon{position:relative; margin:0 auto 50px; text-align:center; }
#contentInfoCon .content-tit{color:#333; font-size:38px; font-weight:600; letter-spacing:-0.6px;}
#contentInfoCon .content-tit:after{display:block; content:""; width:58px; height:2px; margin:30px auto 0; background-color:#040508}
#contentInfoCon .content-sub-tit{color:#888; font-weight:300; margin-top:30px; font-size:16px; letter-spacing:-0.8px; word-break:keep-all;}
/*  SUB LAYOUT :: 상단정보(타이틀+location) */
#contentInfoCon.content-title-location{text-align:left;}
#contentInfoCon.content-title-location .content-tit{float:left;}
#contentInfoCon.content-title-location .content-tit:after{display:none;}
#contentInfoCon.content-title-location .location{float:right;}

/* ****************** MODAL LAYERPOPUP ********************** */
/* modal layer */
.modal-fixed-pop-wrapper{display:none; overflow-y:scroll; overflow-x:hidden;  position:fixed; top:0px; left:0px; width:100%; height:100%; z-index:9999; background:#000; background:rgba(0,0,0,0.8);}
.modal-fixed-pop-inner{position:absolute; display:table; width:100%; height:100%; text-align:center;}
.modal-inner-box{ position:relative; display:table-cell; vertical-align:middle;}
.modal-loading{position:absolute; top:50%; left:50%; margin:-25px 0 0 -25px; z-index:10000;}
.modal-inner-content{text-align:left;}
.loading {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 8px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@-webkit-keyframes spin {
  to { transform: rotate(360deg); }
}
/* modal layer content */
.footer-modal-content{position:relative; width:96%; max-width:1260px; margin:2rem auto; }
.footer-modal-content h1{box-sizing: border-box;
    margin-bottom: 2rem;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    padding: 0;
    color: #333;}
.modal-close-btn{position:absolute; top:0; right:-7rem; color:#fff; z-index: 10;}
.modal-close-btn i{font-size:5rem; color: #f2f2f2;} 
.modal-close-btn i:hover {color:#fff}
.footer-inner-box{padding:7rem 5rem 5rem 5rem; background-color:#fff; box-sizing: border-box;
    border-radius: 3rem; position: relative; width: 100%;}
.footer-inner{position: relative;
    width: 100%; padding: 2rem;
    height: 40rem;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #ddd;
    box-sizing: border-box;}

@media all and (max-width:1440px){
	.modal-close-btn {top: -5rem !important; right: 0 !important;}
	.modal-close-btn i {font-size:4rem !important;}
}

@media all and (max-width:1280px){
	.footer-inner-box {padding: 4rem !important;}
}

@media all and (max-width:800px){
	.modal-close-btn i {font-size:3rem !important;}
	.footer-modal-content h1 {font-size:3.5rem !important; padding: 0 !important;}
}


/* ****************** 임시 시안 css ********************** */
.cm-sian-img{position: relative; left: 50%; margin-left: -960px;}

@media all and (max-width:1280px){
	.cm-sian-img{position: static; margin-left: 0; width: 100%; height: auto;}
}

/* yj 추가 비주얼 텍스트 fixed */
#middleArea {position: relative; z-index: 100; background: #fff;}


/* ****************** 
	* Mouse Pointer
********************** */
.mouse-pointer{position:fixed; top:0px; left:0px; z-index:10000; pointer-events:none; }
/* base */
.mouse-pointer .pointer-circle{position:absolute; top:50%; left:50%; width: 2rem; height: 2rem; border-radius:50%;  transform:translate(-50%,-50%) scale(1); transition:var(--transition-custom); border:1px solid var(--main-color); opacity: 0;}

/* more */
.mouse-pointer .pointer-more{position:absolute; left:50%; top:50%; display: block; width: 23rem; height: 23rem; transform: translate(-50%,-50%) scale(0); opacity:0; visibility: hidden; transition:var(--transition-custom); display: flex; align-items:center; justify-content:center;}
.mouse-pointer .pointer-more .inner-circle{position: relative; display: block; width:16rem; height:16rem; background:rgba(255,255,255,0.05); backdrop-filter:blur(1rem); border-radius:50%;}
.mouse-pointer .pointer-more .inner-circle:before{position: absolute; /* content:'\e907'; */ font-family:'xeicon'; font-size:4.8rem; color:#fff; top:50%; left:50%; transform:translate(-50%, -50%) rotate(-45deg);}
.mouse-pointer .pointer-more svg{position: absolute; left:50%; top:50%; transform: translate(-50%,-50%);  width:100%; height:100%;}
.mouse-pointer .pointer-more svg *{fill:#fff; width:100%; height:100%;}

.mouse-pointer.more:not(.non-more) .pointer-circle{opacity:0; visibility: hidden;}
.mouse-pointer.more:not(.non-more) .pointer-more{transform: translate(-50%,-50%) scale(0.7); visibility: visible; opacity: 1;}
.mouse-pointer.more:not(.non-more) .pointer-more svg{animation: textRotate 10s linear infinite;}
.mouse-pointer.prev .pointer-more .inner-circle:before{content:'\e93c'; transform:translate(-50%, -50%);}
.mouse-pointer.next .pointer-more .inner-circle:before{content:'\e93f'; transform:translate(-50%, -50%);}

.mouse-pointer.more:not(.non-more).active-stop .pointer-more {transform: translate(-50%,-50%) scale(1.0); }

@keyframes textRotate {
	0% {
		transform: translate(-50%,-50%) rotate(0);
	}
	100% {
		transform: translate(-50%,-50%) rotate(360deg);
	}
}

.is-mobile .mouse-pointer,
.is-mobile .pointer-circle,
.is-mobile .pointer-txt,
.is-mobile .pointer-arrow{visibility: hidden; opacity: 0;}

@media all and (max-width:800px){
	.mouse-pointer,
	.pointer-circle,
	.pointer-txt,
	.pointer-arrow{visibility: hidden; opacity: 0;}
}
