@charset "UTF-8";
/* CSS Document */


#h_event {
	display: flex;
	background: #f29900;
	color: #000;
	margin-bottom: 3em;
}

.eventImg {
	width: 50%;
	font-size: 0;
	background: #000;
}

.eventImg img {
	width: 100%;
}

#h_event h2 {
	width: 50%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 2.45vw;
	line-height: 1.2;
	position: relative;
	top: -0.5rem;
}

#h_event h2 .date,
#h_event strong {
	display: block;
}

#h_event .date {
	border-bottom: solid 1px #000;
	font-weight: 400;
	letter-spacing: 0.02em;
	margin-bottom: 0.15em;
}

#h_event strong {
	margin-top: 0.2em;
	font-weight: 600;
}


@media screen and (max-width: 580px) {

	#h_event {
		display: block;
	}

	.eventImg {
		width: 100%;
		text-align: center;
	}

	.eventImg img {
		width: 42rem;
		max-width: 100%;
	}

	#h_event h2 {
		width: 100%;
		font-size: max(1.8rem, 3.2vw);
		padding: 0.75em;
		margin: 0;
		top: auto;
	}
}