/* ニュース・お知らせ一覧ページ */

.news-section {
	background: #fff;
}

.news-section .section-inner {
	padding-top: 56px;
	padding-bottom: 80px;
}

/* ============================================
   投稿リスト
   ============================================ */
.news-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.news-item {
	border-bottom: 1px solid #e8f0eb;
}

.news-item:first-child {
	border-top: 1px solid #e8f0eb;
}

.news-link {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 8px;
	text-decoration: none;
	color: inherit;
	transition: background 0.15s;
}

.news-link:hover {
	background: #f7fdf9;
}

.news-link:hover .news-title {
	color: #4da487;
}

/* 日付 */
.news-date {
	flex-shrink: 0;
	font-size: 14px;
	color: #888;
	letter-spacing: 0.05em;
}

/* カテゴリ */
.news-cat {
	flex-shrink: 0;
	font-size: 12px;
	color: #4da487;
	border: 1px solid #4da487;
	padding: 2px 10px;
	border-radius: 20px;
	white-space: nowrap;
}

/* タイトル */
.news-title {
	flex: 1;
	font-size: 15px;
	color: #333;
	line-height: 1.6;
	transition: color 0.15s;
}

/* ============================================
   ページネーション
   ============================================ */
.news-pagination {
	margin-top: 48px;
	text-align: center;
}

.news-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	align-items: center;
}

.news-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	font-size: 14px;
	color: #555;
	border: 1px solid #e0efe8;
	border-radius: 4px;
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
}

.news-pagination .page-numbers:hover,
.news-pagination .page-numbers.current {
	background: #4da487;
	color: #fff;
	border-color: #4da487;
}

.news-pagination .page-numbers.dots {
	border: none;
	background: none;
}

/* 空メッセージ */
.news-empty {
	font-size: 15px;
	color: #888;
	text-align: center;
	padding: 48px 0;
}

/* ============================================
   レスポンシブ
   ============================================ */
@media screen and (max-width: 768px) {
	.news-link {
		flex-wrap: wrap;
		gap: 8px;
		padding: 16px 4px;
	}

	.news-title {
		flex-basis: 100%;
		font-size: 14px;
	}
}
