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

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

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

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

.news__item__ttl {
	font-size: 2.0rem;
	line-height: 3.2rem;
	font-weight: 600;
}

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

	.news__item a {
		display: flex;
		flex-direction: row;
		gap: 16px;
	}

	.news__item__img img {
		width: 104px;
		height: 112px;
		object-fit: cover;
		border: 1px solid #E2E2E2;
	}

	.news__item__txt {
		flex: 1;
	}

	.news__item__ttl {
		font-size: 1.6rem;
		line-height: 2.4rem;
		font-weight: 500;
	}
}