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

.news__item {
	width: calc((100% - 64px)/3);
	;
	justify-content: start;
}

.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;
	word-wrap: break-word;       /* 長い単語を強制的に折り返す */
  overflow-wrap: break-word;   /* 同上（新しい書き方） */
  word-break: break-word;      /* ブラウザによっては必要 */
  hyphens: auto;               /* 可能ならハイフンで自然に分割 */
}

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

	.news__item {
		width: 100%;
		justify-content: start;
	}

	/* .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;
	} */
}