@charset "UTF-8";
/* 서브 - sub css */
/* ===== 공통 안내 문구 UI ===== */
.info_desc_comm {
	display: flex;
	gap: 5px;
	align-items: flex-start;
	margin: 10px 0;
	padding: 11px 14px 10px;
	border: 1px solid #ddd;
	border-radius: 10px;
	font-size: 14px;
	line-height: 21px;
	color: #121212;
	font-weight: 500;
}

.info_desc_comm > i {
	line-height: inherit;
}

.info_desc_comm.gray {
	border-color: #ddd;
	background: #fafafa;
}

.info_desc_comm.info {
	border-color: #E1E7F5;
	background: #F8F9FF;
}

.info_desc_comm.danger {
	border-color: #F8D7DA;
	background: #FFF1F2;
}

.info_desc_comm.success {
	border-color: #D4EDDA;
	background: #F4FBF6;
}

.info_desc_comm.warning {
	border-color: #FEEDBF;
	background: #FFF7D5;
}

.info_desc_comm.info .txt_info, .info_desc_comm.info > i {
	color: #023994;
}

.info_desc_comm.danger .txt_info, .info_desc_comm.danger > i {
	color: #9F2A2F;
}

.info_desc_comm.success .txt_info, .info_desc_comm.success > i {
	color: #1E5F2E;
}

.info_desc_comm.warning .txt_info, .info_desc_comm.warning > i {
	color: #817041;
}

@media only screen and (min-width: 1200px) {
	/* ===== 공통 안내 문구 UI ===== */
	.info_desc_comm {
		gap: 8px;
		padding: 13px 16px 12px;
		font-size: 16px;
		line-height: 23px;
	}
}
/* ===== 공통 이미지 뷰 ===== */
.group_img_comm {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	margin: 10px 0;
	text-align: center;
}

.group_img_comm img {
	width: 100%;
	border-radius: 5px 5px 0 0;
}

.group_img_comm figure {
	margin: 0;
}

.group_img_comm figcaption {
	padding: 8px 15px;
	border: 1px solid #ddd;
	border-top: 0;
	border-radius: 0 0 5px 5px;
	font-size: 14px;
	line-height: 19px;
	color: #787878;
	font-weight: 500;
	background: #fafafa;
}

/* 서브 Layout */
.main_cont .inner_sub {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	transition: gap 0.3s;
}

.main_cont .cont_sub {
	flex: 1;
	min-width: 0;
	padding-bottom: 40px;
}

.main_cont .content {
	padding: 20px 0;
}

.main_cont .sub_left_menu {
	display: none;
}

@media only screen and (min-width: 1200px) {
	/* 서브 Layout */
	.main_cont .cont_sub {
		padding-bottom: 80px;
	}
	.main_cont .content {
		padding: 24px 0 30px;
	}
	.main_cont .sub_left_menu {
		display: block;
		flex: none;
		align-self: stretch;
		width: 260px;
		padding: 32px 0 50px;
		transition: width 0.3s;
	}
}
@media only screen and (min-width: 1400px) {
	/* 서브 Layout */
	.main_cont .inner_sub {
		gap: 50px;
	}
	.main_cont .sub_left_menu {
		width: 290px;
	}
}
/* 공통 레이어 팝업 */
.d_layer_comm, dialog {
	--layer-width: 650px;
	--layer-radius: 5px;
	--layer-head-bg-color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.6);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}

.d_layer_comm.on, dialog[open] {
	opacity: 1;
	visibility: visible;
}

dialog::backdrop {
	display: none;
}

.d_layer_comm .d_inner_layer, dialog .d_inner_layer {
	display: flex;
	flex-direction: column;
	position: relative;
	max-width: calc(100% - 40px);
	max-height: calc(100% - 60px);
	width: var(--layer-width);
}

.d_layer_comm .d_layer_body, dialog .d_layer_body {
	border-radius: 0 0 var(--layer-radius) var(--layer-radius);
	background: #fff;
}

.d_layer_comm .d_layer_head, dialog .d_layer_head {
	flex: none;
	border-radius: var(--layer-radius) var(--layer-radius) 0 0;
	background: var(--layer-head-bg-color);
}

.d_layer_comm.sm, dialog.sm {
	--layer-width: 340px;
}

.d_layer_comm.md, dialog.md {
	--layer-width: 520px;
}

.d_layer_comm.lg, dialog.lg {
	--layer-width: 900px;
}

.d_layer_comm.xlg, dialog.xlg {
	--layer-width: 1350px;
}

.d_layer_comm .d_layer_head > .d_head_txt {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 15px 65px 15px 20px;
	font-size: 16px;
	line-height: 20px;
	color: #fff;
	text-align: left;
}

.d_layer_comm .d_layer_head > .d_head_txt i {
	font-size: 1em;
}

.d_layer_comm .d_layer_body {
	flex: 1;
	overflow: auto;
	padding: 20px;
}

.d_layer_comm .d_layer_body > .d_tit_layer {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	padding-bottom: 20px;
	font-weight: 800;
	font-size: 22px;
	line-height: 27px;
	color: #000;
}

.d_layer_comm .d_list li {
	font-size: 14px;
	line-height: 19px;
}

.d_layer_comm .d_btn_close {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	right: 0;
	width: 55px;
	height: 50px;
	border: 0;
	font-size: 28px;
	color: #fff;
	background: none;
	cursor: pointer;
}

@media only screen and (min-width: 1200px) {
	/* 공통 레이어 팝업 */
	.d_layer_comm .d_layer_body {
		padding: 30px;
	}
	.d_layer_comm .d_layer_head > .d_head_txt {
		padding: 15px 69px 15px 30px;
		font-size: 20px;
		line-height: 24px;
	}
	.d_layer_comm .d_layer_body > .d_tit_layer {
		font-size: 26px;
		line-height: 29px;
	}
	.d_layer_comm .d_list li {
		font-size: 16px;
		line-height: 22px;
	}
	.d_layer_comm .d_btn_close {
		width: 59px;
		height: 54px;
	}
}
/* 공유하기 레이어 팝업 */
.layer_share {
	--layer-radius: 5px;
}

.layer_share .group_sns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 5px;
	padding: 5px 0;
}

.layer_share .link_ico {
	overflow: hidden;
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.layer_share .img_share {
	width: 100%;
}

@media only screen and (min-width: 1200px) {
	/* 공유하기 레이어 팝업 */
	.layer_share {
		--layer-radius: 10px;
	}
	.layer_share .group_sns {
		gap: 10px;
	}
	.layer_share .link_ico {
		width: 48px;
		height: 48px;
	}
}
/* 서브 상단 */
.area_feature {
	height: 170px;
	background: url(/home/mayor/images/sub/img_bg_subvisual.jpg) no-repeat right center/cover;
}

.area_feature .inner_comm {
	position: relative;
	z-index: 20;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.area_feature .group_headline {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.area_feature .tit_txt {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 26px;
	line-height: 32px;
	font-weight: 800;
	color: #fff;
}

.head_sub {
	position: relative;
	padding: 19px 0 14px;
}

.head_sub .tit_txt {
	font-size: 21px;
	line-height: 26px;
	color: #111;
}

.list_breadcrumb {
	display: flex;
	flex-wrap: wrap;
	padding-top: 10px;
}

.list_breadcrumb li {
	display: flex;
	align-items: center;
	font-size: 11px;
	line-height: 16px;
	color: #909090;
}

.list_breadcrumb li + li::before {
	margin: 0 5px;
	color: currentColor;
	font-family: "Font Awesome 6 Pro", sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: auto;
	content: "\f105";
}

.list_breadcrumb .link_depth {
	color: inherit;
}

.head_sub .group_etc {
	display: flex;
	gap: 10px;
	position: absolute;
	top: 20px;
	right: 0;
}

.head_sub .group_etc .link_etc {
	display: none;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 5px;
	font-size: 14px;
	color: #fff;
}

.head_sub .group_etc .link_share {
	display: flex;
	background: var(--d-color-primary-100);
}

.head_sub .group_etc .link_print {
	background: var(--d-color-secondary-100);
}

.head_sub .group_etc .link_word {
	background: #9D9D9D;
}

@media only screen and (min-width: 1200px) {
	/* 서브 상단 */
	.area_feature {
		height: 250px;
	}
	.area_feature .tit_txt {
		font-size: 38px;
		line-height: 45px;
	}
	.head_sub {
		padding: 41px 0 25px;
	}
	.list_breadcrumb {
		padding-top: 17px;
	}
	.list_breadcrumb li {
		font-size: 13px;
		line-height: 22px;
	}
	.list_breadcrumb li + li::before {
		margin: 0 8px;
	}
	.list_breadcrumb .link_depth:not(.link_home, [aria-current]):hover,
	.list_breadcrumb .link_depth:not(.link_home, [aria-current]):focus {
		text-decoration: underline;
		text-underline-offset: 3px;
	}
	.head_sub .tit_txt {
		font-size: 31px;
		line-height: 36px;
	}
	.head_sub .group_etc {
		top: 74px;
	}
	.head_sub .group_etc .link_etc {
		display: flex;
		width: 36px;
		height: 36px;
		border-radius: 10px;
		font-size: 17px;
	}
}
/* 사이트맵 */
.area_sitemap .list_depth1 {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 15px;
	padding: 10px 0 30px;
	font-size: 17px;
	line-height: 24px;
	color: #333;
	transition: linear 0.3s;
}

.area_sitemap .list_depth1 .link_depth1 {
	display: block;
	padding: 13px 10px 12px;
	border: 1px solid #ddd;
	font-size: 16px;
	line-height: 19px;
	font-weight: 500;
	color: #545454;
	text-align: center;
	text-decoration: underline 1px solid;
	text-decoration-color: transparent;
	transition: color 0.2s ease, text-decoration-color 0.2s ease, border-color 0.2s ease;
}

.area_sitemap .list_depth1 .link_depth1:hover,
.area_sitemap .list_depth1 .link_depth1:focus {
	border-color: var(--d-color-secondary-100);
	color: var(--d-color-secondary-100);
	text-decoration-color: currentColor;
}

.area_sitemap .list_depth2 {
	padding: 10px 0 15px;
}

.area_sitemap .link_depth2 {
	position: relative;
	display: inline-block;
	padding: 5px 0 6px 15px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	color: #545454;
	text-decoration: underline 1px solid;
	text-decoration-color: transparent;
	transition: text-decoration-color 0.2s ease;
}

.area_sitemap .link_depth2:hover,
.area_sitemap .link_depth2:focus {
	color: var(--d-color-secondary-100);
	text-decoration-color: currentColor;
}

.area_sitemap .link_depth2::before {
	position: absolute;
	left: 6px;
	top: 14px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: currentColor;
	content: "";
}

.area_sitemap [class*=_depth][target=_blank]:after {
	padding-left: 5px;
	font-family: "Font Awesome 6 Pro", sans-serif;
	color: #747474;
	-webkit-font-smoothing: antialiased;
	text-rendering: auto;
	color: currentColor;
	content: "\f08e";
}

@media only screen and (min-width: 768px) {
	.area_sitemap .list_depth1 {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}
}
@media only screen and (min-width: 1200px) {
	/* 사이트맵 */
	.area_sitemap .list_depth1 {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 20px;
	}
	.area_sitemap .list_depth1 .link_depth1 {
		padding: 19px 15px 18px;
	}
}
.content h4 {
	font-size: 22px;
	line-height: 30px;
	color: #333;
	font-weight: 700;
}

.content h4::before {
	display: inline-block;
	margin: 0 8px 0 0;
	width: 24px;
	height: 16px;
	background: url(/home/mayor/images/common/img_bullet4.png) 0 0 no-repeat;
	background-size: cover;
	content: "";
}

.content h4::after {
	content: normal;
}

.content h5 {
	font-size: 20px;
	line-height: 30px;
	font-weight: 700;
	color: #006D3A;
}

.content h6 {
	font-size: 18px;
	font-weight: 500;
	color: #4a4a4a;
	padding: 9px 0 10px 24px;
	position: relative;
	overflow: hidden;
}

.content h6:before {
	display: block;
	content: "";
	border: #5f9b15 solid 6px;
	border-radius: 20px;
	width: 5px;
	height: 5px;
	position: absolute;
	left: 0;
	top: 10px;
}

/* group_headline 내 d_tab_comm.type1 오버라이딩*/
@media only screen and (max-width: 1199px) {
	.group_headline .d_tab_comm.type1 .d_tab_list:before {
		top: 0;
	}
	.group_headline .d_tab_comm.type1 .d_tit_tab {
		border-radius: 10px 10px 0 0;
		background-color: var(--d-color-secondary-100);
	}
	.group_headline .d_tab_comm.type1 .d_tab_list .d_tab[aria-selected=true],
	.group_headline .d_tab_comm.type1 .d_tab_list .d_tab:focus-visible,
	.group_headline .d_tab_comm.type1 .d_tab_list .d_tab:hover {
		background-color: var(--d-color-secondary-80);
	}
}
@media only screen and (min-width: 1200px) {
	.group_headline .d_tab_comm.type1 .d_tab_list {
		gap: 0;
	}
	.group_headline .d_tab_comm.type1 .d_tab_list .d_tab {
		border-radius: 0;
	}
	.group_headline .d_tab_comm.type1 .d_tab_list li:first-child .d_tab {
		border-top-left-radius: 10px;
	}
	.group_headline .d_tab_comm.type1 .d_tab_list li:last-child .d_tab {
		border-top-right-radius: 10px;
	}
	.group_headline .d_tab_comm.type1 .d_tab_list .d_tab[aria-selected=true] {
		background-color: var(--d-color-secondary-100);
	}
	.group_headline .d_tab_comm.type1 .d_tab_list .d_tab:hover,
	.group_headline .d_tab_comm.type1 .d_tab_list .d_tab:focus-visible {
		background-color: var(--d-color-secondary-80);
		opacity: 1;
	}
}
/* 3depth 탭메뉴 .d_tab_comm.type6 */
@media only screen and (max-width: 1199px) {
	.d_tab_comm.type6 .d_tit_tab {
		color: #fff;
		background-color: var(--d-color-tertiary-80);
	}
	.d_tab_comm.type6 .d_tab_list {
		border: 1px solid #ddd;
		border-radius: 5px;
		overflow: hidden;
	}
	.d_tab_comm.type6 .d_tab_list li + li {
		border-top: 1px solid #ddd;
	}
	.d_tab_comm.type6 .d_tab_list .d_tab[target=_blank]:after {
		padding-left: 5px;
		font-family: "Font Awesome 6 Pro", sans-serif;
		color: #747474;
		-webkit-font-smoothing: antialiased;
		text-rendering: auto;
		color: currentColor;
		content: "\f08e";
	}
	.d_tab_comm.type6 .d_tab_list .d_tab[aria-selected=true],
	.d_tab_comm.type6 .d_tab_list .d_tab:focus-visible,
	.d_tab_comm.type6 .d_tab_list .d_tab:hover {
		color: #fff;
		background-color: var(--d-color-tertiary-80);
	}
}
@media only screen and (min-width: 1200px) {
	.d_tab_comm.type6 .d_tab_list .d_tab {
		border: 1px solid #ddd;
	}
	.d_tab_comm.type6 .d_tab_list .d_tab[target=_blank]:after {
		padding-left: 5px;
		font-family: "Font Awesome 6 Pro", sans-serif;
		color: #747474;
		-webkit-font-smoothing: antialiased;
		text-rendering: auto;
		color: currentColor;
		content: "\f08e";
	}
	.d_tab_comm.type6 .d_tab_list .d_tab[aria-selected=true] {
		border-color: var(--d-color-tertiary-100);
		font-weight: 700;
		color: #333;
		background-color: var(--d-color-tertiary-5);
	}
	.d_tab_comm.type6 .d_tab_list .d_tab:hover,
	.d_tab_comm.type6 .d_tab_list .d_tab:focus-visible {
		border-color: var(--d-color-tertiary-80);
		background-color: var(--d-color-tertiary-5);
		opacity: 1;
	}
}
/* 4depth 탭메뉴 .d_tab_comm.type3 */
@media only screen and (max-width: 1199px) {
	.d_tab_comm.type3 .d_tit_tab {
		border: 1px solid var(--d-color-tertiary-100);
		border-radius: 50px;
		color: var(--d-color-tertiary-100);
		background-color: var(--d-color-tertiary-5);
	}
	.d_tab_comm.type3 .d_tab_list .d_tab[aria-selected=true] {
		font-weight: 700;
		color: var(--d-color-tertiary-100);
		background-color: var(--d-color-tertiary-5);
	}
	.d_tab_comm.type3 .d_tab_list .d_tab:focus-visible,
	.d_tab_comm.type3 .d_tab_list .d_tab:hover {
		font-weight: 700;
		color: var(--d-color-tertiary-100);
	}
	.d_tab_comm.type3 .d_tab_list .d_tab[aria-selected=true],
	.d_tab_comm.type3 .d_tab_list .d_tab:focus-visible,
	.d_tab_comm.type3 .d_tab_list .d_tab:hover {
		border: 1px solid var(--d-color-tertiary-100);
	}
}
@media only screen and (min-width: 1200px) {
	.d_tab_comm.type3 .d_tab_list {
		display: flex;
	}
	.d_tab_comm.type3 .d_tab_list li {
		position: relative;
		padding: 0 25px;
	}
	.d_tab_comm.type3 .d_tab_list li + li::before {
		position: absolute;
		top: 15px;
		bottom: 15px;
		left: 0;
		width: 1px;
		background-color: #ddd;
		content: "";
	}
	.d_tab_comm.type3 .d_tab_list .d_tab:after {
		height: 2px;
		background-color: var(--d-color-tertiary-100);
	}
}
/* 통합 캘린더 레이아웃 */
.d_cal_layout {
	--day-border-color: #ddd;
	--day-selected-color: #0080FF;
	--day-selected-bg: transparent;
	--day-inactive-color: #e6e6e6;
	--day-inactive-opacity: .6;
	--days-color: var(--d-color-black-80);
	--day-sunday-color: #FF4848;
	--day-holiday-color: #FF4848;
	--day-saturday-color: #0080FF;
	--cal-head-height: 50px;
	--day-num-color: var(--d-color-black-80);
	--day-font-size: 14px;
	--day-line-height: 20px;
	--day-font-color: #575757;
	--note-txt-color: var(--d-color-black-70);
	--list-bullet-size: 4px;
	--d-point-size: 16px;
	--d-color-state1: var(--d-color-green-100);
	--d-color-state2: var(--d-color-navy-100);
	--d-color-state3: var(--d-color-black-100);
	--d-color-state4: var(--d-color-red-100);
}

.d_color_type1 {
	color: var(--d-color-state1);
}

.d_color_type2 {
	color: var(--d-color-state2);
}

.d_color_type3 {
	color: var(--d-color-state3);
}

.d_color_type4 {
	color: var(--d-color-state4);
}

.d_bg_type1 {
	background: var(--d-color-state1);
}

.d_bg_type2 {
	background: var(--d-color-state2);
}

.d_bg_type3 {
	background: var(--d-color-state3);
}

.d_bg_type4 {
	background: var(--d-color-state4);
}

/* 통합 캘린더 aside */
.d_cal_aside {
	position: relative;
	margin-top: 45px;
}

.d_cal_aside .list_infotime {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	padding-top: 8px;
}

.d_cal_aside .list_infotime .btn_time {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 50px;
	border: 1px solid #CBCBCB;
	border-radius: 5px;
	font-size: 12px;
	line-height: 15px;
	color: var(--d-color-black-80);
	font-weight: 500;
}

.d_cal_aside .list_infotime .txt_desc {
	display: block;
}

.d_cal_aside .list_infotime .selected .btn_time {
	position: relative;
}

.d_cal_aside .list_infotime .selected .btn_time::after {
	position: absolute;
	inset: -1px;
	border: 2px solid var(--day-selected-color);
	border-radius: inherit;
	pointer-events: none;
	content: "";
}

.d_cal_aside .list_infotime .disabled {
	background: var(--day-inactive-color);
	opacity: var(--day-inactive-opacity);
}

.d_cal_aside .list_selected_info {
	margin-top: 8px;
	padding: 0 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
}

.d_cal_aside .list_selected_info .item_info {
	display: flex;
	gap: 20px;
	padding: 10px 0;
}

.d_cal_aside .list_selected_info .item_info + .item_info {
	position: relative;
}

.d_cal_aside .list_selected_info .item_info + .item_info::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: repeating-linear-gradient(to right, #c1c1c1 0, #c1c1c1 3px, transparent 3px, transparent calc(3px + 3px));
	content: "";
}

.d_cal_aside .list_selected_info dt, .d_cal_aside .list_selected_info dd {
	font-size: 14px;
	line-height: 19px;
}

.d_cal_aside .list_selected_info dt {
	color: var(--d-color-navy-90);
	font-weight: 700;
}

.d_cal_aside .list_selected_info dd {
	color: var(--d-color-black-100);
	font-weight: 500;
}

.d_cal_aside .d_list_unite_note {
	justify-content: flex-end;
	padding-top: 15px;
}

.d_cal_aside:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: repeating-linear-gradient(to right, var(--d-color-black-50) 0, var(--d-color-black-50) 3px, transparent 3px, transparent calc(3px + 3px));
	content: "";
}

.d_cal_aside .tit_aside {
	display: block;
	padding-top: 40px;
	border-radius: 5px;
	font-weight: 800;
	font-size: 18px;
	line-height: 25px;
	color: #000;
	text-align: center;
}

.d_cal_aside .tit_aside ~ .tit_aside {
	padding-top: 20px;
}

.d_cal_aside .wrap_data {
	--column2-wid: 41%;
	margin-top: 20px;
	border-top: 2px solid var(--d-color-black-60);
}

.d_cal_aside .wrap_data .head_list {
	display: flex;
	font-size: 14px;
	line-height: 18px;
	color: #232323;
	text-align: center;
}

.d_cal_aside .wrap_data .head_list > div {
	padding: 10px 5px;
	background: #FAFAFA;
}

.d_cal_aside .wrap_data .head_list > div:first-child {
	flex: 1;
}

.d_cal_aside .wrap_data .head_list > div + div {
	width: var(--column2-wid);
	border-left: 1px solid #ddd;
}

.d_cal_aside .wrap_data .list_body {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #ddd;
	font-size: 14px;
	line-height: 18px;
	color: #464646;
	text-align: center;
}

.d_cal_aside .wrap_data .list_body .item_info {
	display: flex;
	width: 100%;
}

.d_cal_aside .wrap_data .list_body dt,
.d_cal_aside .wrap_data .list_body dd {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 5px;
	border-top: 1px solid #ddd;
}

.d_cal_aside .wrap_data .list_body dt {
	flex: 1;
}

.d_cal_aside .wrap_data .list_body dd {
	width: var(--column2-wid);
	border-left: 1px solid #ddd;
	font-weight: 700;
}

.d_cal_aside .wrap_data .list_body dd.blue {
	color: #0080FF;
}

.d_cal_aside .wrap_data .list_body dd.green {
	color: #239A00;
}

.d_cal_aside .wrap_data .list_body dd.black {
	color: #000;
}

.d_cal_aside .wrap_data .list_body dt:before,
.d_cal_aside .wrap_data .list_body dd:before {
	position: absolute;
	overflow: hidden;
	clip: rect(0 0 0 0);
	width: 1px;
	height: 1px;
	margin: -1px;
	content: attr(data-label);
}

.d_cal_aside .box_etc {
	padding: 15px;
	margin-top: 20px;
	border-radius: 5px;
	border: 1px solid #ddd;
	background: #fafafa;
	text-align: center;
	word-break: keep-all;
	word-wrap: break-word;
}

.d_cal_aside .box_etc .btn {
	background-color: #464646;
}

.d_cal_aside .box_etc p {
	padding-top: 10px;
	font-size: 14px;
	line-height: 18px;
	color: #616161;
}

.d_cal_aside .btn_groups {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	padding-top: 20px;
}

.d_cal_aside .btn_groups .btn_etc {
	flex: 1 1 230px;
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
	padding: 14px 10px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	color: #fff;
}

.d_cal_aside .btn_groups .btn_etc.blue {
	background-color: #1941AB;
}

.d_cal_aside .btn_groups .btn_etc.green {
	background-color: #22a628;
}

/* 통합 캘린더 - 헤더 */
.d_cal_unite_head {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	height: var(--cal-head-height);
}

.d_cal_unite_head .d_inner_head {
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
}

.d_cal_unite_head .tit_cal {
	font-size: 22px;
	line-height: 30px;
	color: #000;
}

.d_cal_unite_head [class^=btn_] {
	display: flex;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid #ddd;
	font-size: 16px;
	color: var(--d-color-black-100);
	background: #fff;
}

.d_cal_unite_head [class^=btn_] i {
	margin: auto;
}

.d_cal_unite_head [class^=btn_]:hover,
.d_cal_unite_head [class^=btn_]:focus-visible {
	border: 1px solid transparent;
	color: #fff;
	background: #000;
}

.d_cal_unite_head .btn_prev {
	order: -1;
}

/* 통합 캘린더 - 색상 관련 */
.d_cal_unite_body.sun_c_apply .txt_days:first-child,
.d_cal_unite_body.sun_c_apply .cal_day:nth-child(7n+1) .num_day {
	color: var(--day-sunday-color);
} /* 일요일 색상 */
.d_cal_unite_body.sat_c_apply .txt_days:last-child,
.d_cal_unite_body.sat_c_apply .cal_day:nth-child(7n) .num_day {
	color: var(--day-saturday-color);
} /* 토요일 색상 */
.d_cal_unite_body .cal_day.selected {
	background: var(--day-selected-bg);
}

.d_cal_unite_body .cal_day.selected:after {
	position: absolute;
	inset: -1px;
	border: 2px solid var(--day-selected-color);
	pointer-events: none;
	content: "";
} /* 선택됨 */
.d_cal_unite_body .cal_month .today .head_day .num_day {
	background: #000;
	color: #fff;
} /* 오늘 */
.d_cal_unite_body .cal_month .holiday .head_day .num_day,
.d_cal_unite_body .cal_month .holiday .head_day .txt_day {
	color: var(--day-holiday-color);
} /* 휴일 색상 (숫자만 빨간색) */
/* 통합 캘린더 - 접근성 */
.d_cal_unite_body .cal_month .today:before {
	position: absolute;
	clip-path: rect(0 0 0 0);
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	content: "오늘";
} /* 오늘 */
.d_cal_unite_body .num_day:before {
	order: 1;
	position: absolute;
	left: 100%;
	margin-left: 5px;
	white-space: nowrap;
} /* 요일 */
.d_cal_unite_body .cal_day:nth-child(7n+1) .num_day:before {
	content: " 일요일";
}

.d_cal_unite_body .cal_day:nth-child(7n+2) .num_day:before {
	content: " 월요일";
}

.d_cal_unite_body .cal_day:nth-child(7n+3) .num_day:before {
	content: " 화요일";
}

.d_cal_unite_body .cal_day:nth-child(7n+4) .num_day:before {
	content: " 수요일";
}

.d_cal_unite_body .cal_day:nth-child(7n+5) .num_day:before {
	content: " 목요일";
}

.d_cal_unite_body .cal_day:nth-child(7n+6) .num_day:before {
	content: " 금요일";
}

.d_cal_unite_body .cal_day:nth-child(7n) .num_day:before {
	content: " 토요일";
}

.d_cal_unite_body .cal_day.selected .num_day:after {
	order: 2;
	position: absolute;
	clip-path: rect(0 0 0 0);
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	content: " 선택됨";
} /* 선택됨 */
/* 통합 캘린더 - 요일 */
.d_cal_unite_body .cal_days {
	display: none;
}

/* 통합 캘린더 - 날짜 */
.d_cal_unite_body .cal_month {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	align-items: stretch;
	border-left: 1px solid var(--day-border-color);
	border-top: 1px solid var(--day-border-color);
}

.d_cal_unite_body .cal_day {
	position: relative;
	min-width: 0;
	max-width: 100%;
	padding: 10px;
	border-right: 1px solid var(--day-border-color);
	border-bottom: 1px solid var(--day-border-color);
	background: var(--cal-bg, #fff);
	box-sizing: border-box;
}

.d_cal_unite_body .cal_day.empty {
	display: none;
}

.d_cal_unite_body .cal_day.disabled {
	background: var(--day-inactive-color);
	opacity: var(--day-inactive-opacity);
} /* 시각적으로만 비활성 */
.d_cal_unite_body .cal_day.disabled .head_day::before {
	position: absolute;
	clip-path: rect(0 0 0 0);
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	content: "선택 불가";
}

.d_cal_unite_body .cal_month .today .head_day .num_day:before {
	color: var(--day-font-color);
}

.d_cal_unite_body.day_select .cal_day:not(.empty) {
	cursor: pointer;
}

.d_cal_unite_body .head_day {
	display: flex;
	overflow: hidden;
}

.d_cal_unite_body .num_day {
	display: inline-flex;
	justify-content: center;
	float: right;
	position: relative;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	font-size: 14px;
	line-height: 20px;
	color: var(--day-num-color);
	font-weight: 700;
}

.d_cal_unite_body .cal_day:not(.today) .num_day {
	justify-content: flex-start;
	width: auto;
}

.d_cal_unite_body .txt_day {
	flex: 1;
	min-width: 0;
	display: block;
	overflow: hidden;
	padding-left: 50px;
	font-size: 13px;
	line-height: 20px;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-align: right;
}

/* 통합 캘린더 - 해당 날짜의 컨텐츠 */
.d_cal_unite_body .contents_day {
	padding-top: 5px;
	font-size: var(--day-font-size);
	line-height: var(--day-line-height);
	color: var(--day-font-color);
	font-weight: 500;
	word-break: keep-all;
	word-wrap: break-word;
}

.d_cal_unite_body .contents_day .list_txt li {
	position: relative;
	padding-left: 8px;
}

.d_cal_unite_body [class*=line_type] {
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: var(--list-line-clamp);
	-webkit-box-orient: vertical;
}

.d_cal_unite_body .line_type1 {
	--list-line-clamp: 1;
}

.d_cal_unite_body .line_type2 {
	--list-line-clamp: 2;
}

.d_cal_unite_body .line_type3 {
	--list-line-clamp: 3;
}

.d_cal_unite_body .line_type4 {
	--list-line-clamp: 4;
}

.d_cal_unite_body .contents_day .list_txt li:before {
	position: absolute;
	top: calc(var(--day-line-height) / 2 - var(--list-bullet-size) / 2);
	left: 0;
	width: var(--list-bullet-size);
	height: var(--list-bullet-size);
	border-radius: 50%;
	background: currentColor;
	content: "";
}

.d_cal_unite_body .contents_day .list_txt li + li {
	margin-top: 1px;
}

.d_cal_unite_body .contents_day .list_txt .btn_desc {
	display: block;
	margin: 8px 0 10px;
	padding: 5px 10px;
	border-radius: 5px;
	font-size: 12px;
	line-height: 16px;
	color: #fff;
	background: #000;
	text-align: center;
}

.d_cal_unite_body .contents_day .list_txt li:last-child .btn_desc {
	margin-bottom: 0;
}

.d_cal_unite_body .contents_day .list_txt .d_point {
	margin-top: calc(var(--day-line-height) / 2 - var(--d-point-size) / 2);
}

.d_cal_unite_body .item_tooltip {
	position: relative;
	margin-top: 4px;
	cursor: pointer;
	word-break: break-all;
}

.d_cal_unite_body .item_tooltip:first-child {
	margin-top: 0;
}

.d_cal_unite_body .item_tooltip:hover .tooltip_box, .d_cal_unite_body .item_tooltip:focus-visible .tooltip_box {
	display: block;
}

.d_cal_unite_body .tooltip_box {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	z-index: 10;
	width: max-content;
	max-width: 270px;
	padding: 7px 10px 8px 10px;
	border-radius: 4px;
	font-size: 14px;
	line-height: 21px;
	color: #fff;
	font-weight: 500;
	background: rgba(0, 0, 0, 0.6);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.d_cal_unite_body .item_tooltip .d_point {
	margin-top: calc(var(--day-line-height) / 2 - var(--d-point-size) / 2);
}

.d_cal_unite .d_group_point {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
}

.d_cal_unite .d_point {
	display: inline-block;
	overflow: hidden;
	width: var(--d-point-size);
	height: var(--d-point-size);
	border-radius: 50%;
	font-size: 1px;
	line-height: 0;
	color: transparent;
	vertical-align: top;
}

/* 통합 캘린더 - 범례 정보 */
.d_cal_unite_note_info {
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: wrap;
	align-items: center;
	row-gap: 10px;
	padding-top: 20px;
}

.d_cal_unite_note_info .d_txt_info {
	width: 100%;
	margin-top: 5px;
	font-size: 14px;
	line-height: 19px;
	color: #808080;
	font-weight: 600;
	letter-spacing: -0.03em;
}

.d_box_state_info {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	background: #f7f7f7;
}

.d_item_state {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 14px;
	line-height: 19px;
	color: #666;
	font-weight: 700;
}

.d_item_state .shape_circle {
	width: 16px;
	height: 16px;
	border-radius: 50%;
}

.d_item_state .shape_square {
	padding: 4px 8px;
	border-radius: 4px;
	color: #fff;
}

/* 통합 캘린더 - default 범례 */
.d_list_unite_note {
	display: flex;
	gap: 5px 15px;
	flex-wrap: wrap;
	padding-left: 10px;
}

.d_list_unite_note li {
	display: flex;
	align-items: center;
	font-size: 14px;
	line-height: 20px;
	color: var(--note-txt-color);
	font-weight: 500;
	letter-spacing: -0.03em;
}

.d_list_unite_note [class*=state] {
	width: 14px;
	height: 14px;
	margin-right: 5px;
}

.d_list_unite_note .state_disabled {
	border: 1px solid var(--day-border-color);
	background: var(--day-inactive-color);
	opacity: var(--day-inactive-opacity);
}

.d_list_unite_note .state_active {
	border: 1px solid var(--day-border-color);
	background: #fff;
}

.d_list_unite_note .state_selected {
	border: 2px solid var(--day-selected-color);
	background: var(--day-selected-bg);
}

@media only screen and (min-width: 768px) {
	/* 통합 캘린더 aside */
	.d_cal_aside .tit_aside {
		font-size: 22px;
		line-height: 28px;
	}
	/* 통합 캘린더 - 접근성 */
	.d_cal_unite_body .num_day:before {
		position: absolute;
		clip-path: rect(0 0 0 0);
		width: 1px;
		height: 1px;
		margin: -1px;
		overflow: hidden;
		left: auto;
	} /* 요일 */
	/* 통합 캘린더 - 요일 */
	.d_cal_unite_body .cal_days {
		display: grid;
		grid-template-columns: repeat(7, 1fr);
		border-top: 2px solid var(--d-color-black-100);
		font-size: 14px;
		line-height: 35px;
		color: var(--days-color);
		font-weight: 700;
		background: var(--cal-bg, #fff);
		text-align: center;
	}
	/* 통합 캘린더 - 날짜 */
	.d_cal_unite_body .cal_month {
		grid-template-columns: repeat(7, 1fr);
	}
	.d_cal_unite_body .cal_day {
		padding: 5px 10px 10px;
		aspect-ratio: var(--day-aspect-ratio);
	}
	.d_cal_unite_body .cal_day.empty {
		display: block;
	}
	.d_cal_unite_body .head_day {
		display: block;
	}
	.d_cal_unite_body .txt_day {
		padding: 0;
		text-align: left;
	}
	/* 통합 캘린더 - 해당 날짜의 컨텐츠 */
	.d_cal_unite_body .contents_day .list_txt {
		background: none;
	}
	.d_cal_unite_body .contents_day .d_group_point {
		justify-content: flex-end;
	}
	.d_cal_unite_body .cal_day:nth-child(7n+6) .tooltip_box,
	.d_cal_unite_body .cal_day:nth-child(7n+7) .tooltip_box {
		left: auto;
		right: 0;
	}
}
@media only screen and (min-width: 1200px) {
	/* 통합 캘린더 레이아웃 */
	.d_cal_layout {
		--layout-column-gap: 50px;
		--cal-head-height: 60px;
		--day-aspect-ratio: 1 / 1;
		display: flex;
		column-gap: var(--layout-column-gap);
	}
	.d_cal_unite {
		flex: 1;
		min-width: 0;
	}
	/* 통합 캘린더 aside */
	.d_cal_aside {
		flex: 0 0 var(--aside-width, 350px);
		margin-top: 0;
		padding-top: var(--cal-head-height);
	}
	.d_cal_aside:before {
		content: normal;
	}
	.d_cal_aside .tit_aside {
		padding-top: 0;
	}
	.d_cal_aside .list_infotime {
		gap: 10px;
		padding-top: 10px;
	}
	.d_cal_aside .list_infotime .btn_time {
		min-height: 55px;
		font-size: 14px;
		line-height: 17px;
	}
	.d_cal_aside .list_selected_info {
		margin-top: 10px;
		padding: 0 14px;
		border-radius: 10px;
	}
	.d_cal_aside .list_selected_info .item_info {
		padding: 12px 0;
	}
	.d_cal_aside .list_selected_info dt, .d_cal_aside .list_selected_info dd {
		font-size: 16px;
		line-height: 21px;
	}
	/* 통합 캘린더 - 헤더 */
	.d_cal_unite_head .d_inner_head {
		gap: 14px;
	}
	.d_cal_unite_head .tit_cal {
		font-size: 26px;
		line-height: 36px;
	}
	.d_cal_unite_head [class^=btn_] {
		width: 34px;
		height: 34px;
	}
	/* 통합 캘린더 - 요일 */
	.d_cal_unite_body .cal_days {
		font-weight: 600;
		font-size: 16px;
		line-height: 46px;
	}
	/* 통합 캘린더 - 날짜 */
	.d_cal_unite_body .cal_month .txt_day {
		padding: 0 5px 0 0;
	}
	.d_cal_unite_body .txt_day {
		font-size: 14px;
	}
	/* 통합 캘린더 - 해당 날짜의 컨텐츠 */
	.d_cal_unite_body .contents_day .list_txt li {
		padding-left: 7px;
	}
	/* 통합 캘린더 - default 범례 */
	.d_list_unite_note {
		column-gap: 20px;
	}
	.d_list_unite_note li:before {
		width: 16px;
		height: 16px;
	}
}
.layer_schd .detail_schd {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 5px 20px;
}

.layer_schd .detail_schd dt {
	font-weight: 600;
	color: #222;
}

/* 박스형태 게시판 목록 */
.d_list_gallery.type2 .link_gallery .d_tit_txt {
	margin-bottom: 15px;
	color: #111;
	font-weight: 700;
	word-break: break-all;
	text-align: left;
}

.d_list_gallery.type2 .link_gallery .desc_txt {
	display: -webkit-box;
	overflow: hidden;
	margin-bottom: 25px;
	font-weight: 500;
	color: #545454;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.d_list_gallery.type2 .link_gallery .group_btns {
	display: flex;
	gap: 20px;
	align-items: center;
	margin-top: auto;
}

.d_list_gallery.type2 .link_gallery .group_btns small {
	color: #929292;
}

@media only screen and (min-width: 1200px) {
	.d_list_gallery.type2 .link_gallery {
		position: relative;
	}
	.d_list_gallery.type2 .link_gallery::after {
		position: absolute;
		inset: 0;
		border: 2px solid #00AA59;
		border-radius: 10px;
		pointer-events: none;
		opacity: 0;
		transition: opacity 0.3s;
		content: "";
	}
	.d_list_gallery.type2 .link_gallery:hover::after {
		opacity: 1;
	}
	.d_list_gallery.type2 .link_gallery .d_tit_txt {
		margin-bottom: 23px;
		line-height: 28px;
		text-decoration: 2px underline transparent;
		text-underline-offset: 4px;
		transition: all 0.2s;
	}
	.d_list_gallery.type2 .link_gallery:hover .d_tit_txt {
		text-decoration-color: currentColor;
	}
	.d_list_gallery.type2 .link_gallery .d_cont_thumb {
		padding: 35px 30px;
	}
	.d_list_gallery.type2 .link_gallery .desc_txt {
		margin-bottom: 48px;
		font-size: 16px;
		line-height: 24px;
	}
	.d_list_gallery.type2 .link_gallery .group_btns small {
		font-size: 16px;
		line-height: 24px;
	}
}
/* 주민참여 소통 - SNS */
.list_sns_mayor {
	--radius: 5px;
	padding-bottom: 30px;
}

.list_sns_mayor li {
	display: flex;
	gap: 20px;
	align-items: center;
	padding: 12px 10px;
	border: 1px solid #ddd;
}

.list_sns_mayor li + li {
	border-top: 0;
}

.list_sns_mayor li:first-child {
	border-radius: var(--radius) var(--radius) 0 0;
}

.list_sns_mayor li:last-child {
	border-radius: 0 0 var(--radius) var(--radius);
}

.list_sns_mayor .img_sns {
	width: 40px;
}

.list_sns_mayor .tit_txt {
	display: block;
	font-size: 15px;
	line-height: 20px;
	color: #666;
}

.list_sns_mayor .d_btn {
	margin-left: auto;
}

@media only screen and (min-width: 768px) {
	.list_sns_mayor {
		--radius: 10px;
		display: flex;
	}
	.list_sns_mayor li {
		flex-direction: column;
		gap: 15px;
		flex: 1;
		min-width: 0;
		padding: 30px 0;
	}
	.list_sns_mayor li + li {
		border: 1px solid #ddd;
		border-left: 0;
	}
	.list_sns_mayor li:first-child {
		border-radius: var(--radius) 0 0 var(--radius);
	}
	.list_sns_mayor li:last-child {
		border-radius: 0 var(--radius) var(--radius) 0;
	}
	.list_sns_mayor .img_sns {
		width: 56px;
	}
	.list_sns_mayor .tit_txt {
		font-size: 16px;
		line-height: 23px;
	}
	.list_sns_mayor .d_btn {
		margin: 0;
	}
}
@media only screen and (min-width: 1200px) {
	.list_sns_mayor {
		--radius: 15px;
		padding-bottom: 50px;
	}
	.list_sns_mayor li {
		padding: 40px 0;
	}
	.list_sns_mayor .img_sns {
		width: 75px;
	}
	.list_sns_mayor .tit_txt {
		font-size: 18px;
		line-height: 25px;
	}
}
/* 주민참여 소통 - SNS */
.list_sns_mayor {
	--radius: 5px;
	padding-bottom: 30px;
}

.list_sns_mayor li {
	display: flex;
	gap: 20px;
	align-items: center;
	padding: 12px 10px;
	border: 1px solid #ddd;
}

.list_sns_mayor li + li {
	border-top: 0;
}

.list_sns_mayor li:first-child {
	border-radius: var(--radius) var(--radius) 0 0;
}

.list_sns_mayor li:last-child {
	border-radius: 0 0 var(--radius) var(--radius);
}

.list_sns_mayor .img_sns {
	width: 40px;
}

.list_sns_mayor .tit_txt {
	display: block;
	font-size: 15px;
	line-height: 20px;
	color: #666;
}

.list_sns_mayor .d_btn {
	margin-left: auto;
}

@media only screen and (min-width: 768px) {
	.list_sns_mayor {
		--radius: 10px;
		display: flex;
	}
	.list_sns_mayor li {
		flex-direction: column;
		gap: 15px;
		flex: 1;
		min-width: 0;
		padding: 30px 0;
	}
	.list_sns_mayor li + li {
		border: 1px solid #ddd;
		border-left: 0;
	}
	.list_sns_mayor li:first-child {
		border-radius: var(--radius) 0 0 var(--radius);
	}
	.list_sns_mayor li:last-child {
		border-radius: 0 var(--radius) var(--radius) 0;
	}
	.list_sns_mayor .img_sns {
		width: 56px;
	}
	.list_sns_mayor .tit_txt {
		font-size: 16px;
		line-height: 23px;
	}
	.list_sns_mayor .d_btn {
		margin: 0;
	}
}
@media only screen and (min-width: 1200px) {
	.list_sns_mayor {
		--radius: 15px;
		padding-bottom: 50px;
	}
	.list_sns_mayor li {
		padding: 40px 0;
	}
	.list_sns_mayor .img_sns {
		width: 75px;
	}
	.list_sns_mayor .tit_txt {
		font-size: 18px;
		line-height: 25px;
	}
}
/* 사이트맵 */
.area_sitemap .list_depth1 {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 15px;
	padding: 10px 0 30px;
	font-size: 17px;
	line-height: 24px;
	color: #333;
	transition: linear 0.3s;
}

.area_sitemap .list_depth1 .link_depth1 {
	display: block;
	padding: 13px 10px 12px;
	border: 1px solid #ddd;
	font-size: 16px;
	line-height: 19px;
	font-weight: 500;
	color: #545454;
	text-align: center;
	text-decoration: underline 1px solid;
	text-decoration-color: transparent;
	transition: color 0.2s ease, text-decoration-color 0.2s ease, border-color 0.2s ease;
}

.area_sitemap .list_depth1 .link_depth1:hover,
.area_sitemap .list_depth1 .link_depth1:focus {
	border-color: #034EA2;
	color: #034EA2;
	text-decoration-color: currentColor;
}

.area_sitemap .list_depth2 {
	padding: 10px 0 15px;
}

.area_sitemap .link_depth2 {
	position: relative;
	display: inline-block;
	padding: 5px 0 6px 15px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	color: #545454;
	text-decoration: underline 1px solid;
	text-decoration-color: transparent;
	transition: text-decoration-color 0.2s ease;
}

.area_sitemap .link_depth2:hover,
.area_sitemap .link_depth2:focus {
	color: #034EA2;
	text-decoration-color: currentColor;
}

.area_sitemap .link_depth2::before {
	position: absolute;
	left: 6px;
	top: 14px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: currentColor;
	content: "";
}

.area_sitemap [class*=_depth][target=_blank]:after {
	padding-left: 5px;
	font-family: "Font Awesome 6 Pro", sans-serif;
	color: #747474;
	-webkit-font-smoothing: antialiased;
	text-rendering: auto;
	color: currentColor;
	content: "\f08e";
}

@media only screen and (min-width: 768px) {
	.area_sitemap .list_depth1 {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}
}
@media only screen and (min-width: 1200px) {
	/* 사이트맵 */
	.area_sitemap .list_depth1 {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 20px;
	}
	.area_sitemap .list_depth1 .link_depth1 {
		padding: 19px 15px 18px;
	}
}
/* 인사말 */
.area_greeting .head_greeting {
	display: flex;
	flex-direction: column;
	padding: 15px 10px 0;
}

.area_greeting .head_greeting .tit_txt {
	display: block;
	font-size: 36px;
	line-height: 44px;
	font-weight: 800;
	color: #121212;
	word-break: keep-all;
}

.area_greeting .head_greeting .tit_txt .txt_emph {
	font-weight: inherit;
	color: #24AB4F;
}

.area_greeting .head_greeting .desc_txt {
	width: 60%;
	margin-top: 20px;
	font-size: 18px;
	line-height: 24px;
	font-weight: 600;
	color: #121212;
	word-break: keep-all;
}

.area_greeting .head_greeting .box_sign {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}

.area_greeting .head_greeting .box_sign .txt_position {
	font-size: 14px;
	line-height: 20px;
	color: #121212;
	font-weight: 500;
	white-space: nowrap;
}

.area_greeting .head_greeting .box_sign img {
	width: 100px;
	height: auto;
}

.area_greeting .head_greeting .img_mayor {
	width: 100%;
	max-width: 700px;
	margin-left: auto;
}

.area_greeting .body_greeting {
	padding: 15px 10px;
	border-top: 1px solid #ddd;
}

.area_greeting .body_greeting p {
	font-size: 16px;
	line-height: 22px;
	color: #121212;
	word-break: keep-all;
	word-wrap: break-word;
}

.area_greeting .body_greeting p + p {
	margin-top: 15px;
}

.area_greeting .body_greeting .box_sign_bottom {
	display: flex;
	align-items: baseline;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 30px;
}

.area_greeting .body_greeting .box_sign_bottom .txt_position {
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	color: #121212;
}

.area_greeting .body_greeting .box_sign_bottom .txt_name {
	font-size: 32px;
	line-height: 38px;
	font-weight: 700;
	color: #121212;
}

@media only screen and (min-width: 768px) {
	.area_greeting .head_greeting {
		position: relative;
	}
	.area_greeting .head_greeting .box_sign {
		margin-bottom: 40px;
	}
	.area_greeting .head_greeting .img_mayor {
		position: absolute;
		z-index: -10;
		right: -10px;
		bottom: 0;
		width: 500px;
	}
}
@media only screen and (min-width: 1200px) {
	.area_greeting .head_greeting {
		padding: 50px 40px 20px;
	}
	.area_greeting .head_greeting .tit_txt {
		font-size: 52px;
		line-height: 60px;
	}
	.area_greeting .head_greeting .desc_txt {
		margin-top: 40px;
		font-size: 24px;
		line-height: 34px;
	}
	.area_greeting .head_greeting .box_sign {
		justify-content: center;
		gap: 15px;
		margin-top: 25px;
	}
	.area_greeting .head_greeting .box_sign .txt_position {
		font-size: 20px;
		line-height: 28px;
	}
	.area_greeting .head_greeting .box_sign img {
		width: 200px;
	}
	.area_greeting .head_greeting .img_mayor {
		width: 780px;
	}
	.area_greeting .body_greeting {
		padding: 50px 40px;
	}
	.area_greeting .body_greeting p {
		font-size: 20px;
		line-height: 30px;
	}
	.area_greeting .body_greeting p + p {
		margin-top: 20px;
	}
	.area_greeting .body_greeting .box_sign_bottom {
		gap: 15px;
		margin-top: 40px;
	}
	.area_greeting .body_greeting .box_sign_bottom .txt_position {
		font-size: 16px;
		line-height: 24px;
	}
	.area_greeting .body_greeting .box_sign_bottom .txt_name {
		font-size: 40px;
		line-height: 48px;
	}
}

/* 취임사 */
.area_speech {
	position: relative;
	padding: 25px 0;
}

.area_speech .head_speech {
	display: flex;
	justify-content: space-between;
	align-items: end;
	height: 140px;
	margin-bottom: 30px;
	border-bottom-right-radius: 30px;
	background: #F7FFFD;
}

.area_speech .head_speech .tit_txt {
	display: block;
	width: 50%;
	padding: 0 0 20px 20px;
	font-size: 26px;
	line-height: 34px;
	font-weight: 800;
	color: #121212;
	word-break: keep-all;
	word-wrap: break-word;
}

.area_speech .head_speech img {
	position: absolute;
	top: 0;
	right: 20px;
	width: 35%;
	max-width: 165px;
	height: auto;
	aspect-ratio: 463/603;
}

.area_speech .body_speech .wrap_txt {
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	color: #121212;
	word-break: keep-all;
	word-wrap: break-word;
}

.area_speech .body_speech .wrap_txt .txt_emph {
	font-weight: inherit;
}

.area_speech .body_speech .wrap_txt + .wrap_txt {
	margin-top: 20px;
}

.area_speech .body_speech .img_deco {
	display: none;
}

.area_speech .body_speech .box_sign_bottom {
	margin-top: 40px;
	font-size: 20px;
	line-height: 32px;
	font-weight: 500;
	color: #121212;
}

.area_speech .body_speech .box_sign_bottom img {
	width: 140px;
	margin-left: 10px;
}

@media only screen and (min-width: 1200px) {
	.area_speech {
		padding: 0 40px;
	}
	.area_speech .head_speech {
		height: auto;
		background: none;
	}
	.area_speech .head_speech .tit_txt {
		width: 100%;
		padding: 0;
		font-size: 35px;
		line-height: 45px;
	}
	.area_speech .head_speech img {
		right: 40px;
		width: 400px;
		max-width: none;
	}
	.area_speech .body_speech .wrap_txt {
		font-size: 18px;
		line-height: 24px;
	}
	.area_speech .body_speech .wrap_txt .txt_emph {
		font-size: 20px;
		font-weight: 700;
		color: #229F56;
	}
	.area_speech .body_speech .img_deco {
		position: absolute;
		right: 0;
		display: block;
		height: auto;
	}
	.area_speech .body_speech .img_deco.deco1 {
		bottom: 65%;
		width: 340px;
	}
	.area_speech .body_speech .img_deco.deco2 {
		bottom: 50%;
		width: 325px;
	}
	.area_speech .body_speech .img_deco.deco3 {
		bottom: 30%;
		width: 347px;
	}
	.area_speech .body_speech .img_deco.deco4 {
		bottom: 10%;
		width: 440px;
	}
	.area_speech .body_speech .box_sign_bottom {
		margin-top: 45px;
		font-size: 22px;
		line-height: 34px;
	}
	.area_speech .body_speech .box_sign_bottom img {
		width: 200px;
		margin-left: 15px;
	}
}

/* 프로필 및 약력 */
.list_profile > li {
	padding: 30px 0;
}
.list_profile > li:first-child {
	padding-top: 0;
}
.list_profile > li + li {
	border-top: 1px solid #ddd;
}
.list_profile .tit_txt {
	font-size: 20px;
	line-height: 28px;
	font-weight: 700;
	color: #121212;
	word-break: keep-all;
	word-wrap: break-word;
}
.list_profile .tit_txt i {
	margin-right: 8px;
	color: var(--d-color-secondary-100);
}
.list_profile .desc_txt {
	margin-top: 15px;
}
.list_profile .desc_txt li {
	display: flex;
	padding: 2px 0 2px 12px;
	word-break: keep-all;
	word-wrap: break-word;
	width: 100%;
	flex-direction: column;
}
.list_profile .desc_txt li::before {
	top: calc(var(--line-height) / 2 + 2px);
}
.list_profile .desc_txt li em {
	flex-shrink: 0;
	margin-right: 10px;
	font-weight: 600;
	color: #121212;
}

@media (min-width:768px){
	.list_profile .desc_txt li {flex-direction: row}
	.list_profile .desc_txt.award li em {flex-basis: 100px;}
}
@media only screen and (min-width: 1200px) {
	.list_profile > li {padding: 40px 0;}
	.list_profile .tit_txt {font-size: 26px;line-height: 36px;}
	.list_profile .tit_txt i {margin-right: 12px;}
	.list_profile .desc_txt {margin-top: 20px;}
	.list_profile .desc_txt li {padding: 4px 0 4px 14px;}
	.list_profile .desc_txt li::before {top: calc(var(--line-height-lg) / 2 + 4px);}
	.list_profile .desc_txt li em {margin-right: 15px;}
	.list_profile .desc_txt.award li em {flex-basis: 125px;} 
}

/* 프로필 및 약력 - 증명사진 */
.profile_img {position: relative;display: block;width:100%;margin:0 auto;}
.profile_img img {display: block;width:100%;border-radius: 18px;}

@media (min-width:380px){
	.profile_img {width:320px;}	
}

/* 프로필 및 약력 - 기본사항 */
.history_intro {margin-top:22px;}
.history_intro .badge {width:150px;height: 30px;margin:0 auto -14px;border-radius: 30px;background: linear-gradient(90deg, #034ea2 0%, #509cf0 100%);color:#fff;font-size: 16px;font-weight:700;display:flex;align-items:center;justify-content:center;position:relative;z-index:2;}
.history_intro .intro_box {display:flex;flex-direction:column;align-items: center;gap: 8px;padding: 30px 20px 20px;border-radius: 16px;font-size: 18px;transition: all 0.3s;box-shadow: 6px 6px 12px #e9e9e9, -6px -6px 12px #fff;}
.history_intro strong {color: #034ea2;font-size: 22px;font-weight:800;}
.history_intro .intro_text {color: #929292;font-size:14px;font-weight: 500;}

@media (min-width:768px){
	.history_intro {margin-top:24px;}
	.history_intro .badge {width: 174px;height:30px;margin: 0 auto -20px;font-size: 18px;}
	.history_intro .intro_box {gap: 20px;flex-direction: row;justify-content: center;padding: 38px 0 36px;width: 100%;margin: 0 auto;}
	.history_intro strong {font-size: 26px;}
	.history_intro .intro_text {font-size: 18px;}   
}
@media (min-width:1200px){
	.history_intro .badge {height: 40px;}
}

/* 이미지 사이즈 반응형 조절 */
.img_cts_wrap img {max-width: 100%}