@charset "utf-8";
/* *******************************************************
 * filename : layout.css
 * description : 전체 레이아웃 CSS
 * date : 2022-07-26
******************************************************** */
/* fallback ★구글 아이콘 안쓰면 삭제★ */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Material-Icons.woff2") format('woff2');
}

.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: #dd0031;
	--area-box-width: 1760px;
	--area-wide-width: 1700px;
	--area-width: 1400px;
	--area-padding: 30px;
	--header-top: 55px;
	--header-height: 80px;
	--sub-visual-height: 100vh;
	--sub-menu-height: 36px;
	--full-height: 100vh;
	--transition-custom: all 0.4s ease-in-out;
	--transition-custom2: all 0.8s ease-in-out; /* data-scroll */
	--font-family1: 'Pretendard', "나눔고딕", NanumGothic, "Nanum Gothic","돋움", Dotum, Arial, sans-serif;
	--font-family2: 'Outfit', "나눔고딕", 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-wide{ max-width:var(--area-wide-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-outfit {font-family:var(--font-family2);}
/* ****************** HEADER ********************** */
#header{
	/* position:relative; */ position:absolute; height:var(--header-height); top:var(--header-top); left:0; width:100%; z-index:9999;  transition: all 0.8s ease-in-out;
}
.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; max-width: var(--area-box-width);padding:0 var(--area-padding); }
#header .logo{position:relative; z-index:100; }
#header .logo a{position: relative; display:block; width: 151px; height: 39px;}
#header .logo img{position: absolute; width: 100%; height: 100%; top: 0; left: 0; transition:var(--transition-custom); }
#header .logo img.logo-b {opacity: 0;}
 
/* -------- Header :: UTIL BOX -------- */
.header-util-box{position:relative; z-index:100;}

/* Header :: 언어선택2 */
.header-lang-list {position:relative; float:left; z-index:100; margin:8px 0 0 22px;}
.header-lang-list li{float:left; font-size:15px; letter-spacing:-0.02em; font-weight:400; color:#fff; margin-left:13px;}
.header-lang-list li:first-child{margin-left:0}
.header-lang-list li a{display:block; position:relative; opacity:0.2; color:#fff; transition:var(--transition-custom);}
.header-lang-list li a:after{
	position:absolute; bottom:-8px; left:-2px; right:-2px; 
	height:2px; 
	background-color:#fff; 
	content:""; 
	transform:scaleX(0); 
	transition:var(--transition-custom);
	transition-property: transform;
	transform-origin:100% 0;
}
.header-lang-list li.cur a,
.header-lang-list li a:hover{opacity:1.0;}
.header-lang-list li.cur a:after,
.header-lang-list li a:hover:after{transform:scaleX(1); transform-origin:0 0;}

/* Header :: 사이트맵버튼 */
.sitemap-line-btn{float:left; width:120px; height:32px; display:flex; flex-direction:column; justify-content: center; margin-left:40px; box-sizing:border-box;}
.sitemap-line-btn .line{display:block; width:120px; height:2px; background-color:#fff; margin: 4px auto; transition:var(--transition-custom);}
/* active */
.sitemap-line-btn.active{position:relative; z-index:100000;}
.sitemap-line-btn.active .line:nth-child(1){
	transform: translateY(5px) rotate(45deg);
}
.sitemap-line-btn.active .line:nth-child(2){
	transform: translateY(-5px) rotate(-45deg);
}

/* Header :: 회원버튼 */
.header-member-btn {position: relative; float: left; display: block; margin: 4px 0 0 19px;}
.header-member-btn i {font-size: 2.4rem; color: #fff;}
.header-member-btn:hover i {color: var(--main-color); transition:var(--transition-custom);}

/* -------- 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:inline-block;}
#gnb > ul > li{position:relative; float:left; word-break:keep-all;}
#gnb > ul > li > a{
	position:relative; z-index:100; display:block; line-height:var(--header-height); padding:0 2.3rem; text-align:center; color:#fff; font-size:1.75rem; letter-spacing:-0.02em; font-weight:500; transition:var(--transition-custom);
}
#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:0px; 
	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: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:13px 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:7px 15px; color:#333; font-size:14px; letter-spacing:-0.5px; font-weight:400; 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:350px; 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 :: 2차 각각메뉴 */
#gnb.each-menu > ul > li .gnb-2dep{
	/* display:none; */
	position:absolute; 
	top:calc(var(--header-height) - 10px); 
	left:-2rem; 
	z-index:99;
	width:calc(100% + 4rem); 
	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.gnb5 .gnb-2dep,
#gnb.each-menu > ul > li.gnb6 .gnb-2dep {left:0; width:100%; }

#gnb.each-menu > ul > li .gnb-2dep:before{
	content:""; 
	position:absolute; top:0px; left:0px; right:0px; 
	height:0; 
	background-color:var(--main-color); 
	border-radius: 2rem;
	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}

/* -------- Header :: Scroll Down -------- */
#header.scroll-down{transform:translateY(calc(-1 * (var(--header-height)))); height: var(--header-height); top: calc(-1 * var(--header-top));}
#header.sitemap-open:before {opacity: 0;}
#header.top-fixed {position: fixed; top: 0; height: var(--header-height); background: rgba(0, 0, 0, 0.15);  backdrop-filter: blur(15px);}
#header.top-fixed:before {transform: translateY(0); height: var(--header-height);}
#header.top-fixed #headerInnerWrap {height: var(--header-height);}
#header.top-fixed #headerInner {height: var(--header-height);}
#header.top-fixed #gnb > ul {backdrop-filter: none;}
#header.top-fixed #gnb > ul > li > a {line-height: var(--header-height);}
#header.top-fixed #gnb.each-menu > ul > li .gnb-2dep {top: var(--header-height);}
#header.scroll-down{transform:translateY(calc(-1 * (var(--header-height)))); height: var(--header-height); top: calc(-1 * var(--header-top));}



/* -------- Header :: 비쥬얼 X -------- */
.sub-wrap.no-visual #header .logo img.logo-w {opacity: 0;}
.sub-wrap.no-visual #header .logo img.logo-b {opacity: 1;}
.sub-wrap.no-visual #gnb > ul > li > a {color: #000;}
.sub-wrap.no-visual .sitemap-line-btn .line {background-color: #000;}
.sub-wrap.no-visual .header-member-btn i {color: #000;}
.sub-wrap.no-visual .header-lang-list li a {color: #000;}
.sub-wrap.no-visual .header-lang-list li a:after {background-color: #000;}
.sub-wrap.no-visual #content:not(.wide) {padding: calc(var(--header-height) + var(--header-top) + 13rem) var(--area-padding) 15rem;}


/* ****************** FOOTER ********************** */

/* -------- FOOTER :: 레이아웃 -------- */
#footer{background-color:#fff; border-top: 1px solid rgba(0, 0, 0, 0.1);}
.footer-left-con{float:left; }
.footer-right-con{float:right;}

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

/* -------- FOOTER :: 상단 -------- */
#footerTop{}
.footer-top-inner {display: flex; padding:6rem 0 4rem; border-bottom: 1px solid rgba(0,0,0,0.1);}
.footer-top-left {display: flex; width: calc(100% - 22rem);} 
.footer-top-right {width: 22rem;}

/* Footer :: 푸터로고 */
.foot-logo{display:block; float: left; margin-right: 13rem;}

/* Footer :: 정보 */
.footer-address{ letter-spacing:-0.5px;}
.footer-address strong {display: block; font-size: 2rem; font-weight: 600; letter-spacing: -0.02em; color: #000; line-height: 1.2; margin: 0.5rem 0 2rem;}
.footer-address .footer-address-txt{font-size: 1.6rem; font-weight: 500; letter-spacing: -0.05em; color: rgba(0,0,0,0.5); line-height: 2;}
.footer-address p{display:block;  position:relative;}
.footer-address a{color:inherit}

/* Footer :: 사이트맵 */
.footer-sitemap-list {margin-bottom: 2.5rem;}
.footer-sitemap-list > ul > li {text-align: right;}
.footer-sitemap-list > ul > li a {display: block; position: relative; }
.footer-sitemap-list > ul > li a:before {position: absolute; content: ''; top: 50%; margin-top: -0.3rem; right: 0; width:  0.6rem; height: 0.6rem; background: var(--main-color); border-radius: 0.6rem; transition: all 0.4s; opacity: 0;}
.footer-sitemap-list > ul > li a span {display: block; font-size: 2rem; font-weight: 600; letter-spacing: -0.02em; color: #000; line-height: 1.7; transition: all 0.4s;}
.footer-sitemap-list > ul > li a:hover:before {opacity: 1;}
.footer-sitemap-list > ul > li a:hover span {transform: translateX(-1.5rem)}

/* Footer :: 패밀리사이트 */
.family-site-box{ position:relative; width:100%; max-width: 22rem; text-align:left;}
.family-site-box .family-site-open-btn{position: relative; display:flex; align-items: center; justify-content: space-between; width:100%; height:5rem; padding:0 2rem; text-align:left; font-size:1.6rem; border-radius: 1rem; background-color:#000000; color:#fff; box-sizing:border-box; z-index: 12;}
.family-site-box .family-site-open-btn i {font-size: 2rem;}
.family-site-list{position: absolute; width: 100%; bottom: calc(100% - 3rem); left: 0; right: 0; padding: 1rem 0 4rem;background-color: #000; border-radius: 1rem 1rem 0 0; z-index: 11; display: none;box-sizing: border-box;}
.family-site-list a{display:block; padding:10px 20px; color:#fff; font-size:12px;}
.family-site-list a:hover{ text-decoration:underline;}

/* Footer :: 푸터메뉴 */
.foot-menu{margin-top: 0.5rem;}
.foot-menu li{position:relative;}
.foot-menu li a{display:flex; align-items: center; justify-content: space-between; width:100%; max-width: 22rem; height:5rem; padding:0 2rem; text-align:left; font-size:1.6rem; border-radius: 1rem; background-color:var(--main-color); color:#fff; box-sizing:border-box; }
.foot-menu li a i {font-size: 2rem;}

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

/* Footer :: Copyright */
.footer-copyright{font-size:1.4rem; letter-spacing:-0.05em; color: rgba(0,0,0,0.5); line-height: 1.2;}

/* Footer :: SNS 리스트 */
.foot-sns-menu{text-align:left;}
.foot-sns-menu ul li {float: left; }
.foot-sns-menu ul li a {display: block; padding: 0 1rem; font-size: 20px; color: rgba(0,0,0,0.4)}
.foot-sns-menu ul li:first-child a {padding-left: 0;} 
.foot-sns-menu ul li:last-child a {padding-right: 0;}

/* ****************** SUB LAYOUT ********************** */
/*  SUB LAYOUT :: 비주얼 */
#visual{position:relative; width:100%; height:var(--sub-visual-height); }
#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;
}
#visual .visual-txt-con{position:relative; z-index:1; text-align:center; display:table; width:100%; height:100%; color:#fff;  box-sizing: border-box;}
#visual .visual-txt-container{position:relative; width:100%; }
#visual .visual-tit,
#visual .visual-sub-txt,
#visual .location{
	opacity:0;
    transform: translateY(30px);
	transition:var(--transition-custom2);
	transition-property: transform, opacity;
}
#visual .visual-tit{
	font-size: 10rem;
	font-weight: 600;
	letter-spacing: -0.025em;
	margin-bottom: 4rem;
	transition-delay:0.1s;
}
#topMenu04 {
	opacity:0;
    transform: translateY(30px);
	transition:var(--transition-custom2);
	transition-property: transform, opacity;
	transition-delay:0.3s;
}

#visual .scroll-icon {position: absolute; bottom: 7.5rem; left: 50%; transform: translateX(-50%); text-align: center; animation: scrollUpDown 1.5s ease-in-out infinite;}
#visual .scroll-icon .scroll-txt {font-size: 1.5rem; font-weight: 500; letter-spacing: 0.01em; color: #fff; margin-bottom: 1.5rem;}
#visual .scroll-icon i {font-size: 1.8rem; color: #fff;}

@keyframes scrollUpDown {
	0% {
		opacity: 0.5;
		transform:  translateX(-50%) translateY(-5px);
	}
	50% {
		opacity: 1;
		transform: translateX(-50%) translateY(5px);
	}
	100% {
		opacity: 0.5;
		transform:  translateX(-50%) translateY(-5px);
	}
}

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

/*  SUB LAYOUT :: 서브메뉴(스타일4) */
#topMenu04{position:relative; width:100%; height:var(--sub-menu-height); } /* (+1 border height)*/
#topMenu04 .side-menu-inner{width:100%; height:var(--sub-menu-height);}
#topMenu04 .side-menu-inner .cm-top-menu {display: flex; justify-content: center;}
#topMenu04 .location-to-home-btn{display: flex; align-items: center; height:var(--sub-menu-height); font-size: 1.6rem; padding: 0 2.25rem; color: #fff; font-weight: 600; line-height: 1.3;}
#topMenu04 .menu-location{position:relative;}
#topMenu04 .menu-location:before {position: absolute; content: ''; width: 0.5rem; height: 0.5rem; border-radius: 0.5rem; background: rgba(255,255,255,0.5); left: -0.25rem; top: 50%; transform: translateY(-50%);}
#topMenu04 .menu-location > .cur-location{position:relative; display:flex; align-items: center; height:var(--sub-menu-height); padding:0 4.55rem 0 2.25rem; }
#topMenu04 .menu-location > .cur-location:before {position: absolute; right: 2.25rem; top: 50%; margin-top: -1rem; content: '\e937'; font-family: 'xeicon'; font-size: 1.8rem; color: #fff;}
#topMenu04 .menu-location > .cur-location span{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.6rem; letter-spacing:-0.025em;}
#topMenu04 .menu-location > .cur-location .arrow{font-size: 1.8rem; margin-left: 0.7rem;}
#topMenu04 .menu-location.open > .cur-location:before{content: '\e931';}
/* #topMenu04 .menu-location.location2 > .cur-location:before ,
#topMenu04 .menu-location.location2 > .cur-location span {color: var(--main-color);} */

#topMenu04 .menu-location .location-menu-con{display:none; position:absolute; min-width: 17rem; top:100%; left:50%; transform:translateX(-50%); background-color:#fff; border-radius: 1rem; z-index:11; padding: 1.5rem 0;}
#topMenu04 .menu-location .location-menu-con li a{display:block; text-align: center; padding:0.6rem; font-size:1.5rem; font-weight: 600; word-break:keep-all; line-height:1.4; color: rgba(0,0,0,0.4);}
#topMenu04 .menu-location .location-menu-con li.on{position:relative;}
#topMenu04 .menu-location .location-menu-con li.on a{color:var(--main-color); font-weight:500;}

#topMenu04 .menu-location.location2 .location-menu-con {background-color:var(--main-color);}
#topMenu04 .menu-location.location2 .location-menu-con li a {color: #eea1b2;}
#topMenu04 .menu-location.location2 .location-menu-con li.on a {color: #fff;}

/* 선택된메뉴앞에 bullet 넣을때 */
/* #topMenu04 .menu-location .location-menu-con li.on a{padding-left:25px;}
#topMenu04 .menu-location .location-menu-con li.on a:before{content:""; position:absolute; top:50%; left:10px; width:7px; height:3px; margin-top:-1px; background-color:var(--main-color)} */
/* // */

/* 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:150px var(--area-padding) 120px var(--area-padding)}
#content.wide{padding:150px 0 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:1000px; margin:20px auto; }
.footer-modal-content h1{font-size:24px; font-weight:600; letter-spacing:-0.5px; text-align:center; padding:0 50px 20px; color:#fff;}
.modal-close-btn{position:absolute; top:-6px; right:-6px; color:#fff; }
.modal-close-btn i{font-size:38px;}
.modal-close-btn i:hover {color:#fff}
.footer-inner-box{padding:30px; background-color:#fff; }
.footer-inner{padding:20px; height:400px; overflow-y:auto; overflow-x:hidden; border:1px solid #ddd; }


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