@charset "utf-8";
/* *******************************************************
 * filename : layout.css
 * description : 전체 레이아웃 CSS
 * date : 2022-07-26
******************************************************** */

/* ========================================================
 * SETTING
======================================================== */
:root{
	--area-wide-width: 1760px;
	--area-box-width: 1600px;
	--area-main-width: 1400px;
	--area-width: 1340px;
	--area-padding: 30px;
	--header-top: 40px;
	--header-height: 80px;
	--sub-visual-height: 100vh;
	--sub-menu-height: 69px;
	--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: 'Oswald', 'Pretendard', "나눔고딕", NanumGothic, "Nanum Gothic","돋움", Dotum, Arial, sans-serif;
	--font-family3: 'NotoSans', "나눔고딕", NanumGothic, "Nanum Gothic","돋움", Dotum, Arial, sans-serif;
	
	/* color */
	--main-color: #084cb5;
	--sub-color1: #003d9a;
	--sub-color2: #09244d;
	--sub-color3: #7a8aa1;
	--black-color: #000;
	--white-color: #fff;
}
/* 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; }

/* 스크롤 잠금용 */
html.scroll-lock,
body.scroll-lock {
  overflow: hidden !important;
  height: 100%;
}

body.scroll-lock {
  position: fixed;
  width: 100%;
}

/* ========================================================
 * LAYOUT
======================================================== */
/* ****************** 공통클래스 ********************** */
.area{ max-width:var(--area-width); margin:0px auto;}
.area-main{ max-width:var(--area-main-width); margin:0px auto; }
.area-box{ max-width:var(--area-box-width); margin:0px auto; }
.area-wide{ max-width:var(--area-wide-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;}
.display-m-800{display:none;}
.font-oswald{font-family: var(--font-family2);}
.font-noto{font-family: var(--font-family3);}

/* ****************** HEADER ********************** */
#header{
	position:fixed; height:var(--header-height); top:var(--header-top); left:0; width:100%; z-index:9999; transition:var(--transition-custom2);
}
.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, top;}
#headerInner{position:relative; display:flex; align-items:center; justify-content:space-between; height:var(--header-height);}
#header .logo{position:relative; z-index:100;}
#header .logo a{display:block; height: 3rem; max-height: 30px;}
#header .logo svg{height: 100%; display:block; vertical-align:top;}
#header .logo svg path{transition:var(--transition-custom); transition-property:fill;}

.cm-logo-svg .cls-1,
.cm-logo-svg .cls-2,
.cm-logo-svg .cls-3,
.cm-logo-svg .cls-4{fill:#fff;}

#header.top-fixed{top:0; transform:translateY(0); backdrop-filter: blur(10px); background: rgba(0, 0, 0, 0.2);}
#header.top-fixed.scroll-down{top:0; transform:translateY(calc(-1 * var(--header-height)));}

/* -------- Header :: UTIL BOX -------- */
.header-util-box{position:relative; z-index:100;}

/* Header :: 사이트맵버튼 */
.sitemap-line-btn{width:6.8rem; height:32px; display:flex; flex-direction:column; justify-content: center; align-items: flex-end; box-sizing:border-box;}
.sitemap-line-btn .line{display:block; width:6.8rem; height:3px; background-color:#fff; margin: 5px 0; transition:var(--transition-custom);}
.sitemap-line-btn .line.line2{width:4.2rem;}
/* active */
.sitemap-line-btn.active{position:relative; z-index:100000;}
.sitemap-line-btn.active .line,
.sitemap-line-btn.active .line.line2{width:5.5rem; transition:var(--transition-custom);}
.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) -------- */
#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: calc(var(--header-top) + var(--header-height)); width:100%; left:0; height:1px; background-color:rgba(0,0,0,0.1); content:"";}
#gnbBg .txt{position: absolute; bottom: 6rem; width: 100%;}
#gnbBg .txt .area-wide{width: 100%; box-sizing: border-box; display: flex; align-items: center; justify-content: space-between;}
#gnbBg .txt01,
#gnbBg .txt02{/* font-size: 9rem; */ font-size: 4.6875vw; letter-spacing: -0.025em; font-weight: 500; color: rgba(6,64,154,0.08); visibility: hidden; opacity: 0; transform:translateY(6px); transition:var(--transition-custom); transition-property: opacity, transform;}
#gnb.open.mode-biz  #gnbBg .txt .txt01 {opacity:1; visibility:visible; transform:translateY(0);}
#gnb.open.mode-prod #gnbBg .txt .txt02 {opacity:1; visibility:visible; transform:translateY(0);}
.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 .gnb-area{position: relative;width: 100%; box-sizing: border-box;}
.gnb-list-group{position: absolute; word-break:keep-all; transition:var(--transition-custom); /* transition-property: padding; */ z-index:999;}
.business-list-group{left: 27rem; /* width: 50%; */ /* width: calc(100% - 54rem); */}
.product-list-group{right: 10.5rem; /* width: 50%; */ /* width: calc(100% - 21rem); */}
.gnb-list-group .gnb-list-tit{position: absolute; top: 2rem; font-size: 2.1rem; font-weight: 500; letter-spacing: -0.025em; color: rgba(0,0,0,0.4); z-index: 99; opacity: 0; visibility: hidden; display: inline-block; white-space: nowrap;}
.gnb-list-group .gnb-list-tit i{position: relative; top: 0.4rem; font-size: 3rem; font-weight: 400; will-change: opacity;}

.business-list-group .gnb-list-tit{left: 0;}
.business-list-group .gnb-list-tit i + i{color: rgba(0,0,0,0.2); transform:translateX(-2.2rem);}
.product-list-group .gnb-list-tit{right: 0;}
.product-list-group .gnb-list-tit i{color: rgba(0,0,0,0.2); transform:translateX(2.2rem);}
.product-list-group .gnb-list-tit i + i{color: rgba(0,0,0,0.4); transform:translateX(0rem);}

.gnb-list-tit:hover i{animation: arrowFade 0.9s ease-in-out infinite;}
@keyframes arrowFade{
  0%   { opacity: .25; }
  35%  { opacity: 1; }
  70%  { opacity: .35; }
  100% { opacity: .25; }
}
.business-list-group .gnb-list-tit:hover i:nth-of-type(1){ animation-delay: 0s; }
.business-list-group .gnb-list-tit:hover i:nth-of-type(2){ animation-delay: .15s; }
.product-list-group .gnb-list-tit:hover i:nth-of-type(1){ animation-delay: .15s; }
.product-list-group .gnb-list-tit:hover i:nth-of-type(2){ animation-delay: 0s; }

.gnb-list-group .gnb-list{display: flex; align-items: center; transition:var(--transition-custom); /* transition-property: width; */}
.product-list-group .gnb-list{/* justify-content: flex-end; */ justify-content:center;}
.gnb-list-group.only-title .gnb-list {display: none;}

.gnb-list-group .gnb-item{position:relative; width: 10rem; word-break:keep-all; transition:var(--transition-custom); transition-property: width;}
.gnb-list-group .gnb-item.gnb3{width: 7rem;}
.gnb-list-group .gnb-item.gnb5{width: 7rem;}
.gnb-list-group .gnb-item.gnb7{width: 12.6rem;}
.gnb-list-group .gnb-item.gnb8{width: 7rem;}
.gnb-list-group .gnb-item.gnb9{width: 7rem;}
.gnb-list-group .gnb-item.gnb10{width: 12rem;}
.gnb-list-group .gnb-item > a{width: 100%; /* padding: 0 2.5rem; */ box-sizing: border-box; height:var(--header-height); text-align:center; color:#fff; font-size:2.1rem; line-height: 1.3; font-weight:400; letter-spacing: -0.025em; position:relative; z-index:100; display: flex; align-items: center;justify-content: center; transition:var(--transition-custom); transition-property: padding, color;}
.gnb-list-group .gnb-item > a:before{position:absolute; top: calc(-1 * var(--header-top)); left:0; width:100%; height: 540px; content:""; opacity: 0; transition: height 0.2s ease-in-out, opacity 0.1s ease-in-out 0s; background: linear-gradient(to bottom,  #1863d5 0%,#0444a0 100%); pointer-events: none;}
.gnb-list-group .gnb-item > a span{display: inline-block; position: relative; white-space: nowrap;}

/* GNB :: 2차 전체메뉴 */
.gnb-list-group .gnb-item .gnb-2dep{
	position:absolute; 
	top:var(--header-height); 
	left:0px; 
	z-index:100;
	width:100%; 
	text-align:left; 
	opacity:0;filter:Alpha(opacity=0);
	height:0;
    transition: all 0.2s 0s;
	transition-delay: 0s;
	visibility:hidden;
}
.gnb-list-group .gnb-item .gnb-2dep:before{position:absolute; top: 0; width:100%; left:0; height:1px; background-color:rgba(255,255,255,0.1); content:"";}
.gnb-list-group .gnb-item .gnb-2dep:after {content:""; position:absolute; left:0; top:-2px; width:0; left:50%; margin-left: 0; height:3px; background-color:#fff; 
	transition:var(--transition-custom);}
.gnb-list-group .gnb-item .gnb-2dep ul{padding:2rem 0px;}
.gnb-list-group .gnb-item .gnb-2dep ul li{position:relative;}
.gnb-list-group .gnb-item .gnb-2dep ul li a{ display:block; padding:0.7rem 3.5rem; text-align: center;}
.gnb-list-group .gnb-item .gnb-2dep ul li a p{display: block; font-size:1.6rem; line-height:1.5; color:#000; font-weight:600; transition:var(--transition-custom); }
.gnb-list-group .gnb-item .gnb-2dep ul li a .plus-txt{font-size:1.3rem; line-height:1.4; color:#a7a7a7; transition:var(--transition-custom);}
.gnb-list-group .gnb-item .gnb-2dep ul li a .plus-txt em{display: inline-block;}

/* GNB :: 2차메뉴 Over (높이변경) */
#gnb.open #gnbBg{height:540px; opacity:1.0;filter:Alpha(opacity=100);}
/* hover */
#gnb.open .gnb-list-group .gnb-item:hover > a:before,
#gnb.open .gnb-list-group .gnb-item:has(.gnb-2dep:hover) > a:before{opacity: 1; transition: height 0.4s ease-in-out, opacity 0.2s ease-in-out 0.1s;}
#gnb.open .gnb-list-group .gnb-item:hover .gnb-2dep:after,
#gnb.open .gnb-list-group .gnb-item:has(.gnb-2dep:hover) .gnb-2dep:after{width:calc(100% - 7rem); margin-left: calc(-1 * (50% - 3.5rem));}
#gnb.open .gnb-list-group .gnb-item .gnb-2dep{
	height:calc(540px - var(--header-height) - var(--header-top)); opacity:1.0;filter:Alpha(opacity=100);
	visibility:visible;
    transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out 0.2s;
}

/* -------- Header :: GNB open -------- */
#header.gnb-open .cm-logo-svg .cls-1{fill:#191a5b;}
#header.gnb-open .cm-logo-svg .cls-2{fill:#001767;}
#header.gnb-open .cm-logo-svg .cls-3{fill:var(--sub-color1);}
#header.gnb-open .cm-logo-svg .cls-4{fill:#83e3e0;}
#header.gnb-open .sitemap-line-btn .line{background-color: #000;}

#header.gnb-open .gnb-list-group.group-open{box-sizing: border-box;}
#header.gnb-open .gnb-list-group:not(.group-open) .gnb-list-tit{opacity: 1; visibility: visible;}

#header.gnb-open .gnb-list-group:not(.group-open) .gnb-list{display: none;}
#header.gnb-open .gnb-list-group.group-open .gnb-list{width: 100%; justify-content: center;}
#header.gnb-open .business-list-group.group-open{/* width: calc(100% - 54rem); */}
#header.gnb-open .product-list-group.group-open{/* right: 27rem; width: calc(100% - 54rem); */ right: 50%; transform: translateX(50%);}
#header.gnb-open .product-list-group.group-open .gnb-list-tit{right: 12rem;}
#header.gnb-open .business-list-group.group-open .gnb-item,
#header.gnb-open .product-list-group.group-open .gnb-item{/* width: 16.66%; */ width:20rem;}

#header.gnb-open .gnb-list-group .gnb-item > a{color: #000; font-weight: 500;}
/* hover */
#header.gnb-open .gnb-list-group .gnb-item:hover > a,
#header.gnb-open .gnb-list-group .gnb-item:has(.gnb-2dep:hover) > a{color:#fff;}
#header.gnb-open .gnb-list-group .gnb-item:hover .gnb-2dep ul li a p,
#header.gnb-open .gnb-list-group .gnb-item:has(.gnb-2dep:hover) .gnb-2dep ul li a p{color: #fff;}
#header.gnb-open .gnb-list-group .gnb-item:hover .gnb-2dep ul li a em,
#header.gnb-open .gnb-list-group .gnb-item:has(.gnb-2dep:hover) .gnb-2dep ul li a .plus-txt{color: #8ea1be;}

/* -------- Header :: GNB(Mobile) -------- */
.nav-open-btn-box{display:none;}
#gnbM{display:none}


/* ****************** FOOTER ********************** */
/* -------- FOOTER :: 레이아웃 -------- */
#footer{background-color:#080b17;}

/* Footer :: TOP버튼 */
.to-top-btn{
	position:fixed; 
	bottom:-100px; 
	right:var(--area-padding);
	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:9rem 0 5rem;}
#footerTop .area-box{display: flex; flex-wrap:wrap; justify-content: space-between;}

/* Footer :: 푸터로고 */
.foot-logo{height: 4rem; display:block;}
.foot-logo svg{height: 100%;}

/* Footer :: 정보 */
.footer-address-info-box{margin-top: 5rem;}
.footer-address-tit{margin-bottom: 1.5rem; font-size: 2.6rem; line-height: 1.3; letter-spacing: -0.045em; font-weight: 500; color: #fff;}
.footer-address-list{display: flex; align-items: center;}
.footer-address-list + .footer-address-list{margin-top: 0.5rem;}
.footer-address-list dl{margin-left:2rem; display: flex; align-items: center; position: relative;}
.footer-address-list dl:before{position:absolute; top:50%; left:-1rem; width:1px; height:1.3rem; margin-top:-0.65rem; background-color:rgba(255,255,255,0.2);  content:"";}
.footer-address-list dl:first-child{margin-left:0}
.footer-address-list dl:first-child:before{display:none} 
.footer-address-list dl dt,
.footer-address-list dl dd{font-size:1.6rem; line-height: 1.3; letter-spacing:-0.045em; font-weight: 500; color:#bdbdbd;}
.footer-address-list dl dt{margin-right: 0.5rem; color:#fff;}
.footer-address-list a{color:inherit; letter-spacing: 0;}

/* Footer :: 사이트맵 */
.footer-sitemap-list-con > ul{display: flex;}
.footer-sitemap-list-con > ul > li{min-width: 7.5rem; padding-left: 1rem;}
.footer-sitemap-list-con > ul > li.gnb1,
.footer-sitemap-list-con > ul > li.gnb7{padding-left: 3rem; border-left: 1px solid rgba(255,255,255,0.08); position: relative;}
.footer-sitemap-list-con > ul > li.gnb1:before,
.footer-sitemap-list-con > ul > li.gnb7:before{position: absolute; top: 0; left: 0; width: 1px; height: 1.6rem; background-color: #fff; content: '';}
.footer-sitemap-list-con > ul > li.gnb7{margin-left: 5.5rem;}
.footer-sitemap-list-con > ul > li h3{margin-bottom:1.2rem; font-size:1.6rem; letter-spacing: -0.045em; font-weight: 500; color: #fff; text-transform: uppercase; font-family:var(--font-family2);}
.footer-sitemap-list-con > ul > li .sitemap-2dep li{margin-bottom:0.7rem;}
.footer-sitemap-list-con > ul > li .sitemap-2dep li:last-child{margin-bottom:0}
.footer-sitemap-list-con > ul > li .sitemap-2dep li a{display:block; font-size: 1.4rem; line-height: 1.3; letter-spacing: -0.045em; font-weight:400; color: rgba(255,255,255,0.4); transition:all 0.4s}
.footer-sitemap-list-con > ul > li .sitemap-2dep li a .plus-txt{display: none;}
.footer-sitemap-list-con > ul > li .sitemap-2dep li a:hover{color: #fff;}

/* -------- FOOTER :: 하단 -------- */
#footerBottom{}
#footerBottom .area-box{padding-top: 3rem; padding-bottom: 3rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-wrap:wrap; justify-content: space-between;}
#footerBottom .footer-right-con{display: flex; flex-wrap:wrap; align-items: center;}

/* Footer :: 푸터메뉴 */
.foot-menu{display: flex; align-items: center;}
.foot-menu li{position:relative; padding-left:4rem; line-height:2;}
.foot-menu li:before{position:absolute; top:50%; left:2rem; width:1px; height:1.3rem; margin-top:-0.65rem; background-color:rgba(255,255,255,0.2);  content:"";}
.foot-menu li:first-child{padding-left:0}
.foot-menu li:first-child:before{display:none} 
.foot-menu li a{font-size:1.6rem; letter-spacing:-0.045em; font-weight: 500; color: rgba(255,255,255,0.3);}
.foot-menu li a b{font-weight: 500; color: #fff;}

/* Footer :: Copyright */
.footer-copyright{font-size:1.4rem; line-height: 1.3; letter-spacing: -0.025em; font-weight: 500; color: rgba(255,255,255,0.3);}

/* Footer :: 패밀리사이트 */
.family-site-box{margin-left: 3.5rem; position:relative; width:19rem; text-align:left;}
.family-site-box .family-site-open-btn{display:block; width:100%; height:5rem; line-height: calc(5rem - 4px); padding:0 2.5rem; text-align:left; font-size:1.8rem; letter-spacing: -0.025em; font-weight: 500; color:#fff; border:2px solid #fff; background-color:transparent; box-sizing:border-box; border-radius: 0.5rem;}
.family-site-box .family-site-open-btn:after{position:absolute; right:2rem; top:50%; transform:translateY(-50%); font-size:2rem; font-family: 'xeicon'; content:"\e945";}
.family-site-box.open .family-site-open-btn:after{content:"\e942";}
.family-site-list{position:absolute; bottom:calc(100% - 2px); left:0px; width:100%; padding:1rem 0; background-color: #080b17; border:2px solid #fff; z-index:11; display:none; box-sizing:border-box; border-radius: 0.5rem;}
.family-site-list a{display:block; padding: 0.8rem 2.5rem; font-size:1.5rem; letter-spacing: -0.025em; font-weight: 500; color:#fff; opacity: 0.8;}
.family-site-list a:hover{opacity: 1; text-decoration:underline;}


/* ****************** 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.2,1.2); 
	transition:transform 5s ease;
}
#visual .visual-txt-con{position:relative; z-index:1; text-align:left; display:table; width:100%; height:100%; letter-spacing:-0.5px; color:#fff; box-sizing: border-box;}
#visual .table-cell-layout{vertical-align: bottom;}
#visual .visual-txt-container{position:relative; width:100%; padding-block:10rem;}
#visual .visual-tit,
#visual .visual-sub-txt,
#visual .sub-nav-bar-style ul li a {
	opacity:0;
    transform: translateY(30px);
	transition:var(--transition-custom2);
	/* transition-property: transform, opacity; */
}
#visual .visual-tit{
	display: block;
	font-weight:600; 
	font-size:12rem; 
	letter-spacing:-0.015em;
	transition-delay:0.3s;
	margin-bottom:3rem;
}
#visual .visual-sub-txt{
	font-size:2.4rem; 
	font-weight:600; 
	line-height:1.3; letter-spacing:-0.045em;
	transition-delay:0.5s;
	margin-bottom:5rem;
}

#visual .scroll-down-wrap{bottom:9rem;}

/* SUB LAYOUT :: 상단효과 active */
#visual.active .visual-img-inner{
     transform: scale(1.0,1.0) rotate(0.002deg);
}
#visual.active .visual-tit,
#visual.active .sub-nav-bar-style ul li a{
	opacity:1.0;
    transform: translateY(0px);
}
#visual.active .visual-sub-txt{
	opacity:0.6;
    transform: translateY(0px);
}

/* SUB LAYOUT :: 서브메뉴 */
#content{position: relative;}

.sub-nav-bar-style{}
.sub-nav-bar-style ul{display: flex; margin:0 -4px;}
.sub-nav-bar-style ul li{margin:0 4px;}
.sub-nav-bar-style ul li a{display: flex; align-items:center; justify-content:center; width:19rem; height:5.6rem; border-radius:8px; backdrop-filter:blur(1rem) brightness(1.1); background:rgba(255,255,255,0.1); transition:var(--transition-custom), transform 0.8s 0.7s ease-in-out, opacity 0.8s 0.7s ease-in-out !important;}
.sub-nav-bar-style ul li a em{font-size:1.8rem; line-height:1.5; letter-spacing:-0.025em; color:var(--white-color); font-weight:500;}
.sub-nav-bar-style ul li.selected a,
.sub-nav-bar-style ul li a:hover{background:var(--main-color);}

/* SUB LAYOUT :: 모바일메뉴(공통)  */
#topMenuM{display:none;}



/* ****************** 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; border-radius: 8px;}
.footer-inner{padding:20px; height:400px; overflow-y:auto; overflow-x:hidden; border:1px solid #ddd; }


/* ******************  사이트맵 :: 사이트맵 공통 ********************** */
.cm-sitemap-wrapper:not(#siteMapCon02)::-webkit-scrollbar{width: 5px; height:5px;}
.cm-sitemap-wrapper:not(#siteMapCon02)::-webkit-scrollbar-thumb{background-color:#333; transition:all 0.5s;}
.cm-sitemap-wrapper:not(#siteMapCon02)::-webkit-scrollbar-track{background-color:#fff; background:rgba(100,100,100,0.1); border-radius:5px;}
.cm-sitemap-wrapper{font-size:2rem; }
.cm-sitemap-wrapper:not(#siteMapCon01){position:fixed; top:0px; left:0px; width:100%; height:100%; overflow-y:auto; overflow-x:hidden; }
.cm-sitemap-wrapper:before{position:absolute; top:0px; left:0px; width:100%; height:100%; background-color:#000; content:""; opacity:0; transition:opacity 0.2s ease;}
.cm-sitemap-wrapper .cm-sitemap-bg{overflow:hidden; position:absolute; left:0; top:0px; width:0; height:100%; background:#000; transition:all 0.6s ease}
.cm-sitemap-container{position:absolute; display:table; width:100%; height:100%; overflow-y:auto; }
.cm-sitemap-inner-con{position: relative; display:table-cell; vertical-align:middle; padding: 5em 0; opacity:0; transition:opacity 0.5s ease 0s }
.cm-sitemap-inner-con .splitting,
.cm-sitemap-inner-con .splitting .word{overflow:hidden;}
.cm-sitemap-inner-con .splitting .word,
.cm-sitemap-inner-con .splitting .char{display:inline-block;}
.sitemap-wrapper-style span.num{display:none;} 
.cm-sitemap-inner-con .splitting .char{transform:translateY(100%); transition:transform 0.6s ease 0.3s , color 0.3s}
/* 공통 :: open */
.cm-sitemap-wrapper.open:before{opacity: 0.5}
.cm-sitemap-wrapper.open .cm-sitemap-inner-con{opacity:1.0; transition-delay:0.4s}
.cm-sitemap-wrapper.open .splitting .char{transform:translateY(0); transition-delay:0.3s}

/* ******************  사이트맵 ********************** */
#siteMapCon06{
	z-index:-1;
	opacity:0;filter:Alpha(opacity=0); 
	visibility:hidden;
}
#siteMapCon06:before{background-color: rgba(0,0,0,0.5); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);}
#siteMapCon06 .sitemap-bg{left:auto; width: 100%; right:0%; height:0%; background-color: rgba(0,0,0,0.5); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);}
.cm-sitemap-container-06 .cm-sitemap-area-con{position:relative;}
.sitemap-modal-tit-con-06{overflow:hidden; display:flex; align-items:center; justify-content:space-between;}
.sitemap-modal-tit-con-06 h1{position: relative; font-size: 3em; padding-bottom: 0; font-weight: 700; letter-spacing: -0.004em; color: #fff; text-align: left;}
.sitemap-modal-tit-con-06 .sitemap-close-btn{background-color: #fff; width: 40px; height: 40px; font-size: 1em; line-height: 40px; -webkit-border-radius: 100%; border-radius: 100%; text-align: center; display:flex; align-items:center; justify-content:center;}
.sitemap-modal-tit-con-06 .sitemap-close-btn i{font-size:0.9em; line-height: 40px; transition:transform 0.5s}
.sitemap-wrapper-style06{margin-top:3.75em; display: flex;}
.sitemap-wrapper-style06 .sitemap-con{position: relative; padding:0 4rem;}
.sitemap-wrapper-style06 .sitemap-con:before{position: absolute; content:''; width:1px; height:100%; right:0; top:0; background:rgba(255,255,255,0.5);}
.sitemap-wrapper-style06 .sitemap-con > h2{margin-bottom: 1em; font-size:2.6em; line-height: 1.3; letter-spacing:-0.0083em; font-weight:600; color: #fff; font-family:var(--font-family2);}
.sitemap-wrapper-style06 .sitemap-con > ul{display:flex; justify-content:space-between; width:100%; table-layout:fixed;}
.sitemap-wrapper-style06 .sitemap-con > ul > li{vertical-align:top; text-align: left; opacity: 0; transform: translateY(50px); transition:var(--transition-custom2);}
.sitemap-wrapper-style06 .sitemap-con > ul > li:before{position: absolute; top: -2.6rem; left: 0%; content: ''; width: 1.2rem; height: 1.2rem; background-color: var(--main-color); border-radius: 100%; opacity: 0; transform: translateY(-30px); transition:var(--transition-custom);}
.sitemap-wrapper-style06 .sitemap-con > ul > li > h3{margin-bottom: 1em; font-size:1.5em; line-height: 1.3; letter-spacing:-0.0083em; font-weight:600; color: #fff; background-color: transparent; font-family:var(--font-family2);}
.sitemap-wrapper-style06 .sitemap-con > ul > li .sitemap-2dep a{display:block; overflow:hidden; padding:0.5em 0; color:#fff; font-size:0.85em; font-weight:300; line-height:1.3;  -webkit-transition: all 0.2s; transition: all 0.3s;}

.sitemap-wrapper-style06 .sitemap-con.sitemap-business{width:60%;}
.sitemap-wrapper-style06 .sitemap-con.sitemap-business > ul > li{width:16.66%;}
.sitemap-wrapper-style06 .sitemap-con.sitemap-company{width:40%;}
.sitemap-wrapper-style06 .sitemap-con.sitemap-company > ul > li{width:25%;}
.sitemap-wrapper-style06 .sitemap-con.sitemap-company:before{display: none;}

/* Open */
#siteMapCon06.open{
	opacity:1.0;filter:Alpha(opacity=100); 
	visibility:visible; 
	z-index:9998; 
}
#siteMapCon06.open .sitemap-bg{height:100%;}
#siteMapCon06.open .sitemap-bg .logo-bg span{transform:translateY(0); transition-delay:0.3s}
#siteMapCon06.open .sitemap-wrapper-style06 .sitemap-con > ul > li{opacity: 1; transform: translateY(0);}
#siteMapCon06.open .sitemap-wrapper-style06 .sitemap-con > ul > li:nth-child(2){transition-delay:0.2s;}
#siteMapCon06.open .sitemap-wrapper-style06 .sitemap-con > ul > li:nth-child(3){transition-delay:0.4s;}
#siteMapCon06.open .sitemap-wrapper-style06 .sitemap-con > ul > li:nth-child(4){transition-delay:0.6s;}
#siteMapCon06.open .sitemap-wrapper-style06 .sitemap-con > ul > li:nth-child(5){transition-delay:0.8s;}
#siteMapCon06.open .sitemap-wrapper-style06 .sitemap-con > ul > li:nth-child(6){transition-delay:1s;}
#siteMapCon06.open .sitemap-wrapper-style06 .sitemap-con > ul > li:nth-child(7){transition-delay:1.2s;}
#siteMapCon06.open .sitemap-wrapper-style06 .sitemap-con > ul > li:nth-child(8){transition-delay:1.4s;}
#siteMapCon06.open .sitemap-wrapper-style06 .sitemap-con > ul > li:nth-child(9){transition-delay:1.6s;}
#siteMapCon06.open .sitemap-wrapper-style06 .sitemap-con > ul > li:nth-child(10){transition-delay:1.8s;}
.sitemap-wrapper-style06 .sitemap-con > ul > li:hover:before{opacity: 1; transform: translateY(0);}
@media (hover: hover) {
	.sitemap-modal-tit-con-06 .sitemap-close-btn:hover i{transform:rotate(180deg)}
	.sitemap-wrapper-style06 .sitemap-con > ul > li .sitemap-2dep:hover a{opacity:0.4}
	.sitemap-wrapper-style06 .sitemap-con > ul > li .sitemap-2dep:hover a:hover{opacity:1.0; color: #fff;}
}