/* ▼ 都道府県の基本色 */
.prefecture polygon,
.prefecture path {
    fill: #eeeeee;
    stroke: #333;
    transition: 0.2s;
}

/* ▼ ホバー時（朱色） */
.prefecture:hover polygon,
.prefecture:hover path {
    fill: #c73e3a;
}

/* ▼ クリック中（県ページで上書き用） */
.prefecture.active polygon,
.prefecture.active path {
    fill: #1a2a4a !important;
}

.prefecture.active polygon,
.prefecture.active path {
    fill: #1a2a4a !important;
}

