@charset "UTF-8";
/* CSS Document */
/*トップページCSS*/
.main_img {
	max-width: 100%;
}
.main_img img{
	max-width: 100%;
}
/*新着情報===========================================================================================*/
#news .info {
	max-height: 400px;
	padding-top: 0px;
	padding-left: 28px;
	padding-right: 28px;
	background-color: white;
	/*border: 1px dashed #cacaca;*/
	overflow-y: auto;
}
#news .info dl {
	font-size: 1em;
}
#news .info dt {
	float: left;
	color: #1e50a2;
	width: 120px;
}
#news .info dd {
	width: auto;
	margin-left: 120px;
	margin-bottom: 20px;
	text-align: justify;
}
@media screen and (max-width: 500px){
	#news .info dt {
		float: none;
		color: #1e50a2;
		width: 100%;
	}
	#news .info dd {
		width: auto;
		margin-left: 1em;
		margin-bottom: 20px;
		text-align: justify;
	}
}
/*トップインフォ*/
.top_info_box {
	margin-bottom: 40px;
	width: 100%;
	border: 4px solid #f39800;
	background-color: #F6F5EA;
}
.top_info_title {
	width: 100%;
	padding: 5px;
	background-color: #f39800;
	color: white;
	font-size: 23px;
	font-weight: bold;
	text-align: center;
}
.top_info_body {
	padding: 0px 10px;
}
.top_info_flex {
	margin: 20px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.top_info_innertitle {
	width: 9em;
	padding: 2px 10px;
	border: 1px solid #363636;
	border-radius: 26px;
	text-align: center;
	/*font-weight: bold;*/
	background-color: #e7e7eb;
}
.top_info_flex:before,
.top_info_flex:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #363636;
}
.top_info_content {
	text-align: center;
	font-weight: bold;
	line-height: 2em;
}
.top_info_content span {
	font-size: 1.6em;
}
.top_info_box_2 {
	margin-bottom: 40px;
	width: 100%;
	border: 4px solid #e95295;
	background-color: #F6F5EA;
}
.top_info_title_2 {
	width: 100%;
	padding: 5px;
	background-color: #e95295;
	color: white;
	font-size: 23px;
	font-weight: bold;
	text-align: center;
}
.btn_box {
	margin: 30px 0 20px;
	text-align: center;
	border-top: 1px dashed #727272;
	padding-top: 20px;
}
.btn_2 {
	width: 100%;
	height: 60px;
}
.btn_2 a {
	position: relative;
	display: block;
	line-height: 60px;
	text-align: center;
	vertical-align: middle;
	background-color: #e95295;
	cursor: pointer;
	transition-property: background-color;
	transition-duration: 0.4s; /*--0.4秒かけて効果が完了します--*/
	text-decoration: none;
	color: white;
}
.btn_2 a::after {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	width: calc(100% - 12px);
	height: calc(60px - 12px);
	border: solid 1px white;
}
.btn_2 a:hover {
	background-color: #1f4b99;
}
.top_btn {
	width: 80%;
	margin: 0 auto;
}

/*--------------------------------
ビデオブロック
----------------------------------*/
/*左上ブロック*/
.video_block_sp {
	display: none;
	aspect-ratio: 16 / 9;
}
.video_block_sp iframe {
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 850px){
	.video_block_sp {
		display: block;
		padding: 10px;
		margin-bottom: 20px;
	}
}
/*真ん中mainブロック*/
.main_video_block {
	display: block;
	width: 100%;
	hieght: auto;
	margin: 20px 0;
	padding: 10px 0;
	background-color: #EDEDED;
}
@media screen and (max-width: 850px){
	.main_video_block {
		padding: 4px;
	}
}
.main_video_block .video_wrapper {
	display: block;
	aspect-ratio: 16 / 9;
	max-width: 560px;
	width: 100%;
	margin: 0 auto;
}
.main_video_block .video_wrapper  iframe {
	width: 100%;
	height: 100%;
}
/*-----------------------
フォーカスブロック
-------------------------*/
.focus_block {
	display: block;
	width: 100%;
	hieght: auto;
	margin: 20px 0;
	padding: 20px 0;
	/*background-color: #FFFEDF;
	border: 2px solid #FFE3A5;
	border-radius: 8px;*/
}
.sub_buttom_flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 40px;
}
.sub_buttom_item {
	width: 280px;
	filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, .3));
	transform: scale(1)translateZ(0);
	transition: all 0.5s;
}
.sub_buttom_item:hover{
	transform: scale(1.05)translateZ(0);
	filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, .3));
}
.sub_buttom_item img {
	vertical-align:top;
}
/*-----------------------
SNSブロック
-------------------------*/
.sns_btn_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	row-gap: 20px;
	column-gap: 40px;
}
.sns_btn_item {
	display: block;
	width: 280px;
	height: 80px;
	padding: 10px 0;
	background: linear-gradient(to bottom, #E8E8E8 0%, #FFFFFF 60%, #FAFAFA 100% );
	border-radius: 4px;
	box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
.sns_btn_item a {
	display: block;
}
.sns_btn_contents {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-around;
	align-items: center;
}
.sns_btn_contents > .text {
	text-align: center;
	font-size: 13px;
	line-height: 1.5em;
	color: #363636;
}
.sns_btn_contents > .text > span {
	font-size: 16px;
	color: #f39800;
}
.sns_btn_contents > .icon {
	display: block;
	width: 40px;
	height: 40px;
}
.sns_btn_contents > .icon > img {
	width: 100%;
}

/*
会期中問い合わせ*/
.during_contact {
	margin: 0 auto 40px;
	max-width: 360px;
	wodth: 100%;
	box-shadow: 0 0 4px 0 rgba(0,0,0,0.30);
	border-radius: 6px;
}
.during_title {
	width: 100%;
	padding: 6px;
	text-align: center;
	border-radius: 6px 6px 0 0;
	background: linear-gradient(to bottom, #EC2763,  #ED6790);
	font-size: 16px;
	font-weight: 600;
	color: white;
}
.during_inner {
	width: 100%;
	padding: 10px;
	border-radius: 0 0 6px 6px;
	background-color: #FFFEEF;
}
.phone_number {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
}
.datetime {
	display: block;
	width: 100%;
	border-top: 3px solid #EC2763;
	border-bottom: 3px solid #EC2763;
}
.datetime_item {
	display: flex;
	flex-wrap: wrap;
	font-size: 12px;
	font-weight: 600;
	width: 250px;
	margin: 0 auto;
	padding: 4px 0;
	border-bottom: 1px dashed #CCCCCC;
}
.datetime_item span {
	font-size: 17px;
	margin: 0;
}
.datetime_item dd {
	margin-left: 0;
	width: 140px;
	font-size: 17px;
	text-align: right;
}