@charset "UTF-8";

/* ===== funeralplan.php 専用スタイル ===== */

.funeralplan_main {
    background: #fff;
    color: #333;
    padding: 80px 0 0;
}

.funeralplan_main .inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

.sp_only { display: none; }

/* ===== イントロ（h2 + リード） ===== */
.funeralplan_intro {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
}

.funeralplan_intro__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: #1f1f1f;
    margin-bottom: 32px;
}

.funeralplan_intro__lead {
    font-size: 18px;
    line-height: 1.9;
    color: #4a4a4a;
    letter-spacing: 0.02em;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    margin: 0 0 28px;
}

.funeralplan_intro__lead:last-child {
    margin-bottom: 0;
}

/* ===== プランカード一覧 ===== */
.funeralplan_list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

/* カード上下の破線（最初のカード上端と各カード下端） */
.funeralplan_list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-top: 1px dashed #bcbcbc;
}

.funeralplan_card {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    padding: 48px 0;
    border-bottom: 1px dashed #bcbcbc;
}

/* 左：画像 */
.funeralplan_card__img {
    flex: 0 0 42%;
    max-width: 42%;
}

.funeralplan_card__img img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* 右：本文 */
.funeralplan_card__body {
    flex: 1 1 auto;
    min-width: 0;
    padding-top: 8px;
}

.funeralplan_card__title {
    font-size: 30px;
    font-weight: 700;
    color: #1f1f1f;
    letter-spacing: 0.06em;
    margin: 0 0 14px;
    line-height: 1.4;
    font-family: "Shippori Mincho", "Noto Serif JP", serif;
}

.funeralplan_card__title-sub {
    font-size: 24px;
    font-weight: 500;
    margin-left: 14px;
    color: #1f1f1f;
    font-family: "Shippori Mincho", "Noto Serif JP", serif;
}

.funeralplan_card__sub {
    font-size: 18px;
    font-weight: 600;
    color: #4E9E9C;
    letter-spacing: 0.04em;
    margin: 0 0 14px;
    font-family: "Shippori Mincho", "Noto Serif JP", serif;
}

.funeralplan_card__desc {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    letter-spacing: 0.02em;
    margin: 0 0 24px;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
}

/* 価格 + ボタン群 */
.funeralplan_card__bottom {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.funeralplan_card__price_wrap {
    flex: 1 1 auto;
    min-width: 200px;
}

.funeralplan_card__price {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    background: #f3f3f3;
    padding: 14px 28px;
    margin: 0;
    border-radius: 2px;
}

.funeralplan_card__price-label {
    font-size: 14px;
    color: #4E9E9C;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.funeralplan_card__price-value {
    font-size: 24px;
    font-weight: 700;
    color: #4E9E9C;
    letter-spacing: 0.02em;
}

.funeralplan_card__price-tax {
    font-size: 12px;
    color: #4E9E9C;
}

.funeralplan_card__note {
    font-size: 11px;
    color: #888;
    margin: 8px 0 0;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
}

.funeralplan_card__btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 0 0 auto;
}

.funeralplan_card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 220px;
    padding: 12px 22px;
    font-size: 13px;
    letter-spacing: 0.06em;
    border-radius: 999px;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
}

.funeralplan_card__btn .arrow {
    font-size: 9px;
    line-height: 1;
}

.funeralplan_card__btn--outline {
    background: #fff;
    color: #4E9E9C;
    border: 1px solid #4E9E9C;
}

.funeralplan_card__btn--outline:hover {
    background: #4E9E9C;
    color: #fff;
}

.funeralplan_card__btn--filled {
    background: #C9BC72;
    color: #fff;
    border: 1px solid #C9BC72;
}

.funeralplan_card__btn--filled:hover {
    background: #b3a55a;
    border-color: #b3a55a;
}

/* ===== レスポンシブ ===== */
@media (max-width: 900px) {
    .funeralplan_card {
        gap: 32px;
    }
    .funeralplan_card__title {
        font-size: 26px;
    }
    .funeralplan_card__title-sub {
        font-size: 20px;
    }
    .funeralplan_card__bottom {
        flex-direction: column;
        align-items: stretch;
    }
    .funeralplan_card__btns {
        flex-direction: row;
        justify-content: center;
    }
    .funeralplan_card__btn {
        flex: 1 1 0;
        min-width: 0;
    }
}

/* ============================================ */
/* ===== 場所・宗教 セクション ================= */
/* ============================================ */

.funeralplan_style {
    background-image: url(../img/plan/plan_bg.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 80px 0 120px;
    margin-top: 40px;
}

.funeralplan_style__intro {
    text-align: center;
    margin-bottom: 56px;
}

.funeralplan_style__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.06em;
    color: #4E9E9C;
    margin-bottom: 28px;
    font-family: "Zen Old Mincho", serif;
}

.funeralplan_style__lead {
    font-size: 18px;
    line-height: 1.9;
    color: #4a4a4a;
    letter-spacing: 0.02em;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
}

.funeralplan_style__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

/* 白い大きなカード */
.funeralplan_style__card {
    background: #fff;
    padding: 64px 64px 56px;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.funeralplan_style__card-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #1f1f1f;
    margin: 0 0 40px;
    font-family: "Zen Old Mincho", serif;
}

.funeralplan_style__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.funeralplan_style__item {
    display: flex;
    align-items: center;
    gap: 32px;
}

.funeralplan_style__item-img {
    flex: 0 0 240px;
    max-width: 240px;
}

.funeralplan_style__item-img img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.funeralplan_style__item-body {
    flex: 1 1 auto;
    min-width: 0;
}

.funeralplan_style__item-title {
    font-size: 22px;
    font-weight: 600;
    color: #1f1f1f;
    letter-spacing: 0.06em;
    margin: 0 0 14px;
    font-family: "Zen Old Mincho", serif;
}

.funeralplan_style__item-desc {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    letter-spacing: 0.02em;
    margin: 0;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
}

/* レスポンシブ：場所・宗教セクション */
@media (max-width: 900px) {
    .funeralplan_style__card {
        padding: 48px 32px 40px;
    }
    .funeralplan_style__item-img {
        flex: 0 0 180px;
        max-width: 180px;
    }
}

@media (max-width: 767px) {
    .funeralplan_main {
        padding: 56px 0 0;
    }
    .sp_only { display: inline; }

    .funeralplan_intro {
        margin-bottom: 40px;
    }
    .funeralplan_intro__title {
        font-size: 20px;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    .funeralplan_intro__lead {
        font-size: 14px;
        line-height: 1.8;
    }
    .funeralplan_intro__lead br {
        display: none;
    }

    .funeralplan_card {
        flex-direction: column;
        gap: 20px;
        padding: 32px 0;
    }
    .funeralplan_card__img {
        flex: none;
        max-width: 100%;
    }
    .funeralplan_card__body {
        padding-top: 0;
    }
    .funeralplan_card__title {
        font-size: 22px;
    }
    .funeralplan_card__title-sub {
        font-size: 18px;
        margin-left: 10px;
    }
    .funeralplan_card__sub {
        font-size: 16px;
    }
    .funeralplan_card__desc {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 18px;
    }
    .funeralplan_card__price {
        padding: 10px 18px;
    }
    .funeralplan_card__price-value {
        font-size: 20px;
    }
    .funeralplan_card__btns {
        flex-direction: column;
    }
    .funeralplan_card__btn {
        width: 100%;
    }

    /* 場所・宗教 SP */
    .funeralplan_style {
        padding: 56px 0 80px;
    }
    .funeralplan_style__intro {
        margin-bottom: 36px;
        padding: 0 20px;
    }
    .funeralplan_style__title {
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 18px;
    }
    .funeralplan_style__lead {
        font-size: 14px;
        line-height: 1.8;
    }
    .funeralplan_style__lead br {
        display: none;
    }
    .funeralplan_style__inner {
        padding: 0 16px;
        gap: 32px;
    }
    .funeralplan_style__card {
        padding: 32px 20px 28px;
    }
    .funeralplan_style__card-title {
        font-size: 22px;
        margin-bottom: 28px;
    }
    .funeralplan_style__list {
        gap: 28px;
    }
    .funeralplan_style__item {
        flex-direction: column;
        gap: 14px;
    }
    .funeralplan_style__item-img {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
    .funeralplan_style__item-img img {
        aspect-ratio: 16 / 10;
    }
    .funeralplan_style__item-body {
        padding-top: 0;
    }
    .funeralplan_style__item-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .funeralplan_style__item-desc {
        font-size: 14px;
        line-height: 1.8;
    }
}
