@charset "UTF-8";
/**
* イベントトップページ用スタイル
*
*/
.event_items {
	align-items: stretch;
	display: block;
}
.event_item {
	/*width: calc( 100% / 2 );
	min-height: calc( 100vw / 2.5 );*/
	padding: 5px;
}
@media screen and (min-width: 768px) {
	.event_item {
		/*width: calc( 100% / 4 );
		min-height: calc( 100vw / 4.5 );*/
	}
}
@media screen and (min-width: 941px) {
	.event_item {
		/*width: calc( 100% / 4 );
		min-height: calc( 100vb / 4.5 );*/
	}
}

.event_item_meta {
	display: none;
}
.event_item .event_item_inner {
	/*display: flex;
	justify-content: center;*/
	/*align-items: center;*/
	/*background-color: #c00018;*/
	display: block;
	margin: 0 auto;
	background-color: var(--color-blue);
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	border-bottom: none;
	width: 100%;
	height: 100%;
	padding: 0.5em;
	transition: all 0.5s ease;
}
@media screen and (min-width: 768px) {
	.event_item .event_item_inner {
		width: 90%;
		font-size: 130%;
		padding: 1em;
	}
}

.event_item .event_item_inner:hover,
.event_item .event_item_inner:focus {
	/*background-color: var(--color-blue);*/
	text-decoration: underline dotted;
	/*font-size: 105%;*/
	overflow: hidden;
}
