@charset "UTF-8";
/* 메인 - main css */
/* swiepr 공통 */
.btn_ctrl {
	display: none;
}

.btn_ctrl.active {
	display: block;
}

/* section_main1 (비주얼 영역) */
.wrap_slide_visual {
	position: relative;
	height: 175px;
	transition: height 0.2s;
}

.wrap_slide_visual::after {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 20;
	border-bottom: 1px solid #ddd;
	content: "";
}

.wrap_slide_visual .swiper {
	height: 100%;
}

.wrap_slide_visual .link_slide {
	display: block;
	height: 100%;
}

.wrap_slide_visual .img_slide {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wrap_slide_visual .wrap_nav {
	display: flex;
	align-items: center;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: 10;
	padding: 8px 20px;
	background: var(--d-color-black-80);
	border-radius: 10px 10px 0 0;
	transform: translateX(-50%);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.wrap_slide_visual .paging_slide {
	flex-basis: 0;
	display: flex;
	gap: 4px;
	font-size: 14px;
	line-height: 19px;
	color: var(--d-color-white-60);
	font-weight: 500;
}

.wrap_slide_visual .paging_slide .num_current {
	color: #fff;
	font-weight: 700;
}

.wrap_slide_visual .bar_nav {
	width: 20px;
	margin: 0 5px 0 13px;
	height: 1px;
	background: var(--d-color-white-70);
}

.wrap_slide_visual [class*=btn_]:last-child {
	margin-right: -8px;
}

.wrap_slide_visual .btn_action,
.wrap_slide_visual .btn_ctrl {
	margin: -5px 0;
	padding: 5px 8px;
	font-size: 14px;
	color: #fff;
}

@media only screen and (min-width: 768px) {
	/* section_main1 (비주얼 영역) */
	.wrap_slide_visual {
		height: 370px;
	}
	.wrap_slide_visual .wrap_nav {
		left: auto;
		right: 50%;
		margin-right: max(-700px, -50% + var(--layout-padding-x));
		padding: 12px 30px;
		transform: translateX(0);
	}
	.wrap_slide_visual .paging_slide {
		font-size: 18px;
		line-height: 23px;
	}
	.wrap_slide_visual .bar_nav {
		width: 30px;
		height: 2px;
		margin: 0 10px 0 18px;
	}
	.wrap_slide_visual .btn_action, .wrap_slide_visual .btn_ctrl {
		font-size: 18px;
	}
	.wrap_slide_visual .btn_ctrl {
		margin-left: 5px;
		margin-right: 5px;
	}
}
@media only screen and (min-width: 1200px) {
	/* section_main1 (비주얼 영역) */
	.wrap_slide_visual {
		height: 580px;
	}
	.wrap_slide_visual .wrap_nav {
		padding: 18px 47px;
		border-radius: 15px 15px 0 0;
		font-size: 22px;
		line-height: 27px;
	}
	.wrap_slide_visual .paging_slide {
		gap: 10px;
		font-size: 22px;
		line-height: 27px;
	}
	.wrap_slide_visual .bar_nav {
		width: 34px;
		margin: 0 24px 0 32px;
	}
	.wrap_slide_visual .btn_action, .wrap_slide_visual .btn_ctrl {
		font-size: 24px;
	}
	.wrap_slide_visual .btn_ctrl {
		margin-left: 10px;
		margin-right: 10px;
	}
}
@media only screen and (min-width: 1420px) {
	/* section_main1 (비주얼 영역) */
	.wrap_slide_visual {
		height: 680px;
	}
}
/* section_main2 (이용 정보) */
.area_hours {
	display: flex;
	gap: 20px;
	padding: 20px 0;
}

.area_hours .box_info {
	flex: 1;
	min-width: 0;
	word-break: keep-all;
}

.area_hours .tit_info {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 16px;
	line-height: 19px;
	color: #111;
	font-weight: 700;
}

.area_hours .tit_info i {
	font-size: 0.72em;
	line-height: inherit;
}

.area_hours .desc_info {
	padding-top: 8px;
	font-size: 12px;
	line-height: 15px;
	color: #333;
	font-weight: 500;
}

.area_hours .txt_sub {
	display: block;
	padding-top: 2px;
	color: #747474;
}

.section_main2 .btn_guide {
	display: block;
	padding: 10px;
	border: 1px solid currentColor;
	border-radius: 5px;
	font-size: 14px;
	line-height: 15px;
	color: #111;
	font-weight: 700;
	text-align: center;
}

@media only screen and (min-width: 768px) {
	/* section_main2 (이용 정보) */
	.section_main2 .inner_info {
		display: flex;
		align-items: center;
		position: relative;
	}
	.section_main2 .inner_info::after {
		position: absolute;
		bottom: 0;
		left: var(--layout-padding-x);
		right: var(--layout-padding-x);
		height: 2px;
		background: #919191;
		content: "";
	}
	.area_hours {
		flex: 0 1 auto;
		gap: 40px;
		padding: 30px 0;
	}
	.area_hours .box_info {
		flex: none;
	}
	.area_hours .tit_info {
		font-size: 18px;
		line-height: 25px;
	}
	.area_hours .txt_sub {
		display: inline;
	}
	.section_main2 .btn_guide {
		margin-left: auto;
		padding: 15px 20px;
	}
}
@media only screen and (min-width: 1200px) {
	/* section_main2 (이용 정보) */
	.area_hours {
		gap: 65px;
		padding: 50px 0;
	}
	.area_hours .tit_info {
		gap: 10px;
		font-size: 26px;
		line-height: 33px;
	}
	.area_hours .desc_info {
		padding-top: 14px;
		font-size: 20px;
		line-height: 25px;
	}
	.section_main2 .btn_guide {
		padding: 20px 30px;
		border-radius: 10px;
		font-size: 22px;
		line-height: 26px;
		transition: all 0.2s;
	}
	.section_main2 .btn_guide:hover,
	.section_main2 .btn_guide:focus {
		color: #fff;
		background: #111;
	}
}
@media only screen and (min-width: 1400px) {
	/* section_main2 (이용 정보) */
	.area_hours {
		gap: 90px;
	}
	.section_main2 .btn_guide {
		padding: 29px 50px;
		font-size: 26px;
		line-height: 30px;
	}
}
/* section_main3 (미술관 소식 및 공연·전시) */
.section_main3 {
	--section3-padding-top: 30px;
	overflow: hidden;
	padding-top: var(--section3-padding-top);
}

.section_main3 .inner_board {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.section_main3 .tit_main3 {
	font-size: 22px;
	line-height: 28px;
	color: #111;
	font-weight: 800;
}

.area_news {
	position: relative;
}

.area_news .card_news_top {
	display: flex;
	margin-top: 15px;
	border: 2px solid #F2F2F2;
	border-radius: 5px;
}

.area_news .box_date {
	flex: none;
	display: flex;
	flex-direction: column;
	gap: 2px;
	justify-content: center;
	align-items: center;
	padding: 0 10px;
	text-align: center;
}

.area_news .box_date .num_day {
	font-size: 16px;
	line-height: 19px;
	color: #111;
	font-weight: 800;
}

.area_news .box_date .txt_ym {
	font-size: 12px;
	line-height: 18px;
	color: #909090;
	font-weight: 500;
}

.area_news .box_cont {
	flex: 1;
	min-width: 0;
	position: relative;
	margin: 15px 0;
	padding: 0 10px;
}

.area_news .box_date + .box_cont::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	border-left: 1px solid #e5e5e5;
	content: "";
}

.area_news .box_cont .tit_news {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 16px;
	line-height: 19px;
	color: #3D3939;
}

.area_news .box_cont .tit_news i {
	margin-right: 4px;
	color: #FF3E3E;
}

.area_news .box_cont .desc_news {
	display: block;
	overflow: hidden;
	padding-top: 6px;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 14px;
	line-height: 17px;
	color: #747474;
	font-weight: 500;
}

.area_news .list_news {
	padding-top: 10px;
}

.area_news .list_news li + li {
	border-top: 1px solid #E5E5E5;
}

.area_news .list_news .link_news {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 12px 5px;
}

.area_news .list_news .tit_item {
	flex: 1;
	overflow: hidden;
	min-width: 0;
	font-size: 15px;
	line-height: 20px;
	color: #545454;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.area_news .list_news .date_item {
	flex: none;
	font-size: 13px;
	line-height: 20px;
	color: #909090;
	font-weight: 500;
}

.area_news .btn_more {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	width: 28px;
	height: 28px;
	border: 1px solid #E8E8E8;
	border-radius: 50%;
	font-size: 13px;
	color: #111;
}

.area_exhibit {
	position: relative;
	z-index: 0;
	padding: 20px 0 40px;
}

.area_exhibit::before {
	position: absolute;
	inset: 0 -15px;
	z-index: -10;
	background: #034EA2;
	content: "";
}

.area_exhibit .tit_main3 {
	color: #fff;
}

.area_exhibit .link_thumb {
	display: block;
}

.area_exhibit .wrap_thumb {
	overflow: hidden;
	position: relative;
	border-radius: 5px;
}

.area_exhibit .wrap_thumb::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: inherit;
	pointer-events: none;
	content: "";
}

.area_exhibit .wrap_thumb .img_thumb {
	width: 100%;
	aspect-ratio: 260/360;
	object-fit: cover;
}

.area_exhibit .cont_thumb {
	padding-top: 15px;
}

.area_exhibit .tag_thumb {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 5px;
	color: #fff;
	font-weight: 700;
	background: var(--d-color-white-20);
}

.area_exhibit .tit_thumb {
	display: -webkit-box;
	overflow: hidden;
	padding-top: 10px;
	font-size: 16px;
	line-height: 21px;
	color: #fff;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.area_exhibit .txt_info {
	padding-top: 5px;
	font-size: 12px;
	line-height: 16px;
	color: var(--d-color-white-90);
	font-weight: 500;
}

.area_exhibit .btn_more {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 28px;
	height: 28px;
	margin-left: 5px;
	border-radius: 50%;
	font-size: 13px;
	color: #111;
	background: #fff;
}

.wrap_slide_exhibit {
	margin-top: 15px;
}

.wrap_slide_exhibit .wrap_nav {
	display: flex;
	gap: 5px;
	align-items: center;
	position: absolute;
	top: 20px;
	right: 0;
}

.wrap_slide_exhibit .wrap_nav .btn_action {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	font-size: 13px;
	color: #fff;
	background: #000;
}

.wrap_slide_exhibit .wrap_nav a.btn_action.swiper-button-disabled {
	color: var(--d-color-white-30);
	background: var(--d-color-black-20);
}

@media only screen and (min-width: 1200px) {
	/* section_main3 (미술관 소식 및 공연·전시) */
	.section_main3 {
		--section3-padding-top: 50px;
		position: relative;
	}
	.section_main3 .tit_main3 {
		font-size: 32px;
		line-height: 40px;
	}
	.section_main3 .inner_board {
		flex-direction: row;
		gap: 50px;
	}
	.section_main3::after {
		position: absolute;
		left: min(50% + 700px, 100% - 10px);
		top: var(--section3-padding-top);
		bottom: 0;
		right: 0;
		background: #034EA2;
		content: "";
	}
	.area_news {
		flex: 1 1 690px;
		min-width: 0;
		margin-top: 10px;
	}
	.area_news .card_news_top {
		margin-top: 25px;
		border-width: 4px;
		border-radius: 10px;
		transition: border-color 0.2s;
	}
	.area_news .card_news_top:hover,
	.area_news .card_news_top:focus {
		border-color: #dadada;
	}
	.area_news .box_date {
		padding: 0 20px 0 26px;
	}
	.area_news .box_date .num_day {
		font-size: 38px;
		line-height: 42px;
	}
	.area_news .box_date .txt_ym {
		font-size: 14px;
	}
	.area_news .box_cont {
		margin: 27px 0 22px;
		padding: 0 21px;
	}
	.area_news .box_cont .tit_news {
		font-size: 22px;
		line-height: 25px;
		text-decoration: underline transparent;
		text-underline-offset: 3px;
		transition: all 0.2s;
	}
	.area_news .box_cont .tit_news i {
		margin-right: 10px;
	}
	.area_news .card_news_top:hover .tit_news,
	.area_news .card_news_top:focus .tit_news {
		text-decoration-color: currentColor;
	}
	.area_news .box_cont .desc_news {
		padding-top: 9px;
		font-size: 16px;
		line-height: 23px;
	}
	.area_news .list_news {
		padding-top: 15px;
	}
	.area_news .list_news .link_news {
		padding: 20px 10px;
	}
	.area_news .list_news .tit_item {
		font-size: 19px;
		line-height: 25px;
		text-decoration: underline transparent;
		text-underline-offset: 5px;
		transition: all 0.2s;
	}
	.area_news .list_news .link_news:hover .tit_item,
	.area_news .list_news .link_news:focus .tit_item {
		text-decoration-color: currentColor;
	}
	.area_news .list_news .date_item {
		font-size: 16px;
		line-height: 21px;
	}
	.area_news .btn_more {
		width: 40px;
		height: 40px;
		font-size: 18px;
		transition: all 0.2s;
	}
	.area_news .btn_more:hover,
	.area_news .btn_more:focus {
		border-color: #b6b6b6;
	}
	.area_exhibit {
		flex: 1 1 640px;
		min-width: 0;
		padding: 40px 0 40px 40px;
		border-radius: 15px 0 0;
		background: #034EA2;
	}
	.area_exhibit::before {
		content: normal;
	}
	.area_exhibit .wrap_thumb {
		border-radius: 10px;
	}
	.area_exhibit .cont_thumb {
		padding-top: 25px;
	}
	.area_exhibit .tag_thumb {
		padding: 6px 18px;
		border-radius: 10px;
		font-size: 18px;
		line-height: 25px;
		transition: all 0.2s;
	}
	.area_exhibit .link_thumb:hover .tag_thumb {
		background: var(--d-color-white-25);
	}
	.area_exhibit .tit_thumb {
		font-size: 22px;
		line-height: 30px;
		text-decoration: underline transparent;
		text-underline-offset: 5px;
		transition: all 0.2s;
	}
	.area_exhibit .link_thumb:hover .tit_thumb {
		text-decoration-color: currentColor;
	}
	.area_exhibit .txt_info {
		font-size: 16px;
		line-height: 23px;
	}
	.area_exhibit .btn_more {
		width: 40px;
		height: 40px;
		margin-left: 10px;
		font-size: 18px;
		transition: all 0.2s;
	}
	.area_exhibit .btn_more:hover,
	.area_exhibit .btn_more:focus {
		background: var(--d-color-white-80);
	}
	.wrap_slide_exhibit {
		margin-top: 30px;
	}
	.wrap_slide_exhibit .wrap_nav {
		top: 40px;
	}
	.wrap_slide_exhibit .wrap_nav .btn_action {
		width: 40px;
		height: 40px;
		font-size: 18px;
		transition: all 0.2s;
	}
	.wrap_slide_exhibit .wrap_nav .btn_action:hover,
	.wrap_slide_exhibit .wrap_nav .btn_action:focus-visible {
		background: var(--d-color-black-60);
	}
}
@media only screen and (min-width: 1400px) {
	/* section_main3 (미술관 소식 및 공연·전시) */
	.section_main3 {
		--section3-padding-top: 70px;
	}
	.section_main3 .inner_board {
		gap: 70px;
	}
	.section_main3 .tit_main3 {
		font-size: 40px;
		line-height: 50px;
	}
	.area_news .card_news_top {
		margin-top: 35px;
	}
	.area_news .list_news {
		padding-top: 21px;
	}
	.area_news .list_news .link_news {
		padding: 28px 10px;
	}
	.area_news .btn_more {
		width: 50px;
		height: 50px;
		font-size: 22px;
	}
	.area_exhibit {
		padding: 70px 0 70px 80px;
	}
	.area_exhibit .cont_thumb {
		padding-top: 30px;
	}
	.area_exhibit .tag_thumb {
		padding: 10px 25px;
		font-size: 20px;
		line-height: 27px;
	}
	.area_exhibit .tit_thumb {
		padding-top: 19px;
		font-size: 26px;
		line-height: 34px;
	}
	.area_exhibit .txt_info {
		padding-top: 11px;
		font-size: 18px;
		line-height: 25px;
	}
	.area_exhibit .btn_more {
		width: 50px;
		height: 50px;
		font-size: 22px;
	}
	.wrap_slide_exhibit {
		margin-top: 35px;
	}
	.wrap_slide_exhibit .wrap_nav {
		top: 70px;
	}
	.wrap_slide_exhibit .wrap_nav .btn_action {
		width: 50px;
		height: 50px;
		font-size: 22px;
	}
}