﻿h2 {
    margin-bottom: 20px;
}

.furusato_wrap {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}


/* ヒーロー */
.furusato_hero {
    text-align: center;
    padding: 10px 20px;
}

    .furusato_hero p {
        color: #666;
    }

.hero_title {
    line-height: 1.2;
    margin-bottom:20px;
}

    /* 上（サブ） */
    .hero_title .sub {
        margin-bottom: 4px;
        font-size: clamp(20px, 4vw, 26px);
        display: block;
    }

    /* 下（メイン） */
    .hero_title .main {
        font-size: clamp(28px, 6vw, 40px);
        font-weight: bold;
        letter-spacing: 0.02em;
        display: block;
    }


.hero_note {
    font-size: 13px;
    color: #888;
}

.hero_img {
    width: 100%;
    max-width: 700px;
    margin: 5px auto 0 auto;
}

    .hero_img img {
        width: 100%;
        border-radius: 12px;
    }


.area_notice {
    background: #fff3cd;
    color: #856404;
    padding: 12px 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 24px;
    font-weight:bold;
    text-align:center;
}



/* セクション */
.section {
    padding: 60px 0;
}

    .section:nth-child(even) {
        padding: 70px 0;
    }


.bg_land,
.bg_house {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.bg_land {
    background: #f3faf5; /* うっすら緑 */
}

.bg_house {
    background: #f3f7fb; /* うっすら青 */
}

.bg_land h2 {
    border-left: 6px solid #2e8b57;
    padding-left: 10px;
}

.bg_house h2 {
    border-left: 6px solid #2f6db3;
    padding-left: 10px;
}

.bg_land h2::before {
    content: "LAND";
    font-size: 12px;
    color: #2e8b57;
    display: block;
}

.bg_house h2::before {
    content: "HOUSE";
    font-size: 12px;
    color: #2f6db3;
    display: block;
}

.section_inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px; /* ←これ追加 */
}

/* リード文 */
.lead {
    font-size:18px;
    text-align: center;
    color: #555;
    line-height: 1.8;
}

/* カード */
.card_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

    .card:hover {
        transform: translateY(-5px);
    }

.card_title {
    font-weight: bold;
    margin-bottom: 10px;
}

.card_img {
    margin: 10px 0;
    overflow: hidden;
    border-radius: 10px;
}

    .card_img img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        display: block;
    }


/* 補足 */
.note {
    margin-top: 5px;
    font-size: 13px;
    color: #777;
}

/* CTA */
.cta_area {
    background: #fafafa;
    padding: 40px 20px;
    border-radius: 12px;
}

.cta_text {
    margin-bottom: 20px;
    font-size:18px;
    font-weight: bold;
}

.cta_banners {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

    .cta_banners a {
        display: block;
        text-align: center;
        text-decoration: none;
    }

    .cta_banners img {
        width: 100%;
        max-width: 500px;
        border-radius: 10px;
        transition: 0.3s;
    }

    .cta_banners span {
        display: block;
        margin-top: 8px;
        font-weight: bold;
        color: #333;
    }

    /* ホバーでちょいリッチに */
    .cta_banners a:hover img {
        transform: scale(1.03);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

/* PC */
@media (min-width: 600px) {
    .cta_banners {
        flex-direction: row;
        justify-content: center;
    }

        .cta_banners a {
            width: 300px;
        }
}
