@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;
}

/* ===== 공통 컴포넌트 오버라이딩 ===== */
/* 포토 게시판 목록 */
.b_list_photo {
	--grid-col-md:3;
	--img-ratio: 1/1;
}

.b_list_photo.type_event {
	--img-ratio: 486/365;
}

.b_list_photo .wrap_thumb img {
	object-fit: contain;
}

.b_list_photo .wrap_thumb:after {
	opacity: 0.6;
}

@media only screen and (min-width: 768px) {
	.b_list_photo {
		gap: 20px;
	}
}
@media only screen and (min-width: 1200px) {
	.b_list_photo {
		gap: 30px;
	}
}
/* 공통 하단 썸네일 네비게이션이 있는 슬라이드 */
.d_slide_description {
	max-width: 900px;
	margin-top: 10px;
}

.d_slide_description img, .d_slide_nav_description img {
	object-fit: cover;
}

.d_slide_description .txt_desc {
	position: absolute;
	inset: auto 0 0;
	padding: 10px 15px;
	font-size: 14px;
	line-height: 18px;
	color: #fff;
	font-weight: 500;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(10px);
}

.d_slide_nav_description img {
	z-index: 0;
	opacity: 0.6;
}

@media only screen and (min-width: 1200px) {
	.d_slide_description {
		margin-top: 20px;
	}
	.d_slide_description .txt_desc {
		padding: 12px 20px;
		font-size: 16px;
	}
	.d_slide_nav_description {
		margin-top: 35px;
	}
}
/* 공통 아코디언 */
.d_list_accordion .d_cont_desc {
	font-weight: 500;
}

@media only screen and (min-width: 1200px) {
	/* 공통 제목 */
	.d_tit2 {
		--line-height: 28px;
		font-size: 22px;
	}
}
/* 공통 스텝박스 */
.d_list_step_comm {
	word-break: keep-all;
}


/* 포토 게시판 목록 - 가로형 */
.b_list_photo.type_row {
	--grid-col-md:1;
	--img-ratio: 165 / 220;
	gap: 0;
}

.b_list_photo.type_row li {
	padding: 15px 0;
}

.b_list_photo.type_row li + li {
	border-top: 1px solid #ddd;
}

.b_list_photo.type_row li > a {
	flex-direction: row;
	gap: 15px;
	flex-wrap: wrap;
}

.b_list_photo.type_row .wrap_thumb {
	flex: 0 0 135px;
	margin: 0 auto;
}

.b_list_photo.type_row .cont_thumb {
	flex: 1 1 65%;
	max-width: 700px;
	padding-top: 20px;
}

.b_list_photo.type_row strong {
	--tit-size-m: 18px;
	--tit-line-height-m:24px;
	padding-top: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.b_list_photo.type_row dl {
	display: grid;
	gap: 5px 15px;
	grid-template-columns: auto 1fr;
	margin-top: 15px;
	font-size: 14px;
}

.b_list_photo.type_row dt {
	font-weight: 700;
	color: #333;
}

.b_list_photo.type_row dd {
	font-weight: 500;
	color: #575757;
}

@media only screen and (min-width: 768px) {
	.b_list_photo.type_row li > a {
		gap: 20px;
	}
	.b_list_photo.type_row .wrap_thumb {
		flex-basis: 165px;
	}
}
@media only screen and (min-width: 1200px) {
	.b_list_photo.type_row {
		grid-template-columns: auto;
	}
	.b_list_photo.type_row strong {
		--tit-size-lg: 20px;
		--tit-line-height-lg: 26px;
	}
	.b_list_photo.type_row dl {
		font-size: 16px;
	}
}

/* 서브 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;
	}
}
/* 공유하기 레이어 팝업 */
.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: 50px;
		height: 50px;
	}
}
/* 서브 상단 */
.head_sub {
	position: relative;
	padding: 19px 0 14px;
	border-bottom: 1px solid #e5e5e5;
}

.head_sub .tit_txt {
	font-size: 22px;
	line-height: 26px;
	color: #111;
	font-weight: 800;
}

.list_breadcrumb {
	display: flex;
	flex-wrap: wrap;
	padding-top: 10px;
}

.list_breadcrumb li {
	display: flex;
	align-items: center;
	font-size: 12px;
	line-height: 16px;
	color: #909090;
	font-weight: 500;
}

.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: #02AB4E;
}

.head_sub .group_etc .link_print {
	background: #034EA2;
}

.head_sub .group_etc .link_word {
	background: #9D9D9D;
}

@media only screen and (min-width: 1200px) {
	/* 서브 상단 */
	.head_sub {
		padding: 69px 0 17px;
	}
	.list_breadcrumb {
		padding-top: 17px;
	}
	.list_breadcrumb li {
		font-size: 14px;
		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: 32px;
		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;
	}
}
@media only screen and (min-width: 1200px) {
	/* 서브 좌측 메뉴 */
	.sub_left_menu .head_menu {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 130px;
		border-radius: 10px 40px 10px 10px;
		font-size: 30px;
		line-height: 34px;
		color: #fff;
		font-weight: 800;
		background: url(/home/hpart/images/common/img_mark2.png) no-repeat center/cover, linear-gradient(45deg, #0C54A5 0%, #02AB4E 100%);
	}
	.list_sub_menu {
		padding-top: 15px;
		letter-spacing: -0.025em;
	}
	.list_sub_menu [class*=link_depth]::after {
		margin-left: auto;
		font-size: 0.85em;
		font-weight: 900;
		font-family: "Font Awesome 6 Pro", sans-serif;
		-webkit-font-smoothing: antialiased;
		text-rendering: auto;
	}
	.list_sub_menu [class*=link_depth][target=_blank]::after {
		content: "\f08e";
	} /* 새창 링크 아이콘 */
	.list_sub_menu > li + li {
		padding-top: 10px;
	}
	.list_sub_menu .link_depth2 {
		display: flex;
		align-items: center;
		gap: 10px;
		position: relative;
		padding: 13px 22px;
		border: 1px solid #ddd;
		border-radius: 10px;
		font-size: 18px;
		line-height: 24px;
		color: #333;
		font-weight: 500;
		transition: linear 0.3s;
	}
	.list_sub_menu .link_depth2[role=button]::after {
		transition: all 0.3s;
		content: "\f107";
	} /* 기본 메뉴 화살표 아이콘 */
	.list_sub_menu .link_depth2:hover, .list_sub_menu .link_depth2:focus-visible {
		color: #111;
		border: 1px solid currentColor;
	}
	.list_sub_menu .link_depth2.on,
	.list_sub_menu .link_depth2[aria-expanded=true] {
		border-color: transparent;
		color: #fff;
		font-weight: 700;
		background: #0A5D9D;
	}
	.list_sub_menu .link_depth2[aria-expanded=true]::after {
		transform: rotate(180deg);
	}
	.list_sub_menu .link_depth2[aria-expanded=true] + .cont_submenu {
		grid-template-rows: 1fr;
		opacity: 1;
		visibility: visible;
	}
	.list_sub_menu .link_depth2[aria-expanded=true] + .cont_submenu .list_left_depth3 {
		margin-top: -10px;
		padding: 30px 16px 20px;
		border-width: 1px;
	}
	.list_sub_menu .cont_submenu {
		display: grid;
		grid-template-rows: 0fr;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s;
	}
	.list_sub_menu .link_depth3 {
		--line-height: 20px;
		display: flex;
		align-items: flex-start;
		gap: 6px;
		padding: 8px 16px;
		font-size: 15px;
		line-height: var(--line-height);
		color: #575757;
	}
	.list_sub_menu .link_depth3::before {
		flex: none;
		width: 4px;
		height: 4px;
		margin-top: calc(var(--line-height) / 2);
		border-radius: 50%;
		background: currentColor;
		transform: translateY(-50%);
		content: "";
	}
	.list_sub_menu .link_depth3:hover, .list_sub_menu .link_depth3:focus {
		color: #0A5D9D;
	}
	.list_sub_menu .link_depth3.on {
		border-radius: 6px;
		color: #0A5D9D;
		font-weight: 600;
		background: rgba(229, 244, 255, 0.6);
	}
	.list_sub_menu .list_left_depth3 {
		overflow: hidden;
		padding: 0 16px;
		border: 0px solid #0A5D9D;
		border-top: 0;
		border-radius: 0 0 10px 10px;
		transition: all 0.3s;
	}
}
.content {
	padding: 20px 0;
}

@media only screen and (min-width: 1200px) {
	.content {
		padding: 24px 0 30px;
	}
}
/* 사이트맵 */
.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_map .wrap_map {
	margin-bottom: 20px;
}

.area_map .wrap_map .box_map {
	width: 100%;
	height: 300px;
	border: 1px solid #ddd;
	border-bottom: 0;
	border-radius: 5px 5px 0 0;
	overflow: hidden;
}

.area_map .wrap_map .box_txt {
	position: relative;
	display: flex;
	gap: 10px 20px;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding: 20px 30px;
	border-radius: 0 0 5px 5px;
	font-size: 16px;
	line-height: 22px;
	color: #fff;
	background: var(--d-color-primary-100);
}

.area_map .wrap_map .box_txt .tit_txt {
	flex: none;
	font-size: 18px;
	line-height: 24px;
	font-weight: 700;
	color: #fff;
}

.area_map .wrap_map .box_txt .wrap_txt {
	display: flex;
	gap: 5px 20px;
	flex-wrap: wrap;
	word-break: keep-all;
}

@media only screen and (min-width: 1200px) {
	.area_map .wrap_map {
		margin-bottom: 40px;
	}
	.area_map .wrap_map .box_map {
		height: 400px;
		border-radius: 10px 10px 0 0;
	}
	.area_map .wrap_map .box_txt {
		gap: 20px;
		padding: 30px 35px;
		border-radius: 0 0 10px 10px;
		font-size: 18px;
		line-height: 24px;
	}
	.area_map .wrap_map .box_txt .tit_txt {
		font-size: 24px;
		line-height: 30px;
	}
	.area_map .wrap_map .box_txt .wrap_txt {
		justify-content: space-between;
		gap: 10px 30px;
		font-size: 18px;
		line-height: 24px;
	}
}
/* 소개_연혁 */
.area_history .list_history {
	flex-direction: column;
	gap: 40px;
	display: flex;
	padding-top: 40px;
}

.area_history .list_history .year_txt {
	display: block;
	font-size: 30px;
	line-height: 38px;
	color: var(--d-color-primary-100);
	font-weight: 700;
}

.area_history .list_history .year_txt + ol {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-top: 15px;
}

.area_history .list_history .year_txt + ol > li {
	position: relative;
	display: flex;
}

.area_history .list_history .year_txt + ol > li:last-child .date_txt::after {
	content: none;
}

.area_history .list_history .date_txt {
	display: flex;
	gap: 14px;
	flex-shrink: 0;
	width: 120px;
	font-size: 20px;
	line-height: 26px;
	font-weight: 500;
	color: #121212;
}

.area_history .list_history .date_txt::before {
	width: 10px;
	height: 10px;
	margin-top: 12px;
	border-radius: 50%;
	background-color: var(--d-color-primary-100);
	transform: translateY(-50%);
	content: "";
}

.area_history .list_history .date_txt::after {
	position: absolute;
	top: 0;
	bottom: -25px;
	left: 5px;
	width: 1px;
	background: var(--d-color-primary-100);
	transform: translateY(10px);
	content: "";
}

.area_history .list_history .desc_txt {
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	color: #121212;
}

@media only screen and (min-width: 1200px) {
	.area_history .list_history {
		padding-top: 60px;
	}
	.area_history .list_history > li {
		display: flex;
	}
	.area_history .list_history .year_txt {
		flex-shrink: 0;
		width: 190px;
		font-size: 40px;
		line-height: 46px;
	}
	.area_history .list_history .year_txt + ol {
		gap: 40px;
		padding-top: 10px;
	}
	.area_history .list_history .date_txt {
		gap: 26px;
		width: 172px;
		font-size: 26px;
		line-height: 32px;
	}
	.area_history .list_history .date_txt::before {
		width: 14px;
		height: 14px;
		margin-top: 16px;
	}
	.area_history .list_history .date_txt::after {
		left: 6px;
		bottom: -44px;
	}
	.area_history .list_history .desc_txt {
		font-size: 20px;
		line-height: 32px;
	}
}
/* 소개_인사말 */
.area_greeting .box_greeting {
	font-size: 16px;
	line-height: 22px;
	font-weight: 500;
}

@media only screen and (min-width: 1200px) {
	.area_greeting .box_greeting p {
		font-size: 18px;
		line-height: 28px;
	}
	.area_greeting .box_greeting p + p {
		margin-top: 15px;
	}
}
/* 게시판 에디터 출력 스타일 */
.boardContents * {
	margin: 0;
	padding: 0;
	vertical-align: middle;
}

.boardContents .image {
	margin: 0 auto;
	text-align: center;
}

.boardContents .image.image-style-align-left {
	margin: 0 auto 0 0;
	text-align: left;
}

.boardContents .image.image-style-align-right {
	margin: 0 0 0 auto;
	text-align: right;
}

.boardContents .image img {
	height: auto;
	max-width: 100%;
}

.boardContents .image figcaption {
	padding: 5px;
	background: #efefef;
	text-align: center;
}

/* 공통 상세페이지 썸네일 board-comm.css 오바리이딩 */
@media only screen and (min-width: 768px) {
	.b_group_img {
		max-width: 80%;
		margin: 10px auto;
	}
}
/* 주요 소장품 */
.b_group_img:has(+ .list_collection) figcaption {
	padding: 10px 15px;
	font-size: 16px;
	line-height: 22px;
	text-align: left;
}

.list_collection {
	--dt-font-size-lg: 16px;
}

.list_collection dt {
	background: #f9f9f9;
}

@media only screen and (min-width: 768px) {
	.list_collection {
		max-width: 80%;
		margin: 0 auto;
	}
}
@media only screen and (min-width: 1200px) {
	.b_group_img:has(+ .list_collection) figcaption {
		font-size: 18px;
		line-height: 24px;
	}
	.list_collection dt {
		padding: 15px 10px;
	}
}
/* 게시판 상세 - 오버라이딩 */
.b_description_head:not(:has(.etc_info_box)) .tit_box {
	padding-bottom: 20px;
}

@media only screen and (min-width: 1200px) {
	.b_description_head:not(:has(.etc_info_box)) .tit_box {
		padding-bottom: 30px;
	}
}