<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/* 全体のセンタリングと余白 */
.news-area {
	text-align: center;
	padding: 30px 20px;
}

/* タイトル部分 */
.news-area h2.second-top-page-title {
	font-family: 'Jost';
	font-size: 30px;
	letter-spacing: 3px;
	margin-bottom: 10px;
	color: #3f3f3f;
	border-bottom: none;
	font-weight: 400;
}

.news-area p.second-top-page-subtitle {
	color: #3f3f3f;
	font-size: 14px;
	letter-spacing: 0.1em;
	margin-bottom: 40px;
}

/* ニュースエリア */
.news-list {
	list-style: none;
	margin: 0 auto 40px auto;
	padding: 0;
}

.news-list li {
	border-bottom: 1px solid #ccc;
	text-align: left;
}

.news-list li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	text-decoration: none;
	color: #333;
	transition: color 0.3s;
}

.news-date {
	width: 100px;
	font-size: 16px;
	font-weight: 600;
	color: #0088a9;
}

.news-title-text {
	flex: 1;
	padding-left: 10px;
	font-size: 20px;
	color: #666666;
	word-break: break-all;
}

.news-arrow {
	font-size: 18px;
	color: #0088a9;
}

.news-list li a:hover .news-title-text {
	color: #0088a9;
}


/* スマホ向けレイアウト調整 */
@media screen and (max-width: 768px) {
	.news-list li a {
		align-items: center;
		flex-wrap: wrap;
	}

	.news-date {
		width: 100%;
		margin-bottom: 8px;
		font-size: 14px;
	}

	.news-title-text {
		display: inline-block;
		font-size: 16px;
		width: 90%;
		padding: 0;
	}

	.news-arrow {
		display: inline-block;
		margin-left: 5px;
		font-size: 16px;
		width: calc(10% - 5px)
	}
}</pre></body></html>