@charset "utf-8";

/* header, footer, subpage 공통 네비게이션 ui */

:root {
  --primary: #009596;
  --blue: rgba(156, 235, 234, 0.50);;
  --navy: #395078;
  --red: #FC526E;
  --pink: #EE6DCB;
  --green: #3DC4B6;
  --white: #fff;
  --black: #000;
  --dark1: #222;
  --dark2: #585D72;
  --dark3: #898D9C;
  --light1: #E0E3EB;
  --light2: #D6DBE2;
  --shadow: 0 0 10px rgba(34,34,34, 0.08);
	--hover: #395078;
}

/* 브라우저 버전 알림 */
.lt-ie11 #browser_alert {
	display: block;
}
#browser_alert {
	display: none;
	position: fixed;
	z-index: 2000;
	padding: 10px;
	width: 100%;
	color: #fff;
	font-size: 14px;
	line-height: 1.5em;
	vertical-align: middle;
	text-align:center;
	background-color: #db4c3b;
}
#browser_alert a {
	color: #f9c461;
}
.browser_alert_close {
	display: inline-block; 
	margin-top: -2px; margin-left: 10px; 
	width: 13px; height: 13px; 
	font-family: sans-serif; line-height: 1.5em; vertical-align: middle; text-indent: -9999px; 
	background: url(../../images/client/popup/btn_close.png) no-repeat center; background-size: contain; 
	outline: none; border: none;
}

/* 로딩중 */
#loading {
	width: 100%; height: 100%;
	position: fixed; top: 0; bottom: 0;
	background: rgba(255,255,255,0.6);
	z-index: 1000;
}
#loading #loading_image{
	position: absolute; top: 50%; left: 50%;
	text-align: center;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#loading #loading_image > img {
	width: 150px;
}
#loading #loading_image span {
	display: block;
	padding: 0px 5px;
	font-weight: bold; font-size: 1.2rem;
}

/* 브라우저 버전 알림 */
.lt-ie11 #browseralert {
	display: block;
}
#browseralert {
	display: none;
	position: fixed; z-index: 2000;
	padding: 10px;
	width: 100%; 
	color: #fff; font-size: 14px; line-height: 1.5em; vertical-align: middle; text-align:center; 
	background-color: #db4c3b;
}
#browseralert a {
	color: #f9c461;
}
.browseralert_close {
	display: inline-block; 
	margin-top: -2px; margin-left: 10px; 
	width: 13px; height: 13px; 
	font-family: sans-serif; line-height: 1.5em; vertical-align: middle; text-indent: -9999px; 
	background: url(../../images/client/common/btn_browseralert_close.png) no-repeat center; background-size: contain; 
	outline: none; border: none;
}


/* 에러페이지 */
.error_wrap {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	padding: 20px 0;
	width: 100%; min-height: 100%; 
	justify-content: center; align-items: center;
	background-color: #f1f1f1;
}
.error_box {
	padding: 20px 280px 20px 20px;
	width: 720px; min-height: 200px;
	color: #727272; text-align: left; word-break: keep-all;
	background: url(../../images/client/common/bg_err.png) no-repeat right 40%; background-size: auto 200px;
}
.error_box strong {
	display: block;
	margin-bottom: 20px;
	font-size: 2.8rem; color: #464646;
}
.error_box p {
	margin-bottom: 20px;
	font-size: 1.7rem; line-height: 1.8em;
}
.error_box a {
	display: inline-block;
	padding: 10px 20px;
	font-size: 1.6rem; color: #fff;
	background: #727272;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

/* 바디 설정 */
body { overflow: visible; }
body.on { overflow: hidden; }


/* 스크롤 탑 */
.move_top {
	position: fixed; bottom: 50px; right: 3%; z-index: 1;
	display: block;
	width: 56px; height: 56px;
	font-size: 0; line-height: 0; 
	background: #fff url(../../images/client/common/btn_top.png) no-repeat center;
	background-size: 28px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	box-shadow: 0px 4px 8px rgba(34, 34, 34, 0.16);
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	opacity: 0;
}
.move_top.on {
	z-index: 50;
	opacity: 1;
}
body.on .move_top {
	display: none;
}
.move_top svg {
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
.move_top circle {
	stroke-dasharray: 214;
	stroke-dashoffset: 214;
}
.blind{overflow: hidden !important; position: absolute !important; width: 1px !important; height: 1px !important; margin: 0 !important; padding: 0 !important; border: 0 !important; white-space: nowrap !important; transition: none !important;}


/* 페이지 전체 */
.page_wrap {
	position: relative;
	min-height: 100vh;
	background-color: #fff;
	overflow-x: hidden;
}
/* skip-nav */
.skip_nav a {
	position: absolute; top: -200px; left: 50%; z-index: 200;
	display: inline-block;
	padding: 1em 2em;
	color: #fff; font-size: 1.7rem; text-align: center;
	background-color: #1e2446;
	-webkit-border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
	box-shadow: 0 4px 14px rgba(0,0,0,0.4);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	outline: none;
}
.skip_nav a:focus {
	top: 0;
}

/* 외부링크 */
.direct_link::after {
	content: "";
	display: inline-block;
	margin-left: 5px;
	width: 15px; height: 15px;
	vertical-align: 0;
	background: url(../../images/client/common/icon_direct.png) no-repeat;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
.btn_round.direct_link::after {
	background: url(../../images/client/common/icon_direct_white.png) no-repeat;
}
/* header */
.nav_wrap {
	position: relative;
}
.header_wrap {
	position: fixed; top: 0; left: 0; z-index: 100;
	width: 100%;
}
.header_top {
	position: relative; z-index: 100;
}
.header_top > .grid_content {
	position: relative;
	display: flex;
	height: 100px;
	align-items: center;
}
.header_logo {
	position: absolute; top: 50%; left: 50%;
	width: 352px; height: 34px;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.header_logo a {
	display: block;
}
.header_logo img {
	display: block;
	width: 100%;
}
.btn_log {
	display: inline-block;
	padding: 0 15px;
	margin-right: 20px;
	height: 30px;
	color: #1e2446; font-size: 1.5rem; line-height: 30px; letter-spacing: -0.03em;
	background-color: #fff;
	border: 1px solid #1e2446;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
.btn_log::before {
	content: "";
	display: inline-block;
	margin-right: 10px;
	width: 11px; height: 26px;
	vertical-align: top;
	background-repeat: no-repeat;
	background-position: center;
}
.btn_log.login::before {
	background-image: url(../../images/client/common/icon_login.png);
}
.btn_log.logout::before {
	background-image: url(../../images/client/common/icon_logout.png);
}
.header_function {
  position: absolute; right: 0; top: 50%;
  display: flex;
  align-items: center;
  transform: translateY(-50%);
}
.header_function .btn_logout, .header_function .btn_login {
  display: flex; 
  align-items: center;
  font-size: 0;
  width: auto; height: 36px;
}
.header_function .btn_logout::before, .header_function .btn_login::before {
  content: "";
  display: inline-block;
  margin-right: 2px;
  width: 34px; height: 34px;
}
.header_function .btn_logout::before { 
  background: url(../../images/client/common/icon_logout.svg) no-repeat center;
}
.header_function .btn_login::before { 
  background: url(../../images/client/common/icon_login.svg) no-repeat center;
}
.header_function .login_info{
	position: relative;
	margin-right: 16px;
	padding-right: 24px;
	font-size: 1.2rem;
	font-weight: 500;
}
.header_function .login_info::after{
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	display: block;
	width: 1px;
	height: 10px;
	background-color: #222;
	transform: translateY(-50%);
}


.btn_admin {
	position: absolute; top: 50%; left: 34px;
	padding-left: 24px;
	color: var(--dark1); font-weight: 400; line-height: 26px; font-size: 1.3rem;
	background: url(../../images/client/common/icon_admin.png) no-repeat left center;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.btn_menu {
	display: none;
}

.header_bottom {
	position: relative; z-index: 50;
	margin-top: 44px;
	text-align: center;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.gnb_wrap {
	height: auto;
}
.gnb_list {
	font-size: 0; line-height: 0; text-align: center;
}
.gnb_1depth {
	position: relative;
	display: inline-block;
	/* margin-right: 24px; */
	margin-right: 48px;
	width: 104px;
}
.gnb_1depth:first-child{
	width: 148px;
	margin-right: 32px;
}
.gnb_1depth:last-child {
	margin-right: 0;
}


.gnb_1depth::before{
	position: absolute; top: -12px; left: 50%;
	content: '';
	width: 182px; height: calc(100% + 12px);
	background: #008384;
	border-radius: 12px 12px 0px 0px;
	opacity: 0;
	transform: translateX(-50%);
	/* transition: 0.3s; */
	visibility: hidden;
}
.gnb_1depth > a {
	position: relative;
	display: block;
	letter-spacing: -0.03em; font-size: 1.6rem; color: var(--dark1);
	line-height: 1em; font-weight: 600;
	-webkit-transform: rotate(-0.03deg);
	-moz-transform: rotate(-0.03deg);
	-o-transform: rotate(-0.03deg);
	transform: rotate(-0.03deg);
	/* -webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s; */
}
.gnb_1depth > a::before {
	content: "";
	display: block;
	margin: 0 auto 16px;
	width: 70px; height: 70px;
	background-color: var(--white);
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 14px;
	box-shadow: 0px 4px 10px rgba(0,0,0,0.08);
	/* -webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s; */
}
.gnb01 > a::before {
	background-image: url(../../images/client/common/img_gnb1.png);
}
.gnb02 > a::before {
	background-image: url(../../images/client/common/img_gnb2.png);
}
.gnb03 > a::before {
	background-image: url(../../images/client/common/img_gnb3.png);
}
.gnb04 > a::before {
	background-image: url(../../images/client/common/img_gnb4.png);
}
.gnb05 > a::before {
	background-image: url(../../images/client/common/img_gnb5.png);
}
.gnb06 > a::before {
	background-image: url(../../images/client/common/img_gnb6.png);
}
.gnb07 > a::before {
	background-image: url(../../images/client/common/img_gnb7.png);
}
.gnb08 > a::before {
	background-image: url(../../images/client/common/img_gnb8.png);
}

.gnb_1depth a {
	display: block;
}
.gnb_1depth > a > span {
	display: block;
	padding: 0 5px 15px;
	line-height: 24px;
	/* -webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s; */
}
.gnb_2depth {
	position: absolute; top: 100%; left: 50%;
	display: none;
	margin-left: -91px;
	padding: 12px 0;
	width: 182px; height: auto;
	background-color: var(--primary);
	-webkit-border-radius: 0 0 12px 12px;
	-moz-border-radius: 0 0 12px 12px;
	border-radius: 0 0 12px 12px;
	overflow: hidden;
}
.gnb_2depth > li {
	position: relative;
	/* -webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s; */
}
.gnb_2depth a {
	position: relative;
	padding: 16px 3px; 
	display: block;
	word-break: keep-all;
	font-size: 1.6rem; color: var(--white); line-height: normal;  font-weight: 300;
	/* -webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s; */
}
.gnb_more {
	position: static;
	display: inline-block;
	margin-top: 3px; margin-left: 3px;
	width: 13px; height: 13px;
	font-size: 0; line-height: 0; vertical-align: top;
	background-image: url(../../images/client/common/icon_gnb_more.png); 
	background-position: center;
	background-size: contain;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
.gnb_3depth {
	position: absolute; top: 0; left: 190px;
	z-index: -1;
	display: none;
	padding: 10px;
	width: 190px;
	text-align: left;
	background-color: #ebf0f4;
	-webkit-border-radius: 0 10px 10px 10px;
	-moz-border-radius: 0 10px 10px 10px;
	border-radius: 0 10px 10px 10px;
	box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}
.gnb_3depth a {
	position: relative;
	padding: 5px 3px 5px 12px;
	font-size: 1.6rem; color: #858c94; letter-spacing: -0.05em;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
.gnb_3depth a::before {
	position: absolute; left: 0px; top: 50%;
	content: "";
	display: inline-block;
	margin-top: -2px;
	background-color: #858c94 !important;
	width: 4px; height: 4px;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
.gnb_3depth .direct_link::after {
	background-image: url(../../images/client/common/icon_direct_gray.png);
}


/* 상단 검색 영역 */
/*.search_area {
	position: absolute; top: 0; left: 0; z-index: 100;
	display: none;
	width: 100%;
	background: #fff;
	box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.search_area .grid_content {
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	height: 70px;
	align-items: center;
}
.unifiedsearch_input {
	position: relative;
	margin: 0 auto;
	width: 520px;
	border-bottom: 1px solid #1e2446;
}
.unifiedsearch_input input[type="text"].form_style {
	display: block;
	padding: 0 50px 0 16px;
	width: 100%; height: 40px;
	font-size: 1.7rem; letter-spacing: -0.03em; line-height: 40px;
	border: none;
	outline: none; 
}
.unifiedsearch_input input[type="text"].form_style:focus {
	outline: none;
}
.unifiedsearch_input .btn_searchunified2 {
	position: absolute; top: 50%; right: 0;
	display: inline-block;
	margin-top: -15px;
	width: 30px; height: 30px;
	font-size: 0; line-height: 0;
	background: #1e2446 url(../../images/client/common/icon_search_white.png) no-repeat center;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.search_area .btn_searchclose {
	position: absolute; top: 50%; right: 0;
	display: inline-block;
	margin-top: -9px;
	width: 18px; height: 18px;
	font-size: 0; line-height: 0;
	background: url(../../images/client/common/icon_close_navy.png) no-repeat center;
}*/

/* subpage visual */
.subpage_visual {
	position: relative;
	display: none;
	height: 460px;
	background-image: url(../../images/client/sub/bg_subvisual.png);
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: contain;
	overflow: hidden;
}
.subpage_visual::before{
	position: absolute; bottom: 0; left: 0;
	content: '';
	width: 100%; height: 100%;
	background-repeat: no-repeat;
	background-position: right 100px bottom;
}
.subpage_visual.on {
	display: block;
}
.subpage_visual .grid_content {
	position: relative;
	height: 100%; width: 100%;
}
.subpage_visual h2{
	position: absolute; bottom: 0; right: 0;
	display: flex;
	align-items: flex-end;
	padding: 0 365px 20px 0;
	height: 241px;
	color: #fff; font-size: 4rem; font-size: 4rem; font-weight: 600; line-height: normal; text-align: right;
	background-repeat: no-repeat;
	background-position: right 60px bottom;
	
}
.subpage_visual.guide {
	background-color: var(--primary);
}
.subpage_visual.sub1{
	background-color: #BBDBEF;
}
.subpage_visual.sub1 h2 {
	background-image: url(../../images/client/sub/bg_subvisual1.png);
	background-position: right 60px bottom;
}
.subpage_visual.sub2 {
	background-color: #92DDDD;
}
.subpage_visual.sub2 h2 {
	background-image: url(../../images/client/sub/bg_subvisual2.png); 
	background-position: right 60px bottom;
}
.subpage_visual.sub3 {
	background-color: #FADADC;
}
.subpage_visual.sub3 h2 {
	background-image: url(../../images/client/sub/bg_subvisual3.png); 
	background-position: right bottom;
}
.subpage_visual.sub4 {
	background-color: #C9DAF4;
}
.subpage_visual.sub4 h2 {
	background-image: url(../../images/client/sub/bg_subvisual4.png); 
	background-position: right 60px bottom;
}
.subpage_visual.sub5 {
	background-color: #AAEAE0;
}
.subpage_visual.sub5 h2 {
	background-image: url(../../images/client/sub/bg_subvisual5.png); 
	background-position: right 60px bottom;
}
.subpage_visual.sub6 {
	background-color: #DCCAEB;
}
.subpage_visual.sub6 h2 {
	background-image: url(../../images/client/sub/bg_subvisual6.png); 
	background-position: right bottom 53px;
}
.subpage_visual.sub7 {
	background-color: #C3EFB8;
}
.subpage_visual.sub7 h2 {
	background-image: url(../../images/client/sub/bg_subvisual7.png); 
	background-position: right 60px bottom;
}
.subpage_visual.sub8 {
	background-color: #FFDFA5;
}
.subpage_visual.sub8 h2 {
	background-image: url(../../images/client/sub/bg_subvisual8.png); 
	background-position: right 60px bottom;
}

/* lnb */
.lnb_wrap {
	border-bottom: 1px solid var(--light1);
	display: none;
	}
	.lnb_wrap.on {
	display: block;
	}
.lnb_list {
	display: flex;
	padding: 0;
	height: 60px;
}
.lnb_list li a {
	position: relative;
	display: flex;
	padding: 0 20px;
	min-width: 80px; height: 100%;
	align-items: center; justify-content: center;
	color: var(--dark3); font-weight: 500; line-height: normal;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
.lnb_list li a::before {
	position: absolute; bottom: 0; left: 50%;
	content: "";
	display: block;
	width: 0; height: 3px;
	background-color: var(--primary);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
.lnb_list li.on a {
	color: var(--primary);
}
.lnb_list li.on a::before {
	width: 100%;
}
/* footer */
.footer_wrap {
	background-color: #303030;
}
.footer_inner{
	display: flex;
	align-items: center;
	gap: 217px;
	padding: 59px 0;
}
.footer_logo {
	width: 143px;
	font-size: 0; line-height: 0;
}
.footer_logo img {
	width: 100%;
}
.footer_right ul{
	display: flex;
	align-items: center;
}
.footer_right a{
	color: rgba(255, 255, 255, 0.60); font-size: 1.2rem; font-weight: 500;
}
.footer_right a.privacy{
	position: relative;
	margin: 0 20px 0 12px;
	padding-left: 12px;
	color: var(--white);
}
.footer_right a.privacy::before{
	position: absolute; top: 50%; left: 0;
	content: '';
	width: 1px; height: 12px;
	background: rgba(255,255,255,0.6);
	transform: translateY(-50%);
}
.footer_right a.tel{
	position: relative;
	margin: 0 8px 0 24px;
	padding-right: 12px;
}
.footer_right a.tel::before{
	position: absolute; top: 50%; right: 0;
	content: '';
	width: 1px; height: 12px;
	background: rgba(255,255,255,0.6);
	transform: translateY(-50%);
}
.footer_right p{
	color: rgba(255, 255, 255, 0.70); font-size: 1.2rem; font-weight: 300;
}
.footer_right p.copyright{
	color: rgba(255, 255, 255, 0.50);
}

/* 사이트맵 */
.btn_sitemapmenu {
	position: absolute; top: 50%; left: 0;
	display: inline-block;
	/* width: 28px; height: 18px; */
	width: 20px; height: 13px;
	font-size: 0; line-height: 0; vertical-align: top;
	background: url(../../images/client/common/btn_sitemap.png) no-repeat center;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.sitemap {
	position: fixed; bottom: -100%; left: 0; z-index: 100;
	width: 100%; 
	transition: 0.6s;
}
.sitemap.on {
	bottom: 0;
}
.sitemap > .inner {
	position: relative;
	height: 100vh; max-height: 100vh;
	font-size: 0; line-height: 0;
	background: #C2E9E3;
	border-radius: 100% 100% 0 0;
	-webkit-transition: 0.4s ease 0.2s;
	-moz-transition: 0.4s ease 0.2s;
	-o-transition: 0.4s ease 0.2s;
	transition: 0.4s ease 0.2s;
}
.sitemap.on > .inner { 
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.btn_sitemap {
	position: absolute; top: 50px; right: 0; z-index: 10;
	display: block;
	width: 16px; height: 16px;
	font-size: 0; line-height: 0;
	background: url(../../images/client/common/btn_sitemapclose.png) no-repeat center;
	background-size: contain;
}
.sitemap .grid_content {
	position: relative;
	padding-top: 127px;
	max-height: 100%;
	overflow-y: auto;
	opacity: 0;
}
.sitemap.on .grid_content {
	opacity: 1;
	-webkit-transition: 0.8s ease-out 0.6s;
	-moz-transition: 0.8s ease-out 0.6s;
	-o-transition: 0.8s ease-out 0.6s;
	transition: 0.8s ease-out 0.6s;
}
.sitemap .gnb_2depth {
	position: relative; top: inherit; left: inherit;
	display: grid;
	grid-template-columns: 300px auto;
	align-items: center;
	margin: 0;
	padding: 23px 0;
	width: 100%;
	font-size: 1.5rem; line-height: 1.5em; vertical-align: top;
	background: transparent;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 0;
	box-shadow: none;
	transition: 0.4s;
}
.sitemap .gnb_2depth:last-child{
	border-bottom: none;
}
.sitemap .gnb_2depth ul{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.sitemap .gnb_tit {
	position: relative; z-index: 10;
	display: inline-flex;
	margin-bottom: 0; padding-top: 0; padding-bottom: 0;
	color: var(--dark1); font-size: 2.8rem; font-weight: 700; line-height: normal;
}

.sitemap a {
	color: #858c94; font-size: 1.6rem;
}
.sitemap .gnb_2depth > ul > li > a {
	padding: 0 0 0 24px;
}
.sitemap .gnb_2depth a {
	color: var(--dark1); font-size: 1.8rem; font-weight: 400;
}
.sitemap .gnb_2depth .direct_link::after {
	background-image: url(../../images/client/common/icon_direct_gray.png);
}

/* header 스크롤시 */
body.scrolly .header_wrap {
	top: -100px;
	width: 100%; 
	background-color: rgba(255,255,255,0.8);
	/* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); */
}
body.scrolly .header_bottom{
	margin-top: 0;
}
body.scrolly .header_logo {
	top: 125px; left: 0; z-index: 60;
	width: 290px;
	-webkit-transform: none;
	-moz-transform: none;
	-o-transform: none;
	transform: none;
}
body.scrolly .header_logo a {
	height: 34px;
}
body.scrolly .gnb_wrap {
	height: 80px;
}
body.scrolly .gnb_list {
	text-align: right;
}
body.scrolly .gnb_1depth {
	margin-right: 40px;
	width: auto;
}
body.scrolly .gnb_1depth:last-child {
	margin-right: 0;
}
body.scrolly .gnb_1depth > a {
	display: flex;
	height: 80px;
	align-items: center;
	color: #000;
}
body.scrolly .gnb_1depth > a::before {
	display: none;
}
body.scrolly .gnb_1depth > a > span{
	padding: 0 5px;
}
body.scrolly .gnb_1depth::before{
	display: none;
}
body.scrolly .gnb_2depth {
	top: 64px;
	padding: 12px 0;
	text-align: center;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
}
body.scrolly .gnb_1depth:nth-last-child(2) .gnb_2depth .gnb_3depth, body.scrolly .gnb_1depth:last-child .gnb_2depth .gnb_3depth {
	left: -190px;
	-webkit-border-radius: 10px 0 10px 10px;
	-moz-border-radius: 10px 0 10px 10px;
	border-radius: 10px 0 10px 10px;
}

/* 페이지 전체 영역 */
.contents_wrap {
	position: relative;
	overflow: hidden;
}

/* 메인페이지 전체 영역 */
.mainpage_wrap {
	position: relative;
}

/* 서브페이지 전체 영역 */
.subpage_wrapper {
	position: relative;
	padding-top: 49px; padding-bottom: 50px; 
}

/* ui guide */
.ui_tit {
	padding: 8px 16px;
	font-size: 1.6rem; color: var(--primary);
	background: #dfedf0;
}
.ui_stit {
	margin-bottom: 5px;
	font-size: 2rem;
}
.ui_box {
	padding: 10px;
	background: #fff;
	border: 1px solid #ebebeb;
}
.ui_section {
	margin-bottom: 30px;
}
.ui_colorbox {
	display: inline-block;
	width: 24px; height: 14px;
}

/* 외부링크 이동 */
/* .external_box {
	padding: 135px 70px;
	background-color: rgba(112,75,206,1);
	background-image: url(../../images/client/sub/bg_externallink.png), linear-gradient(130deg, rgba(112,75,206,1) 33%, rgba(5,247,253,1) 100%); 
	background-repeat: no-repeat;
	background-position: right bottom, center;
}
.external_box p { 
	position: relative;
	color: #fff; font-size: 5rem; 
	font-family: TTTogether, sans-serif;
	-webkit-transform: rotate(-0.03deg);
	-moz-transform: rotate(-0.03deg);
	-o-transform: rotate(-0.03deg);
	transform: rotate(-0.03deg);
}
.external_box p::after {
	content: "외부링크로\A이동된 화면입니다"; 
	z-index: -1;
	position: absolute; left: 5px; top: 5px;
	display: inline-block;
	white-space: pre;
	color: #056cb9;
} */

/* 외부링크 이동 */
.external_box {
	padding: 137px 0px;
	background-image: url(../../images/client/sub/bg_externallink.png); 
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.external_box p { 
	color: var(--navy); font-size: 3.2rem;  font-weight: 700; text-align: center;
}



@media screen and (max-width:1279px) {
	
	/* header 1279 */
	.header_bottom{
		margin-top: 20px;
	}
	.gnb_1depth {
		margin-right: 25px;
		width: 100px;
	}
	.gnb_1depth::before{
		width: 155px;
	}
	.gnb_1depth > a {
		font-size: 1.5rem;
	}
	.gnb_2depth{
		margin-left: -77px;
		width: 155px;
	}
	.gnb_2depth a {
		font-size: 1.5rem;
	}

	/* 상단 검색 영역 1279 */
	/*.search_area .grid_content {
		padding-right: 40px;
		height: 70px;
	}
	.unifiedsearch_input {
		width: 100%;
	}*/

	/* header 스크롤시 1279 */
	body.scrolly .header_logo {
		top: 118px;
	}
	body.scrolly .gnb_wrap {
		height: 70px;
	}
	body.scrolly .gnb_1depth {
		margin-right: 20px;
	}
	body.scrolly .gnb_1depth > a {
		height: 70px;
	}
	body.scrolly .gnb_2depth {
		top: 57px;
	}
	body.scrolly .gnb_1depth:last-child .gnb_2depth {
		margin-left: -140px;
		background-position: right 40px top;
	}
	body.scrolly .gnb_1depth:nth-last-child(3) .gnb_3depth {
		left: -190px;
		-webkit-border-radius: 10px 0 10px 10px;
		-moz-border-radius: 10px 0 10px 10px;
		border-radius: 10px 0 10px 10px;
	}
	
	/* subpage visual 1279 */
	.subpage_visual {
		height: 420px;
	}
	.subpage_visual h2 {
		font-size: 3.5rem;
		padding: 0 373px 20px 0;
	}
	.subpage_visual.sub1 h2 {
		background-position: right bottom;
	}

	/* lnb 1279 */
	.lnb_list {
		padding: 0;
		height: 60px;
	}


	/* 사이트맵 1279 */
	.sitemap .grid_content{
		padding-top: 7%;
	}
	.sitemap .gnb_tit {
		font-size: 2.4rem;
	}
	.sitemap .gnb_2depth a {
		font-size: 1.6rem;
	}


}

/*=================== hover ===================*/
@media screen and (min-width:1025px) {
	
	/* 에러페이지 hover */
	.error_box a:hover {
		background-color: #454545;
	}

	/* .move_top:hover {
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	} */

	/* header hover */
	.btn_log:hover {
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	}
	.gnb_1depth:hover::before{
		opacity: 1;
		visibility: visible;
	}
	.gnb_1depth:hover > a::before{
		background-color: #008384;
		box-shadow: none;
	}
	.gnb_1depth:hover > a > span {
		color: var(--white);
	}

	body.scrolly .gnb_1depth:hover > a > span {
		color: #1e2446;
		background-color: transparent;
	}

	.gnb_2depth > li:hover::before {
		width: 5px;
	}
	.gnb_2depth > li:hover a {
		color: #00FFE0; 
		-webkit-text-stroke: 0.5px #00FFE0;
		
	}

	/* lnb hover */
	.lnb_list li a:hover {
		color: var(--primary);
	}
	.lnb_list li a:hover::before {
		width: 100%;
	}

	/* 사이트맵 hover */
	.sitemap .gnb_2depth a:hover {
		color: var(--primary);
		-webkit-text-stroke: 0.5px var(--primary);
	}
	
	.sitemap .gnb_2depth:hover{
		border-bottom: 1px solid #585D72;

	}
	
	
	/* side navigation bar hover */
	.snb_1depth:hover > a {
		color: #009ab7; 
	}
	.snb_1depth:hover > .direct_link::after {
		background-image: url(../../images/client/common/icon_direct_mint.png);
	}
	.snb_1depth:hover .snb_more {
		background-image: url(../../images/client/common/icon_gnb_more_green.png);
	}
	.snb_2depth li:hover a {
		color: #009ab7; 
	}
	.snb_2depth .direct_link:hover::after {
		background-image: url(../../images/client/common/icon_direct_mint.png);
	}
	
}
/*=================== //hover ===================*/
@media screen and (max-width:1024px) {
	
	/* header 1024 */
	.header_wrap {
		position: fixed; top: 0; z-index: 20;
		width: 100%; height: 87px;
	}
	.header_top {
		margin-bottom: 0;
		/* height: 70px; */
		height: 87px;
	}
	.header_top > .grid_content {
		height: 100%;
	}
	.header_logo {
		width: 142px; height: auto;
	}
	.header_logo a {
		width: 142px; height: 55px;
		background: url(../../images/client/common/logo_m.svg) no-repeat;
		background-size: contain;
	}
	.header_logo a img {
		display: none;
	}
	body.scrolly_m .header_wrap{
		background-color: var(--white);
	}
	body.on .header_wrap{
		background-color: var(--white);
	}
	
	.user_info {
		display: none;
	}
	.btn_admin {
		position: relative;
		top: 0; right: 0; left: 0;
		padding: 0 10px;
		color: var(--dark1); font-size: 1.2rem; line-height: 36px;
		width: 100%;
		background-color: #F8F9FB;
		background-image: none;
		-webkit-transform: none;
		-moz-transform: none;
		-o-transform: none;
		transform: none;
	}
	/*.btn_searchunified {
		right: 50px;
		margin-top: -12px;
		width: 24px; height: 24px;
		background-image: url(../../images/client/common/icon_search_mobile.png);
	}*/
	.btn_menu {
		display: block;
	}
	.btn_menu {
		position: absolute; top: 50%; left: 0; 
		display: block;
		width: 20px; height: 20px;
		font-size: 0; line-height: 0;
		background-color: rgba(0,0,0,0);
		transform: translateY(-50%);
	}
	.btn_menu span{
		width: 20px;
	}
	.btn_menu::after {
		content: "";
		display: block;
		clear: both;
	}
	.btn_menu span {
		float: right;
		display: block;
		width: 25px; height: 3px;
		margin-bottom: 5px;
		background-color: var(--black);
		-webkit-border-radius: 2px;
		-moz-border-radius: 2px;
		border-radius: 2px;
	}
	.btn_menu span:nth-child(2)::before, .btn_menu span:nth-child(2)::after {
		content: "";
		position: absolute; top: 50%; left: 50%;
		display: block;
		margin-top: -1px; margin-left: -15px;
		width: 25px; height: 3px;
		background: var(--black);
		-webkit-border-radius: 2px;
		-moz-border-radius: 2px;
		border-radius: 2px;
		-webkit-transition: 0.2s;
		-moz-transition: 0.2s;
		-o-transition: 0.2s;
		transition: 0.2s;
		opacity: 0;
	}
	.btn_menu.on {
		/* top: 23px; */
		height: 24px;
	}
	.btn_menu.on span:first-child, .btn_menu.on span:last-child {
		display: none;
	}
	.btn_menu.on span:nth-child(2){
		width: 20px;
		background: rgba(0,0,0,0);
	}
	.btn_menu.on span:nth-child(2)::before {
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 1;
	}
	.btn_menu.on span:nth-child(2)::after {
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 1;
	}
	.btn_log {
		position: absolute; right: 50px; z-index: 10;
		margin: 0;
		padding: 0; 
		width: 37px; height: 35px;
		font-size: 0;
		background-color: transparent; background-repeat: no-repeat; 
		background-position: center;
		border: none;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
	}
	.btn_log::before {
		display: none;
	}
	.btn_log.login {
		background-image: url(../../images/client/common/icon_login_mobile.png);
	}
	.btn_log.logout {
		background-image: url(../../images/client/common/icon_logout_mobile.png);
	}
	.header_bottom {
		position: fixed; top: 87px;
		display: none;
		margin: 0;
		width: 100%;
	}
	.gnb_wrap {
		background-color: #fff;
		/* box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.2), 4px 4px 6px rgba(0,0,0,0.1);  */
		overflow-y: auto;
		-ms-overflow-style: none;
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-o-transition: all 0.2s;
		transition: all 0.2s;
		display: flex;
		flex-flow: wrap-reverse;
		gap: 10px;
	}
	.gnb_list {
		/* padding: 30px 15px 10px; */
		padding: 0px 0 10px;
		white-space: nowrap;
		overflow-x: auto;
	}
	.gnb_list::-webkit-scrollbar {
		display: none;
	}
	.gnb_1depth {
		position: static;
		vertical-align: top;
	}
	.gnb_1depth > a {
		-webkit-transition: none;
		-moz-transition: none;
		-o-transition: none;
		transition: none;
	}
	.gnb_1depth > a::before {
		-webkit-transition: none;
		-moz-transition: none;
		-o-transition: none;
		transition: none;
	}
	
	.gnb_2depth {
		/* top: 150px; */
		 left: 0; z-index: -1;
		margin: 0;
		width: 100%; height: calc( 100vh - 190px);
		text-align: left;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		box-shadow: none;
		overflow-y: auto;
	}
	.gnb_2depth a {
		padding: 15px;
	}
	.gnb_more {
		display: none;
	}

	.lnb_list{
		overflow-x: scroll;
	}
	.lnb_list li{
		flex-shrink: 0;
	} 

	/* 상단 검색 영역 1024 */
	/*.search_area {
		top: 0;
	}
	.search_area .grid_content {
		height: 96px;
	}*/

	body.on .header_wrap::after {
		content: "";
		position: absolute; top: 87px; left: 0; 
		display: block;
		width: 100vw; height: calc( 100vh - 87px );
		background: rgba(0,0,0,0.3);
	}
	body.on .header_bottom {
		display: block;
	}
	.header_function .login_info{
		margin-right: 7px;
		padding-right: 15px;
	}
	
	/* subpage visual 1024 */
	.subpage_visual {
		padding: 80px 0 0;
		height: auto;
	}
	.subpage_visual h2 {
		position: static; 
		padding: 10px 0 50px;
		width: 100%; height: 100%;
		justify-content: center;
		align-items: center;
		font-size: 3rem;  
		background-size: auto 100%;
	}

	/* lnb 1024 */
	.lnb_wrap {
		display: none;
	}

	/*  footer 1024 */
	.footer_top {
		padding: 10px 0;
	}
	.footer_bottom {
		padding: 5px 0 10px;
	}
	.footer_logo {
		display: none;
	}

	/* 사이트맵 1024 */
	.btn_sitemapmenu {
		display: none;
	}
	.sitemap {
		display: none;
	}
	.sitemap > .inner {
		display: none;
	}
	
	/* 외부링크 이동 1024 */
	/* .external_box { 
		padding: 100px 50px;
		background-size: auto 305px, auto;
	}
	.external_box p {
		font-size: 3.8rem;
	} */
	.external_box p {
		font-size: 3rem;
	}

}
@media screen and (max-width:600px) {
	/* .gnb_2depth{
		top: 150px;
	} */
}
@media screen and (max-width:768px) {

	/* 에러페이지 768 */
	.error_box {
		padding: 180px 20px 0 20px;
		width: auto;
		text-align: center;
		background-size: auto 160px; background-position: center top;
	}
	.error_box strong {
		margin-bottom: 10px;
		font-size: 2.4rem;
	}
	
	
	/* header 768 */

	/* .header_top{
		height: 64px;
	} */
	/* .header_logo, .header_logo a{
		width: 237px;
	} */
	.header_bottom{
		top: 87px;
	}
	.gnb_1depth {
		margin-right: 10px;
		width: 95px;
	}
	.gnb_1depth > a > span {
		padding: 0;
	}

	.header_function .login_info{
		display: none;
	}
	.btn_menu span{
		width: 20px; height: 2px;
	}
	.btn_menu{
		width: 20px; height: 20px;
	}
	.btn_menu span:nth-child(2)::before, .btn_menu span:nth-child(2)::after{
		margin-top: -3px; margin-left: -10px;
		width: 20px; height: 2px;
	}

	/* 상단 검색 영역 768 */
	/*.unifiedsearch_input input[type="text"].form_style {
		padding: 0 40px 0 10px;
	}
	.unifiedsearch_input .btn_searchunified2 {
		right: 10px;
	}*/

	/* subpage visual 768 */
	.subpage_visual h2 { 
		padding-left: 20px;
		justify-content: left;   
	}
	.lnb_list{
		height: 52px;
	}
	
	/* footer 768 */
	.footer_wrap {
		font-size: 1.4rem;
	}
	.footer_top li {
		font-size: 1.4rem;
	}

	/* 서브페이지 전체 영역 768 */
	.subpage_wrapper {
		padding-top: 20px; padding-bottom: 35px;
	}

	/* 외부링크 이동 768 */
	.external_box { 
		padding: 80px 0;
	}
	.external_box p {
		font-size: 2.8rem;
	}
}

@media screen and (max-width:600px) {
	.footer_inner{
		padding: 20px 0;
	}
	.footer_right ul{
		flex-flow: wrap;
	}
	.footer_right ul:first-child li:nth-child(3){
		width: 100%;
		margin: 16px 0 4px;
	}
	.footer_right ul:last-child li:nth-child(1){
		width: 100%;
		margin: 0 0 16px;
	}
	.footer_right a.tel{
		margin: 0 8px 0 0;
	}

}
@media screen and (max-width:480px) {

	/* 스크롤 탑 */
	.move_top {
		bottom: 20px;
		width: 40px; height: 40px;
		background-size: 20px;
	}

	
	/* header 480 */
	/* .header_logo a{
		height: 23px;
	} */
	.header_function .btn_logout, .header_function .btn_login{
		font-size: 0;
	}

	/* 상단 검색 영역 480 */
	/*.search_area .grid_content {
		width: 92%;
	}*/
	.gnb_list{
		padding: 10px 0;
	}

	
	/* subpage visual 480 */
	.subpage_visual h2 {
		height: 120px;
		font-size: 3rem;
		background-size: auto 70%;
		background-position: bottom right;
	}
	.subpage_visual.sub1 h2, .subpage_visual.sub2 h2,.subpage_visual.sub4 h2,.subpage_visual.sub5 h2, .subpage_visual.sub7 h2, .subpage_visual.sub8 h2{
		background-position:right 24px bottom;
	}

	/* footer 480 */
	.footer_bottom p br {
		display: block;
	}
	
	/* 외부링크 이동 480 */ 
	.external_box { 
		padding: 50px 0;
	}
	.external_box p {
		font-size: 2.2rem;
	}
}