@charset "UTF-8";

/* ---------------------------------------------------------
exhibition
------------------------------------------------------------ */
#exhibi_thumb p{
	margin: 10px 0;
}
#exhibi_thumb p a{
	display: flex;
	align-items: center;
	justify-content: center;
}
#exhibi_thumb ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#exhibi_thumb li{
	width: 32%;
	margin: 0 .6%;
	min-width: 180px;
	margin-bottom: 10px;
}
#exhibi_thumb li a{
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #9B7F55;
	border-radius: 20px;
	font-size: .9rem;
}
#exh_imgs{
    display: flex;
    justify-content: space-between;
}
#exh_imgs div{
    width: 100%;
    border: 1px solid #c9c9c9;
    position: relative;
    overflow: hidden;
}
#exh_imgs div + div{
	margin-left: 10px;
}
#exh_imgs div::before{
    content: "";
    padding-top: 100%;
    display: block;
}
#exh_imgs div img{
    width: 90%;
    height: 90%;
    position: absolute;
    top: 5%;
    left: 5%;
    object-fit: contain;
	font-family: 'object-fit: contain;';
}
#exh_data{
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #c9c9c9;
}
#exh_data dt{
	width: 30%;
	border-top: 1px solid #c9c9c9;
	padding: 10px 0;
	font-weight: bold;
    color: #666;
	line-height: 2;
}
#exh_data dd{
	width: 70%;
	border-top: 1px solid #c9c9c9;
	padding: 10px 0;
	line-height: 2;
}
.exh_list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	visibility: hidden;
	height: 0;
	opacity: 0;
	transition: .5s all;
}
.exh_list.done{
	visibility: visible;
	opacity: 1;
	height: auto;
}
.exh_list h2{
	width: 100%;
	margin: 20px 0;
}
.exh_item{
	width: 48%;
	margin-bottom: 20px;
	border: 1px solid #c9c9c9;
	padding: 10px;
	display: flex;
}
.exh_item figure{
	width: 30%;
}
.exh_item div{
	width: 70%;
	padding-left: 15px;
	display: flex;
	align-content: center;
	flex-wrap: wrap;
	font-size: 14px;
}
.exh_item em{
	margin-bottom: 20px;
	font-style: normal;
	color: #6D6D6D;
}
.exh_item h3{
	font-weight: normal;
}
.exh_item:hover img{
	opacity: .6;
}
#more-trig{
	width: 100%;
	max-width: 300px;
	padding: 15px;
	font-style: normal;
	border-radius: 30px;
	font-size: 1.2rem;
	text-align: center;
	display: block;
	margin: 30px auto;
	border: 1px solid #9B7F55;
	color: #9B7F55;
	cursor: pointer;
	position: relative;
}
#more-trig::before{
	content: "";
	display: inline-block;
    width: 15px; /* 大きさ */
    height: 15px; /* 大きさ */
    border-top: 2px solid #9B7F55; /* 線の太さ・色 */
    border-left: 2px solid #9B7F55; /* 線の太さ・色 */
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
	position: absolute;
	top: 50%;
	right: 30px;
	margin-top: -10px;
}

/* schedule */
#schedule-list{
	border: 1px solid #c9c9c9;
	padding: 0 20px;
	margin-bottom: 30px;
}
.schedule-item{
	display: flex;
	font-size: 14px;
	line-height: 24px;
	align-content: center;
	padding: 20px 0;
}
.schedule-item:not(:last-child){
	border-bottom: 1px solid #c9c9c9;
}
.schedule-item:hover{
	opacity: .8;
}
.schedule-item em{
	width: 170px;
	color: #6D6D6D;
	font-style: normal;
	position: relative;
	padding-left: 30px;
}
.schedule-item em::before{
	content: "";
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #000;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -10px;
	transition: .5s all;
}
.schedule-item:hover em::before{
	background: #6D6D6D;
}
.schedule-item em::after{
	content: "";
	width: 5px;
    height: 5px;
    border-top: 2px solid #fff; /* 線の太さ・色 */
    border-left: 2px solid #fff; /* 線の太さ・色 */
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
	display: block;
	position: absolute;
	top: 50%;
	left: 5px;
	margin-top: -3px;
	z-index: 1;
}
.schedule-item span{
	display: flex;
	align-items: center;
}
.schedule-note{
	margin-bottom: 80px;
}
.schedule-note h2{
	padding: 10px 20px;
	background: #F6F6F6;
}
.schedule-note h2 strong{
	font-size: 18px;
	line-height: 24px;
	display: block;
	margin-bottom: 5px;
}
.schedule-note h2 strong span{
	font-size: .8em;
	display: block;
}
.schedule-note h2 em{
	font-size: 14px;
	font-weight: normal;
	font-style: normal;
}
.schedule-note h2 em span{
	display: inline-block;
	background: #9B7F55;
	color: #fff;
	padding: 5px;
	font-size: 12px;
}
.schedule-note .content{
	margin-top: 10px;
}
.sch_imgs{
    display: flex;
    flex-wrap: wrap;
}
.sch_img{
	width: 32%;
	margin: 0 .5% 20px;
}
.sch_img a{
    position: relative;
    overflow: hidden;
	display: block;
}
.sch_img a::before{
    content: "";
    padding-top: 100%;
    display: block;
}
.sch_img img{
    width: 90%;
    height: 90%;
    position: absolute;
    top: 5%;
    left: 5%;
    object-fit: contain;
	font-family: 'object-fit: contain;';
}
.sch_img span{
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
	display: block;
}

@media screen and (max-width: 810px)  {
	.exh_item{width: 100%;}
	.exh_item em{width: 100%;}
	#schedule-list{padding: 0 10px;}
	.schedule-item{flex-wrap: wrap; position: relative;}
	.schedule-item em{width: 100%; position: static;}
	.schedule-item em br{display: none;}
	.schedule-item span{padding-left: 30px;}
	.sch_img{width: 48%;}
}
