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


/* =============================================
ヘッダー
============================================= */
.header {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 1px 1px 8px #e7a0bc;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.header__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ロゴ */
.header__logo img {
    height: 50px;
    width: auto;
}

/* PC用ナビゲーション */
.header__nav-list {
    display: flex;
    gap: 3vw;
}

.header__nav-list a {
    position: relative;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    color: #4e4e4e;
    transition: color 0.3s;
}

.header__nav-list a:hover {
    color: #BE7BA9;
}

.header__nav-list a::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #BE7BA9;
    transition: width 0.3s ease;
}

.header__nav-list a:hover::after {
    width: 100%;
}

/* PC用右側ボタン */
.header__contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #CD7FB5;
    border-radius: 40px;
    padding: 5px 30px;
}

.header__tel-label {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 11px;
    font-weight: bold;
    color: #4e4e4e;
}

.header__tel-number {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 21px;
    color: #884964;
}

.header__tel-time {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 10px;
    line-height: 9px;
    color: #BE7BA9;
}

.header__btn-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #CD7FB5;
    color: #ffffff;
    border-radius: 40px;
    padding: 9px 25px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 17px;

    font-weight: 700;
    transition: background-color 0.3s;
}

.header__btn-contact:hover {
    background-color: #B65D9A;
}

.header__btn-contact-label {
    font-size: 12px;
    font-weight: 400;
}

/* =============================================
ハンバーガーメニューボタン（SP用）
============================================= */
.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
}

.header__hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background-color: #BE7BA9;
    transition: all 0.4s ease;
}


/* =============================================
SPメニュー
============================================= */
.header__sp-menu {
    /* display: none; */
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FEEFF6;
    z-index: 200;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.header__sp-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.header__sp-menu-inner {
    padding: 18px 5.2% 40px;
}

.header__sp-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.header__sp-close {
    position: relative;
    width: 30px;
    height: 30px;
}
.header__sp-close span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background-color: #BE7BA9;
    top: 50%;
    left: 0;
    transition: all 0.4s ease;
}

.header__sp-close span:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
}

.header__sp-close span:nth-child(2) {
    transform: translateY(-50%) rotate(-45deg);
}

.header__sp-nav-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 12px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 18px;
    color: #4e4e4e;
}

.header__sp-btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.header__sp-btn-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: linear-gradient(90deg,#E8A1BC, #CD7FB5);
    color: #ffffff;
    border-radius: 40px;
    padding: 16px 10px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.header__sp-btn-contact span {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: -0.6px;
}

.header__sp-btn-tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    background-color: #ffffff;
    color: #4e4e4e;
    border: 2px solid #CD7FB5;
    border-radius: 50px;
    padding: 12px 24px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.header__sp-btn-tel span {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 20px;
    line-height: 20px;
    color: #884964;
}



/* =============================================
レスポンシブ
============================================= */
@media (max-width: 1023px) {
    .header__nav,
    .header__contact {
        display: none;
    }

    .header__hamburger {
        display: flex;
    }

    .header__inner {
        padding: 20px 5.2%;
        height: 85px;
    }
}



/* =============================================
プランページ 基本設定
============================================= */
.plan-page {
    padding: 80px 0;
    background: linear-gradient(0deg, #FFF, #fffafd, #fff5fa);
    min-height: 60vh;
}

.plan-page__inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 4%;
}

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

.plan-page__desc {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 17px;
    color: #4e4e4e;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* =============================================
タブ
============================================= */
.plan-page__tabs {
    display: flex;
    justify-content: center;
    gap: 4.5%;
    margin-bottom: 32px;
    flex-wrap: wrap;
    position: sticky;
    top: 85px;
    z-index: 50;
    backdrop-filter: blur(4px);
    padding: 12px 0 0;
}

.plan-page__tab {
    width: 28.7%;
    padding: 13px 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    background-color: #ffffff;
    transition: opacity 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plan-page__tab[data-tab="daily"] {
    border: 4px solid #ffffff;
    outline: 2px solid #E8A1BC;
    background-color: #fff5fa;
    color: #4e4e4e;
}

.plan-page__tab[data-tab="identity"] {
    border: 4px solid #ffffff;
    outline: 2px solid #80B0D0;
    background-color: #E9F4F9;
    color: #4e4e4e;
}

.plan-page__tab[data-tab="postmortem"] {
    border: 4px solid #ffffff;
    outline: 2px solid #70C0A8;
    background-color: #EDF5F2;
    color: #4e4e4e;
}

.plan-page__tab:hover {
    /* opacity: 0.8; */
    transform: scale(1.05, 1.05);
    transition: .4s;
}

/* .plan-page__tab.is-active {
    opacity: 1;
} */

.plan-page__tab br {
    display: none;
}

.plan-page__tab img {
    width: 20px;
    height: auto;
}

/* =============================================
コンテンツ
============================================= */
.plan-page__content {
    display: block;
}

/* =============================================
セクション外枠
============================================= */
.plan-page__section {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 60px;
}

.plan-page__section--daily      { border: 2px solid #E8A1BC; }
.plan-page__section--identity   { border: 2px solid #80B0D0; }
.plan-page__section--postmortem { border: 2px solid #70C0A8; }

/* =============================================
セクションタイトル帯
============================================= */
.plan-page__section-header {
    padding: 40px 45px 0;
}

.plan-page__section-title {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    border-radius: 50px;
    padding: 13px 0;
    text-align: center;
}

.plan-page__section-title--daily      { background-color: #E8A1BC; }
.plan-page__section-title--identity   { background-color: #80B0D0; }
.plan-page__section-title--postmortem { background-color: #70C0A8; }

/* =============================================
セクション本体
============================================= */
.plan-page__section-body {
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.plan-page__section-desc {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 17px;
    color: #4e4e4e;
    text-align: center;
    line-height: 1.6;
}

/* =============================================
写真＋テキスト横並び
============================================= */
.plan-page__section-inner {
    width: 76.6%;
    margin: 0 auto;
    display: flex;
    gap: 5.5%;
    align-items: center;
}

.plan-page__section-img {
    flex-shrink: 0;
}

.plan-page__section-img img {
    width: 100%;
    height: auto;
}

.plan-page__section--daily .plan-page__section-img      { width: 132px; }
.plan-page__section--identity .plan-page__section-img   { width: 190px; }
.plan-page__section--postmortem .plan-page__section-img { width: 164px; }

.plan-page__section-text {
    flex: 1;
}

/* =============================================
こんな方にボックス
============================================= */
.plan-page__target-box {
    border-radius: 8px;
    overflow: hidden;
}

.plan-page__target-title {
    width: 105px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 15px;
    background-color: #F9EEF6;
    color: #4e4e4e;
    border-radius: 6px;
    text-align: center;
    padding: 8px 15px;
}

/* プランごとの背景色 */
.plan-page__target-title--daily      { background-color: #F9EEF6; }
.plan-page__target-title--identity   { background-color: #E9F4F9; }
.plan-page__target-title--postmortem { background-color: #EDF5F2; }

/* =============================================
サポート内容ボックス
============================================= */
.plan-page__support-box {
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    width: 71%;
    margin: 0 auto;
    overflow: hidden;
}

.plan-page__support-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 20px;
    color: #4e4e4e;
    background-color: #F9EEF6;
    text-align: center;
    padding: 16px 0;
}

/* プランごとの背景色 */
.plan-page__support-title--daily      { background-color: #F9EEF6; }
.plan-page__support-title--identity   { background-color: #E9F4F9; }
.plan-page__support-title--postmortem { background-color: #EDF5F2; }

/* =============================================
チェックリスト
============================================= */
.plan-page__check-list {
    display: flex;
    flex-direction: column;
    margin-top: 17px;
    gap: 6px;
}

.plan-page__check-list li {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #4e4e4e;
    line-height: 1.6;
    padding-left: 1em;
    text-indent: -1em;
}

.plan-page__check-list li::before {
    content: '・';
}

/* =============================================
詳細リスト
============================================= */
.plan-page__detail-list {
    display: flex;
    flex-direction: column;
    padding: 3.4% 7.5%;
    gap: 3px;
}

.plan-page__detail-list li {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    color: #4e4e4e;
    line-height: 1.7;
    padding-left: 1em;
    text-indent: -1em;
}

.plan-page__detail-list li::before {
    content: '・';
}

/* =============================================
ご利用料金タイトル
============================================= */
.plan-page__fee-title {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-page__fee-heading {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #4e4e4e;
}

.plan-page__detail-note {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 15px;
    color: #4e4e4e;
    line-height: 1.8;
    text-align: center;
}

/* =============================================
料金カード
============================================= */
.plan-page__price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.plan-page__price-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
}

/* カードヘッダー */
.plan-page__price-card-header {
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* 日常生活支援プラン */
.plan-page__price-card-header--community { background-color: #E8A1BC; }
.plan-page__price-card-header--premium   { background-color: #CD7FB5; }

/* 身元保証プラン */
.plan-page__price-card-header--identity-community { background-color: #80B0D0; }
.plan-page__price-card-header--identity-premium   { background-color: #5A9ABF; }

/* 死後事務プラン */
.plan-page__price-card-header--postmortem-community { background-color: #70C0A8; }
.plan-page__price-card-header--postmortem-premium   { background-color: #4AA890; }

.plan-page__price-card-icon {
    margin-top: -5px;
}

.plan-page__price-card-icon img {
    width: 21px;
    height: auto;
    vertical-align: middle;
}

.plan-page__price-card-title {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

/* カードボディ */
.plan-page__price-card-body {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* カード月額表示 */
.plan-page__price-main {
    font-family: 'M PLUS 1p', sans-serif;
    background-color: #F9EEF6;
    color: #884964;
    font-size: 22px;
    font-weight: 700;
    padding: 8px 0;
    text-align: center;
    border-radius: 4px;
}

/* プランごとの月額カラー */
.plan-page__price-main--community        { background-color: #F9EEF6; color: #884964; }
.plan-page__price-main--premium          { background-color: #F9EEF6; color: #884964; }
.plan-page__price-main--identity         { background-color: #E9F4F9; color: #4A7FA0; }
.plan-page__price-main--identity-premium { background-color: #E9F4F9; color: #4A7FA0; }
.plan-page__price-main--postmortem         { background-color: #EDF5F2; color: #3A8870; }
.plan-page__price-main--postmortem-premium { background-color: #EDF5F2; color: #3A8870; }

.plan-page__price-main span {
    font-size: 12px;
    font-weight: 400;
}

/* 料金リスト */
.plan-page__price-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.plan-page__section--daily .annotations { color: #884964 ; font-weight: 700; }
.plan-page__price-card--identity .annotations { color: #4A7FA0 ; font-weight: 700; }
.plan-page__price-card--postmortem .annotations { color: #3A8870 ; font-weight: 700;}

.plan-page__price-list li {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    color: #4e4e4e;
    line-height: 1.6;
    padding-left: 1em;
    text-indent: -1em;
}

.plan-page__price-list li::before {
    content: '・';
}

/* 内訳リスト（左右2列） */
.plan-page__price-list--tab {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.plan-page__price-list--tab li {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    list-style: none;
    padding-left: 0;
    text-indent: 0;
}

.plan-page__price-list--tab li::before {
    content: none;
}

.plan-page__price-list-name,
.plan-page__price-list-price {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    color: #4e4e4e;
    white-space: nowrap;
}

.plan-page__price-list-price {
    text-align: right;
}

.plan-page__price-sub {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    color: #4e4e4e;
    display: block;
    list-style: none;
}

.plan-page__price-note {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #888888;
    line-height: 1.6;
    list-style: none;
    display: block;
}

.plan-page__deposit-wrap {
    list-style: none;
    display: block;
}

/* 預託金 */
.plan-page__deposit-row {
    display: grid;
    grid-template-columns: 1fr auto;
    border: 1px solid #70C0A8;
    background-color: #EDF5F2;
    padding: 8px 12px;
    margin-top: 7px;
    margin-bottom: 7px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    color: #3A8870;
    font-weight: 700;
}

/* 注意文言 */
.plan-page__price-caution {
    display: flex;
    flex-direction: column;
	row-gap: 2px;
}

.plan-page__price-caution li {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 11.5px;
    color: #888888;
    line-height: 1.6;
    list-style: none;
    padding-left: 0;
    text-indent: 0;
	letter-spacing: -.2px;
}
}

.plan-page__price-caution li::before {
    content: none;
}

/* =============================================
スポット利用
============================================= */
.plan-page__spot {
    position: relative;
    border-radius: 12px;
    padding: 24px 16px 16px;
    background-color: #ffffff;
}

.plan-page__spot-header {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #E39ABB;
    border-radius: 30px;
    padding: 10px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    width: 51.3%;
}

.plan-page__spot-title {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 20px;
    color: #ffffff;
}

.plan-page__spot-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    background-color: #FEEFF6;
    border: 1px dashed #E7A0BC;
    border-radius: 14px;
    align-items: center;
}

.plan-page__spot-item {
    padding: 43px 0 16px;
    text-align: left;
    position: relative;
}

.plan-page__spot-item--border::before {
    content: '';
    position: absolute;
    left: -18%;
    height: 50%;
    width: 1px;
    border-left: 1px dashed #E7A0BC;
}

.plan-page__spot-label {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #4e4e4e;
    margin-bottom: 2px;
}

.plan-page__spot-price {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: #884964;
    display: flex;
    align-items: baseline;
}

.plan-page__spot-price span {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    color: #4e4e4e;
}

/* =============================================
注意書き
============================================= */
.plan-page__note {
    margin-top: 16px;
}

.plan-page__note p {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    color: #4e4e4e;
    line-height: 1.8;
}

/* =============================================
レスポンシブ
============================================= */
@media (max-width: 892px) {
    .plan-page__price-main  { font-size: 18.5px; }
    /* .plan-page__price-list li { font-size: 14px; } */
    /* .plan-page__price-list-name,
    .plan-page__price-list-price,
    .plan-page__price-list li { font-size: 14px; } */
    .plan-page__detail-list { padding: 3.4% 4.5%; }
    .plan-page__detail-list li { font-size: 14px; letter-spacing: -0.2px; }
    .plan-page__price-note  { font-size: 12.5px; }

    .plan-page__spot {
        width: 80%;
        margin: 0 auto;
        padding: 24px 5%;
    }

    .plan-page__spot-grid {
        flex-direction: column;
        gap: 0;
    }

    .plan-page__spot-price {
        justify-content: center;
    }

    .plan-page__spot-label {
        text-align: center;
    }

    .plan-page__spot-item--border::before {
        display: none;
    }

    .plan-page__spot-item--border {
        border-top: 1px dashed #E7A0BC;
        width: 80%;
        padding-top: 16px;
    }

    .plan-page__spot-item {
        padding: 16px 0;
    }

    .plan-page__spot-item:first-child {
        padding-top: 40px;
    }
}

@media (max-width:823px) {
    .plan-page__price-grid    { grid-template-columns: 1fr; }
}

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

    .plan-page__tabs {
        font-size: 14px;
        gap: 3.5%;
    }

    .plan-page__tab {
        font-size: 14px;
        padding: 10px 0;
    }
    .plan-page__support-box { width: 100%; }

    .plan-page__section-title--daily,
    .plan-page__section-title--identity,
    .plan-page__section-title--postmortem { font-size: 22px; }

    .plan-page__section-desc  { font-size: 14px; }
    .plan-page__target-title  { margin: 0 auto; }
/*     .plan-page__check-list li { font-size: 13.5px; letter-spacing: -0.2px; } */
    .plan-page__support-title { font-size: 18px; padding: 12px 0; }
    .plan-page__detail-list li { letter-spacing: -0.2px; }
    .plan-page__title  { font-size: 22px; }
    .plan-page__desc   { font-size: 15px; }

    .plan-page__section-header { padding: 24px 20px 0; }
    .plan-page__section-body   { padding: 20px 5%; }

    .plan-page__section-inner {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .plan-page__section-img { width: 120px !important; }
    /* .plan-page__support-box { width: 80%; } */
    .plan-page__fee-heading { font-size: 20px; }
    .plan-page__detail-note { font-size: 14px; line-height: 1.7; letter-spacing: -0.4px; }

    .plan-page__price-card-header--community,
    .plan-page__price-card-header--premium,
    .plan-page__price-card-header--identity-community,
    .plan-page__price-card-header--identity-premium,
    .plan-page__price-card-header--postmortem-community,
    .plan-page__price-card-header--postmortem-premium { padding: 13px; }

    /* .plan-page__price-grid    { grid-template-columns: 1fr; } */
    .plan-page__price-card-body { padding: 5%; }
    .plan-page__spot-header   { width: 80%; }
}

@media (max-width: 560px) {
    .plan-page__tab {
        font-size: 12.5px;
        padding: 6px 3px;
        line-height: 1.3;
    }

    .plan-page__price-list { gap: 3px; }
    .plan-page__detail-list li { font-size: 14px; }
    .plan-page__price-list-name,
    .plan-page__price-list-price,
    .plan-page__price-list li { font-size: 14px; }
    .plan-page__tab br     { display: block; }
    
    .plan-page__spot        { width: 100%; }
    .plan-page__spot-title  { font-size: 18px; }
    .plan-page__spot-label  { font-size: 13.5px; }
    .plan-page__note p      { font-size: 13px; letter-spacing: -.2px; }
}
















































/* =============================================
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 40px;
        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;
        font-size: 13.5px;
    }
}

@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: 12px;
    }

    .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);
}

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

    .news__inner {
        padding: 0 20px;
    }

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

    .section-desc {
        font-size: 14px;
        line-height: 22px;
        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;
        font-weight: 600;
    }

    .news__body {
        gap: 2px;
    }
	
	.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;
		}
   }

