@charset "utf-8";

/* ============================================================
* 파일명    :  new_layout.css
* 최종수정  :  2024.02
* ============================================================ */

/* ============================================================
*  Font
* ============================================================ */

/* pretendard  */
@import
	url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css'); /*  font-family: 'Pretendard'; */

/* GmarketSans  */
@font-face {
	font-family: 'GmarketSansMedium';
	src:
		url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff')
		format('woff');
	font-weight: normal;
	font-style: normal;
}

/* ============================================================
*  Basic
* ============================================================ */
* {
	font-family: 'Pretendard' !important;
	box-sizing: border-box;
}

html, body {
	font-family: 'Pretendard' !important;
}
body.action {
	overflow:hidden;
}
body .srch-modal {position:fixed; height:100%;}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form,
	fieldset, button {
	margin: 0;
	padding: 0;
}

body, h1, h2, h3, h4, h5, h6, th, td, input, select, textarea {
	margin: 0;
	padding: 0;
	line-height: normal;
	font-size: 15px;
	color: #222;
}

ul, ol, dl, dt, dd {
	margin: 0;
	padding: 0;
	list-style: none;
}

img {
	border: none;
}

hr {
	display: none;
}

fieldset {
	border: none;
}

legend {
	display: none;
}

strong, p, b, span {
	margin: 0;
	line-height: normal;
	word-break: keep-all;
}

table {
	table-layout: fixed;
	border-collapse: collapse;
	border-spacing: 0;
}

table caption {
	overflow: hidden;
	position: relative;
	line-height: 1px;
	font-size: 1px;
	text-indent: -30000px;
}

button {
	margin: 0;
	padding: 0;
	border: none;
	box-shadow: none;
	background-color: inherit;
}

.hidden {
	overflow: hidden;
	position: absolute;
	width: 1px;
	height: 1px;
	clip: rect(0, 0, 0, 0);
	margin: -1px;
}


/* modal */
.modal {z-index: 99;}

@media screen and (max-width:640px) {
	.modal_content {height: 250px; padding: 20px;}
	.m_inner {margin: 25px auto;}
	.is_search {margin: 40px 0 0;}
	.is_search .inputText {height:50px; font-size: 16px;}	
	.is_search .btn_search {transform: scale(0.8);}
	
	.modal_content a img {width: 20px;}
	.m_inner h2 {font-size: 20px;}
}





/* 테블릿 */
@media screen and (max-width:1024px) {
	html {
		font-size: 9px;
	}
}

/* 모바일 */
@media screen and (max-width:640px) {
	html {
		font-size: 8px;
	}
}

/* ============================================================
*  skip
* ============================================================ */
#skip {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	margin: 0 auto;
	z-index: 999;
}

#skip a {
	display: block;
	position: absolute;
	left: 0;
	padding: 10px;
	color: #fff;
	background: #000;
}

#skip a:link, #skip a:visited, #skip a:active {
	top: -10000px;
}

#skip a:hover, #skip a:focus {
	top: 0;
}

/* ============================================================
*  header
* ============================================================ */
#header {
	overflow: hidden;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 50;
	width: 100%;
	height: 9rem;
	background-color: rgba(255, 255, 255, 0.15);
	transition: height .25s;
	box-shadow: 10px 5px 20px -10px rgba(0, 0, 0, .3);
}

/* logo */
#header h1 {
	position: absolute;
	top: 22px;
	left: calc(50% - 800px);
	z-index: 2;
	margin:0 !important;
}

#header h1 a {
	display: block;
	text-decoration: none;
	transition: width .25s
}
/* ============================================================
* @media
* ============================================================ */

@media screen and (max-width:1645px) {
	#header h1 {
		left: 2rem;
	}
}

@media screen and (max-width:1200px) {
	#header h1 {
		margin-left: 0;
	}
}

@media screen and (max-width:1024px) {
	#header h1 a {
		width: 16rem;
	}
}
@media screen and (max-width:600px) {
	#header {height:5.3rem;}
	#header h1 {top: 10px;}
	#header h1 a > img {width:80%;}
}


@media screen and (max-width:500px) {
	.logo img {width:70%;}

}

/* Gnb */
#header #nav {
	overflow: hidden;
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100px;
}

#header #nav #blind {
	opacity: 1;
	position: absolute;
	top: 90px;
	left: 0;
	z-index: 1;
	width: 100%;
	border-top: 1px solid #ddd;
	background-color: #fff;
	box-sizing: border-box;
	background-image:url(../images/main/bg_nav.png);
	background-repeat:no-repeat;
	background-position: bottom 20px right 20px;
	background-size:180px;
	box-shadow:inset 10px 5px 20px -10px rgba(0, 0, 0, .1);
}

#header #nav #gnb {
	position: relative;
	z-index: 1;
	width: auto;
	max-width:1434px;
	margin: 0 auto;
	text-align: center;
	box-sizing: border-box;
/* 	box-shadow: 3px 3px 24px -12px rgba(0, 0, 0, 0.2); */
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#header #nav #gnb ul {
	display: inline-block;
	width: auto;
	height: auto;
}

#header #nav #gnb ul:after {
	content: "";
	display: block;
	clear: both;
}

#header #nav #gnb ul li {
	position: relative;
	text-align: center;
}

#header #nav #gnb>ul>li {
	display: inline-block;
	float: none;
	width: 19.8rem;
	transition: 0.25s;
}

#header #nav #gnb ul li a {
	display: inline-block;
	position: relative;
	height: 90px;
	padding: 0 30px;
	text-decoration: none;
	text-align: left;
	color: #fff;
	font-size: 2rem;
	font-weight: 600;
	line-height: 90px;
}

#header #nav #gnb>ul>li>a {
	padding: 0;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#header #nav #gnb>ul>li>a.on {
	color: #114b93 !important;
}

#header #nav #gnb ul li a span {
	display: inline-block;
	position: relative;
}

#header #nav #gnb ul li ul {
	float: none;
	position: absolute;
	top: 90px;
	left: 0;
	width: calc(100% + 4px);
	padding: 20px 10px;
	border-left: 1px solid #ddd;
	box-sizing: border-box;
}

#header #nav #gnb ul li ul.on {
	border-top: 2px solid #114b93;
	background-color: #f6fafd;
}

#header #nav #gnb>ul>li:last-child ul {
	border-right: 1px solid #ddd;
}

#header #nav #gnb>ul>li:last-child ul::before {
	border-right: 1px solid #ddd;
}

#header #nav #gnb ul li ul li {
	display: block;
	float: none;
	width: auto;
	margin-top: 3px;
	text-align: left;
}

#header #nav #gnb>ul>li>ul>li {
	height: auto;
	text-align: center
}

#header #nav #gnb ul li ul li:first-child {
	width: auto;
	margin-top: 0;
}

#header #nav #gnb ul li ul li a {
	height: auto;
	padding: 6px 15px 6px 0;
	font-size: 17px;
	line-height: 19px;
	text-align: center;
}

#header #nav #gnb>ul>li>ul>li>a {
	display: inline-block;
	padding-right: 0;
	box-sizing: border-box;
	transition: color 0.3s;
}

#header #nav #gnb ul li ul li ul {
	display: none;
}

#header #nav #gnb ul li ul li ul li {
	display: block;
}

@media screen and (max-width:1645px) {
	#header #nav #gnb>ul>li {
		width: auto;
		padding: 0 3rem;
	}
	#header #nav #gnb ul li ul {
		width: 16rem;
		transform: translateX(-35px);
	}
	#header #nav #gnb ul li:nth-child(2) ul {
		margin-left: 2.8rem;
	}
	#header #nav #gnb ul li:nth-child(3) ul {
		margin-left: -3rem;
	}
	#header #nav #gnb ul li:nth-child(4) ul {
		margin-left: -0.8rem;
	}
	#header #nav #gnb ul li:nth-child(5) ul {
		margin-left: 1.8rem;
	}
}

@media screen and (max-width:1350px) {
	#header #nav #gnb>ul>li {
		padding: 0 2rem;
	}
	#header #nav #gnb ul li a {
		font-size: 1.8rem;
	}
	#header #nav #gnb ul li ul {
		width: 16rem;
		transform: translateX(-84px);
	}
	#header #nav #gnb ul li:nth-child(2) ul {
		margin-left: 5.3rem;
	}
	#header #nav #gnb ul li:nth-child(3) ul {
		margin-left: 3.1rem;
	}
	#header #nav #gnb ul li:nth-child(4) ul {
		margin-left: 8rem;
	}
	#header #nav #gnb ul li:nth-child(5) ul {
		margin-left: 13.3rem;
	}
}

/* header_right */
#header .header_right {
	justify-content: flex-end;
	gap: 3rem;
	flex-shrink: 0;
	position: absolute;
	left: calc(50% + 500px);
	top: 0;
	bottom: 0;
	z-index: 1;
}

#header .lang {
	overflow: hidden;
	display: flex;
	flex-shrink: 0;
	height: 3.7rem;
	border-radius: 8px;
}

#header .lang a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 6.8rem;
	height: 100%;
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
	background-color: rgba(255, 255, 255, .2);
}
#header .lang a.on {
	background-color: #114b93;
}

#header .lang a::after {
	display: none;
}

.site-map .lang.mobile {display:none;}
.site-map .lang.mobile {
/* 	overflow: hidden; */
	display: flex;
	flex-shrink: 0;
/* 	height: 3.7rem; */
	border-radius: 8px;
}
.site-map .lang.mobile {display:none; margin-right:10px;}

.site-map .lang.mobile a {
/* 	display: flex; */
/* 	align-items: center; */
/* 	justify-content: center; */
/* 	width: 6.8rem; */
	height: 100%;
	font-size: 1.3rem;
	font-weight: 700;
/* 	color: #fff; */
	background-color: rgba(255, 255, 255, .2);
	border-radius:8px;
	padding:8px;
	border:1px solid #ddd; border-radius:8px;
}

.site-map .lang.mobile a.on {
	background-color: #114b93;
	color:#fff;
}

.site-map .lang.mobile a::after {
	display: none;
}

#header .header_right .search {
	flex-shrink: 0;
	width: 25px;
	height: 25px;
}

#header .header_right .search button {
	display: block;
	position: initial;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: none;
	background-color: inherit;
	background-image: url(../../../../resources/images/new_icon_search.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	cursor: pointer;
}

#header .header_right .menu_right {
	flex-shrink: 0;
	width: 5rem;
	height: 5rem;
	padding: 0;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
}

#header .header_right .menu_right button {
	display: block;
	position: initial;
	width: 100%;
	height: 100%;
	border: none;
	background-color: transparent;
	background-image: url(/resources/images/new_icon_sitemap.png);
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}

@media screen and (max-width:1480px) {
	#header .header_right {
		left: auto;
		right: 3rem;
	}
}
@media screen and (max-width:600px) {
	#header .lang {height:2.7rem;}
	#header .lang a {font-size:1.4rem; width:4.6rem;}
	#header .header_right {gap:2rem;}
	#header .header_right .search {width:2.1rem; height:2.1rem;}
	#header .header_right .menu_right {width:3.8rem; height:3.8rem;}
}
@media screen and (max-width:500px) {
	#header .header_right {gap:1.5rem; right:1rem;}
}



@media screen and (max-width:420px) {
	#header .lang a {
		width: 4.8rem;
	}
	#header .header_right .search {
		width: 20px;
		height: 20px;
		margin-right: 0;
	}
	#header .header_right .menu_right {
		width: 4rem;
		height: 4rem;
	}
	#header .header_right .menu_right button {
		background-size: 1.8rem;
	}
}
@media screen and (max-width:380px) {
	#header .lang {display:none;}
	.site-map .lang.mobile {display:block;}
}

/* modal */
.modal {
	z-index: 50;
}

/* #header 활성화 */
#header.on, #header.shrink, #sub #header {
	background-color: #fff;
	box-shadow: 10px 5px 20px -10px rgba(0, 0, 0, .3);
}

#header.on #nav #gnb>ul>li>a, #header.shrink #nav #gnb>ul>li>a, #sub #header #nav #gnb>ul>li>a
	{
	color: #222;
}

#header.on #nav #gnb>ul>li>ul>li>a, #header.shrink #nav #gnb>ul>li>ul>li>a,
	#sub #header #nav #gnb>ul>li>ul>li>a {
	color: #222;
}
#header.on #nav #gnb>ul>li>ul>li:hover >a,
#header.on #nav #gnb>ul>li>ul>li:focus >a,
#header.shrink #nav #gnb>ul>li>ul>li:hover>a,
#sub #header #nav #gnb>ul>li>ul>li:hover>a {color:#114b93 !important;}

#header.on .lang a, #header.shrink .lang a,
	#sub #header .lang a {
	background-color: #eee;
	color: #222;
}

#header.on .lang a.on, #header.shrink .lang a.on,
	#sub #header .lang a.on {
	background-color: #114b93;
	color: #fff;
}

#header.on .header_right .search button, #header.shrink .header_right .search button,
	#sub #header .header_right .search button {
	background-image: url(../images/new_icon_search_on.png);
}

#header.on .header_right .menu_right button, #header.shrink .header_right .menu_right button,
	#sub #header .header_right .menu_right button {
	background-color: #eee;
	background-image: url(/resources/images/new_icon_sitemap_on.png);
	border-radius: 50%;
}

/* ============================================================
*  sub
* ============================================================ */
#sub .sub-area {
	max-width: 147.4rem;
	padding: 0 2rem;
	box-sizing: border-box;
}

/* sub header */
#sub #header {
	border-bottom: none;
}

#sub #container {
	margin: 9rem 0 10rem;
}

#sub #container .sub-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 28.9rem;
	padding-bottom: 4rem;
	background-image: url(/resources/images/content/bg_sub_top.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#sub #container .sub-title span {
	font-size: 2rem;
	color: rgba(255, 255, 255, 0.3);
	font-weight: 600;
	letter-spacing:2px;
}

#sub #container .sub-title h2 {
	position: initial;
	display: block;
	z-index: 1;
	padding-top: 1rem;
	margin: 0;
	font-size: 4rem;
	color: #fff;
	font-weight: 700;
	line-height: normal;
}

#sub #container .sub-title h2::after {
	display: none;
}


@media screen and (max-width:600px) {
	#sub #container .sub-title span {font-size:1.6rem;}
	#sub #container .sub-title h2 {font-size:3rem;}
}




/* sub-lnb */
#sub .sub-lnb {
	height: 6.7rem;
	margin-top: -6.7rem;
	background-color: rgba(0, 0, 0, 0.2);
}

#sub .sub-lnb .sub-area ul {
	display: flex;
	align-items: center;
	height: 100%;
}

#sub .sub-lnb .sub-area ul li {
	width: calc(100%/ 7);
	height: 100%;
	border-left: 1px solid rgba(255, 255, 255, 0.15);
}

#sub .sub-lnb .sub-area ul li:last-child {
	border-right: 1px solid rgba(255, 255, 255, 0.15);
}

#sub .sub-lnb .sub-area ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: 1.8rem;
	color: #fff;
	font-weight: 600;
	text-align: center;
	word-break: keep-all;
}

#sub .sub-lnb .sub-area ul li.on a {
	background-color: #fff;
	color: #222;
	font-weight: 600;
}

/* sub-content */
.sub-content {
	padding: 9.8rem 0 10rem;
}


.sub-content .sub-tit {
	display: block;
	font-size: 4.2rem;
	color: #222;
	font-weight: 700;
	text-align: center;
}

.sub-content .cont {
	margin-top: 4rem;
}

@media screen and (max-width:600px) {
	.sub-content {padding: 9.8rem 0 0;}
	
}

/* sub js_tap */
.js_tab .title {
	display: none;
}

@media screen and (max-width: 800px) {
	.js_tab {
		padding: 0 !important;
	}
	.js_tab .title {
		display: block;
		width: 100%;
		height: 100%;
	}
	.js_tab .title a {
		display: inline-flex;
		align-items: center;
		width: 100%;
		height: 100%;
		padding: 0 2rem;
		font-weight: 600;
		font-size: 1.8rem;
		color: #fff;
		position: relative;
	}
	.js_tab .title a::after {
		position: absolute;
		right: 15px;
		top: 50%;
		width: 14px;
		height: 8px;
		display: block;
		content: "";
		background: url("/resources/images/new_icon_selectbox_arrow.png") 0px
			center no-repeat;
		transition: all 0.3s ease 0s;
		transform:translateY(-50%);
	}
	.js_tab .title a.on:after {
		background: url(/resources/images/new_icon_selectbox_arrow.png)
			no-repeat 0 center;
		transform: rotate(180deg);
		transition: all 0.3s ease;
	}
	.js_tab ul {
		display: none;
		flex-direction: column;
		flex-wrap: wrap;
		position: relative;
		z-index: 50;
		height: auto !important;
		padding: 0;
		margin: 0;
		border-radius: 0;
		background-color: rgba(0, 0, 0, .6);
	}
	.js_tab ul li {
		width: 100% !important;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
	}
	.js_tab ul li a {
		display: inline-flex;
		justify-content: flex-start !important;
		width: 100%;
		margin: 0;
		padding: 1.2rem 2rem;
		font-size: 16px;
		color: #fff;
	}
	.js_tab ul li a:link, .js_tab ul li a:visited, .js_tab ul li a:active {
		font-weight: normal;
	}
	.js_tab ul li a:hover, .js_tab ul li.on a:hover {
		font-weight: normal;
	}
	.js_tab ul li.on a {
		background-color: transparent !important;
	}
}
@media screen and (max-width:1200px) {
	#sub .sub-lnb .sub-area ul li a {padding:1.2rem 2rem;}
}
@media screen and (max-width: 600px) {
	.sub-content {padding: 4.3rem 0 0;}
	.sub-content .cont {margin-top: 1.5rem;}
	.sub-content .sub-tit {font-size:2.5rem;}
	#sub #container {margin: 5.3rem 0 7rem;}
	#sub #container .sub-title {height:18.2rem;}
	
	#sub .sub-lnb {height:4.8rem; margin-top:-4.8rem;}
	.js_tab .title a {font-size:1.5rem;}
	#sub .sub-lnb .sub-area ul li a {font-size:1.5rem;}
	#sub .sub-lnb .sub-area ul li.on a {color:#a3c7ff;}
}

/* site-map */
.site-map {
	
}

.site-map .site-map-wrap {
	position: relative;
}

.site-map .site-map-wrap:before {
	content: "";
	position: absolute;
	top: 90px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #ddd;
}

.site-map .site-map-wrap .top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	height: 90px;
	max-width: 148rem;
	padding: 0 2rem;
	margin: 0 auto;
	box-sizing: border-box;
}

.site-map .site-map-wrap .top .site-map-btn {
	max-width: 100%;
	margin: 0;
}

.site-map .site-map-wrap .site-map-btn .close-btn-inner {
	position: initial
}

.site-map .site-map-wrap .top .site-map-btn .site-map-close-btn {
	position: relative;
	width: 4.8rem;
	height: 4.8rem;
	border-radius: 50%;
	background-color: #eee;
}

.site-map .site-map-wrap .top .site-map-btn .site-map-close-btn:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	background: url('/resources/images/new_btn_close.png') no-repeat center;
	transform: translate(-50%, -50%) rotate(0deg);
	transition: 0.25s
}

.site-map .site-map-wrap .top .site-map-btn .site-map-close-btn:hover:before
	{
	transform: translate(-50%, -50%) rotate(180deg)
}

.site-map-wrap .site-map-content {
	padding: 90px 0;
}

.site-map-wrap .site-map-content .site-map-menu {
	
}

.site-map-wrap .site-map-content .site-map-menu>ul>li {
	text-align: left;
	padding: 0 2rem 0 4.7rem;
}

.site-map-wrap .site-map-content .site-map-menu>ul>li>a {
	font-size: 2.5rem;
	color: #144A92;
	font-weight: 700;
	word-break: keep-all;
	line-height: 1.2;
}

.site-map-wrap .site-map-content .site-map-menu ul > li > ul  >li>a {
	font-size: 1.8rem;
	color: #222;
	font-weight: 600;
}


/*-------------------------------------------------------------------
	분류그룹 : header > mobile
	속성순서 : 레이아웃, 박스 모델, 배경, 폰트/정렬, 기타
-------------------------------------------------------------------*/
.site-map-wrap .site-map-content .site-map-menu .menu-03 {display:block;}
.site-map-wrap .site-map-content .site-map-menu .menu-03 li {}
.site-map-wrap .site-map-content .site-map-menu .menu-03 li > a {display:block; position:relative; padding-left:7px; font-weight:400; font-size: 1.4rem; color:#555; line-height:1.3;}
.site-map-wrap .site-map-content .site-map-menu .menu-03 li> a::before {content:''; position:absolute; top:calc(1.3rem - 1px); left:0; width:2px; height:2px; border-radius:50%; background-color:#555;}

@media screen and (max-width: 1200px) {
	.site-map-wrap .site-map-content {
		padding: 60px 0;}
}

/* ============================================================
*  @interaction 
* ============================================================ */
.site-map-wrap .site-map-content .site-map-menu ul > li > ul >li:focus > a,
.site-map-wrap .site-map-content .site-map-menu ul > li > ul >li:hover > a {color:#144A92;}

.site-map-wrap .site-map-content .site-map-menu .menu-03 li:focus > a,
.site-map-wrap .site-map-content .site-map-menu .menu-03 li:hover > a {color:#144A92; text-decoration:underline;}

/* ============================================================
*  @media 
* ============================================================ */
@media screen and (max-width:1200px) {
 	 .site-map-wrap .site-map-content .site-map-menu>ul>li {padding: 0 2rem 0 2rem;}
 	 .site-map-wrap .site-map-content .site-map-menu>ul>li>a {font-size:2rem; line-height:1.1;}
 	 .site-map-wrap .site-map-content .site-map-menu ul li ul li>a {font-size:1.6rem; line-height:1.1;}
 }
@media screen and (max-width:800px) {
	.site-map-wrap {background-image:none;}
	.site-map-wrap .site-map-content {display: none; padding:20px 0;}
 	 .site-map .site-map-menu > ul {display:block;}
 	 .site-map .site-map-menu > ul > li {width:100% !important;}
 	 .site-map-wrap .site-map-content .site-map-menu>ul>li>a::after {content:''; position:absolute; top:50%; right:15px; width:16px; height:8px; background:url(../images/icon_arrow.png) no-repeat center right / cover;}
 	 .site-map-wrap .site-map-content .site-map-menu>ul>li> ul {padding:23px 26px; background-color:#F6FAFD;}
 	 .site-map-wrap .site-map-content .site-map-menu ul li ul> li> a {display:block;width:100%; padding:6px 0; font-size:17px;}
 	 .site-map-wrap .site-map-content .site-map-menu ul li ul> li > ul > li > a {display:block; position:relative; padding-left:7px; font-weight:400; font-size: 15px; color:#555;}
 	 .site-map-wrap .site-map-content .site-map-menu ul > li> ul> li> a::before {content:''; position:absolute; top:calc(1.3rem - 1px); left:0; width:2px; height:2px; border-radius:50%; background-color:#555;}

}
@media screen and (max-width: 640px) {
	.site-map-wrap .site-map-content {
		padding: 20px 0;
	}
	.site-map-wrap .site-map-content .site-map-menu {
		margin-top: 0 !important;
	}
}
@media screen and (max-width:380px) {
	.site-map .site-map-wrap .top {padding:0 1rem;}
}
/* ============================================================
*  @interaction 
* ============================================================ */
@media screen and (max-width:800px) {
	.site-map-wrap .site-map-content .site-map-menu>ul>li>a.on {border-bottom:1px solid #114B93;}
 	.site-map-wrap .site-map-content .site-map-menu>ul>li>a.on::after { background:url(../images/icon_arrow_blue.png) no-repeat center right / cover; transform:rotate(180deg);}

 }
 
 
 
  /* site-map */
.site-map-wrap .mobile-content {
	display: none;
	padding: 90px 0;
}

.site-map-wrap .mobile-content .mobile-menu>ul>li {
	text-align: left;
	padding: 0 2rem 0 4.7rem;
}

.site-map-wrap .mobile-content .mobile-menu>ul>li>a {
	font-size: 2.5rem;
	color: #144A92;
	font-weight: 700;
	word-break: keep-all;
	line-height: 1.2;
}

.site-map-wrap .mobile-content .mobile-menu ul li ul li>a {
	font-size: 1.8rem;
	color: #222;
	font-weight: 600;
}



/* ============================================================
*  @media 
* ============================================================ */
@media screen and (max-width:1200px) {
 	 .site-map-wrap .mobile-content .mobile-menu>ul>li {padding:0;}
 	 .site-map-wrap .mobile-content .mobile-menu>ul>li>a {display:block; position:relative; padding:1.4rem 3rem 1.4rem 2rem; font-size:2rem; line-height:1.1;}
 	 .site-map-wrap .mobile-content .mobile-menu ul li ul li>a {padding:1rem 2rem; font-size:1.6rem; line-height:1.1;}
}
@media screen and (max-width:800px) {
	 .site-map-wrap .mobile-content {display: block; padding:20px 0;}
	 .site-map-wrap .mobile-menu > ul {display:block;}
 	 .site-map-wrap .mobile-menu > ul > li {width:100% !important; font-size:19px; border-right:1px solid #eee; text-align:center; line-height:2.1; padding:20px 0;}
	 .site-map-wrap .mobile-content .mobile-menu>ul>li>a {border-bottom:1px solid #f2f2f2;}
 	 .site-map-wrap .mobile-content .mobile-menu > ul > li >a::after {content:''; position:absolute; top:50%; right:15px; width:16px; height:8px; background:url(../images/icon_arrow.png) no-repeat center right / cover;}
 	 .site-map-wrap .mobile-content .mobile-menu>ul>li> ul {padding:23px 26px; background-color:#F6FAFD;}
 	 .site-map-wrap .mobile-content .mobile-menu ul li ul> li> a {display:block;width:100%; padding:7px 0; font-size:17px;}
 	 .site-map-wrap .mobile-content .mobile-menu ul li ul> li> a.arrow {position:relative;}
 	 .site-map-wrap .mobile-content .mobile-menu ul li ul> li> a.arrow::after {content:''; position:absolute; top:50%; right:-10px; width:12px; height:6px; background:url(../images/icon_arrow.png) no-repeat center right / cover;}
 	 .site-map-wrap .mobile-content .mobile-menu ul li ul> li > ul > li > a {display:block; position:relative; padding-left:7px; font-weight:400; font-size: 15px; color:#555;}
 	 .site-map-wrap .mobile-content .mobile-menu ul > li> ul> li> ul > li a::before {content:''; position:absolute; top:calc(1.3rem - 1px); left:0; width:2px; height:2px; border-radius:50%; background-color:#555;}

}
@media screen and (max-width: 640px) {
	.site-map-wrap .mobile-content {
		padding: 20px 0;
	}
	.site-map-wrap .mobile-content .mobile-menu {
		margin-top: 0 !important;
	}
}
/* ============================================================
*  @interaction 
* ============================================================ */
@media screen and (max-width:800px) {
	.site-map-wrap .mobile-content .mobile-menu>ul>li>a.on {border-bottom:1px solid #114B93;}
 	.site-map-wrap .mobile-content .mobile-menu>ul>li>a.on::after { background:url(../images/icon_arrow_blue.png) no-repeat center right / cover; transform:rotate(180deg);}
 	.site-map-wrap .mobile-content .mobile-menu ul li ul> li> a.arrow.on::after {transform:rotate(180deg); transition: transform 0.3s;}
}
 



/* ============================================================
/* *  footer */
/*============================================================ */
#footer {
	background-color: #1c1e26;
}

#footer .inner {
	display: flex;
	max-width: calc(143.4rem + 4rem);
	padding: 0 2rem;
	margin: 0 auto;
	box-sizing: border-box;
}

#footer .f_left {
	display: flex;
	gap: 2rem 5rem;
	flex-wrap: wrap;
}

#footer .f_left .f_box_01>p {
	font-size: 2.4rem;
	color: #fff;
	font-weight: 600;
}

#footer .f_left .f_box_02 {
	display: flex;
	flex-direction: column;
}

#footer .f_left .f_box_02 .f_box_02_top {
	display: flex;
	align-items: center;
	gap: 1rem 3rem;
}

#footer .f_left .f_box_02 .f_box_02_top p, #footer .f_left .f_box_02 .f_box_02_top a
	{
	position: relative;
	font-size: 1.7rem;
	color: rgba(255, 255, 255, .6);
	font-weight: 400;
}

#footer .f_left .f_box_02 .f_box_02_top p {
	position: relative;
}

#footer .f_left .f_box_02 .f_box_02_top p::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(100% + 1.6rem);
	width: 1px;
	height: 70%;
	margin: auto 0;
	background-color: rgba(255, 255, 255, 0.3);
}

#footer .f_left .f_box_02 .f_box_02_bot {
	margin-top: 5px;
}

#footer .f_left .f_box_02 .f_box_02_bot p {
	font-size: 1.7rem;
	color: rgba(255, 255, 255, .6);
	font-weight: 400;
}

#footer .f_left .f_box_02 .f_box_02_bot .f_sns_box {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-top: 2rem;
}

#footer .f_left .f_box_02 .f_box_02_bot .f_sns_box li {
	width: 4.4rem;
	height: 4.4rem;
	border: 1.5px solid rgba(255, 255, 255, .3);
	border-radius: 50%;
}

#footer .f_left .f_box_02 .f_box_02_bot .f_sns_box li a {
	display: block;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0.6;
	transform: .3s;
}

#footer .f_left .f_box_02 .f_box_02_bot .f_sns_box li a:hover {
	opacity: 1;
}

#footer .f_left .f_box_02 .f_box_02_bot .f_sns_box li.face a {
	background-image: url(/resources/images/new_icon_footer_sns_01.png);
}

#footer .f_left .f_box_02 .f_box_02_bot .f_sns_box li.you a {
	background-image: url(/resources/images/new_icon_footer_sns_02.png);
}

#footer .f_left .f_box_02 .f_box_02_bot .f_sns_box li.inst a {
	background-image: url(/resources/images/new_icon_footer_sns_03.png);
}

#footer .f_right {
	display: flex;
	align-items: flex-start;
	margin-left: auto;
}

#footer .f_right [data-item="select"]:first-child {
	margin-right: 10px;
}

#footer .f_right [data-item="select"] {
	position: relative;
	width: 220px;
	display: inline-block;
}

#footer .f_right [data-item="select"]>.in>.head {
	overflow: hidden;
	border-radius: 8px;
	background-color: rgba(51, 53, 60, 0.6);
}

#footer .f_right [data-item="select"]>.in>.head a {
	display: flex;
	align-items:center;
	position: relative;
	height: 4.8rem;
	padding: 15px 55px 15px 25px;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 1em;
	box-sizing: border-box;
}

#footer .f_right [data-item="select"]>.in>.head a .icon_angle {
	position: absolute;
	top: 0;
	right: 0;
	width: 43px;
	height: 4.8rem;
	font-size: 0px;
	-webkit-transition: transform 0.2s linear;
	transition: transform 0.2s linear;
}

#footer .f_right [data-item="select"]>.in>.head a .icon_angle:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 14px;
	height: 14px;
	background: url('/resources/images/new_icon_selectbox_arrow.png') center
		center no-repeat;
}

#footer .f_right [data-item="select"]>.in>.midd {
	overflow: hidden;
	overflow-y: auto;
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 44px;
	z-index: 10;
	max-height: 200px;
	padding: 20px;
	background-color: rgba(51, 53, 60, 0.6);
	border-radius: 8px;
}

#footer .f_right [data-item="select"]>.in>.midd a {
	display: block;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5em;
}

#footer .f_right [data-item="select"][data-open="on"]>.in>.midd {
	display: block;
}

#footer .f_right [data-item="select"][data-open="on"]>.in>.head>a .icon_angle
	{
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg)
}

#footer .f_right [data-item="select"][data-open="on"]>.in>.head>a,
#footer .f_right > div:focus,
#footer .f_right >.in>.head>a:focus {border:1px solid #fff;}



@media screen and (max-width:1024px){ 
	#footer {padding: 5rem 0;}
	#footer .inner {flex-wrap: wrap;}
	#footer .f_left .f_box_02 {width: 100%;}
	#footer .f_right {margin-left: 0; margin-top: 2rem;}
}

@media screen and (max-width:870px) {
	footer {padding: 60px 0; height: auto;}
}

@media screen and (max-width:640px) {
	#footer .f_left .f_box_02 .f_box_02_top {flex-wrap: wrap;}
	
	#footer .f_right {width: 100%;}
	#footer .f_right [data-item="select"] {width: calc(100% / 2);}
	#footer .f_left .f_box_01 > p {font-size: 2rem;}
	#footer .f_left .f_box_02 .f_box_02_top p, #footer .f_left .f_box_02 .f_box_02_top a {font-size:1.5rem;}
}
@media screen and (max-width:380px) {
	#footer .f_right {display:block;}
	#footer .f_right [data-item="select"] {width:100%;}
	#footer .f_right [data-item="select"]:first-child {margin-right:0; margin-bottom:5px;}
}





/* 스크롤 작업 */
[data-scroll="custom"] {
	
}

[data-scroll="custom"]::-webkit-scrollbar {
	width: 17px;
}

[data-scroll="custom"]::-webkit-scrollbar-thumb {
	height: 40px;
	background-color: #fff;
	border-radius: 10px;
	background-clip: padding-box;
	border: 6px solid transparent;
}

[data-scroll="custom"]::-webkit-scrollbar-track {
	background-color: transparent;
	border-radius: 10px;
}

  
/*-------------------------------------------------------------------
	분류그룹 : footer > 탑버튼
-------------------------------------------------------------------*/
#btnTop {position:fixed; top:auto; left:auto; bottom:10vh; right:100px; z-index:50; width:54px; height:54px; border:1px solid transparent; border-radius:8px; background-color:#114b93; cursor:pointer; transform:translateY(calc(50vh + 60px)); box-shadow:2px 4px 14px rgba(0,0,0,0.2); transition:transform .3s ease-in-out, opacity .3s ease-in;}
#btnTop .txt {display:block; font-weight:500; font-size:1.5rem; color:#fff;}
#btnTop.action {transform: translateY(0);opacity: 1;}
/*  */

/*-------------------------------------------------------------------
	@interaction
-------------------------------------------------------------------*/
#btnTop:focus {outline: 3px solid #000000;}

/*-------------------------------------------------------------------
	@media
-------------------------------------------------------------------*/
@media screen and (max-width: 1800px) {
    #btnTop {right: 30px;}
}
@media screen and (max-width: 1600px) {
    #btnTop {bottom: 30px;}
}
@media screen and (max-width: 800px) {
    #btnTop {right: 15px;}
}
@media screen and (max-width: 425px) {
    #btnTop {bottom: 15px;}
    #btnTop::after {width: 40px; height: 40px;}
}