/* =====================================================
■ エリアLP共通スタイル
===================================================== */

.area-lp {
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
    line-height: 1.8;
    font-size: 1.6rem;
}

/* =========================
見出し
========================= */

.area-lp h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 0.6em;
    line-height: 1.4;
}

.area-lp h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.6em;
    line-height: 1.4;
    text-align: center;

}

.area-lp h3 {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 0.5em;
}

/* =========================
段落
========================= */

.area-lp p {
    margin-bottom: 1.2em;
    font-size: 1.8rem;
}

/* =========================
セクション余白
========================= */

.area-lp section {
    padding: 70px 0;
}

/* =========================
リンク
========================= */

.area-lp a {
    text-decoration: none;
    transition: 0.3s;
}

.area-lp a:hover {
    color: #333;
}

/* =====================================================
HERO
===================================================== */

.area-hero {
    position: relative;
    background: linear-gradient(135deg, #3a84bf);
    color: #fff;
    padding: 120px 20px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: auto;
}

.hero-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 25px;
}

.hero-lead {
    font-size: 18px;
    margin-bottom: 40px;
}

/* 電話ボタン */

.hero-btn {
    display: block;
    background: linear-gradient(135deg, #ff8a00, #ff5200);
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    padding: 28px 20px;
    border-radius: 999px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .3);
    transition: .3s;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

/* スマホ */

@media(max-width:768px) {

    .hero-btn {
        font-size: 20px;
        padding: 24px 15px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-lead {
        font-size: 16px;
    }

}

/* =====================================================
地域説明
===================================================== */

.area-intro {
    padding: 50px 15px;
    text-align: center;
    background: #fff;
}

.area-intro p {
    max-width: 700px;
    margin: auto;
    color: #555;
}

/* =====================================================
プラン一覧
===================================================== */

.area-plan {
    padding: 60px 15px;
    background: #fff;
}

.area-plan p {
    text-align: center;
}

.area-plan h2 {
    margin-bottom: 40px;
}

/* Grid */

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    align-items: stretch;
}

/* カードリンク */

.plan-box-link {
    display: block;
    color: inherit;
}

/* カード */

.plan-box {
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 14px;
    background: #fafafa;
    text-align: center;
    transition: .3s;

    display: flex;
    flex-direction: column;
    position: relative;
}

.plan-box-link:hover .plan-box {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .1);
}

.plan-box h3 {
    font-size: 2.6rem;
}

/* 最安値 */

.badge-lowest {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #c00;
    color: #fff;
    padding: 6px 14px;
    font-size: 15px;
    border-radius: 24px;
}

/* リード */

.plan-lead {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;

    min-height: 72px;
}

/* 価格 */

.price-area {
    margin-top: auto;
}

.price-num {
    font-size: 1.8em;
    font-weight: bold;
    color: #ff6b6b;
}

.price-tax {
    font-size: 13px;
    color: #666;
}

/* 流れ画像 */

.plan-flow-image {
    margin: 15px 0;
    text-align: center;
}

.plan-flow-image img {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
}

/* CTA */

.card-cta {
    margin-top: auto;
    padding: 4px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

.cta-text {
    font-size: 13px;
    font-weight: bold;
    color: #0073e6;
}

.card-arrow {
    width: 32px;
    height: 32px;
    background: #0073e6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-box-link:hover .card-arrow {
    transform: translateX(4px);
    background: #ff5200;
}

.plan-box-link:hover .cta-text {
    color: #ff5200;
}


/* =====================================================
Googleレビュー
===================================================== */

.google-reviews {
    margin: 60px 0;
}

.review-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.review-item {
    background: #fafafa;
    padding: 20px;
    border-radius: 10px;
}

.review-star {
    color: #f6b400;
    font-size: 18px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
}

.review-author {
    font-size: 12px;
    color: #777;
    margin-top: 10px;
}

.google-reviews {
    margin: 60px 0;
}

.review-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.review-item {
    background: #fafafa;
    padding: 20px;
    border-radius: 10px;
}

.review-star {
    color: #f6b400;
    font-size: 18px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
}

.review-author {
    font-size: 12px;
    color: #777;
    margin-top: 10px;
}

.area-faq {
    padding: 50px 15px;
    background: #f9f9f9;
}

.area-faq h2 {
    margin-bottom: 30px;
}

/* =========================
   葬儀形式リンク
========================= */

.area-plan-links {
    background: #f7f7f7;
    padding: 50px 0;
}

.area-plan-links h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 30px;
    font-weight: 700;
}

.plan-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-links li {
    width: 260px;
}

.plan-links a {
    display: block;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    padding: 16px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    transition: all .25s ease;
}

/* hover */
.plan-links a:hover {
    background: #f2f6f9;
    border-color: #cfd8e3;
    transform: translateY(-2px);
}

/* スマホ */
@media (max-width:768px) {

    .plan-links li {
        width: 100%;
    }

    .plan-links a {
        font-size: 15px;
        padding: 14px;
    }

}

/* =====================================================
CTA
===================================================== */

.area-cta {
    padding: 70px 15px;
    background: #3a84bf;
    color: #fff;
    text-align: center;
}

.area-cta h2 {
    font-size: 1.9em;
    margin-bottom: 25px;
}

.area-cta .txt-15 {
    color: #000;
}


/* =====================================================
斎場紹介
===================================================== */

.saijo-card-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    align-items: stretch;
    /* ★高さ崩れ防止 */
}

/* カード */

.saijo-card {
    border: 1px solid #ddd;
    background: #fff;
    transition: .3s;
    height: 100%;

    display: flex;
    flex-direction: column;
}

/* リンク */

.saijo-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;

    padding-bottom: 0;
}

/* ホバー */

.saijo-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* 画像 */

.saijo-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* タイトル */

.saijo-title {
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
}

/* CTA */

.card-cta {
    margin-top: auto;
    /* ★超重要（下固定） */
    padding: 15px;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;

    border-top: 1px solid #eee;
}

/* CTA文字 */

.cta-text {
    font-size: 13px;
    font-weight: bold;
    color: #0073e6;
}

/* 矢印 */

.card-arrow {
    width: 32px;
    height: 32px;
    background: #0073e6;
    color: #fff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .3s;
}

/* Hover */

.saijo-card a:hover .card-arrow {
    transform: translateX(4px);
    background: #ff5200;
}

.saijo-card a:hover .cta-text {
    color: #ff5200;
}

/* =====================================================
レスポンシブ
===================================================== */

@media (max-width:768px) {

    .plan-grid {
        grid-template-columns: 1fr;
    }

}