@charset "UTF-8";

/* ============================================================
   price.css
   「葬儀・家族葬の費用・プラン」ページ専用スタイル
   ============================================================ */


/* 1_リードセクション (.price_lead_sec)
   - ボタンは .jiin_reason_sec_btn_link と同じ値 (アイコンのみ下向きに変更) */
.price_lead_sec {
    width: 100%;
    background: #fff;
    padding: 80px 20px;
    box-sizing: border-box;
}
.price_lead_sec_inner {
    max-width: 1200px;
    margin: 0 auto;
}
.price_lead_sec_text {
    margin: 0 0 40px;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.9;
    text-align: center;
}
.price_lead_sec_text.left {
    text-align: left;
    padding: 0 20px;
}

.price_lead_sec_box {
    display: flex;
    gap: 20px;
    background: var(--col_cream);
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
}
.price_lead_sec_btn_link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 380px;
    padding: 18px 24px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), inset 0 1px 4px rgba(255, 255, 255, 0.15), inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-size: 2rem;
    font-weight: 500;
    text-decoration: none;
    box-sizing: border-box;
    transition: opacity 0.2s;
}
.price_lead_sec_btn_link:hover {
    opacity: 0.7;
}
.price_lead_sec_btn_arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--col_orange);
    border-right: 2px solid var(--col_orange);
    transform: rotate(45deg);
}

/* ------------------------------------------------------------
   SP (≤768px)
------------------------------------------------------------ */
@media screen and (max-width: 768px) {
    .price_lead_sec {
        padding: 60px 16px;
    }
    .price_lead_sec_text {
        margin-bottom: 30px;
        font-size: 1.8rem;
        text-align: left;
    }
    .price_lead_sec_box {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    .price_lead_sec_btn_link {
        max-width: none;
        font-size: 1.8rem;
        padding: 16px 20px;
    }
}


/* 2_プラン一覧セクション (.price_list_sec)
   - 上端 wave は --price-list-wave-pc / -sp で差し替え可能 (デフォルト bg_wave_top_3_pc/sp) */
.price_list_sec {
    position: relative;
    width: 100%;
    background: var(--col_cream);
    padding: 180px 20px 80px;
    box-sizing: border-box;
    overflow: hidden;
}
.price_list_sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: var(--price-list-wave-pc, url("../images/module/bg_wave_top_3_pc.webp")) no-repeat top center / 100% auto;
    z-index: 0;
}
.price_list_sec_inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}
.price_list_sec_list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.price_list_sec_item {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 50px 0;
}
.price_list_sec_item + .price_list_sec_item {
    border-top: 1px solid #DCC5AD;
}
.price_list_sec_item_img {
    flex: 0 0 47%;
}
.price_list_sec_item_img img {
    width: 100%;
    aspect-ratio: 280 / 177;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}
.price_list_sec_item_body {
    flex: 1 1 auto;
    min-width: 0;
}
.price_list_sec_item_title {
    margin: 0 0 16px;
    font-size: 4rem;
    font-weight: 700;
}
.price_list_sec_item_desc {
    margin: 0 0 20px;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.8;
}
.price_list_sec_item_price_block {
    margin: 0 0 24px 0;
    display: inline-block;
}
.price_list_sec_item_price_row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 3px;
    flex-wrap: wrap;
}
.price_list_sec_item_price_cap {
    display: inline-block;
    margin: 0;
    padding: 6px 16px;
    background: var(--col_orange);
    border-radius: 999px;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    flex: 0 0 auto;
}
.price_list_sec_item_price_cap_brown {
    background: var(--col_brown);
    border-radius: 0;
}
.price_list_sec_item_price {
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.price_list_sec_item_price_num {
    margin-right: 4px;
    font-size: 7rem;
    font-weight: 600;
    color: var(--col_orange);
    font-family: 'Roboto', sans-serif;
}
.price_list_sec_item_price_unit_wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}
.price_list_sec_item_price_label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--col_orange);
    line-height: 1;
}
.price_list_sec_item_price_unit {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--col_orange);
    line-height: 1;
}
.price_list_sec_item_price_tax {
    margin: 0 -3rem 0 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--col_orange);
    line-height: 1;
    text-align: right;
}

.price_list_sec_item_btn {
    margin: 0;
    text-align: right;
}
.price_list_sec_item_btn_link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 380px;
    padding: 18px 24px;
    background-image: linear-gradient(0deg, #d14a19, #e55927 10% 90%, #ff8b61);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    text-decoration: none;
    box-sizing: border-box;
    transition: opacity 0.2s;
}
.price_list_sec_item_btn_link:hover {
    opacity: 0.7;
}
.price_list_sec_item_btn_arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}

/* ------------------------------------------------------------
   SP (≤768px)
------------------------------------------------------------ */
@media screen and (max-width: 768px) {
    .price_list_sec {
        padding: 80px 16px 60px;
    }
    .price_list_sec::before {
        height: 60px;
        background-image: var(--price-list-wave-sp, url("../images/module/bg_wave_top_3_sp.webp"));
    }
    .price_list_sec_item {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 30px 0;
    }
    .price_list_sec_item_body {
        text-align: center;
    }
    .price_list_sec_item_price_block {
        margin: 0 0 24px 0;
    }
    .price_list_sec_item_title {
        font-size: 3rem;
        text-align: center;
    }
    .price_list_sec_item_desc {
        font-size: 1.8rem;
        text-align: left;
    }
    .price_list_sec_item_price_row {
        gap: 10px;
    }
    .price_list_sec_item_price_cap {
        font-size: 1.6rem;
        padding: 3px 10px;
    }
    .price_list_sec_item_price_num {
        font-size: 5rem;
    }
    .price_list_sec_item_price_label {
        font-size: 1.2rem;
    }
    .price_list_sec_item_price_unit {
        font-size: 2.6rem;
    }
    .price_list_sec_item_btn_link {
        max-width: none;
    }
    .price_list_sec_item_price_tax {
        margin: 0 0 0 0;
        font-size: 1.6rem;
    }
}


/* 1_MVセクション (.plan_mv_sec) — プラン詳細ページ共通 */
.plan_mv_sec {
    display: flex;
    align-items: stretch;
    width: 100%;
    background: var(--col_cream);
    box-sizing: border-box;
}
.plan_mv_sec_body {
    flex: 0 0 49.5%;
    padding: 70px 3%;
    box-sizing: border-box;
    order: 1;
    text-align: center;
    min-width: 660px;
}
.plan_mv_sec_title {
    margin: 0 0 20px;
    font-size: 5.6rem;
    font-weight: 700;
    text-align: center;
}
.plan_mv_sec_lead {
    margin: 0 0 30px;
    color: var(--col_brown);
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
}

.plan_mv_sec_price_block {
    position: relative;
    text-align: center;
    display: inline-block;
    margin: 0 auto;
    text-align: left;
}
.plan_mv_sec_price_normal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 8px;
}
.plan_mv_sec_price_normal_label {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid #999;
    font-size: 1.8rem;
    font-weight: 700;
}
.plan_mv_sec_price_normal_text {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.plan_mv_sec_price_normal_text_num {
    font-size: 3.2rem;
    font-weight: 600;
}
.plan_mv_sec_price_discount_badge {
    position: absolute;
    top: -17px;
    right: -35px;
    margin: 0 0 0 130px;
    padding: 8px 16px;
    background: #FFF3F3;
    border: 1px solid var(--col_orange);
    border-radius: 8px;
    color: var(--col_orange);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    z-index: 3;
}
.plan_mv_sec_price_discount_badge::before {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 9px solid var(--col_orange);
    z-index: -1;
}
.plan_mv_sec_price_discount_badge::after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 31px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #FFF3F3;
    z-index: -1;
}
.plan_mv_sec_price_discount_badge_num {
    font-size: 3.2rem;
    font-weight: 600;
}
.plan_mv_sec_price_arrow {
    display: block;
    width: 0;
    height: 0;
    margin: 10px 0 10px 35%;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 14px solid #c2a98f;
}
.plan_mv_sec_price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    line-height: 1;
}
.plan_mv_sec_price_cap {
    display: inline-block;
    padding: 7px 16px 9px;
    background: var(--col_orange);
    border-radius: 999px;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 500;
}
.plan_mv_sec_price_cap_brown {
    background: var(--col_brown);
}
.plan_mv_sec_price_num {
    font-size: 9rem;
    font-weight: 600;
    color: var(--col_orange);
    font-family: 'Roboto', sans-serif;
}
.plan_mv_sec_price_unit_wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}
.plan_mv_sec_price_label {
    font-size: 2.1rem;
    font-weight: 700;
    margin-left: 0.5rem;
    color: var(--col_orange);
    line-height: 1;
}
.plan_mv_sec_price_unit {
    font-size: 5rem;
    font-weight: 700;
    color: var(--col_orange);
    line-height: 1;
}
.plan_mv_sec_price_tax {
    margin: 5px 0 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--col_orange);
    text-align: right;
}

.plan_mv_sec_img {
    flex: 1 1 auto;
    order: 2;
}
.plan_mv_sec_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ------------------------------------------------------------
   SP (≤768px)
------------------------------------------------------------ */
@media screen and (max-width: 768px) {
    .plan_mv_sec {
        flex-direction: column;
    }
    .plan_mv_sec_body {
        flex: none;
        padding: 40px 20px;
        order: 2;
        min-width: inherit;
    }
    .plan_mv_sec_img {
        order: 1;
    }
    .plan_mv_sec_img img {
        aspect-ratio: 375 / 223;
    }
    .plan_mv_sec_title {
        font-size: 3.4rem;
    }
    .plan_mv_sec_lead {
        font-size: 1.8rem;
        letter-spacing: -0.03em;
    }
    .plan_mv_sec_price_block {
        text-align: center;
    }
    .plan_mv_sec_price_normal {
        flex-wrap: wrap;
        justify-content: flex-start;
        width: 100%;
    }
    .plan_mv_sec_price_normal_label {
        font-size: 1.5rem;
        padding: 3px 8px;
    }
    .plan_mv_sec_price_normal_text {
        font-size: 1.8rem;
    }
    .plan_mv_sec_price_normal_text_num {
        font-size: 3rem;
    }
    .plan_mv_sec_price_num {
        font-size: 5.2rem;
    }
    .plan_mv_sec_price_cap {
        font-size: 1.5rem;
        padding: 5px 7px 7px;
    }
    .plan_mv_sec_price_label {
        font-size: 1.2rem;
        margin-left: 0;
    }
    .plan_mv_sec_price_unit {
        font-size: 2.4rem;
    }
    .plan_mv_sec_price_tax {
        font-size: 1.8rem;
    }
    .plan_mv_sec_price_discount_badge {
        position: relative;
        top: 0;
        display: inline-block;
        margin: 16px auto 0;
        padding: 10px 20px;
        font-size: 1.8rem;
    }
    .plan_mv_sec_price_discount_badge::before {
        top: -9px;
        bottom: auto;
        left: 30px;
        border-top: none;
        border-bottom: 9px solid var(--col_orange);
    }
    .plan_mv_sec_price_discount_badge::after {
        top: -7px;
        bottom: auto;
        left: 31px;
        border-top: none;
        border-bottom: 7px solid #FFF3F3;
    }
    .plan_mv_sec_price_discount_badge_num {
        font-size: 3rem;
    }
}


/* 2_プラン一覧セクション (.plan_about_sec) — プラン詳細ページ共通 */
.plan_about_sec {
    width: 100%;
    background: #fff;
    padding: 80px 20px;
    box-sizing: border-box;
}
.plan_about_sec_inner {
    max-width: 1200px;
    margin: 0 auto;
}
.plan_about_sec_title {
    margin: 0 0 40px;
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
}
.plan_about_sec_body {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 60px;
}
.plan_about_sec_img {
    flex: 0 0 40%;
}
.plan_about_sec_img img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}
.plan_about_sec_text {
    flex: 1 1 auto;
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.9;
}

.plan_about_sec_religion {
    padding: 30px 40px;
    border: 1px solid #d4d4d4;
    border-radius: 12px;
    box-sizing: border-box;
}
.plan_about_sec_religion_title {
    margin: 0 0 24px;
    font-size: 2.2rem;
    font-weight: 500;
}
.plan_about_sec_religion_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
}
.plan_about_sec_religion_tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    background: #B2997E;
    border-radius: 999px;
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    width: calc((100% - 80px) / 6);
    -moz-box-sizing: border-box;
	box-sizing: border-box;
}
.plan_about_sec_religion_note {
    margin: 0;
    font-size: 1.8rem;
}

/* ------------------------------------------------------------
   SP (≤768px)
------------------------------------------------------------ */
@media screen and (max-width: 768px) {
    .plan_about_sec {
        padding: 40px 16px;
    }
    .plan_about_sec_title {
        margin-bottom: 20px;
        font-size: 2.7rem;
    }
    .plan_about_sec_body {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
    .plan_about_sec_img {
        flex: none;
        width: 100%;
    }
    .plan_about_sec_text {
        font-size: 1.6rem;
    }
    .plan_about_sec_religion {
        padding: 20px;
    }
    .plan_about_sec_religion_title {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    .plan_about_sec_religion_tags {
        gap: 10px;
    }
    .plan_about_sec_religion_tag {
        flex: 1 1 calc(50% - 5px);
        padding: 10px 16px;
        font-size: 1.8rem;
    }
    .plan_about_sec_religion_note {
        font-size: 1.6rem;
    }
}


/* 3_アピールセクション (.plan_appeal_sec) — プラン詳細ページ共通 [v2] */
.plan_appeal_sec {
    width: 100%;
    background-color: #FEF5F5;
    box-sizing: border-box;
    overflow: hidden;
}
.plan_appeal_sec_inner {
    position: relative;
    display: flex;
    align-items: flex-start;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 0 0;
}

/* ── 大きな円バブル (写真 上部 + テキスト 下部) ── */
.plan_appeal_main_bubble {
    position: relative;
    flex-shrink: 0;
    width: 34.4%;
    height: 34.4%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fea686;
    margin: 0 0 0 20px;
    -moz-box-sizing: border-box;
	box-sizing: border-box;
    container-type: inline-size;
    box-shadow: 0 2px 10px #FEA6864D

}
.plan_appeal_main_bubble_img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 79%;
}
.plan_appeal_main_bubble_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.plan_appeal_main_bubble_text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 26.5%;
    text-align: center;
    background: #fff;
    margin: 0;
    font-size: 2.6rem;
    font-size: 6cqw;
    font-weight: 700;
    line-height: 1.5;
    padding: 12px 17% 0;
}

/* ── コンテンツエリア (タイトル + 2つの小円) ── */
.plan_appeal_content {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 0 0 40px;
    display: flex;
    flex-direction: column;
}
.plan_appeal_sec_title {
    margin: 0;
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--col_brown);
    line-height: 1.5;
}

/* ── 2つの小円バブル ── */
.plan_appeal_bubbles {
    position: relative;
    padding: 21% 0 45px 0;
}
.plan_appeal_bubble {
    position: absolute;
    top: 30px;
    left: 22%;
    flex-shrink: 0;
    width: 32.5%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 2px solid #fea686;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    margin: 0 0 0 auto;
    padding: 20px;
    container-type: inline-size;
    box-shadow: 0 2px 10px #FEA6864D;
}
.plan_appeal_bubble--sm {
    position: relative;
    top: 0;
    left: -8%;
    width: 32.5%;
    aspect-ratio: 1 / 1;
    align-self: flex-end;
    margin: 20px 0 0 0;
}
.plan_appeal_bubble p {
    margin: 0;
    font-size: 2.6rem;
    font-size: 12cqw;
    font-weight: 500;
    line-height: 1.6;
}
.plan_appeal_item_em {
    color: var(--col_orange);
    font-weight: 700;
}

/* ── 右: 写真 ── */
.plan_appeal_photo {
    position: absolute;
    bottom: 0;
    right: 50px;
    flex-shrink: 0;
    width: 28.1%;
    align-self: stretch;
}
.plan_appeal_photo picture {
    display: block;
    width: 100%;
    height: 100%;
}
.plan_appeal_photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    display: block;
}

/* ------------------------------------------------------------
   SP (≤768px)
------------------------------------------------------------ */
@media screen and (max-width: 768px) {
    .plan_appeal_sec_inner {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        padding: 30px 0 0;
    }
    .plan_appeal_content {
        order: -1;
        padding: 0 16px 20px;
        gap: 0;
        width: 100%;
        box-sizing: border-box;
    }
    .plan_appeal_sec_title {
        font-size: 2.2rem;
        text-align: center;
    }
    .plan_appeal_main_bubble {
        position: absolute;
        top: 110px;
        left: 0;
        right: 0;
        width: 74vw;
        height: 74vw;
        margin: 0 auto;
    }
    .plan_appeal_main_bubble_text {
        font-size: 6cqw;
    }
    .plan_appeal_bubbles {
        padding-top: 155vw;
        gap: 14px;
    }
    .plan_appeal_bubble {
        position: absolute;
        top: inherit;
        bottom: 0;
        left: 13vw;
        right: inherit;
        width: 44vw;
        height: 44vw;
    }
    .plan_appeal_bubble--sm {
        position: absolute;
        top: inherit;
        bottom: 45vw;
        left: 0;
        width: 44vw;
        height: 44vw;
        padding: 12px;
    }
    .plan_appeal_bubble p {
        font-size: 12cqw;
    }
    .plan_appeal_photo {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 50%;
        height: 48%;
        align-self: auto;
    }
}


/* 4_プラン内容セクション (.plan_contents_sec) — プラン詳細ページ共通 */
.plan_contents_sec {
    width: 100%;
    background: #fff;
    padding: 80px 20px;
    box-sizing: border-box;
}
.plan_contents_sec_inner {
    max-width: 1040px;
    margin: 0 auto;
}
.plan_contents_sec_title {
    margin: 0 0 20px;
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
}
.plan_contents_sec_lead {
    margin: 0 0 30px;
    font-size: 1.8rem;
    text-align: center;
}

.plan_contents_sec_area {
    margin-bottom: 16px;
}
.plan_contents_sec_area_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 30px 12px;
    background: #FA916C;
    border-radius: 8px;
    color: #fff;
    font-size: 2.6rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
}
.plan_contents_sec_area[open] .plan_contents_sec_area_head {
    border-radius: 8px 8px 0 0;
}
.plan_contents_sec_area_head::-webkit-details-marker {
    display: none;
}
.plan_contents_sec_area_toggle {
    position: relative;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
}
.plan_contents_sec_area_toggle::before,
.plan_contents_sec_area_toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #FA916C;
    transform: translate(-50%, -50%);
}
.plan_contents_sec_area_toggle::before {
    width: 14px;
    height: 2px;
}
.plan_contents_sec_area_toggle::after {
    width: 2px;
    height: 14px;
}
.plan_contents_sec_area[open] .plan_contents_sec_area_toggle::after {
    display: none;
}

.plan_contents_sec_list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 20px 0 0;
}
.plan_contents_sec_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-sizing: border-box;
    text-align: center;
}
.plan_contents_sec_item_ico {
    display: block;
    width: 100%;
}
.plan_contents_sec_item_ico img {
    width: 100%;
    height: auto;
}

.plan_contents_sec_note {
    margin: 30px 0 0;
    font-size: 1.6rem;
    line-height: 1.8;
}

/* ------------------------------------------------------------
   SP (≤768px)
------------------------------------------------------------ */
@media screen and (max-width: 768px) {
    .plan_contents_sec {
        padding: 60px 16px;
    }
    .plan_contents_sec_title {
        font-size: 2.7rem;
    }
    .plan_contents_sec_lead {
        font-size: 1.6rem;
    }
    .plan_contents_sec_area_head {
        padding: 16px 20px;
        font-size: 2rem;
    }
    .plan_contents_sec_list {
        grid-template-columns: repeat(3, 1fr);
    }
    .plan_contents_sec_item {
        gap: 14px;
    }
    .plan_contents_sec_note {
        font-size: 1.6rem;
    }
}


/* 5_流れ内容セクション (.plan_flow_sec) — プラン詳細ページ共通 */
.plan_flow_sec {
    width: 100%;
    background: var(--col_cream);
    padding: 80px 20px 80px;
    box-sizing: border-box;
}
.plan_flow_sec_inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.plan_flow_sec_title {
    margin: 0 0 24px;
    font-size: 4rem;
    font-weight: 700;
}
.plan_flow_sec_img {
    width: 100%;
    display: block;
}

/* ボタン (葬儀の流れを詳しく見る) — service.css の .service_support_sec_btn と同デザイン */
.plan_flow_sec_btn {
    margin: 50px 0 0;
    text-align: center;
}
.plan_flow_sec_btn_link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 36px;
    background: #fff;
    border-radius: 6px;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.2),
        inset 0 1px 4px rgba(255, 255, 255, 0.15),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    font-size: 1.8rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.plan_flow_sec_btn_link:hover {
    opacity: 0.85;
    color: #333;
}
.plan_flow_sec_btn_arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--col_orange);
    border-right: 2px solid var(--col_orange);
    transform: rotate(45deg);
}

/* ------------------------------------------------------------
   SP (≤768px)
------------------------------------------------------------ */
@media screen and (max-width: 768px) {
    .plan_flow_sec {
        padding: 40px 16px;
    }
    .plan_flow_sec_title {
        font-size: 2.7rem;
    }
    .plan_flow_sec_btn_link {
        padding: 12px 24px;
        font-size: 1.6rem;
    }
}


/* 6_お支払いの流れセクション (.plan_payment_sec) — プラン詳細ページ共通 */
.plan_payment_sec {
    width: 100%;
    background: #fff;
    padding: 80px 20px 60px;
    box-sizing: border-box;
}
.plan_payment_sec_inner {
    max-width: 1200px;
    margin: 0 auto;
}
.plan_payment_sec_title {
    margin: 0 0 40px;
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
}
.plan_payment_sec_list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.plan_payment_sec_item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 0;
    border-top: 1px dashed #FA916C;
}
.plan_payment_sec_item:last-child {
    border-bottom: 1px dashed #FA916C;
}
.plan_payment_sec_item_head {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    width: 220px;
}
.plan_payment_sec_item_num {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 0 66%;
    background: #FA916C;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}
.plan_payment_sec_item_title {
    font-size: 2.8rem;
    font-weight: 700;
}
.plan_payment_sec_item_body {
    flex: 1;
    min-width: 0;
}
.plan_payment_sec_item_cost {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 12px;
}
.plan_payment_sec_item_cost_label {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 14px;
    border-radius: 4px;
    background: var(--col_l_beige);
    font-size: 2rem;
    font-weight: 700;
    white-space: nowrap;
}
.plan_payment_sec_item_cost_text {
    color: var(--col_brown);
    font-size: 2.2rem;
    font-weight: 500;
}
.plan_payment_sec_item_desc {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.8;
}
.plan_payment_sec_note {
    margin: 30px 0 0;
    font-size: 1.6rem;
    line-height: 1.8;
}

/* ------------------------------------------------------------
   SP (≤768px)
------------------------------------------------------------ */
@media screen and (max-width: 768px) {
    .plan_payment_sec {
        padding: 40px 16px;
    }
    .plan_payment_sec_title {
        margin-bottom: 24px;
        font-size: 2.7rem;
    }
    .plan_payment_sec_note {
        font-size: 1.6rem;
    }
    .plan_payment_sec_item {
        flex-direction: column;
        gap: 12px;
        padding: 24px 0;
    }
    .plan_payment_sec_item_head {
        width: auto;
    }
    .plan_payment_sec_item_num {
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
        margin-top: 2px;
    }
    .plan_payment_sec_item_title {
        font-size: 2.2rem;
    }
    .plan_payment_sec_item_cost {
        flex-wrap: wrap;
        gap: 10px;
        margin: 0 0 5px;
    }
    .plan_payment_sec_item_body {
        margin-left: 56px;
    }
    .plan_payment_sec_item_cost_label {
        font-size: 1.6rem;
    }
    .plan_payment_sec_item_cost_text {
        font-size: 1.8rem;
        width: 100%;
    }
    .plan_payment_sec_item_desc {
        font-size: 1.6rem;
    }
}


/* 7_その他のプランセクション (.plan_sec_other)
   - /index_top.php の .plan_sec を3カラムにしたもの */
.plan_sec_other .plan_sec_list {
    grid-template-columns: repeat(3, 1fr);
}

.plan_sec_other .plan_sec_list .plan_sec_card_img {
    aspect-ratio: 190 / 91;
}

/* ------------------------------------------------------------
   SP (≤768px)
------------------------------------------------------------ */
@media screen and (max-width: 768px) {
    .plan_sec_other .plan_sec_list {
        grid-template-columns: 1fr;
    }
}
