
/* ===== TOP左カラムの整列 と お知らせ一覧ページのバッジ (2026-07-29) ===== */

/* --- TOP 左カラム：バナー間隔を揃え、右のお知らせ欄と下端を合わせる --- */
.content-wrapper {
	align-items: stretch;
}
.left-side .left-column {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.left-side .left-column br {
	display: none;
}
.left-side .left-column a {
	display: block;
	line-height: 0;
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow .15s, transform .15s;
}
.left-side .left-column a:hover {
	box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
	transform: translateY(-2px);
}
.left-side .left-column img {
	display: block;
	width: 100%;
	height: auto;
}
.left-side .population-map {
	margin-top: 14px;
	border-radius: 10px;
}
.left-side .achievement {
	margin-top: 14px;
}

/* 右カラム（お知らせ）を左カラムと同じ高さまで伸ばして下端を揃える */
.right-side {
	display: flex;
}
.right-side .center-column {
	display: flex;
	flex: 1;
}
.right-side .oshirase {
	flex: 1;
	display: flex;
	flex-direction: column;
	margin: 0;
}
.right-side .oshirase ul.news-list {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
@media (max-width: 900px) {
	.right-side .oshirase ul.news-list {
		display: block;
	}
}

/* --- お知らせ一覧ページ：バッジが「上下水道部／門」と折れるのを解消 --- */
.announcement-item-left {
	width: auto;
	min-width: 136px;
	text-align: left;
}
.announcement-item-left time {
	font-size: 13px;
	color: #6b7280;
	font-variant-numeric: tabular-nums;
	margin-bottom: 8px;
}
.announcement-item-left span[class^="category-"] {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	padding: 5px 11px;
	border-radius: 999px;
	white-space: nowrap;
	margin-right: 0;
}

/* スマホ幅の行レイアウトはテーマ側の既存ルール（768px以下でborder-topに切替）に任せる */
