@charset "utf-8";

@import url("fonts.css");

/*@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&display=swap");*/

/*********************************************
* 메인공통레이아웃
* 서브공통레이아웃
* 헤더,메뉴,사이트맵,푸터,버튼,컬러,폰트세팅,변수세팅
* 상담폼
**********************************************/
/* root */
:root{
	--main-color:#00aaff;
	--main2-color:#008dd3;
	--main3-color:#73b1ff;
	--main4-color:#24aae1;
	--point-color:#f4bd42;
	--red:#d1155b;
	--yellow:#fff549;
	--blue:#5ecaff;
	--lightyellow:#fffeeb;
	--lightcyan:#ebfcff;
	--black:#1a1a1a;
	--gray:#eee;
	--darkgray:#3b3b3b;	
	--mudgray:#595959;	
	--lightgray:#bbbbbb;
	--graycolor:#8f8f8f;
	--input-color:#f7f7f7;
	--white:#ffffff;
	--white2:#f7f7f7;
	--white3:#f9f9f9;
	--bgcolor:#fcfcfc;
	--munjabg:#e6f5ff;
	--footer-bgcolor:#505050;
	--footer-color:#abb4bd;;
	--common-wide-width: 1720px;
	--common-box-width: 1630px;
	--common-width: 1280px;
	--common: 1024px;
	--min-width: 400px;
	--common-padding: 5vw;
	--top-padding: 10vw;
	--padding: 0 3vw;
	--header-top: 0px;
	--header-height: 120px;
	--aside-height: 60px;
	--footer-height: 120px;
	--header-sub-height: 130px;
	--sub-visual-height: 30rem;
	--sub-menu-height: 70px;
	--full-height: 100vh;
	--gnbbg-height: 300px;
	--transition: all 0.4s ease-in-out;
	--transition2: all 0.8s ease-in-out;
	--box-shadow: 0px 0px 5.5px -0.5px rgba(4, 6, 25, 0.2);
	--box-shadow2: 0px 0px 10px 10px rgba(4, 6, 25, 0.1);
	--box-shadow3: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
	--font-size: 1rem;
	--font-weight: 400;
	--font-lineheight: 1.1;
	--NotoSansKR: "Noto Sans KR", "돋움", Dotum, Arial, sans-serif;
	--Pretendard: 'Pretendard', "나눔고딕", NanumGothic, "Nanum Gothic", "돋움", Dotum, Arial, sans-serif;
	/*--font-family2: 'Poppins', "나눔고딕", NanumGothic, "Nanum Gothic", "돋움", Dotum, Arial, sans-serif;
	--font-family3: 'Noto Sans KR', "나눔고딕", NanumGothic, "Nanum Gothic", "돋움", Dotum, Arial, sans-serif;*/
	--xeicon: 'xeicon';
}
/* font  responsive */
@media all and (max-width:1280px){
	/* html{font-size:0.8594vw;}  */
}
@media all and (max-width:1024px){ /* 메뉴 브레이크포인트 */
	:root{
		--header-top: 0;
		--header-sub-height: 10vh;
		--header-height: 10vh;
		--sub-visual-height: 30rem;
		--common-padding: 5vw;
		--sub-menu-height: 6vh;
	}
}
@media all and (max-width:800px){
	/* html{font-size:1.15vw;} */
	:root{
		--sub-visual-height: 20rem;
	}
}
@media all and (max-width:640px){
	/* html{font-size:1.1vw;} */
}
@media all and (max-width:480px){
	:root{font-size:2.4vw;}
}
@media all and (max-width:412px){
	/* html{font-size:2.4272vw}  */
}
@media all and (max-width:390px){
	/* html{font-size:2.1795vw}  */
}
::selection {
	background: var(--main-color);   
	color: var(--white);
}
::-moz-selection {
	background: var(--main-color);    
	color: var(--white);
}

html {font-size:10px; font-weight: var(--font-weight); line-height: 1.5; letter-spacing: -0.005em; background: url(../images/main/main_pattern_bg.jpg) repeat;}
body, table, th, td, button, select, input, textarea {font-family:var(--Pretendard); font-weight: var(--font-weight); line-height: 1.3; letter-spacing: -0.005em; color: var(--black); -webkit-text-size-adjust:none; -moz-text-size-adjust:none; text-size-adjust:none; word-break:keep-all;}
input[type=file].input {padding:0;}
textarea.input {height:auto; padding:1rem 1.5rem; overflow:auto; resize:none;}
select.input {padding-right:40px; background:var(--white) url('../images/bbs/select.png') right 14px center no-repeat; -webkit-appearance:none; -moz-appearance:none; appearance:none;}
select.input::-ms-expand {display:none;}
.input {height:44px; padding:6px 16px; color:var(--darkgray); font-size:15px; line-height:1.5em; border:1px solid var(--gray);}.input[readonly] {background-color:var(--gray); color:var(--lightgray);}
.input.datepicker {padding-right:40px; background:var(--white) url('../images/bbs/datepicker_icon.png') right 10px center no-repeat;}

/************* 공통 **********/
#wrap {overflow:hidden; width:100%; min-width:320px; position:relative; }
.common{max-width:var(--common-width); margin:0px auto; margin-left: -5rem;}
.common-box{max-width:var(--common-box-width); width: 100%; margin: 0 auto; box-sizing: border-box; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap:0 10rem;}
.common-wide{max-width:var(--common-wide-width); margin:0px auto; }
.full-height{height:var(--full-height);}
.fullpage-html{overflow:hidden; height:100%;}
.fullpage-html #wrap{position:static;}
.pc-br{display:block;}
.m-br{display:none;}
.m-min-br{display:none;}
.display-m{display:none;}
.tal {text-align: left;}
img {border: 0; max-width: 100%; height: auto; transition: all 0.4s ease-in-out; vertical-align: top;}
@media all and (max-width:1780px){
	.common-wide{padding:0 var(--common-padding); max-width:none;}
}
@media all and (max-width:1630px){
	.common-box{display: block; padding:0 var(--common-padding); max-width:none; gap: 1rem;}
}
@media all and (max-width:1380px){
	.common{padding:0 var(--common-padding); max-width:none;}
}
@media all and (max-width:1280px){ 
	.display-m{display:block;}
	.display-pc{display:none;}
}
@media all and (max-width:800px){ 
	.pc-br{display:none;}
	.m-br{display:block;}
}

.login-txt-wrap {position: fixed; z-index: 111; bottom: 3rem; display: flex; align-items: center; justify-content: center; gap: 1rem; font-size: 1.85rem; line-height: 1.2; color: var(--black); width: 100%;}
.login-txt-wrap > div {border-radius: 15rem;	border: 1px solid var(--lightgray); padding: 1rem 2rem; display: flex; gap: 0.4rem;}
.login-txt-wrap .login-txt:before {content: "\e963"; font-family: var(--xeicon);}
.login-txt-wrap .join-txt:before {content: "\e986"; font-family: var(--xeicon);}
/************** 버튼 *************/
[class*=btn-style-] {margin:0.2rem auto; text-align: center; width: inherit; border-radius: 0.5rem; box-shadow: 1px 1px 5px -2px rgba(0, 0, 0, 0.5); transition: var(--transition); border: 1px solid rgba(0,0,0,.05); background: rgba(0,0,0,.1);	backdrop-filter: blur(5px); /* padding: 1rem 2rem; font-size: 1.6rem; */}
[class*=btn-style-] a,
button[class*=btn-style-] {display: inline-flex; align-items: stretch; justify-content: center; line-height: 1; letter-spacing: -0.03em; font-size: 2rem; padding: 1.85rem 2.5rem;}
/* 관리자로그아웃버튼예외 */
[class*=btn-style-] a.style-non {display: inline-flex; align-items: stretch; justify-content: center; line-height: unset; letter-spacing: unset; font-size: unset; padding: unset;}

[class*=btn-style-] i {margin-left: 0.2rem;}
[class*=btn-style-] a:hover i {animation: roll 0.3s ease-in-out;}
/* [class*=btn-style-] a:after,
 button[class*=btn-style-]:after {content: "\e963"; font-family: var(--xeicon);} */
/* 버튼중앙위치잡기 */
.btn-controls {display: flex; align-items: center; justify-content: center; grid-gap: 0.5rem;	flex-direction: column; overflow: hidden;}
.btn-controls-row {display: flex; width: fit-content; align-items: center; justify-content: center; gap: 0.5rem; overflow: hidden; margin: 0 auto;}
/* 메인컬러버튼 */
.btn-style-maincolor {background: var(--main-color); color:var(--white);}
.btn-style-maincolor:hover {background: var(--graycolor);}
/* 메인2컬러버튼 */
.btn-style-main2color {background: var(--main2-color); color:var(--white);}
.btn-style-main2color:hover {background: var(--graycolor);}
/* 메인3컬러버튼 */
.btn-style-main3color {background: var(--main3-color); color:var(--white);}
.btn-style-main3color:hover {background: var(--graycolor);}
/* 포인트컬러버튼 */
.btn-style-pointcolor {background: var(--point-color); color:var(--white);}
.btn-style-pointcolor:hover {background: var(--graycolor);}
/* 그레이버튼 */
.btn-style-graycolor {background: var(--graycolor); color:var(--white);}
.btn-style-graycolor:hover {background: var(--darkgray);}
/* 다크그레이버튼 */
.btn-style-darkgray {background: var(--darkgray); color:var(--white);}
.btn-style-darkgray:hover {background: var(--graycolor);}
/* 화이트버튼 */
.btn-style-whitecolor {background: var(--white3); color:var(--mudgray);}
.btn-style-whitecolor:hover {background: var(--graycolor); color:var(--white); }
/* 투명버튼 */
.btn-style-o a {background:var(--main-color); color: var(--white2); border: 1px solid var(--main-color); font-size: 2.2rem; font-weight: 600; border-radius: 0.8rem;}
.btn-style-o a:hover {background: var(--black); color: var(--white); border: 1px solid var(--black);}
/* 바로가기버튼-중간사이즈 */
.btn-style-link {background:linear-gradient(180deg, #ffffff, #efefef, #ffffff); color: var(--black); border: 1px solid var(--white); font-size:2rem; font-weight: 500; /* padding: 1rem 4rem;  */}
.btn-style-link:hover {background:var(--white2);}
/* 라운드버튼-메인컬러 */
.btn-style-round-maincolor {background: var(--main-color); color: var(--white); /* margin: 1rem auto 0;  */border-radius: 5rem;}
.btn-style-round-maincolor:hover {background: var(--graycolor);}
@media all and (max-width: 800px){
	[class*=btn-style-] a, button[class*=btn-style-] {font-size: 1.6rem; padding: 1.3rem 2rem;}
}



/*********** header pc **********/
#header {position:fixed; height:var(--header-height); top:0; left:0; width:100%; z-index:95; transition:var(--transition); box-shadow: var(--box-shadow); display: flex; align-items: center; }
.fullpage-html #header {position:fixed; display: none;}
#headerInnerWrap {position:absolute; top:0px; left:0px; width:100%; height:var(--header-height); z-index:9999; transition:var(--transition); transition-property:background-color;}
#headerInner {position:relative; display:flex; align-items:center; justify-content:space-between; height:var(--header-height); margin:0 auto;}
#header .logo {position:relative; z-index:100; }
#header .logo a { display:block; vertical-align:top; width: 16rem; height: 6rem; background: url(../images/SVG/logo.svg) no-repeat; transition-property:opacity;}
/* utilbox */	    
.header-util-box {position:relative; z-index:100; display: flex; align-items: center; justify-content: center; gap: 2rem; text-align:center;}
.header-util-box > .flex {display: flex; gap: 0.5rem;/* border-radius:0.5rem; border: 1px solid var(--lightgray); padding: 0.8rem 2rem 1rem; gap: 1rem; */ box-sizing: border-box; /* box-shadow: var(--box-shadow); -webkit-backdrop-filter: blur(5px);	backdrop-filter: blur(5px);	transition: var(--transition); background: var(--white);*/  /* position: fixed; top: 0; overflow: hidden;*/}
.header-util-box > .flex > div {flex:1; font-size: 1.4rem; text-align: center; cursor: pointer; display: flex; gap: 0rem; border-radius: 0.3rem; /* border-radius:0.35rem; background: var(--white2); border: 1px solid var(--lightgray); */ padding: 0.5rem 1.0rem; color: var(--black);}
/* .header-util-box > .flex .login-txt:after {content: "|"; margin-left: 0.5rem; font-weight: 200;} */
/* .header-util-box > .flex .login-txt:before {content: "\e963"; font-family: var(--xeicon);}
.header-util-box > .flex .join-txt:before {content: "\e986"; font-family: var(--xeicon);} */
.header-util-box > .flex > div:hover {color: var(--white);}
.header-util-box > .flex > div:last-child {background: var(--main-color); color: var(--white); border: 1px solid var(--main-color);}
.header-util-box > .sub_flex > div{color: var(--darkgray);}
.header-util-box .link-btn {font-size:2.6rem; font-weight: 600; color:var(--point-color); line-height: 1.1; letter-spacing: -0.08em; display: flex; align-items: center; gap: 0.2rem; text-shadow:1px 1px 0px rgba(100,100,100,.5);}
.header-util-box .link-btn::before {content: "\e9d3"; font-family: var(--xeicon); font-size: 3rem; color: var(--main-color); display: none;}
.header-util-box .link-btn i {position: relative; background: url(../images/SVG/xi-user-circle.svg); width: 3.2rem; height: 3.2rem; display: block; color:var(--white);}
.header-util-box .link-btn i.user {background: url(../images/SVG/xi-user-circle-black.svg); opacity: 0.4;}
.header-util-box .link-btn i.user_out {background: url(../images/SVG/xi-user-check-black.svg); opacity: 0.4;}
/* sitemap버튼 */
.sitemap-line-btn{width:3rem; display:flex; flex-direction:column; justify-content: center; box-sizing:border-box; display: none;}
.sitemap-line-btn .line{width:3rem; height:3px; background:rgba(255,255,255,0.7); margin: 4px 0; transition:var(--transition);}
.sitemap-line-btn .line:nth-child(2){margin-left: 4px; background: var(--main-color);}
.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){opacity: 0;}
.sitemap-line-btn.active .line:nth-child(3){transform: translateY(-5px) rotate(-45deg);}
.sitemap-line-btn.active .line:nth-child(4){opacity: 0;}
/* gnb */
.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); }	
.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; width: 13rem; box-sizing:border-box; transition:var(--transition);}
#gnb > ul > li > a{position:relative; z-index:100; display:block; line-height:var(--header-height); text-align:center; color:var(--white); font-size:2.0rem; letter-spacing:-0.02em; font-weight:400; transition:var(--transition);}
#gnb > ul > li > a:hover {color:var(--white);}
@media all and (max-width: 1280px){
	#header .logo a {width: 13rem; height: 4rem;}
	#gnb > ul > li {width: 12rem;}
	#gnb > ul > li > a {font-size: 1.8rem;}	
}

/* Header - scroll */
/* #header.scroll-down{transform:translateY(calc(-1 * (var(--header-height) + var(--header-top) + 1px))) !important;} */


/* gnb 메뉴오버시 풀메뉴 */
#gnbBg{overflow: hidden; position: absolute; left: 0; top:calc(-1 * var(--header-top)); width: 100%; height: var(--header-height); background-color: rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(5px); z-index: 99; opacity: 0.8;	transition:height 0.3s ease-in-out, opacity 0.2s ease-in-out;	box-shadow: var(--box-shadow);}
#gnb.total-menu > ul > li .gnb-2dep{position:absolute; top:var(--header-height); left:0px; z-index:99;width:100%; text-align:left; opacity:0; filter:Alpha(opacity=0);height:0; transition: all 0.2s 0s;transition-delay: 0s;visibility:hidden;}
#gnb.total-menu > ul > li .gnb-2dep:before {position: absolute; top:calc(-1 * (var(--header-top) + var(--header-height)));  left: 0; content: ''; width: 100%; height: calc(var(--gnbbg-height) + 0px); background-color: var(--main-color); opacity: 0; transition: opacity 0.3s;}
#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:5px 0px; color:var(--white); font-size:1.68rem; letter-spacing:-0.025em; font-weight:400; line-height:1.3; opacity: 0.8; text-align: center; transition:var(--transition);}
#gnb.total-menu > ul > li .gnb-2dep ul li a:hover{opacity: 1;}
#gnb.total-menu > ul > li.on .gnb-2dep:before{opacity: 1;}
/* gnb 메뉴오버시 높이 */
#gnb.open #gnbBg{height:var(--gnbbg-height); opacity:1; /* filter:Alpha(opacity=100); */}
#gnb.open > ul > li .gnb-2dep{height:var(--gnbbg-height); opacity:1; filter:Alpha(opacity=100);	visibility: visible; transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out 0.2s;}
/* black-ver */
[class*=black-ver] #headerInnerWrap{ background-color: rgba(255,255,255,1.0); box-shadow: var(--box-shadow);}
#header .logo a.black-ver{background: url(../images/SVG/logo-black.svg) no-repeat;}

[class*=black-ver] #gnb > ul > li > a{color:var(--darkgray);}
[class*=black-ver] #gnb > ul > li.on > a{color:var(--white);}
[class*=black-ver] #gnb.total-menu > ul > li .gnb-2dep ul li a{color:var(--darkgray);}/* 오버시컬러 */
[class*=black-ver] #gnb > ul > li > a:hover{color:var(--white);}
[class*=black-ver] #gnb.total-menu > ul > li .gnb-2dep ul li a:hover{color:var(--white);}
[class*=black-ver] #gnb #gnbBg {backdrop-filter: blur(0px);}
[class*=black-ver] #gnb.open #gnbBg{height:var(--gnbbg-height); background-color: rgba(255,255,255,0.9); border-bottom: none; backdrop-filter: blur(5px);}
[class*=black-ver] #gnb.open > ul > li.on,
[class*=black-ver] #gnb.open > ul > li.on .gnb-2dep ul li a{color:var(--white);}
[class*=black-ver] .header-util-box .link-btn{color:var(--darkgray);}
[class*=black-ver] .header-util-box .link-btn i {background: url(../images/SVG/xi-user-circle-black.svg); opacity: 0.4;}
[class*=black-ver] .sitemap-line-btn .line{background-color: var(--darkgray);}
[class*=black-ver] .sitemap-line-btn .line:nth-child(2){background-color: var(--main-color);}

/* sub-wrap */
.sub-wrap #header{position: fixed; top: 0; height: var(--header-height); display: flex; align-items: center; justify-content: center;}
.sub-wrap #headerInnerWrap{position:fixed; z-index:99; height: var(--header-height); background-color: rgba(255,255,255,0.95); box-shadow: var(--box-shadow);}
.sub-wrap #headerInner{height: var(--header-height);}
.sub-wrap #header .logo a {visibility: visible; opacity: 1; background: url(../images/SVG/logo-black.svg) no-repeat;}
.sub-wrap #header .logo a .original{visibility: hidden; opacity: 0;}
.sub-wrap #header .logo a .black{visibility: visible; opacity: 1;}
.sub-wrap #header .sitemap-line-btn .line{background-color: var(--darkgray);}
.sub-wrap #header .sitemap-line-btn .line:nth-child(2){background-color: var(--main-color);}
.sub-wrap #gnb > ul > li > a{line-height:var(--header-height); color: var(--darkgray);}
.sub-wrap #gnb.total-menu > ul > li .gnb-2dep ul li a{color:var(--darkgray);}
.sub-wrap #gnb #gnbBg {backdrop-filter: blur(0px);}
.sub-wrap #gnb.open #gnbBg{height:var(--gnbbg-height); background-color: rgba(255,255,255,0.9);	border-bottom: none; backdrop-filter: blur(10px);}
/* .sub-wrap #gnbBg{top:0;}
.sub-wrap #gnb.total-menu > ul > li .gnb-2dep{top:var(--header-sub-height);}
.sub-wrap #gnb.total-menu > ul > li .gnb-2dep:before {top:calc(-1 * var(--header-sub-height)); height: calc(var(--header-sub-height) + 56.5%);}
.sub-wrap #header.top-fixed #headerInnerWrap{border-bottom: 1px solid rgba(0,0,0,0.15);} */
.sub-wrap #header #gnb.open > ul > li.on > a, .sub-wrap #header #gnb.open > ul > li.on .gnb-2dep ul li a{color:var(--white);}
.sub-wrap .header-util-box .link-btn {color:var(--darkgray); font-size: 3rem;}
.sub-wrap .header-util-box .link-btn i.user {background: url(../images/SVG/xi-user-circle-black.svg); opacity: 0.4;}
/* .sub-wrap .header-util-box .link-btn i.user::after {content: "\e963"; font-family: var(--xeicon);} */
.sub-wrap .header-util-box .link-btn i.user_out {background: url(../images/SVG/xi-user-check-black.svg); opacity: 0.4;}
/* .sub-wrap .header-util-box .link-btn i.user_out::after {content: "\e972"; font-family: var(--xeicon);} */




/*********** header mobile **********/
/* gnb */
.nav-open-btn {display:none;}
#gnbM {display:none}

/* header */
@media all and (max-width:1730px){
	.header-util-box .link-btn span {display: none;}
}
@media all and (max-width:1630px){
}
@media all and (max-width:1280px){
	.header-util-box {gap: 0.5rem;}
	.header-util-box .link-btn {flex-direction: row;}
	.header-util-box .link-btn::before {display: block;}
	.common {margin-left: 0;}
	.header-util-box .link-btn,
	.sub-wrap .header-util-box .link-btn {font-size: 2.65rem; gap: 0.5rem;}	
}
@media all and (max-width:1024px){ /* 메뉴 브레이크포인트 */
	/* #gnb > ul{margin-left: 5rem;} */
	.fullpage-html #header{position:absolute;}
	#headerInnerWrap{position:fixed; z-index:99;}
	#header .logo a{height: 3rem; width: 10rem; background: url(../images/SVG/logo.svg) no-repeat;}
	#header .logo a.black-ver{height: 3rem; background: url(../images/SVG/logo-black.svg) no-repeat;}
	#header.top-fixed .logo a{height: 3rem; background: url(../images/SVG/logo-black.svg) no-repeat;}
	#header.top-fixed #headerInnerWrap{background-color: rgba(255,255,255,0.9); border-bottom: 1px solid rgba(0,0,0,0.15); backdrop-filter: blur(5px);}
	.sub-wrap #header .nav-open-btn .line,
	#header.top-fixed .nav-open-btn .line{background-color: var(--darkgray);}
	.sub-wrap #header .nav-open-btn .line:nth-child(2),
	#header.top-fixed .nav-open-btn .line:nth-child(2){background-color: var(--main-color);}
	#header.open #headerInnerWrap{border-bottom-color:var(--white); box-shadow: none;}
	#header.open .logo a .ori-ver{visibility: hidden; opacity: 0;}
	#header.open .logo a .color-ver{visibility: visible; opacity: 1;}	
	/* .header-util-box{display: none;} */
	#gnb.total-menu > ul > li .gnb-2dep:before {top: -9.3rem;}
	.common {margin-left: 10rem;}
	.header-util-box {margin-right: 0;}
	.header-util-box > .flex {display: none;}
	.sitemap-line-btn, .sitemap-custom-btn{display:none;}
	#gnb > ul > li {width: 10rem;}
	#gnb > ul > li > a {font-size: 1.65rem;}
	#gnb.total-menu > ul > li .gnb-2dep ul li a {font-size: 1.58rem;}
	.gnb-overlay-bg{display:none}
	.gnb-overlay-bg-m{display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.5);}	
	#gnbM{display:block; position:fixed;top:0px;right:-82%; width:80%; height:100%; max-width:280px; background-color:var(--white); transition:var(--transition-custom); visibility:hidden;}
	#gnbM.open{right:0px;visibility:visible;}	
	.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));}
	/* 1depth */
	#navigation > li{border-bottom:1px solid var(--lightgray);}
	#navigation > li:first-child{border-top:1px solid var(--lightgray);}
	#navigation > li > a {position:relative; display:block; padding:2rem var(--common-padding); color:var(--darkgray); font-size:2rem; font-weight:600; }
	#navigation > li.active > a{color:var(--main-color);}
	#navigation > li.has-2dep > a:before{font-family:var(--xeicon); content: "\e914"; position:absolute; top:50%; right:var(--common-padding); font-size:1.3em; transform:translateY(-50%);}
	#navigation > li.has-2dep.active > a:before{content: "\e91b";}
	/* 2depth */
	#navigation > li .gnb-2dep{display:none; padding:0 0; background-color:var(--white2);}
	#navigation > li .gnb-2dep > ul > li{height:auto !important;}
	#navigation > li .gnb-2dep > ul > li > a{display:block; color:var(--black); font-size:2rem; padding:1rem var(--common-padding); font-weight: 500;}
	#navigation > li .gnb-2dep > ul > li.on > a{color: var(--white2); background: var(--main-color);}
	/* 3depth */
	#navigation > li .gnb-2dep > ul > li > .gnb-3dep{display:none; padding:10px; background-color:var(--graycolor); margin:0 10px;}
	#navigation > li .gnb-2dep > ul > li > .gnb-3dep > li > a{display:block; padding:8px 0; font-size:13px; color:var(--white);}
	#navigation > li .gnb-2dep > ul > li > .gnb-3dep > li > a:before{display:inline-block; content:"-"; margin-right:5px;}	
	/* gnb-style-full */
	#gnbM.gnb-style-full{top:-100%;right:0;width:100%;height:100%;max-width:none;z-index: 999;}
	#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; padding-top: 12rem;}
	.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;border-bottom:1px solid var(--gray)}
	.gnb-style-full.open #navigation > li:nth-child(1){transition-delay:0.3s;}
	.gnb-style-full.open #navigation > li:nth-child(2){transition-delay:0.4s;}
	.gnb-style-full.open #navigation > li:nth-child(3){transition-delay:0.6s;}
	.gnb-style-full.open #navigation > li:nth-child(4){transition-delay:0.7s;}
	.gnb-style-full.open #navigation > li:nth-child(5){transition-delay:0.9s;}
	.gnb-style-full.open #navigation > li:nth-child(6){transition-delay:0.9s;}
	/* header -nav-open-btn */
	.nav-open-btn{display:none;}
	.nav-open-btn::after {content:"\e91c"; font-family: var(--xeicon); color: var(--white); font-size: 2.5rem; text-shadow: 1px 1px 0px rgba(100,100,100,.5);}
	.nav-open-btn.active::after {content:"\e922"; font-family: var(--xeicon); color: var(--black); font-size: 3rem;}
	.top-fixed .nav-open-btn::after {content:"\e91c"; font-family: var(--xeicon); color: var(--main-color); font-size: 2.5rem; text-shadow: 1px 1px 0px rgba(100,100,100,.5);}

	.nav-open-btn .line{display:none; width:35px; height:3px; background-color:rgba(255,255,255,0.7); margin: 7px 0; transition:var(--transition-custom);}
	/* .nav-open-btn .line:nth-child(2){margin-left: 6px; background-color: var(--main-color);}
	.nav-open-btn.active .line{background-color:var(--graycolor);}
	.nav-open-btn.active .line:nth-child(2){opacity: 0;}
	.nav-open-btn.active .line:nth-child(1){transform: translateY(5px) rotate(45deg);}
	.nav-open-btn.active .line:nth-child(3){transform: translateY(-9px) rotate(-45deg);} */
}
@media all and (min-width: 481px) and (max-width: 1280px) {
	.nav-open-btn.active{right:4rem;}
	.header-util-box .link-btn,
	.sub-wrap .header-util-box .link-btn {font-size: 0; gap: 0;}
}
@media all and (max-width: 1024px) {
	#gnb{display:none;}
	.nav-open-btn{display:block; position:fixed; right:var(--common-padding); z-index:10000; height:auto; transition:var(--transition-custom);}
	/* .nav-open-btn .line {width: 2rem; height: 0.3rem; margin: 0.4rem 0;}
	.nav-open-btn .line:nth-child(2) {margin-left: 0.4rem;} */
	.header-util-box {margin-right: 4rem;}
	.header-util-box .link-btn,
	.sub-wrap .header-util-box .link-btn {font-size: 2.25rem; gap: 0.5rem;}
	.header-util-box .link-btn::before {font-size: 2rem;}
	.sub-wrap .nav-open-btn::after {color: var(--main-color);}
}
@media all and (max-width: 800px){
	/* .nav-open-btn .line {margin: 0.4rem 0;} */
}
@media all and (max-width: 480px){
	/* .nav-open-btn .line {margin: 0.4rem 0;} */
}
@media all and (max-width: 360px){
	/* .nav-open-btn .line {margin: 0.5rem 0;} */
}


/********** 서브레이아웃 **********/
/* 서브 - 스크롤바 */
.custom-scrollbar-cover, .cm-scroll-drag-guide{display:none;}
/* 서브스크롤다운 */
.sub-wrap #header.scroll-down{transform:translateY(calc(-1 * (var(--header-sub-height) + 1px))) !important;}
#container{margin-top:0;}
/*  서브비쥬얼고정 */
#visual{position: fixed; top: 0; width:100%; height:var(--sub-visual-height); left: 0%;}
#visual .visual-img-con{position:absolute; top:0px; left:-1%; width:105%;	height: var(--sub-visual-height); overflow:hidden;	}
#visual .visual-img-inner{width:105%; height:105%; background-size:cover !important; transform: scale(1.1,1.1); transition: transform 3s linear; filter: blur(2px) brightness(0.85);}
#visual .visual-img-01 {background: url(../images/sub/sub_visual_img01.jpg);}
#visual .visual-img-02 {background: url(../images/sub/sub_visual_img02.jpg);}
#visual .visual-img-03 {background: url(../images/sub/sub_visual_img03.jpg);}
#visual .visual-img-04 {background: url(../images/sub/sub_visual_img04.jpg);}
#visual .visual-img-05 {background: url(../images/sub/sub_visual_img05.jpg);}
#visual .visual-img-06 {background: url(../images/sub/sub_visual_img06.jpg);}
#visual .visual-img-07 {background: url(../images/sub/sub_visual_img07.jpg);}
#visual .visual-txt-con{position:relative; z-index:1; display:table; width:100%; height:100%;}
#visual .visual-txt-container{position:relative; width:100%; transform: translateY(5rem); text-align: center; box-sizing: border-box;}
#visual .visual-sub-txt, #visual .visual-tit{opacity:0; transform: translateY(30px);	transition: var(--transition); transition-property: transform, opacity;}
#visual .visual-sub-txt{font-size: 2rem; line-height: 1.5; letter-spacing: -0.001em; font-weight: 700; color: rgba(255,255,255,0.2);	transition-delay:0.1s;}
#visual .visual-tit{font-size: 5.8rem; font-weight: 500; color: var(--white); transition-delay:0.3s;}
#visual.active .visual-img-inner{transform: scale(1.0,1.0) rotate(0.002deg);}
#visual.active .visual-sub-txt, #visual.active .visual-tit{opacity:1.0; transform: translateY(0px);}
/* 서브박스시작 */
#sub-container {position: relative;	z-index: 9;	background:var(--bgcolor);	margin-top: 23rem; padding-bottom:0rem; background: url(../images/sub/subbg_pattern.jpg) center;}
/* 서브메뉴 */
#sub-menu{margin-top:calc(-1 * (var(--sub-menu-height) / 2)); position:relative; width:100%; height:var(--sub-menu-height); z-index: 99; border-bottom: 1px solid var(--gray); background: var(--white2);;}
#sub-menu .common-box{width:calc(100%); height: var(--sub-menu-height);}
#sub-menu .side-menu-inner{width:calc(100% - 10rem); height:var(--sub-menu-height); position: relative; border-radius: 0px; margin: 0 auto;}
#sub-menu .side-menu-inner:after {display: none; position: absolute; top: 0; right: -38px; content: ''; width: 0; height: 0; border-radius: 0px 0 0 0px;
  border-bottom: calc(var(--sub-menu-height) / 2) solid transparent;
  border-top: calc(var(--sub-menu-height) / 2) solid transparent;
  border-left: 20px solid var(--main-color);
  border-right: 20px solid transparent;}
#sub-menu .cm-top-menu{display: flex;  align-items: center; justify-content: center;}
#sub-menu .menu-location{position:relative; margin: 0 5rem; width:200px;}
#sub-menu .menu-location > .cur-location{position:relative; display:block; width:100%; height:var(--sub-menu-height); padding:0 35px 0 0; text-align:left}
#sub-menu .menu-location > .cur-location span{display:block; width:100%; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; line-height:var(--sub-menu-height); color: var(--black); font-weight:500; font-size:19px; letter-spacing:-0.015em;}
#sub-menu .menu-location > .cur-location .arrow{position:absolute; top:50%; right:0; width:20px; height:20px;margin-top:-10px; font-size:20px; color: var(--black);}
#sub-menu .menu-location.open > .cur-location .arrow{transform:rotate(-180deg); margin-top:-10px;}
#sub-menu .menu-location .location-menu-con{display:none; position:absolute; top:100%; left:-1px; right:0px; border:1px solid var(--main-color); border-top:0; background-color:var(--white); z-index:11;}
#sub-menu .menu-location .location-menu-con li:first-child{padding-top: 10px;}
#sub-menu .menu-location .location-menu-con li:last-child{padding-bottom: 10px;}
#sub-menu .menu-location .location-menu-con li a{display:block; padding:10px 20px; font-size:16px; word-break:keep-all; line-height:1.5;}
#sub-menu .menu-location .location-menu-con li.on{position:relative;}
#sub-menu .menu-location .location-menu-con li.on a{color:var(--main-color); font-weight:500;}
/* 서브탭메뉴 */
.sub-tab-memu {position: sticky; max-width: 100%;	height: calc(var(--sub-menu-height) + 1px); box-sizing: border-box; border-bottom: 1px solid var(--gray);}
.sub-tab-memu .sub-tab-memu-inner {max-width: var(--common-width); margin: 0 auto; text-align: center; padding: 0px;}
.sub-tab-memu .sub-tab-memu-inner > ul {display: grid; grid-template-columns: repeat(auto-fit, minmax(20%, auto));}
/* .sub-tab-memu .sub-tab-memu-inner > ul.col-3 {display: grid; grid-template-columns: 1fr 1fr 1fr;}
.sub-tab-memu .sub-tab-memu-inner > ul.col-2 {display: grid; grid-template-columns: 1fr 1fr;}
.sub-tab-memu .sub-tab-memu-inner > ul.col-1 {display: grid; grid-template-columns: 1fr;} */
/* .sub-tab-memu .sub-tab-memu-inner > ul:after {content: ''; display: block; clear: both;} */
.sub-tab-memu .sub-tab-memu-inner > ul > li {display: grid; align-items: center; height: var(--sub-menu-height); line-height: var(--sub-menu-height); text-align: center; font-size: 2rem; font-weight: 500; text-transform: uppercase; letter-spacing: -0.005em; color: var(--black); background: var(--white); transition: var(--transition);}
.sub-tab-memu .sub-tab-memu-inner > ul > li > a {white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.sub-tab-memu .sub-tab-memu-inner > ul > li {border-bottom: 1px solid var(--gray); border-right: 1px solid var(--gray);}
.sub-tab-memu .sub-tab-memu-inner > ul > li:first-child {border-left: 1px solid var(--gray);}
/* 240524 '반응형 카테고리형' 임시 비노출 */
/* .sub-tab-memu .sub-tab-memu-inner > ul > li:last-child{display: none;} */
.sub-tab-memu .sub-tab-memu-inner > ul > li:hover {color: var(--white); background: var(--main-color);}
.sub-tab-memu .sub-tab-memu-inner > ul > li:hover a {display: block;}
.sub-tab-memu .sub-tab-memu-inner > ul > li.active {color: var(--white); background: var(--main-color);}
/* aside */
#aside {width: 100%; height: var(--aside-height); margin:0 auto; border:1px solid var(--gray); background: var(--gray); box-sizing: border-box; border-radius: 0rem;}
#lnb {display: flex; max-width: var(--common-width); margin:0 auto; height: 60px; align-items: center; justify-content: flex-start; gap: 2rem;} /* gap: 2rem; 동일하게 설정 */
#lnb .home {font-size: 2.0rem;} 
#lnb .right {font-size: 1.85rem;}
#lnb .nav {display: flex; justify-content: flex-start;	align-items: flex-start; font-size: 1.85rem; height: 60px; gap: 2rem;}/* gap: 2rem; 동일하게 설정 */
#lnb .nav .nav-tab {width: 15rem;}
#lnb .nav .nav-tab >a {line-height: 6rem; margin: 0 1rem; display: flex; justify-content: left; align-items: center; gap: 2rem;} /* gap: 2rem; 동일하게 설정 */
#lnb .nav .nav-tab .sub {display: none; position: sticky; z-index: 11111;}
#lnb .nav .nav-tab:hover .sub {display: block; background: var(--white2);}
#lnb .nav .nav-tab .sub li:hover {display: block; background: var(--gray);}
#lnb .nav .nav-tab .sub li a {display: block; line-height: 5rem; margin: 0 1rem;}
/* 현재경로 **/
.bread-crumbs {text-align: right; width: 100%; font-size: 1.58rem; letter-spacing: -0.001em; font-weight: 300; color: var(--white2); position: absolute; top: -3rem;	right: 0cap;	transform: translateX(0rem); display: none;}
.bread-crumbs .inner {max-width: var(--common-width); margin: 0 auto; padding: var(--padding);}
/* Tab 공통 스타일 */
.sub-tab-wrapper-style{position:relative; height:60px; margin-bottom:15px;}
.sub-tab-list-style ul{display:table; width:100%; height:100%; table-layout:fixed;}
.sub-tab-list-style ul:after{display:none}
.sub-tab-list-style ul li{/* float:left; */ display:table-cell; vertical-align:middle; position:relative; width:20%; background-color:var(--white); border:1px solid var(--white2); border-left:0;}
.sub-tab-list-style ul li:first-child{border-left:1px solid var(--white2);}
.sub-tab-list-style ul li a{display:table; height:58px; width:100%;}
.sub-tab-list-style ul li a em{display:table-cell; vertical-align:middle; color:var(--darkgray); font-size:18px; letter-spacing:-0.30px; text-align:center;}
.sub-tab-list-style ul li.selected{z-index:1; background-color:var(--darkgray); border-color:var(--darkgray);}
.sub-tab-list-style ul li.selected a em{color:var(--white);}
.sub-tab-list-style.top-fixed{position:fixed; top:70px; left:0; width:100%; height:60px;}
.sub-drop-open-btn-style{display:none}
#topMenuM{display:none;}
/* 서브 - 컨텐츠 */
#content:not(.basic){padding:10rem 0 0 0;}
#content.basic{padding:10rem 0 15rem;}

/* 서브 responsive */
@media all and (min-width:1025px){
	.fixed-sub-menu.top-fixed .side-menu-inner{position:fixed; top:0px; left:0px; z-index:9999;}
}
@media all and (max-width:1780px){
	#sub-menu .common-box{ padding:0 10rem; max-width: none;}
}
@media all and (max-width:1380px){
}
@media all and (max-width:1280px){
	#visual{margin: 0; width: 100%;}
	#sub-menu .common-box{padding:0 var(--common-padding) 0 0;}
	#sub-menu .side-menu-inner{border-radius: 0 5px 5px 0;}
	#content:not(.basic){padding: 5rem 0 0 0;}
	#content.basic{padding: 5rem 0 10rem;}
}
@media all and (max-width:1024px){	
	#content:not(.basic){padding: 5rem 0 0 0;}
	#content.basic{padding: 5rem 0 10rem;}
	.sub-tab-memu .sub-tab-memu-inner > ul > li {font-size: 1.8rem;}
	#visual .visual-txt-container {transform: translateY(0rem);}
	#sub-container {margin-top: 20rem;}
	#visual .visual-sub-txt {font-size: 1.6rem;}
	#visual .visual-tit {font-size: 2rem;}
}
@media all and (max-width:800px){
	#visual .visual-txt-con{background-color: rgba(0, 0, 0, 0.2);}
	#visual .visual-txt-container {transform: translateY(4rem);}
	#visual .visual-sub-txt {font-size: 1.4rem;}
	#visual .visual-tit {font-size: 2rem;}
	#sub-menu .side-menu-inner{width: calc(100% - 20px);}	
	#sub-menu .menu-location{width:100%; margin: 0;}
	#sub-menu .menu-location.location1{display: none;}
	#sub-menu .menu-location >.cur-location{height:var(--sub-menu-height); border-right:0; padding:0 60px 0 var(--common-padding);}
	#sub-menu .menu-location >.cur-location span{line-height:var(--sub-menu-height); font-size:19px;}
	#sub-menu .menu-location >.cur-location .arrow{right: 10px;}
	#sub-menu .menu-location .location-menu-con{width: calc(100% - 4px); top:var(--sub-menu-height); left:0;}
	#sub-menu .menu-location .location-menu-con li:first-child{padding-top: 10px;}
	#sub-menu .menu-location .location-menu-con li:last-child{padding-bottom: 10px;}
	#sub-menu .menu-location .location-menu-con li a{font-size:16px; padding:7px var(--common-padding);}		
	#content:not(.basic){padding:3rem 0 0 0;}
	#content.basic{padding:3rem 0 5rem;}
	
}
@media all and (max-width:480px){
	.sub-tab-memu .sub-tab-memu-inner > ul > li {font-size: 1.6rem;}
	#contentInfoCon .content-tit{font-size:4rem; line-height:1.5em;}
	}
@media (max-width:360px)	{
	#visual .visual-txt-container {transform: translateY(3.6rem);}
}







/* ******************  사이트맵 - 공통 ********************** */
.cm-sitemap-wrapper:-webkit-scrollbar{width: 1rem; height:1rem;}
.cm-sitemap-wrapper:-webkit-scrollbar-thumb{background-color:var(--darkgray); transition:all 0.5s;}
.cm-sitemap-wrapper:-webkit-scrollbar-track{background-color:var(--white); background:rgba(255,255,255,0.1); border-radius:1rem;}
.cm-sitemap-wrapper{font-size:2rem;}
.cm-sitemap-wrapper{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:var(--black); 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:var(--main-color); 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}
/* 사이트맵 */
#siteMap{z-index:-1;	opacity:0; filter:Alpha(opacity=0.5); visibility:hidden;}
#siteMap .sitemap-bg{left:auto; right:0%; width:0%; }
#siteMap .sitemap-bg .logo-bg{overflow:hidden; position:absolute; bottom:-5vw; left:0; right:0; text-align:center; background: url(../images/SVG/symbol-w.svg)no-repeat; height: 25vw; opacity:0.15;}
#siteMap .sitemap-bg .logo-bg span{display:inline-block; color:rgba(255,255,255,0.05); font-size:0; font-weight:900; transform:translateY(100%); transition:all 0.8s ease 0s;}
/* Open */
#siteMap.open{opacity:1.0; filter:Alpha(opacity=100); visibility:visible; z-index:99999;}
#siteMap.open .sitemap-bg{width:100%;}
#siteMap.open .sitemap-bg .logo-bg span{transform:translateY(0); transition-delay:0.3s}
#siteMap.open .sitemap-modal-inner-03{opacity:1.0;}
.cm-sitemap-container-03 .cm-sitemap-area-con{position:relative; }
.sitemap-modal-tit-con-03{overflow:hidden; display:flex; align-items:center; justify-content:space-between;}
.sitemap-modal-tit-con-03 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-03 .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-03 .sitemap-close-btn i{font-size:0.9em; line-height: 40px; transition:transform 0.5s}
.sitemap-wrapper-style03{margin-top:3.75em;}
.sitemap-wrapper-style03 > ul{display:table; width:100%; table-layout:fixed;}
.sitemap-wrapper-style03 > ul > li{padding: 3.5em 2%; display:table-cell; vertical-align:top; border-left: 1px solid rgba(255,255,255,0.1); text-align: left;}
.sitemap-wrapper-style03 > ul > li:last-child{border-right:1px solid rgba(255,255,255,0.1)}
.sitemap-wrapper-style03 > ul > li > h2{margin-bottom: 1em; font-size:1.5em; min-height: 2.6em; line-height: 1.3; letter-spacing:-0.0083em; font-weight:600; color: #fff; background-color: transparent; font-family: "TheJamsil5Bold";}
.sitemap-wrapper-style03 > 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;}

@media (any-pointer: none){	/* 포인터장비가 지원되지 않는 환경 */}
@media (any-pointer: coarse){	/* 1개이상의 포인터를 지원하는 환경, 모바일 */} /* 모바일디바이스전역스타일링 */
@media (any-pointer: fine){	/* 1개의 포인터를 지원하는 환경, 데스크탑 */} /* 데스크탑 환경에서 모던브라우저로 접속하는 경우에만 반영 */
@media (hover: hover){
	.sitemap-modal-tit-con-03 .sitemap-close-btn:hover i{transform:rotate(180deg)}
	.sitemap-wrapper-style03 > ul > li .sitemap-2dep:hover a{opacity:0.5}
	.sitemap-wrapper-style03 > ul > li .sitemap-2dep:hover a:hover{opacity:1.0; color: #fff;}
}
@media all and (max-width:800px){
	.sitemap-modal-inner-03,
	.sitemap-wrapper-style03 > ul{display:block;}
	.sitemap-wrapper-style03 > ul > li{float:none; display:block; width:auto; padding: 5% 0; margin-bottom:0; border-left: none; border-top: 1px solid rgba(255,255,255,0.1);} 
	.sitemap-wrapper-style03 > ul > li:last-child{border-right: none;}
	.sitemap-wrapper-style03 > ul > li:first-child{border-top: none;}
	.sitemap-wrapper-style03 > ul > li > h2{min-height: auto;}
	.sitemap-wrapper-style03 > ul > li .sitemap-2dep{overflow:hidden; margin:0 -1%; padding:0;}
	.sitemap-wrapper-style03 > ul > li .sitemap-2dep li{float:left; position:relative; width:31.33%; margin: 0 1%; word-break:keep-all;}
	.sitemap-wrapper-style03 > ul > li .sitemap-2dep li:before{position:absolute; top:0px; left:0; bottom:0px; width:1px; background-color:#eee; content:""; display:none;}
	.sitemap-wrapper-style03 > ul > li .sitemap-2dep li:nth-child(3n+1){clear:both;}
	.sitemap-wrapper-style03 > ul > li .sitemap-2dep a.has-3dep {margin-top: 0;}
	.sitemap-wrapper-style03 > ul > li .sitemap-2dep .gnb-3dep li{width: 98%;}
}
@media all and (max-width:480px){
	.sitemap-wrapper-style03 > ul > li .sitemap-2dep li{width:48%;}
	.sitemap-wrapper-style03 > ul > li .sitemap-2dep li:nth-child(3n+1){clear:none;}
	.sitemap-wrapper-style03 > ul > li .sitemap-2dep li:nth-child(odd){clear:both;}
}


/************ 공통-탑으로가기 ************/
.to-top-btn {position: fixed;	bottom: 9rem;	right: 3rem; width: 5rem;	height: 5rem;	background:rgba(0,170,255,.8); text-align: center; color: var(--white); z-index: 94; border: 0px solid var(--gray); -webkit-backdrop-filter:blur(5px); backdrop-filter:blur(5px); box-sizing: border-box; opacity: 0; transition: var(--transition-custom); border-radius: 50%;}
.to-top-btn i {transition:var(--transition); font-weight: 700;}
.to-top-btn:hover i {transform:translateY(-3px)}
.to-top-btn.bottom-fixed {bottom: 9rem; opacity: 1;}
/* 공통 - 소셜바로가기 */
.footer-quick-menu {position:fixed; bottom: 15rem; right: 3rem; z-index:11; transition:var(--transition); /* transform: translateY(-50%); */}
.footer-quick-menu .menu-list {display: flex; align-items: flex-end; justify-content: center; gap: 1rem; flex-direction: column;}
.footer-quick-menu .menu-list .list-item {transition:var(--transition); transition-delay:0.2s; display: flex;	align-items: center; justify-content: center; gap: 1rem; flex-direction: row;}
.footer-quick-menu .menu-list .list-item a {display: flex; align-items:center; width: 16rem; height:6rem; border-radius:6rem; /* -webkit-backdrop-filter:blur(5px); backdrop-filter:blur(5px);  */transition:var(--transition); background:var(--main-color); overflow:hidden; justify-content: center; gap: 0.5rem;}
.footer-quick-menu .menu-list .list-item a i {/* width:5rem;  */color:var(--white); display: flex; align-items: center; justify-content: center;}
.footer-quick-menu .menu-list .list-item a .txt {/* position: absolute; */ font-size:1.8rem; letter-spacing:-0.045em; color:var(--white); font-weight:500; opacity:1; transition:all 0.2s; transition-delay:0s; right:2rem; pointer-events: none;}
/* .footer-quick-menu .menu-list .list-item:nth-of-type(1):hover a:not(.to-top-btn) {width:13rem; background:var(--main-color);}
.footer-quick-menu .menu-list .list-item:nth-of-type(2):hover a:not(.to-top-btn) {width:15rem; background:var(--main-color);}
.footer-quick-menu .menu-list .list-item a:not(.to-top-btn):hover .txt {opacity:1; transition:var(--transition); transition-delay:0.2s;}
.footer-quick-menu .menu-list .list-item a:not(.to-top-btn):hover:before {opacity:0;} */
/* .footer-quick-menu .menu-list .list-item a {display: flex; align-items:center; width:5rem; height:5rem; border-radius:6rem; -webkit-backdrop-filter:blur(5px); backdrop-filter:blur(5px); transition:var(--transition); background:rgba(0,0,0,.2); overflow:hidden;}
.footer-quick-menu .menu-list .list-item a i {width:5rem; color:var(--white); display: flex; align-items: center; justify-content: center;}
.footer-quick-menu .menu-list .list-item a .txt {position: absolute; font-size:1.5rem; letter-spacing:-0.045em; color:var(--white); font-weight:500; opacity:0; transition:all 0.2s; transition-delay:0s; right:2rem; pointer-events: none;}
.footer-quick-menu .menu-list .list-item:nth-of-type(1):hover a:not(.to-top-btn) {width:13rem; background:var(--main-color);}
.footer-quick-menu .menu-list .list-item:nth-of-type(2):hover a:not(.to-top-btn) {width:15rem; background:var(--main-color);}
.footer-quick-menu .menu-list .list-item a:not(.to-top-btn):hover .txt {opacity:1; transition:var(--transition); transition-delay:0.2s;}
.footer-quick-menu .menu-list .list-item a:not(.to-top-btn):hover:before {opacity:0;} */
/* .active.footer-quick-menu {bottom:26.5rem;} */
/* .active.footer-quick-menu .list-item:nth-of-type(2){top:-7rem;}
.active.footer-quick-menu .list-item:nth-of-type(1){top:-14rem;} */
.active.footer-quick-menu.bottom-fixed {bottom:8rem;}

@media all and (max-width:1280px){	
}
@media all and (max-width:1024px){
	/* 하단고정메뉴 */
	.footer-menu-fixwrap {position: fixed; bottom: 0; left: 0; z-index: 22; width: 100%; background: rgba(255,255,255,.95); backdrop-filter: blur(2px); color: var(--graycolor); box-shadow: 0px 2px 20px 1px rgba(0, 0, 0, 0.1);}	
	.footer-menu-fix {display: grid; grid-template-columns: repeat(auto-fit, minmax(20%, auto)); /* grid-auto-rows: minmax(8.0rem, auto); */ align-items: center;}
	.footer-menu-fix .menu-btn {display: flex; align-items: center; justify-content: center; flex-direction: column; font-size: 1.6rem; padding: 1.5rem 0; transition: var(--transition); border-top: 1px solid rgba(100,100,100,.2); cursor: pointer;}
	.footer-menu-fix .menu-btn:hover {background: var(--main-color); color: var(--white2);}
	.footer-menu-fix .menu-btn .icon {font-size: 2rem; line-height: 1.0;}
	.footer-menu-fix .menu-btn:not(:last-child) {border-right: 1px solid rgba(100,100,100,.1);}
}
@media all and (max-width:800px){
	/* .to-top-btn {right: 1rem;}
	.footer-quick-menu {right:1rem;}
	.active.footer-quick-menu {bottom: 7.5rem;} */
	/* .active.footer-quick-menu .list-item:nth-of-type(2) {top: -6.5rem;}
	.active.footer-quick-menu .list-item:nth-of-type(1) {top: -13rem;} */
}







/************* footer *************/
#footer{background-color:var(--footer-bgcolor); color:var(--footer-color); letter-spacing: -0.015em; padding: var(--common-padding);}
.footer-box {max-width: var(--common-width); margin: 0 auto; display: flex; /* align-items: flex-end; */ justify-content: space-between; gap: 1rem 0; box-sizing: border-box;/* padding:0 var(--common-padding);  position: relative; */}
.footer-left-con {/* float:left; */ flex:1; margin-right: auto;}
.footer-right-con {/* float:right; transition: .3s; */ display: flex;}
#footer-top{padding-bottom:2rem;}
.foot-logo{display:flex; gap: 0.5rem; font-size:1.8rem; font-weight:400;}
/* .foot-logo:after {content:"\e980"; font-family: var(--xeicon);} */
.foot-logo b{color: var(--main-color); font-weight: inherit;}
.footer-link-box {display: flex; padding: 2rem 0 0; font-size: 1.8rem; gap: 2rem; font-weight: 700;}
.footer-link-box .footer-link-list {display: flex; align-items: center; gap: 0.5rem;}
.footer-address-info-box{margin-top: 1rem; font-size:1.5rem; font-weight: 200;}
.footer-address-list{display: flex; flex-wrap:wrap;}
.footer-address-list + .footer-address-list{margin-top: 0rem;}
.footer-address-list dl{margin-right:2rem; display: flex; flex-wrap:wrap; line-height: 1.5;}
/* .footer-address-list dl:first-child{margin-left:0;} */
.footer-address-list dl dt{width: auto;}
.footer-address-list dl dd{width: auto;}
.footer-address-list dl dt{color: var(--lightgray);}
.footer-address-list dl dd:before{content: "\e949"; font-family: var(--xeicon); clear:both; margin:0 0.1rem; color: var(--graycolor); opacity: .3;}
.footer-address-list a{color:inherit;}
/* 패밀리사이트박스 */
.family-site-box{ position:relative; width:20rem; text-align:left; display: flex; align-items: flex-end; justify-content: flex-end;}
.family-site-box .family-site-open-btn{position: relative; z-index: 11; width:100%; height:5.5rem; line-height:5.5em; padding:0 2rem; text-align:left; font-size:1.5rem; font-weight:500; border-radius: 0.5rem; border:1px solid rgba(255,255,255,.2); background-color: transparent; color:var(--lightgray); box-sizing:border-box; display: flex; align-items: center;	justify-content: space-between;}
.family-site-box .family-site-open-btn:after{position:absolute; right:2rem; top:50%; transform:translateY(-50%); font-size:1.9rem; font-family: var(--xeicon); content:"\e944"; font-weight: 300;}
/* 패밀리리스트 */
.family-site-list{display:none; position:absolute; z-index:11; bottom: 0rem; left:0; width:20rem; padding:1.5rem; background-color:var(--white2); opacity: 0.8; border:1px solid rgba(0,0,0,0.3); border-bottom:0; border-radius: 0.5rem; box-sizing:border-box;}
.family-site-list a {display:flex; align-items: center; gap: 0.2rem; color:var(--black); font-size:1.5rem; line-height: 1.5;}
.family-site-list a:after{clear: both; display: inline-block; content:"\e980"; font-family: var(--xeicon); margin-left:0.2rem;}
.family-site-list a:hover{opacity: 1; text-decoration:underline;}
#footer-bottom{padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1);}
.footer-copyright{font-size:1.5rem;}
.foot-menu{display:block;}
.foot-menu li{float:left; position:relative; padding-right:1rem; line-height: 1.3;}
.foot-menu li.m-none {}
.foot-menu li:last-child{padding-left:0;}
.foot-menu li a{font-size: 1.5rem;}
.foot-menu li a b{color:var(--main-color); font-weight:600;}

@media all and (max-width:1430px){	
	.footer-right-con {margin-right: 6rem;}
}
@media all and (max-width:1280px){
}
@media all and (max-width:1024px){
	.footer-box {max-width: var(--common);}
}
@media all and (max-width:800px){	
	.footer-address-info-box {width: calc(100% - 5rem);}
	.footer-address-info-box,	.footer-copyright, .foot-menu li a {font-size: 1.2rem;}
}
@media all and (max-width:680px) {	
	.footer-box {flex-direction: column;}
	.family-site-box .family-site-open-btn {height: 4rem;}
}
@media all and (max-width:480px) {
}


/* responsive */
@media all and (max-width:1780px){
}
@media all and (max-width:1630px){
}
@media all and (max-width:1380px){
}	
@media all and (max-width:1280px){	
}

@media all and (max-width:1024px){	
}

@media all and (max-width:800px){		
}

@media all and (max-width:680px) {	
}

@media all and (max-width:480px) {
}


/* banner */
.ad-banner {position: fixed; top: 0; left: 0; width: 100%; height: 10vh; background: var(--white); display: block;}