li {
	list-style: none;
}

#newsList {
	padding: 0;
}

.newsItem {
	margin: 2rem 0;
}

.publishDate {
	color: #848484;
	margin-right: 30px;
}

.titleLink {
	color: #282526;
}

/*スマホ向け*/
@media screen and (max-width: 750px) {
	/* スマホは幅が狭いので日付とタイトルを横に並べると読みづらいので縦に並べる */
	/* HENKYOのお知らせページを参考にした */
	/* https://henkyo.jp/info/ */
	.newsItem {
		display: flex;
		flex-direction: column;
	}
}