@charset "UTF-8";
/* 공통 - common css */
:root {
	--layout-padding-x: 15px;
}

html, body {
	height: 100%;
}

.wrap {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.wrap .inner_comm {
	max-width: 768px;
	height: 100%;
	margin: 0 auto;
	padding: 0 var(--layout-padding-x);
	box-sizing: content-box;
}

.main_cont {
	flex: 1;
	overflow: hidden;
	position: relative;
	z-index: 0;
	min-height: 0;
}

@media only screen and (min-width: 1200px) {
	/* layout */
	.wrap .inner_comm {
		max-width: 1400px;
		padding: 0 var(--layout-padding-x);
	}
}
/* Header */
/* M, PC Header 분기 및 sticky 처리 */
.header:has(.head_m.sticky) {
	position: sticky;
	top: 0;
}

.head_pc {
	display: none;
}

@media only screen and (min-width: 1200px) {
	:root {
		--layout-padding-x: 10px;
	}
	/* M, PC Header 분기 및 sticky 처리 */
	.header:has(.head_m.sticky) {
		position: relative;
	}
	.header:has(.head_pc.sticky) {
		position: sticky;
		top: 0;
	}
	.header .head_m {
		display: none;
	}
	.header .head_pc {
		display: block;
	}
}
/* head_m */
.head_m {
	display: flex;
	align-items: center;
	position: relative;
	height: var(--head-height);
	padding: 0 var(--layout-padding-x);
	border-bottom: 1px solid #EFEFEF;
	background-color: #fff;
	box-shadow: 0px 10px 28px rgba(95, 117, 152, 0.08);
	--head-height: 70px;
	--btn-menu-size: 22px;
	--btn-menu-color: #000;
	--btn-menu-padding: 15px var(--layout-padding-x);
	--dim-bg: rgba(0,0,0,.7);
	--dim-fade-duration: .3s;
	--menu-max-width: 360px;
	--depth1-gap: 10px;
	--depth1-padding: 17px 0;
	--depth1-weight: 700;
	--depth1-size: 18px;
	--depth1-line-height: 26px;
	--depth1-color: #000;
	--depth1-color-active: #0051D9;
	--depth1-arrow-size: 0.9em;
	--depth2-gap: 8px;
	--depth2-padding: 16px 18px;
	--depth2-weight: 600;
	--depth2-size: 16px;
	--depth2-line-height: 21px;
	--depth2-color: #121212;
	--depth1-arrow-color: var(--depth1-color);
	--depth1-arrow-color-active: var(--depth-color-active);
	--depth1-arrow-transform: rotateX(180deg);
	--dpeth1-arrow-transform-duration: .4s;
	--depth2-transfition-duration: .4s;
	--depth2-bg-color: #f1f7ff;
}

.head_m .link_logo {
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: center;
}

.head_m .btn_menu {
	position: absolute;
	top: 50%;
	right: 0;
	padding: var(--btn-menu-padding);
	font-size: var(--btn-menu-size);
	line-height: 1;
	color: var(--btn-menu-color);
	transform: translateY(-50%);
}

.head_m .btn_menu .ico_bar {
	width: 15px;
	height: 3px;
	background: #000;
	border-radius: 3px;
}

.head_m .btn_menu::before,
.head_m .btn_menu::after {
	display: block;
	width: 20px;
	height: 3px;
	background: #000;
	border-radius: 10px;
	content: "";
}

.head_m .btn_menu::before {
	margin-bottom: 5px;
}

.head_m .btn_menu::after {
	margin-top: 5px;
}

.head_m .btn_menu[aria-expanded=true] + .menu_area {
	opacity: 1;
	visibility: visible;
}

.head_m .menu_area {
	position: fixed;
	inset: 0;
	z-index: 1000;
	background: var(--dim-bg);
	opacity: 0;
	visibility: hidden;
	transition: all var(--dim-fade-duration);
}

.head_m .menu_cont {
	display: flex;
	flex-direction: column;
	position: relative;
	max-width: var(--menu-max-width);
	height: 100%;
	background-color: #fff;
	transform: translateX(-100%);
	transition: transform var(--menu-show-duration, 0.3s);
}

.head_m .btn_menu[aria-expanded=true] + .menu_area .menu_cont {
	transform: translateX(0);
}

.head_m .head_menu {
	flex: none;
	display: flex;
	align-items: center;
	position: relative;
	height: var(--head-height);
	padding: 0 15px;
	border-bottom: 1px solid #ddd;
}

.head_m .bottom_menu {
	flex: none;
	padding: 33px 20px 33px;
	background-color: #2F58FC;
	text-align: center;
}

.head_m .bottom_menu .txt_down {
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	color: #fff;
}

.head_m .bottom_menu .link_down {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 15px;
	padding: 11px 27px;
	border-radius: 100px;
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	color: #fff;
	background-color: #000;
	vertical-align: top;
}

.nav_m {
	flex: 1;
	min-height: 0;
}

.head_m .group_sns {
	display: flex;
	gap: 15px;
	align-items: center;
	position: static;
	padding: 15px;
	transform: none;
}

.head_m .group_sns strong {
	display: block;
	font-size: 18px;
	line-height: 22px;
	color: #424242;
}

.head_m .group_sns .list_sns {
	gap: 15px;
	padding: 0;
	box-shadow: none;
}

.head_m .menu_area .btn_close {
	position: absolute;
	top: 0;
	right: 0;
	height: var(--head-height);
	padding: 0 15px;
	font-size: 18px;
	line-height: 1;
	color: #000;
}

.gnb_m {
	overflow: auto;
	height: 100%;
	padding: 5px 15px 30px;
}

.gnb_m li {
	border-bottom: 1px solid #e8e8e8;
}

.gnb_m [class*=link_depth][target=_blank] {
	justify-content: flex-start;
}

.gnb_m [class*=link_depth][target=_blank]:after,
.gnb_pc [class*=link_depth][target=_blank]:after {
	font-family: "Font Awesome 6 Pro", sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: auto;
	content: "\f08e";
} /* 외부링크 아이콘 표시 */
.gnb_m .link_depth1 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--depth1-gap);
	padding: var(--depth1-padding);
	font-weight: var(--depth1-weight);
	font-size: var(--depth1-size);
	line-height: var(--depth1-line-height);
	color: var(--depth1-color);
}

.gnb_m .link_depth2 {
	display: flex;
	align-items: center;
	gap: var(--depth2-gap);
	padding: var(--depth2-padding);
	font-weight: var(--depth2-weight);
	font-size: var(--depth2-size);
	line-height: var(--depth2-line-height);
	color: var(--depth2-color);
}

.gnb_m .link_depth2.on {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.gnb_m .link_depth2::before {
	width: 4px;
	height: 4px;
	background: currentColor;
	border-radius: 50%;
	content: "";
}

.gnb_m .link_depth1[aria-expanded=true] {
	color: var(--depth1-color-active);
}

.gnb_m .link_depth1[aria-expanded=true] + .cont_submenu {
	grid-template-rows: 1fr;
	opacity: 1;
	visibility: visible;
}

.gnb_m .has_sub .link_depth1:after {
	font-size: var(--depth1-arrow-size);
	color: var(--depth1-arrow-color);
	font-family: "Font Awesome 6 Pro", sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: auto;
	transition: transform var(--dpeth1-arrow-transform-duration);
	content: "\f078";
}

.gnb_m .has_sub .link_depth1[aria-expanded=true]:after {
	color: var(--depth1-arrow-color-active);
	transform: var(--depth1-arrow-transform);
}

.gnb_m .cont_submenu {
	display: grid;
	grid-template-rows: 0fr;
	opacity: 0;
	visibility: hidden;
	transition: all var(--depth2-transfition-duration);
}

.gnb_m_depth2 {
	overflow: hidden;
}

.gnb_m_depth2 > li:first-child {
	border-top: 1px solid #e8e8e8;
}

.gnb_m_depth2 > li:last-child {
	border-bottom: 0;
}

/* head_pc */
.header {
	z-index: 1000;
}

.head_pc {
	position: relative;
	z-index: 1000;
	height: var(--head-height);
	box-shadow: 0px 10px 28px rgba(95, 117, 152, 0.08);
	--head-height: 100px;
	--gnb-text-align: center;
	--gnb-bg-color: #fff;
	--gnb-bg-color-active: #FFF;
	--gnb-bg-duration: .3s;
	--gnb-panel-bg-color: var(--gnb-bg-color);
	--gnb-panel-bg-color-active: var(--gnb-bg-color-active);
	--gnb-panel-bg-duration: var(--gnb-bg-duration);
	--gnb-panel-show-duration: .3s;
	--gnb-dim-color: rgba(0,0,0,0);
	--gnb-dim-color-active: rgba(0,0,0,.65);
	--gnb-dim-color-duration: .3s;
	--gnb-divide-line-color: #ddd;
	--gnb-shadow-shape: 0 4px 15px;
	--gnb-shadow-color: rgba(0,0,0,0);
	--gnb-shadow-color-active: rgba(0,0,0,.07);
	--gnb-shadow-color-duration: .3s;
	--depth1-basis: auto;
	--depth1-basis-1500: auto;
	--depth1-basis-1700: 155px;
	--depth1-gap: 10px;
	--depth1-padding: 0 27px;
	--depth1-padding-1500: 0 20px;
	--depth1-padding-1700: 0 10px;
	--depth1-weight: 700;
	--depth1-size: 22px;
	--depth1-size-1500: 24px;
	--depth1-size-1700: 24px;
	--depth1-line-height: 28px;
	--depth1-line-height-1500: 28px;
	--depth1-line-height-1700: 28px;
	--depth1-color: #121212;
	--depth1-color-active: #0051D9;
	--depth1-color-duration: .3s;
	--depth1-line-inset: auto auto -2px 50%;
	--depth1-line-size: 3px;
	--depth1-line-color: #0051D9;
	--depth1-line-translate: -50% 0;
	--depth1-line-duration: .3s;
	--depth1-ico-target-size: .8em;
	--depth2-bg-hover: #f1f7ff;
	--depth2-bg-duration: .3s;
	--depth2-gap: 5px;
	--depth2-fst-padding: 23px;
	--depth2-lst-padding: 23px;
	--depth2-padding: 9px 20px;
	--depth2-weight: 500;
	--depth2-weight-active: 700;
	--depth2-size: 17px;
	--depth2-size-1500: 18px;
	--depth2-line-height: 21px;
	--depth2-line-height-1500: 23px;
	--depth2-color: #333;
	--depth2-color-active: #0051D9;
	--depth2-color-duration: .3s;
	--depth2-ico-target-size: .8em;
}

.header::before {
	position: fixed;
	inset: 0;
	z-index: -10;
	transition: background-color 0.3s;
	pointer-events: none;
	content: "";
}

.header:has(.gnb_pc:focus-within)::before,
.header:has(.gnb_pc:hover)::before {
	background: rgba(0, 0, 0, 0.65);
}

.head_pc .cont_head {
	background: #fff;
	border-bottom: 1px solid #EFEFEF;
}

.scroll_on .head_pc .cont_head {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.head_pc .inner_head {
	display: flex;
	align-items: flex-start;
	gap: 5px;
}

.head_pc .group_service {
	margin: calc(var(--head-height) / 2 - 25px) auto 0 0;
}

.head_pc .group_service .link_logo {
	display: block;
}

.area_etc {
	display: flex;
	align-items: center;
	gap: 17px;
	margin: calc(var(--head-height) / 2 - 9px) 0 0 28px;
}

.area_etc .link_down {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px 9px;
	border-radius: 100px;
	font-weight: 700;
	font-size: 18px;
	line-height: 21px;
	color: #fff;
	background-color: #000;
	vertical-align: top;
}

.area_etc .link_down i {
	font-size: 1.1em;
}

.area_etc .link_sitemap {
	position: relative;
}

.area_etc .link_sitemap .ico_bar {
	width: 15px;
	height: 3px;
	background: #000;
	border-radius: 3px;
}

.area_etc .link_sitemap::before,
.area_etc .link_sitemap::after {
	display: block;
	width: 20px;
	height: 3px;
	background: #000;
	border-radius: 10px;
	content: "";
}

.area_etc .link_sitemap::before {
	margin-bottom: 5px;
}

.area_etc .link_sitemap::after {
	margin-top: 5px;
}

@media only screen and (min-width: 1200px) {
	.area_etc {
		display: none;
	}
}

/* 통합검색 버튼 */
.header .link_search[aria-expanded=true] + .box_search {
	opacity: 1;
	visibility: visible;
}

.header .link_search i {
	pointer-events: none;
}

.box_search {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 80px;
	background-color: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s;
}

.box_search .inner_box {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 var(--layout-padding-x);
	box-sizing: content-box;
}

.box_search .inner_box, .box_search .form_search, .box_search fieldset {
	height: 100%;
}

.box_search fieldset {
	display: flex;
	align-items: center;
	gap: 8px;
}

.box_search .inp_search {
	flex: 1;
	height: 44px;
	padding: 2px 10px;
	border-radius: 5px;
	border: 0;
}

.box_search [class*=btn_] {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 5px;
	color: #fff;
}

.box_search .btn_search {
	font-size: 22px;
	background-color: #0051D9;
}

.box_search .btn_close {
	font-size: 32px;
	background-color: #000;
}

.head_m .link_search {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 50px;
	top: 50%;
	z-index: 10;
	width: 38px;
	height: 38px;
	font-size: 22px;
	color: #000;
	transform: translateY(-50%);
}

.head_pc .box_search {
	position: fixed;
	top: var(--head-height);
	height: 100px;
	background-color: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
}

.head_pc .box_search fieldset {
	gap: 10px;
}

.head_pc .box_search .inp_search {
	height: 50px;
}

.head_pc .box_search [class*=btn_] {
	width: 50px;
	height: 50px;
}

.head_pc .link_search {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	font-size: 22px;
	color: #000;
}

.head_pc .link_search:hover, .head_pc .link_search:focus {
	background-color: #efefef;
}

.nav_pc {
	position: relative;
	background-color: var(--gnb-bg-color);
	text-align: var(--gnb-text-align);
	box-shadow: var(--gnb-shadow-shape) var(--gnb-shadow-color);
	transition: box-shadow var(--gnb-shadow-color-duration), background-color var(--gnb-bg-duration);
	word-break: keep-all;
}

.nav_pc:has(.gnb_pc:focus-within),
.nav_pc:has(.gnb_pc:hover) {
	background-color: var(--gnb-bg-color-active);
}

.head_pc:has(.gnb_pc:focus-within)::after,
.head_pc:has(.gnb_pc:hover)::after {
	position: absolute;
	top: var(--head-height);
	left: 0;
	right: 0;
	height: 1px;
	background: #ddd;
	pointer-events: none;
	content: "";
}

.nav_pc:has(.gnb_pc:focus-within) .cont_submenu,
.nav_pc:has(.gnb_pc:hover) .cont_submenu {
	grid-template-rows: 1fr;
}

.gnb_pc {
	display: inline-flex;
	justify-content: center;
	vertical-align: top;
}

.gnb_pc .link_depth1[target=_blank]:after {
	font-size: var(--depth1-ico-target-size);
}

.gnb_pc .link_depth2[target=_blank]:after {
	font-size: var(--depth2-ico-target-size);
}

.gnb_pc .gnb_pc_depth2 {
	overflow: hidden;
	transition: background-color var(--depth2-bg-duration);
}

.gnb_pc .gnb_pc_depth2 > li:first-child {
	padding-top: var(--depth2-fst-padding);
}

.gnb_pc .gnb_pc_depth2 > li:last-child {
	padding-bottom: var(--depth2-lst-padding);
}

.gnb_pc .cont_submenu {
	flex: 1;
	min-height: 0;
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows var(--gnb-panel-show-duration);
}

.gnb_pc > li {
	flex: 1 0 var(--depth1-basis);
	display: flex;
	flex-direction: column;
	position: relative;
	transition: all 0.4s;
}

.gnb_pc .link_depth1.on,
.gnb_pc > li:focus-within .link_depth1,
.gnb_pc > li:hover .link_depth1 {
	color: var(--depth1-color-active);
}

.gnb_pc > li:focus-within .link_depth1::before,
.gnb_pc > li:hover .link_depth1::before {
	transform: scaleX(1);
}

.gnb_pc .link_depth1 {
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--depth1-gap);
	position: relative;
	z-index: 10;
	height: var(--head-height);
	padding: var(--depth1-padding);
	font-size: var(--depth1-size);
	line-height: var(--depth1-line-height);
	color: var(--depth1-color);
	font-weight: var(--depth1-weight);
	transition: color var(--depth1-color-duration);
}

.gnb_pc .link_depth1::before {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -10;
	width: calc(100% - 54px);
	height: 10px;
	background: #C9E4FF;
	border-radius: 100px;
	translate: -50% calc(-50% + 10px);
	transform: scaleX(0);
	transition: all 0.3s;
	content: "";
}

.gnb_pc > li:focus-within .gnb_pc_depth2,
.gnb_pc > li:hover .gnb_pc_depth2 {
	background-color: var(--depth2-bg-hover, #FFF);
}

.gnb_pc .link_depth2 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--depth2-gap);
	padding: var(--depth2-padding);
	font-weight: var(--depth2-weight);
	font-size: var(--depth2-size);
	line-height: var(--depth2-line-height);
	color: var(--depth2-color);
	transition: color var(--depth2-color-duration);
}

.gnb_pc .link_depth2.on,
.gnb_pc .link_depth2:focus,
.gnb_pc .link_depth2:hover {
	font-weight: var(--depth2-weight-active);
	color: var(--depth2-color-active);
}

.footer {
	padding: 30px 0 40px;
	background: #F2F2F2;
	word-break: keep-all;
}

.footer .more_site {
	padding-top: 33px;
	text-align: center;
}

.footer .more_site .link_more_site {
	display: inline-block;
	width: 100px;
	vertical-align: top;
}

.footer .more_site .link_more_site img {
	width: 100%;
}

.footer .wrap_relate {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.footer .group_relate {
	--radius: 5px;
	position: relative;
	width: 100%;
	max-width: 230px;
}

.footer .group_relate .link_relate {
	display: flex;
	gap: 5px;
	justify-content: space-between;
	align-items: center;
	height: 40px;
	padding: 0 15px;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 15px;
	line-height: 43px;
	color: #fff;
	background: #545454;
}

.footer .group_relate .link_relate[aria-expanded=true] + ul {
	display: block;
}

.footer .group_relate .link_relate[aria-expanded=true] i {
	transform: rotate(180deg);
}

.footer .group_relate .list_relate {
	display: none;
	overflow: auto;
	position: absolute;
	bottom: calc(100% + 5px);
	left: 0;
	right: 0;
	max-height: 195px;
	border-radius: var(--radius);
	background: #545454;
}

.footer .group_relate .list_relate::-webkit-scrollbar {
	width: 8px;
} /* 스크롤 바 전체 너비 */
.footer .group_relate .list_relate::-webkit-scrollbar-track {
	background-color: #ddd;
} /* 전체 게이지 */
.footer .group_relate .list_relate::-webkit-scrollbar-thumb {
	background-color: #7a7a7a;
	border-radius: 4px;
} /* 현재 게이지 */
.footer .group_relate .list_relate li + li {
	position: relative;
}

.footer .group_relate .list_relate li + li::before {
	position: absolute;
	top: 0;
	left: 20px;
	right: 20px;
	border-top: 1px dashed var(--d-color-white-30);
	content: "";
}

.footer .group_relate .list_relate .link_txt {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	padding: 9px 20px;
	font-size: 14px;
	line-height: 18px;
	color: #fff;
	transition: all 0.3s;
	text-align: left;
}

.footer .group_relate .list_relate .link_txt i {
	margin-left: auto;
	line-height: inherit;
}

.footer .box_info {
	text-align: center;
}

.footer .link_logo_foot {
	display: inline-block;
	vertical-align: top;
}

.footer .link_logo_foot .img_logo {
	vertical-align: top;
}

.footer .area_site_info {
	padding-top: 11px;
}

.footer .info_addr {
	font-style: normal;
}

.footer .info_addr .txt_desc {
	font-size: 12px;
	line-height: 15px;
	color: #121212;
}

.footer .info_addr .txt_desc + .txt_desc {
	padding-top: 3px;
}

.footer .info_addr .txt_desc .txt_tit {
	font-weight: 600;
}

.footer .txt_copy {
	padding-top: 10px;
	font-size: 12px;
	line-height: 15px;
	color: rgba(18, 18, 18, 0.4);
}

@media only screen and (min-width: 1200px) {
	.footer {
		padding: 40px 0;
	}
	.footer .inner_foot {
		display: flex;
		align-items: flex-start;
	}
	.footer .box_info {
		display: flex;
		gap: 70px;
		align-items: flex-start;
		text-align: left;
	}
	.footer .area_site_info {
		padding-top: 0;
	}
	.footer .link_logo_foot .img_logo {
		width: 168px;
	}
	.footer .info_addr .txt_desc {
		font-size: 16px;
		line-height: 21px;
	}
	.footer .txt_copy {
		padding-top: 13px;
		font-size: 16px;
		line-height: 21px;
	}
	.footer .more_site {
		display: flex;
		align-items: center;
		gap: 18px;
		margin-left: auto;
		padding-top: 0;
	}
	.footer .group_relate {
		--radius: 7px;
		width: 180px;
	}
	.footer .group_relate .list_relate {
		bottom: calc(100% + 10px);
		max-height: 245px;
	}
	.footer .group_relate .link_relate {
		height: 50px;
		padding: 0 20px;
		font-size: 18px;
		line-height: 25px;
	}
	.footer .group_relate .list_relate .link_txt {
		font-size: 16px;
		line-height: 19px;
	}
	.footer .group_relate .list_relate .link_txt:hover, .footer .group_relate .list_relate .link_txt:focus {
		color: #fff;
		background-color: rgba(0, 0, 0, 0.5);
	}
}