.section_inner {
    padding: 6rem 0 6rem;
}

/*ーーーーーーーーーーーーーー
企画展示・イベント一覧
ーーーーーーーーーーーーーー*/
#event_list{}

/* 新着のカテゴリースタイル */
.event_category{
	display: flex;
	justify-content: space-evenly;
	max-width: 800px;
	margin: 0 auto 2em;
}
.event_category a{
	padding:0.5em 1em;
	border:1px #A28A3D solid;
	width: 25%;
	color:#A28A3D;
	transition: .2s;
	text-align: center;
}
.event_category a.active{
	background-color: #A28A3D;
	color:#fff ;
}
.event_category a.all_item{
	border:1px #292929 solid;
	color:#292929;
}
.event_category a.all_item.active{
	background-color: #292929;
	color:#fff ;
}
.event_category a.pref_item{
	border:1px #80232c solid;
	color:#80232c;
}
.event_category a.pref_item.active{
	background-color: #80232c;
	color:#fff ;
}
.event_category a:hover{
	background-color: #A28A3D;
	color:#fff ;
}
.event_category a.pref_item:hover{
	background-color: #80232c;
	color:#fff ;
}
.event_category a.all_item:hover{
	background-color: #292929;
	color:#fff ;
}

@media screen and (max-width: 999px) {
/* 新着のカテゴリースタイル */
.event_category a{
	width: auto;
}
}



#event_list ul{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 0;
	flex-wrap: wrap;
}
#event_list li{
	list-style: none;
	width: 100%;
	background-color: #fff;
    margin: 0 1% 5% 1%;
    font-weight: bold;
}
#event_list li + li{
  border-top:none;
}
#event_list .eventimg_wrap{
	position: relative;
}
#event_list img{
	width: 100%;
}
#event_list .tag_sponsor{
	width: auto;
	color: #fff;
	border: 1px solid #993333;
	background: #993333;
	position: absolute;
	left: 0;
	bottom: 0;
	font-size: small;
	padding: 1px 10px;
}

#event_list .tag_sponsor.whgc{
	background: #A28A3D;
	border: 1px solid #A28A3D;
}

#event_list .text_wrap{
	width: 100%;
	height: auto;
	text-align: left;
}
#event_list .event_term{
	font-size: 80%;
}

/*4カラムの場合の擬似要素*/
#event_list .event-wrap .event_ul::before{
  content:"";
  display: block;
  width:23%;
  margin: 0 1% 3% 1%;
  order:1;
}
#event_list .event-wrap .event_ul::after{
  content:"";
  display: block;
  width:23%;
  margin: 0 1% 3% 1%;
}


/* ディスプレイ 550px以上*/
@media (min-width: 550px){ 
	#event_list li{
		width: 45%;
	}
}

/* ディスプレイ 1200px以上*/
@media (min-width: 1200px){ 
	#event_list li{
		width: 23%;
    	margin: 0 1% 3% 1%;
	}
}


/*ーーーーーーーーーーーーーー
企画展示・イベント記事
ーーーーーーーーーーーーーー*/
#event_article .section_inner {
	max-width: 800px;
}
#event_article .listing_date{
	text-align: center;
}
#event_article .listing_date span {
    display: inline-block;
    margin-right: 1rem;
    color: #fff;
    background-color: #80232c;
    padding: 0.2em 20px;
    text-align: center;
}
#event_article .listing_date span.whgc{
	background-color: #A28A3D;
}

#event_article .news_content{
	margin: 50px auto;
}

#event_article .thumbnail_wrap{
	text-align: center;
}
#event_article .thumbnail_wrap img{
	width: 800px;
	height: 450px;
	object-fit: cover;
	object-position: center top;
}


#event_article .event_date{
	max-width: 800px;
	color: #fff;
	text-align: center;
	background-color: #A28A3D;
	border-radius: 30px;
	padding: 1rem;
	margin: 30px auto;
	font-weight: bold;
}
#event_article .link_button.booking{
	font-size: 2rem;
	font-weight: bold;
}
#event_article .link_button.booking a{
	background-color: #DDD;
}

