/* オーバースクロール対策 */
html {
    background-color: #FEEFF6;
    overscroll-behavior: none;
}

/* =============================================
メインビジュアル
============================================= */
.hero {
    position: relative;
    background-color: #FEEFF6;
    overflow: hidden;
}

/* スライダー */
.hero__slider {
    position: absolute;
    top: 0;
    right: 0;
    width: 51.95%;
    height: 100%;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.0s ease;
}

.hero__slide.is-active {
    opacity: 1;
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* 画像の左端・下端グラデーション */
.hero__slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, #FEEFF6 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero__slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 280px;
    background: linear-gradient(to top, #FEEFF6 20%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}


/* テキストエリア */
.hero__content {
    position: relative;
    /* top: 0;
    left: 0; */
    z-index: 2;
    width: 52%;
    /* min-height: 573px; */
    padding-top: 50px;
    padding-left: clamp(20px, 6.64vw, 85px);
    padding-right: 0;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__sub {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 13px;
    color: #B65D9A;
    margin-bottom: 8px;
}
.hero__sub .sp_only {
	display: none;
}

.hero__catch {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #884964;
    line-height: 1.5;
    margin-bottom: 14px;
}

.hero__desc {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 13px;
    color: #B65D9A;
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero__desc .sp_only {
	display: none;
}

/* ボタン */
.hero__btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero__btn-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero__btn-contact {
    width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 23px;
    background: linear-gradient(90deg,#E8A1BC, #CD7FB5);
    color: #ffffff;
    border-radius: 50px;
    padding: 20px 0px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 22px;
    font-weight: 700;
    transition: .3s;
}

.hero__btn-contact:hover {
    transform: scale(1.04,1.04);
}

.hero__btn-contact-label {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    line-height: 20px;
}

.hero__btn-tel {
    width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 23px;
    background-color: #ffffff;
    border: 2px solid #CD7FB5;
    border-radius: 50px;
    padding: 13px 0px;
    font-size: 22px;
    transition: .3s;
}

.hero__btn-tel:hover {
    /* transform: scale(1.04,1.04); */
}

.hero__btn-tel-right {
    display: flex;
    flex-direction: column;
}

.hero__btn-tel-number {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #884964;
}

.hero__btn-tel-time {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 12px;
    color: #BE7BA9;
    margin-top: -5px;
}

/* ガイドライン文言 */
.hero__guideline {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 16px 40px;
}

.hero__guideline p {
    font-family: Noto Serif JP;
    font-size: 13px;
    color: #884964;
}

.hero__guideline-link {
    border-bottom: 1.5px solid #E1B789;
    padding-bottom: 1px;
}

.sp-only {
    display: none;
}

@media (max-width: 768px) {
    .sp-only {
        display: block;
    }

    .hero__guideline {
        text-align: center;
    }
}

/* 車のアニメーション */
.hero__car {
    position: relative;
    z-index: 2;
    padding: 12px 40px 24px;
    overflow: hidden;
}

.hero__car img {
    width: 74px;
    height: auto;
    animation: carRun 6s linear infinite;
    display: block;
}

@keyframes carRun {
    0% {
        transform: translateX(-120px);
    }
    100% {
        transform: translateX(calc(100vw + 120px));
    }
}

.hero__car-heart {
    position: fixed;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    display: block;
    width: 40px !important;
    height: 51px !important;
    display: block;
    line-height: 0;
}

@keyframes heartPuff {
    0% {
        opacity: 0;
        transform: translateY(0px) scale(0.5);
    }
    25% {
        opacity: 0.8;
        transform: translateY(-12px) scale(0.9);
    }
    55% {
        opacity: 0.6;
        transform: translateY(-28px) scale(1.1);
    }
    80% {
        opacity: 0.2;
        transform: translateY(-48px) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translateY(-64px) scale(1.3);
    }
}


/* =============================================
レスポンシブ
============================================= */
/* 大画面では中央寄りに固定 */
@media (min-width: 1460px) {
    .hero__content {
        margin-left: calc((100vw - 1500px) / 2);
    }
}

@media (min-width: 1400px) {
    .hero__content {
        padding-left: 85px;
    }
}

@media (max-width:1023px) {
    .hero__btns {
        max-width: 100%;
    }

    .hero__btn-contact {
        width: 360px;
        flex-direction: column;
        font-size: 15px;
        gap: 0;
        padding: 16px 0px;
        font-size: 18px;
    }
    .hero__btn-contact br {
        display: none;
    }

    .hero__btn-contact-label {
        font-size: 11px;
    }

    .hero__btn-tel {
        width: 360px;
        flex-direction: column;
        gap: 0;
        font-size: 18px;
        padding: 8px 0px;
    }
    .hero__btn-tel-number {
        font-size: 20px;
    }

    .hero__btn-tel-time {
        display: none;
    }
}


@media (max-width: 834px) {
    .hero__slider {
        position: relative;
        width: 100%;
        aspect-ratio: 3 / 2;
        top: auto;
        right: auto;
        overflow: hidden;
    }

    .hero__slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1.0s ease;
    }

    .hero__slide.is-active {
        opacity: 1;
    }

    .hero__slide img {
        width: 100%;
        height: auto;
    }

    .hero__slider::before {
        width: 0px;
    }

    .hero__slider::after {
        height: 60px;
    }

    /* テキストエリア */
    .hero__content {
        width: 100%;
        min-height: auto;
        padding: 24px 15px 32px;
        text-align: center;
    }

    .hero__catch {
        font-size: 26px;
    }

    .hero__sub , .hero__desc{
        line-height: 1.6;
    }
	.hero__sub .sp_only {
	display: block;
}

    .hero__btns {
        margin: 0 auto;
    }
    .hero__btn-contact,
    .hero__btn-tel {
        /* width: 100%; */
    }

    .hero__guideline {
        padding: 12px 18px;
        text-align: center;
    }

    .hero__guideline p {
        line-height: 25px;
    }

    .hero__car {
        padding: 8px 0 16px;
    }
}

@media (max-width: 768px) {
	.sp-only {
        display: block;
    }
	
	.hero__desc .sp_only {
		display: block;
	}
}






/* =============================================
共通セクションタイトル
============================================= */
.section-title {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #884964;
    text-align: center;
    margin-bottom: 20px;
}

.section-desc {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 17px;
    line-height: 26px;
    /* color: #884964; */
    color: #4e4e4e;
    text-align: center;
    margin-bottom: 40px;
}

.section-desc .news-br {
    display: none;
}

/* =============================================
スクロールフェードイン
============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
お知らせセクション
============================================= */
.news {
    padding: 100px 0 80px;
    background: linear-gradient(0deg, #FFF, #FEEEF6);
}

.news__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* タブ */
.news__tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 0;
}

.news__tab {
    width: 20%;
    padding: 15px 0px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #884964;
    background-color: #ffffff;
    border: 1px solid #E7A0BC;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.news__tab.is-active {
    background-color: #E39ABB;
    color: #ffffff;
    border-color: #E39ABB;
}

/* リスト */
.news__list-wrap {
    border: 1px solid #BE7BA9;
    border-radius: 20px;
    overflow: hidden;
    background-color: #ffffff;
}

.news__list {
    display: none;
}

.news__list.is-active {
    display: block;
}

.news__item {
    position: relative;
    /* display: flex;
    align-items: center; */
    /* gap: 20px; */
    padding: 20px 28px;
    /* border-bottom: 1px dashed #E7A0BC; */
    cursor: pointer;
    /* transition: background-color 0.2s; */
}

.news__item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 28px;
    right: 28px;
    height: 1px;
    background-image: repeating-linear-gradient(
        to right,
        #E7A0BC 0px,
        #E7A0BC 4px,
        transparent 4px,
        transparent 8px
    );
}

.news__item:last-child::after {
    display: none;
}

.news__item:last-child {
    border-bottom: none;
}

.news__item:hover {
    background-color: #FEF9FB;
    color: #884964;
}

.news__item-link {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    /* color: inherit; */

    width: 100%;
    color: inherit;
    min-width: 0;
}

/* バッジ */
.news__badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 25px;
    border-radius: 20px;
    background-color: #FEEFF6;
    border: 1px solid #E7A0BC;
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #884964;
}

.news__badge--new {
    background-color: #E39ABB;
    border-color: #E39ABB;
    color: #ffffff;
}

/* 本文 */
.news__body {
    display: flex;
    flex-direction: column;
    gap: 4px;

    min-width: 0;
    flex: 1;
}

.news__date {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 12px;
    color: #BE7BA9;
}

.news__title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #4e4e4e;
    overflow: hidden;
    white-space: nowrap;
    /* text-overflow: ellipsis;
    max-width: 600px; */
    text-overflow: ellipsis;
    min-width: 0;

}

/* ボタン */
.news__btn-wrap {
    text-align: center;
    margin-top: 40px;
}

.news__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #E39ABB;
    color: #ffffff;
    border-radius: 30px;
    /* padding: 0px 60px; */
    width: 250px;
    height: 52px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 15px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.news__btn:hover {
    background-color: #B66487;
}


/* =============================================
レスポンシブ（SP）
============================================= */
@media (max-width: 768px) {
    .news {
        padding: 60px 0;
    }

    .news__inner {
        padding: 0 20px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-desc {
        font-size: 15px;
        line-height: 1.7;
        letter-spacing: -0.5px;
    }
    .section-desc .news-br {
    display:block;
    }

    .news__tab {
        width: 30%;
        padding: 14px 0px;
        font-size: 13px;
    }

    .news__item {
        padding: 16px;
        gap: 12px;
    }

/*     .news__title {
        font-size: 12px;
    } */

    .news__body {
        gap: 2px;
    }

    .floating-btn {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn img {
        width: 65px;
    }
}


/* =============================================
ミッションセクション
============================================= */
.mission {
    position: relative;
    padding: 80px 0 0;
    background-color: #ffffff;
    overflow: hidden;
}

.mission__inner {
    /* max-width: 1200px; */
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 0 10.2vw 0 9.4vw;
}

.mission__title {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #884964;
    text-align: center;
    margin-bottom: 12px;
}

/* コンテンツ（テキスト＋写真横並び） */
.mission__content {
    display: flex;
    align-items: center;
    gap: 7%;
    max-width: 1030px;
    margin: 0 auto;
    /* margin-bottom: 60px; */
}

.mission__texts {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mission__text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    /* color: #4e4e4e; */
    color: #884964;
    line-height: 1.9;
}

.mission__photo {
    flex-shrink: 0;
    width: 380px;
}

.mission__photo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ボタン */
.mission__btn-wrap {
    text-align: center;
    padding: 40px 0;
    white-space: nowrap;
}

.mission__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #E39ABB;
    color: #ffffff;
    border-radius: 30px;
    /* padding: 0px 60px; */
    width: 250px;
    height: 54px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 15px;
    font-weight: 700;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.mission__btn:hover {
    background-color: #B66487;
}

/* 波形SVG */
.mission__wave {
    position: relative;
    z-index: 0;
    width: 100%;
    line-height: 0;
    margin-top: -50px;
}

.mission__wave svg {
    width: 100%;
    height: 200px;
    display: block;
}
.mission__wave-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

/* 時間差フェードイン */
.fade-in-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-item:nth-child(1) { transition-delay: 0s; }
.fade-in-item:nth-child(2) { transition-delay: 0.2s; }
.fade-in-item:nth-child(3) { transition-delay: 0.4s; }
.fade-in-item:nth-child(4) { transition-delay: 0.6s; }

/* =============================================
レスポンシブ（SP）ミッション
============================================= */
@media (max-width: 1023px) {
    .mission {
        padding: 60px 0 0;
    }

    .mission__inner {
        padding: 0 20px;
    }

    .mission__title {
        font-size: 22px;
        text-align: center;
    }

    .mission__lead,.mission__texts {
        text-align: center;
    }

    .mission__content {
        flex-direction: column;
        gap: 32px;
    }

    .mission__text {
        font-size: 13.5px;
    }

    .mission__photo {
        width: 75%;
    }

    .mission__btn-wrap {
        padding-bottom: 20px;
    }

    .mission__wave {
        margin-top: -40px;
    }

    .mission__wave svg {
        height: 240px;
    }

    .mission__btn {
        /* width: 100%;
        text-align: center;
        padding: 16px 0; */
        /* width: calc(100% - 40px); */
        text-align: center;
        /* padding: 16px 0; */
    }
}

@media (max-width:540px) {
    .mission__photo {
        width: 100%;
    }
}



/* =============================================
こんなお悩みはありませんか？
============================================= */
.problem {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(232, 166, 196, 0.25),rgba(232, 166, 196, 0.1), #fff);
}

/* 上部波形 */
.problem__wave-top {
    position: relative;
    width: 100%;
    line-height: 0;
    margin-bottom: -130px;
}

.problem__wave-top svg {
    width: 100%;
    height: 300px;
    display: block;
}

.problem__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 40px 80px;
}

/* 吹き出しグリッド */
.problem__balloons {
    /* display: grid; */
    /* grid-template-columns: 1fr 1fr; */
    /* grid-template-rows: auto auto; */
    /* gap: 24px; */
    /* gap: 0 40px; */
    /* gap: 24px; */
    display: flex;
    flex-direction: column;
    /* gap: 0; */
    row-gap: 12px;
    margin-bottom: 25px;
    align-items: center;
}

.problem__balloon-row {
    display: flex;
    align-items: flex-start;
}

.problem__balloon-row--top {
    gap: 70px;
    justify-content: center;
}

.problem__balloon-row--bottom {
    /* gap: 200px; */
    column-gap: 15.7vw;
    justify-content: center;
}

.problem__balloon-item {
    transition-delay: 0s;
}

.problem__balloon-item:nth-child(1) { transition-delay: 0s; }
.problem__balloon-item:nth-child(2) { transition-delay: 0.3s; }
.problem__balloon-item:nth-child(3) { transition-delay: 0.6s; }
.problem__balloon-item:nth-child(4) { transition-delay: 0.9s; }

.problem__balloon-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.problem__balloon-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* シニアイラスト */
.problem__illust {
    text-align: center;
    margin-bottom: 25px;
}

.problem__illust img {
    max-width: 320px;
    width: 100%;
    height: auto;
}

/* 締めテキスト */
.problem__closing {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 15px;
    color: #4e4e4e;
    text-align: center;
    line-height: 2;
}

/* =============================================
レスポンシブ（SP）お悩みセクション
============================================= */
@media (max-width: 768px) {
    .problem__wave-top {
        /* margin-bottom: -80px; */
        height: 160px;
    }

    .problem__wave-top svg {
        height: 200px;
    }

    .problem__inner {
        padding: 0 20px 60px;
    }

    .problem__balloons {
        /* grid-template-columns: 1fr; */
        /* flex-direction: column; */
        gap: 12px;
    }

    .problem__balloon-row--top,
    .problem__balloon-row--bottom {
        flex-direction: column;
        gap: 12px;
        justify-content: flex-start;
        /* justify-content: space-between; */
    }

    /* 01・03は左寄せ */
    .problem__balloon-row--top .problem__balloon-item:nth-child(1),
    .problem__balloon-row--bottom .problem__balloon-item:nth-child(1) {
        /* align-self: flex-start; */
        align-self: center;
        margin-left: 20px;
    }

    /* 02・04は右寄せ */
    .problem__balloon-row--top .problem__balloon-item:nth-child(2),
    .problem__balloon-row--bottom .problem__balloon-item:nth-child(2) {
        /* align-self: flex-end; */
        align-self: center;
        margin-right: 20px;
    }

    .problem__balloon-item img {
        max-width: 280px;
        width: 80vw;
    }

    .problem__illust img {
        max-width: 240px;
    }

    .problem__closing {
        font-size: 13.5px;
		letter-spacing: -.4px;
        text-align: center;
    }
}




/* =============================================
サポート内容セクション
============================================= */
.support {
    position: relative;
    padding: 80px 0 0;
    background-color: #ffffff;
    overflow: hidden;
}

.support__inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

/* グリッド */
.support__grid {
    display: grid;
    grid-template-columns: repeat(3, 333px);
    /* gap: 24px; */
    row-gap: 40px;
    column-gap: 20px;
    padding-top: 20px;
    justify-content: center;
}

/* カード */
.support__card {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #E7A0BC;
    border-radius: 16px;
    padding: 20px 23px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 333px;
    box-shadow: 3px 3px #E7A0BC;
}

.support__card-num {
    position: absolute;
    /* top: -10px; */
    top: -20px;
    right: 16px;
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #884964;
    line-height: 1;
	background-color: #fff;
    padding: 0 8px;
}

.support__card-img {
    text-align: center;
    padding-top: 20px;
}

.support__card-img img {
    width: 100%;
    max-width: 200px;
    height: 140px;
    object-fit: contain;
}

.support__card-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #884964;
    line-height: 1.6;
    margin-bottom: 8px;
}

.support__card-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 15px;
    color: #4e4e4e;
    line-height: 1.7;
}

/* 時間差フェードイン */
.support__card:nth-child(1) { transition-delay: 0s; }
.support__card:nth-child(2) { transition-delay: 0.15s; }
.support__card:nth-child(3) { transition-delay: 0.3s; }
.support__card:nth-child(4) { transition-delay: 0.45s; }
.support__card:nth-child(5) { transition-delay: 0.6s; }
.support__card:nth-child(6) { transition-delay: 0.75s; }

/* 波形SVG */
.support__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    line-height: 0;
}

.support__wave svg {
    width: 100%;
    height: 500px;
    display: block;
}

/* =============================================
レスポンシブ（SP）サポートセクション
============================================= */
/* タブレット：2列 */
/* @media (max-width: 1023px) {
    .support__grid {
        grid-template-columns: repeat(2, 1fr);
    }
} */
@media (max-width: 1100px) {
    .support__grid {
        grid-template-columns: repeat(2, 333px);
    }
}

@media (max-width: 768px) {
    .support {
        padding: 60px 0 0;
    }

    .support__inner {
        padding: 0 20px 60px;
    }

    .support__grid {
        /* grid-template-columns: 1fr; */
        grid-template-columns: 333px;
        padding-top: 10px;
        /* gap: 20px; */
    }

    .support__wave svg {
        height: 300px;
    }
}

/* 極小SP：幅が333px以下の場合は可変に */
@media (max-width: 390px) {
    .support__grid {
        grid-template-columns: 1fr;
    }

    .support__card {
        width: 320px;
		margin: 0 auto;
    }

    .support__card-text {
        font-size: 14px;
    }
}



/* =============================================
プラン内容セクション
============================================= */
.plan {
    padding: 80px 0;
    background-color: #ffffff;
    background: linear-gradient(180deg, rgba(232, 166, 196, 0.12), rgba(248, 203, 224, 0.1), #fff);
    /* background: linear-gradient(180deg,#E39ABB,rgba(232, 166, 196, 0.1), #fff); */
}

.plan__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* グリッド */
.plan__grid {
    display: grid;
    grid-template-columns: repeat(3, 320px);
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
}

.plan__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 吹き出しラベル */
.plan__label { 
	position: relative;
    width: 246px;
    min-height: 58px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    box-sizing: border-box;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
} 

/* 内側の白フチ */
.plan__label::before {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 999px;
    pointer-events: none;
}

/* しっぽ（外側） */
.plan__label::after {
    content: "";
    position: absolute;
    left: 50%;
	bottom: -6px !important;
	border-radius: 1px;
    width: 10.5px;
    height: 10.5px;
    transform: translateX(-50%) rotate(45deg);
    border-right: 1px solid;
    border-bottom: 1px solid;
    box-sizing: border-box;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.04);
}

/* テキスト */
.plan__label-text {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    line-height: 1.4;
	margin-top: 4px;
    color: #4E4E4E;
    text-align: center;
    white-space: nowrap;
    transform: translateY(-2px);
}

/* 日常生活支援プラン */
.plan__label--daily {
    background-color: #FDEAF0;
    border: 1px solid #E7B0C2;
}

.plan__label--daily::after {
    background-color: #FDEAF0;
    border-right-color: #E7B0C2;
    border-bottom-color: #E7B0C2;
}

/* 身元保証プラン */
.plan__label--identity {
    background-color: #E9F4F9;
    border: 1px solid #80B0D0;
}

.plan__label--identity::after {
    background-color: #E9F4F9;
    border-right-color: #80B0D0;
    border-bottom-color: #80B0D0;
}

/* 死後事務プラン */
.plan__label--postmortem {
    background-color: #EDF5F2;
    border: 1px solid #70C0A8;
}

.plan__label--postmortem::after {
    background-color: #EDF5F2;
    border-right-color: #70C0A8;
    border-bottom-color: #70C0A8;
}

/* .plan__label img { 
	max-width: 220px; 
	width: 100%; 
	height: auto; 
	background-size: contain; 
} */




/* カード */
.plan__card {
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan__card--daily {
    /* background-color: #FEEFF6;
    border: 1px solid #E8A1BC; */
    /* background-color: #fff; */
    background-color: rgb(253, 234, 240, 0.5);
    border: .5px solid #E7B0C2;
}

.plan__card--identity {
    background-color: #E9F4F9;
    border: 1px solid #80B0D0;
}

.plan__card--postmortem {
    background-color: #EDF5F2;
    border: 1px solid #70C0A8;
}

.plan__card-img {
    text-align: center;
}

.plan__card-img img {
    max-width: 180px;
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.plan__card-desc {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 15px;
    color: #4e4e4e;
    line-height: 1.8;
    padding: 0 6px;
}

/* 具体例エリア */
.plan__card-detail {
    background-color: #ffffff;
    /* border: 1.5px dashed #E7B0C2; */
    border-radius: 8px;
    padding: 13px 20px;
}

.plan__card-detail-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #4e4e4e;
    margin-bottom: 6px;
}

.plan__card-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.plan__card-list li {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 13.5px;
    letter-spacing: -.2px;
    color: #4e4e4e;
    line-height: 1.6;
}

/* 時間差フェードイン */
.plan__item:nth-child(1) { transition-delay: 0s; }
.plan__item:nth-child(2) { transition-delay: 0.2s; }
.plan__item:nth-child(3) { transition-delay: 0.4s; }

/* ボタン */
.plan__btn-wrap {
    text-align: center;
}

.plan__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #E39ABB;
    color: #ffffff;
    border-radius: 30px;
    width: 250px;
    height: 54px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 15px;
    font-weight: 700;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.plan__btn:hover {
    background-color: #B66487;
}

/* =============================================
レスポンシブ（SP）プランセクション
============================================= */
@media (max-width: 1060px) {
    .plan {
        padding: 60px 0;
    }

    .plan__inner {
        padding: 0 20px;
    }

    .plan__grid {
        grid-template-columns: repeat(1, 400px);
    }
}

@media (max-width: 540px) {
        .plan__grid {
        grid-template-columns: repeat(1, 320px);
    }
}





/* =============================================
よくある質問セクション
============================================= */
.faq {
    position: relative;
    padding: 90px 0 0;
    background-color: #ffffff;
    overflow: hidden;
}

.faq__inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px 110px;
    width: 100%;
}

/* リスト */
.faq__list {
    border: 1px solid #E7A0BC;
    border-radius: 16px;
    overflow: hidden;
    background-color: #ffffff;
    margin-top: 50px;
}

/* アイテム */
.faq__item {
    border-bottom: 1px dashed #E7A0BC;
}

.faq__item:last-child {
    border-bottom: none;
}

/* 質問 */
.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background-color: transparent;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s;
}

.faq__question:hover {
    background-color: #FEF9FB;
}
.faq__item.is-open .faq__question:hover {
    background-color: transparent;
}

.faq__q-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #E8A1BC;
    color: #ffffff;
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq__q-text {
    flex: 1;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #884964;
    line-height: 1.6;
}

.faq__toggle {
    color: #BE7BA9;
    flex-shrink: 0;
    position: relative;
    width: 20px;
    height: 20px;
}

.faq__toggle-bar {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background-color: #BE7BA9;
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* 縦線（2本目を90度回転して＋を作る） */
.faq__toggle-bar:nth-child(2) {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* 開いた時：縦線を回転させて－にする */
.faq__item.is-open .faq__toggle-bar:nth-child(2) {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq__item.is-open .faq__toggle-bar:nth-child(1) {
    opacity: 0;
}

/* 回答 */
.faq__answer {
    max-height: 0;
    overflow: hidden;
    /* transition: max-height 0.4s ease, padding 0.4s ease; */
    transition: max-height 0.5s ease;
    padding: 0 28px 0 72px;
}

.faq__answer p {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #4e4e4e;
    line-height: 1.8;
    /* padding-top: 4px; */
    padding-bottom: 20px;
}

/* 開いている状態 */
.faq__item.is-open .faq__answer {
    max-height: 300px;
    /* padding: 0 28px 0 72px; */
}

.faq__item.is-open .faq__toggle {
    content: 'ー';
}

/* 波形SVG */
.faq__wave {
    /* position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    line-height: 0; */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    line-height: 0;
    pointer-events: none;
}

.faq__wave svg {
    width: 100%;
    height: 500px;
    display: block;
}

/* =============================================
レスポンシブ（SP）よくある質問
============================================= */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0 0;
    }

    .faq__inner {
        padding: 0 20px 60px;
    }

    .faq__question {
        padding: 20px;
        gap: 12px;
    }

    .faq__q-text {
        font-size: 15px;
    }

    .faq__answer {
        padding: 0 42px 0 60px;
    }

    .faq__answer p {
        font-size: 14px;
    }

    /* .faq__wave svg {
        height: 200px;
    } */
}



/* =============================================
CTAセクション
============================================= */
.cta {
    background-color: #B66487;
    padding: 90px 0;
}

.cta__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta__title {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
}

.cta__desc {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 17px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

/* カード */
.cta__card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 48px 80px;
    display: flex;
    align-items: center;
    gap: 0;
}

.cta__block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 17px;
}

/* 縦の区切り線 */
.cta__divider {
    width: 1px;
    height: 200px;
    background-color: #E7A0BC;
    margin: 0 7%;
    flex-shrink: 0;
}

.cta__block-label {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #884964;
}

/* フォームボタン */
.cta__btn-form {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #E8A1BC, #CD7FB5);
    color: #ffffff;
    border-radius: 50px;
    /* padding: 0 40px; */
    height: 75px;
    max-width: 360px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.cta__btn-form:hover {
    transform: scale(1.03);
}

.cta__block-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #4e4e4e;
    line-height: 1.8;
}

/* 電話番号 */
.cta__tel {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #884964;
    line-height: 1.2;
}

.cta__tel-time {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 15px;
    color: #BE7BA9;
    margin-top: -10px;
}

/* =============================================
レスポンシブ（SP）CTA
============================================= */
@media (max-width:900px) {
    .cta__card {
        padding: 48px 60px;
    }
}

@media (max-width: 768px) {
    .cta {
        padding: 60px 0;
    }

    .cta__inner {
        padding: 0 22px;
    }

    .cta__title {
        font-size: 23px;
    }

    .cta__desc {
        font-size: 13.5px;
        letter-spacing: -.35px;
    }

    .cta__card {
        width: 500px;
        margin: 0 auto;
        flex-direction: column;
        padding: 32px 37px;
        gap: 32px;
    }

    .cta__block {
        width: 100%;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    /* SP：横の区切り線に変更 */
    .cta__divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }

    .cta__btn-form {
        width: 265px;
        height: 60px;
        max-width: 100%;
        font-size: 17px;
    }

    .cta__tel {
        font-size: 28px;
    }

    .cta__block-text {
        text-align: center;
    }
}

@media (max-width:539px) {
    .cta__card {
        width: 100%;
    }
}



/* =============================================
フッター
============================================= */
.footer {
    background-color: #501731;
    padding: 24px 100px;
}

.footer__inner {
    max-width: 1300px;
    margin: 0 auto;
    /* padding: 0 40px; */
}

/* 上段 */
.footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /* margin-bottom: 40px; */
}

/* ロゴ */
.footer__logo img {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
}

/* 住所 */
.footer__address {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 13px;
    color: #fff;
    line-height: 1.8;
}

/* ナビ */
.footer__nav {
    display: flex;
    align-items: center;
}

.footer__nav-list {
    display: flex;
    gap: 28px;
}

.footer__nav-list a {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #fff;
    transition: color 0.3s;
}

.footer__nav-list a:hover {
    color: #E7A0BC;
}

/* コピーライト */
.footer__bottom {
    text-align: center;
}

.footer__copyright {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 12px;
    color: #fff;
}

/* =============================================
レスポンシブ（SP）フッター
============================================= */
@media (max-width: 852px) {
    .footer {
        padding: 30px 0 20px;
    }

    .footer__inner {
        padding: 0 8%;
    }

    .footer__top {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }

    .footer__nav-list {
        flex-wrap: wrap;
        gap: 22px;
    }

    .footer__nav-list a {
        font-size: 13px;
    }

/*     .footer__address {
        font-size: 12px;
    } */
}


@media (max-width: 375px) {
    .footer__nav-list {
        gap: 16px;
    }
}



/* =============================================
追従ボタン
============================================= */
.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.floating-btn.is-show {
    opacity: 1;
    visibility: visible;
}

.floating-btn img {
    width: 80px;
    height: auto;
    cursor: pointer;
    transition: .4s;
}
.floating-btn img:hover {
    transform: scale(.9,.9);
}

@media (max-width: 768px) {
	.floating-btn {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn img {
        width: 65px;
    }
}

@media (max-width: 440px) {
    .floating-btn {
		bottom: 10px;
    	right: 15px;
		}
	.floating-btn img {
    width: 52px;
		}
   }
