
/* ===== 世帯と人口ボックス：アイコン・項目名・数値を3列で揃える (2026-07-29) ===== */
.population-map .statistics {
	display: grid;
	gap: 8px;
	width: auto;
	margin: 0 auto;
	align-items: center;
}
.statistics > .data-point {
	display: grid;
	grid-template-columns: 24px minmax(5em, auto) minmax(4.5em, auto);
	align-items: center;
	column-gap: 12px;
	width: auto;
	justify-content: normal;
}
.statistics .data-point img {
	width: 22px;
	height: 22px;
	margin: 0;
	justify-self: center;
}
.statistics .stat-label {
	text-align: left;
	font-size: 17px;
	line-height: 1.3;
}
.statistics .stat-value {
	text-align: right;
	font-size: 22px;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	line-height: 1.3;
}
.statistics .stat-unit {
	font-size: 14px;
	font-weight: 400;
	margin-left: 2px;
}
@media (max-width: 400px) {
	.statistics > .data-point {
		grid-template-columns: 22px minmax(4.5em, auto) minmax(4em, auto);
		column-gap: 8px;
	}
	.statistics .stat-label { font-size: 15px; }
	.statistics .stat-value { font-size: 19px; }
}
