.exhibition__list {
	display: flex;
	flex-direction: row;
	gap: 32px;
}

.exhibition__item {
	width: 100%;
	max-width: 320px;
}

.exhibition__item__img img {
	width: 100%;
	height: 196px;
	object-fit: cover;
	border: 1px solid #E2E2E2;
}

.exhibition__item__date {
	font-weight: 600;
	letter-spacing: 1px;
}

.exhibition__item__ttl {
	font-size: 2.4rem;
	line-height: 3.2rem;
	font-weight: 700;
}


@media (max-width: 768px) {
	.exhibition__list {
		flex-direction: column;
	}
}