/*------------------------------------------------------------
	イベント情報
-------------------------------------------------------------*/
.event-area-box {
	width: 100%;
	height: auto;
}
	.state01 {
		color: #f98e81;
		font-size: 85%;
	}/*：開催予定*/
		.state01::before {
			content: "開催予定";
			background: #f98e81;
			color: #fff;
			font-weight: 500;
			padding: 0 5px;
			margin: 0 10px 0 0;
		}
	.state02 {
		color: #5bc2d9;
		font-size: 85%;
	}/*：開催中*/
		.state02::before {
			content: "開催中";
			background: #5bc2d9;
			color: #fff;
			font-weight: 500;
			padding: 0 5px;
			margin: 0 10px 0 0;
		}
	.state03 {
		color: #684736;
		font-size: 85%;
	}/*：終了*/
		.state03::before {
			content: "終了";
			background: #684736;
			color: #fff;
			font-weight: 500;
			padding: 0 5px;
			margin: 0 10px 0 0;
		}
		.photo-event img {
			display: block;
			max-height: 400px;
		}
@media screen and (min-width: 436px) {
	.photo-event img {
		max-width: 100%;
		margin: 0 auto 20px auto;
		padding: 0;
	}
}