.bc-footer {
    background: #1a1a1a;
    /* 深い黒に近いグレー */
    color: #fff;
    padding: 80px 0 40px;
    margin-top: 0;
    /* 前のセクション（検索ナビ）と密着させる場合は0 */
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

/* 左側：ブランドエリア */
.footer-brand {
    flex: 1;
}

.footer-logo img {
    width: auto;
    height: 40px;
    /* ロゴサイズ調整 */
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
}

.footer-sns {
    display: flex;
    gap: 15px;
}

.sns-icon {
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    background: #333;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.2s;
}

.sns-icon:hover {
    background: #FFD700;
    color: #000;
}

/* 右側：ナビゲーションエリア */
.footer-nav {
    display: flex;
    gap: 60px;
}

.nav-group h4 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFD700;
    /* 見出しを黄色に */
}

.nav-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-group ul li {
    margin-bottom: 12px;
}

.nav-group ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.nav-group ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

/* フッター下部 */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.copyright {
    font-size: 12px;
    color: #666;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 50px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 40px;
    }
}

/* 検索ナビゲーションセクション全体 */
.bc-search-navigation {
    background: #f2f2f2;
    /* 画像に基づいた薄いグレー */
    padding: 40px 20px;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.search-nav-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* 大見出し（青文字） */
.nav-title {
    font-size: 18px;
    font-weight: bold;
    color: #0033ff;
    /* サウナイキタイ・ブルー */
    margin: 30px 0 20px;
    display: block;
}

/* 地方ごとの行（Flexboxで横並び） */
.region-group {
    display: flex;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* 地方名（左側） */
.region-group h4 {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    width: 140px;
    /* 左側の見出し幅を固定 */
    flex-shrink: 0;
    margin: 0;
}

/* 都道府県リンク（右側） */
.link-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0 15px;
    /* 横の隙間 */
}

.link-items a,
.feature-tags a {
    font-size: 14px;
    color: #333;
    text-decoration: underline;
    /* 画像通り下線あり */
    text-underline-offset: 3px;
    text-decoration-color: #999;
}

.link-items a:hover,
.feature-tags a:hover {
    color: #0033ff;
    text-decoration-color: #0033ff;
}

/* 特徴から探す（タグではなくテキストリンク形式） */
.nav-section.features {
    margin-top: 40px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    padding-left: 0;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .region-group {
        flex-direction: column;
        /* スマホでは縦に並べる */
        margin-bottom: 20px;
    }

    .region-group h4 {
        width: 100%;
        margin-bottom: 8px;
        font-size: 14px;
        background: #e5e5e5;
        padding: 4px 8px;
    }

    .link-items {
        padding-left: 8px;
    }
}
