@charset "UTF-8"; 

/* ---  全体の基本設定  --- */
html { 
    font-size: 62.5%; /* デフォルトの 16px の 62.5% が 10px に相当 */
}

/* 変数指定 */
:root {
    /* 色変数 */
    --blue-black: #132440;
    --brown-black: #3E3731;
    --gray-black: #333149;
    --green: #4D957A;

    /* フォント変数 */
    --font-jp: "Zen Kaku Gothic New", sans-serif;

    /* ウエイト変数 */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-bold: 700;
    --fw-black: 900;

    /* 下向き三角形の高さ */
    --tri-h: 40px;
    --tri-overlap: 10px;
}

body {
    background: #D4E8E3; /* PC時の余白背景 */
    font-family: var(--font-jp);
    overflow-x: hidden;
}


.site-wrapper {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    min-height: 100vh;
    background: #FFFEFC;
}
/* =========================
    PCメニュー
========================= */
.pc-nav {
    display: none;
}

/* =========================
    PC左センターロゴ
========================= */
.pc-side-logo{
  display: none; /* まず隠す（SPでは出さない） */
}

/* =========================
    ヘッダー
========================= */
.header {
    position: relative;
    top: 0;
    width: 100%;
    max-width: 450px;
    height: 60px;
    z-index: 1000;
}

.header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 16px;
}


.header__logo img {
    height: 30px;
    width: auto;
}

/* ハンバーガー */
.header__menu {
    position: fixed; 
    top: 0; 
    left: 50%; 
    transform: translateX(calc(225px - 60px));
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 1100;
    background: linear-gradient(
    45deg,
    #7AC79C 0%,
    #50A283 100%
    );
}

.header__hamburger {
    position: relative;
    width: 30px;
    height: 20px;
    display: block;
}

.hamburger__line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #666;
    border-radius: 999px;
    background: #fff;
}

.hamburger__line--top { top: 0; }
.hamburger__line--middle { top: 50%; transform: translateY(-50%); }
.hamburger__line--bottom { bottom: 0; }

/* ====================================
    スマホ：ドロワー（ハンバーガー内メニュー）
======================================= */
.drawer{
    position: fixed;
    inset: 0;
    z-index: 1200;            /* header(1000)より上 */
    pointer-events: none;     /* 閉じてる時は触れない */
}

/* 開いた状態 */
.drawer.is-open{
    pointer-events: auto;
}

/* 背景オーバーレイ */
.drawer__overlay{
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .25s ease;
}

.drawer.is-open .drawer__overlay{
    opacity: 1;
}

/* パネル本体（90vw / 高さ100vh / 右から） */
.drawer__panel{
    position: absolute;
    top: 0;
    right: 0;
    width: 90vw;
    height: 100vh;
    background: #CCE5CD;

    transform: translateX(100%);
    transition: transform .25s ease;

    /* 中身が多い時スクロール */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

  padding: 24px 18px 120px; /* 下固定CTAに被らない余白（必要なら調整） */
}

.drawer.is-open .drawer__panel{
    transform: translateX(0);
}

/* 閉じるボタン（右上） */
.drawer__close{
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
}

.drawer__close-icon{
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    margin: 0 auto;
}

.drawer__close-icon::before,
.drawer__close-icon::after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 2px;
    background: var(--green);
    transform-origin: center;
}

.drawer__close-icon::before{
    transform: translate(-50%, -50%) rotate(45deg);
}
.drawer__close-icon::after{
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* ドロワーメニューの見た目（最低限） */
.drawer__list{
    list-style: none;
    padding: 0;
    display: grid;
    gap: 3rem;
    width: fit-content;
    margin: 7rem auto 0;
}

.drawer__link{
    display: block;
    text-decoration: none;
    color: var(--green);
    font-size: 1.6rem;
    font-weight: var(--fw-medium);
}

.drawer__link:active{
    opacity: .85;
}

/* =============================
    スマホ：下固定CTA（常に下固定）
    - 初期は非表示→スクロールで出現
    - ドロワーより上に重ねる
============================= */
.sp-fixed-cta{
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    padding: 1rem;
    max-height: 80px;
    z-index: 1400;
    display: flex;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);

    /* 初期は隠す */
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(12px);
    transition: opacity .25s ease, transform .25s ease;
}

/* 表示状態 */
.sp-fixed-cta.is-visible{
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.sp-fixed-cta__tel,
.sp-fixed-cta__btn{
    display: flex;
}

.sp-fixed-cta__tel img,
.sp-fixed-cta__btn img{
    width: 100%;
    height: auto;
    display: block;
    max-height: 60px;
}



/* =========================
    01 メインビジュアル
========================= */
.sec-01 {
    position: relative;
    z-index: 1;
    margin-top: -60px;
}

.sec-01::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0; 
    transform: translate(-50%, 50%); 
    width: 280px;
    height: 80px; 
    background: url("../img/hitori_fukidashi.svg") no-repeat center / contain;
    pointer-events: none;
    z-index: 1;
}


.mv {
    position: relative;
    height: calc(70vh - 60px);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

/* 背景画像 */
.mv--hommachi {
    background-image: url("../img/main.png");
}

/* キャッチ：左寄せ・下寄せ */
.mv__catch {
    position: absolute;
    left: 5%;
    bottom: 30%;
    max-width: calc(100% - 32px);
}

.mv__lead,
.mv__sub,
.mv__sub-accent {
    font-size: 1.4rem;
    color: var(--blue-black);
    font-weight: var(--fw-medium);
    margin-bottom: 0.5rem;
}

.mv__sub {
    font-size: 1.9rem;
}


.mv__lead-accent {
    color: #fff;
    background: #243D64;
    padding: 2px 3px;
}

.mv__headline {
    font-size: 2.4rem;
    display: inline-block;
    color: var(--blue-black);
    font-weight: var(--fw-medium);
}

.mv__headline-box {
    font-size: 2.8rem;
    padding: 0.5rem 0;
    background: #fff;
    font-weight: var(--fw-medium); 
}

.mv__headline-accent {
    font-size: 3.5rem;
}

/* 「できた」のマーカー */
.mv__headline-accent {
    position: relative;
    display: inline-block;
    z-index: 0;
    font-weight: var(--fw-medium); 
}

.mv__headline-accent::after {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: -2px;
    height: 17px;
    background-image: url("../img/line.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    z-index: -1;
}

/* =========================
    02 導入部分
========================= */
.sec-02 {
    margin-top: -6rem;
    position: relative;
    background-color: #8CBEA1; 
    padding-bottom: 8rem;
    clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 40px),
        50% 100%,
        0 calc(100% - 40px)
    );
}

.sec-02__inner {
    padding-top: 7rem;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.sec-02__fukidashi {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.sec-02__fukidashi img {
    width: 80%;
    max-width: 280px;
    height: auto;
}

/* 装飾写真2枚 */
.sec-02__photos{
    position: relative;
    list-style: none;
    padding: 0;
    margin: 3rem auto 5rem;
    width: 100%;
    height: clamp(240px, 58vw, 360px);
}

.sec-02__photos-item{
    position: absolute;
}

.sec-02__photo{
    margin: 0;
    overflow: hidden;
}

.sec-02__photo img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* 1枚目：左上 */
.sec-02__photos-item:nth-child(1){
    left: 0;
    top: 0;
    width: clamp(200px, 58vw, 280px);
    aspect-ratio: 4 / 3;
}

/* 2枚目：右下 */
.sec-02__photos-item:nth-child(2){
    right: 0;
    bottom: 0;
    width: clamp(115px, 32vw, 180px);
    aspect-ratio: 1 / 1;
    transform: translateY(12px);
}



.about__title {
    display: inline-block;
    color: #fff;
    margin: 0 auto;
    font-size: 1.6rem;
    background: #50A283;
    border-radius: 3px;
    padding: 0.2rem 0.4rem;
    margin-bottom: 1rem;
}

.about__text {
    color: #fff;
    font-size: 2.0rem;
    font-weight: var(--fw-bold);
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    margin-bottom: 2rem;
}

.sp-only {
    display: none;
}

.about__support {
    background-color: #EAEFED;
    border-radius: 10px;
    padding: 2.4rem 2.0rem;
}

.about__support-lead {
    position: relative;
    color: var(--green);
    font-size: 1.6rem;
    font-weight: var(--fw-bold);
    margin-bottom: 4rem;
    z-index: 1;
}

/* 白い長方形 */
.about__support-lead::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.5rem;
    transform: translateX(-50%);
    width: 63%;
    height: 1.6rem;
    background-color: #fff;
    z-index: -1;
}

.about__support-list {
    text-align: left;
    display: grid;
    gap: 2.0rem;
}

.about__support-item {
    position: relative;
    color: #122440;
    font-size: 1.8rem;
    font-weight: var(--fw-medium);
    padding-left: 3rem;
}

.about__support-accent {
    color: #E27444;
    font-weight: var(--fw-bold); 
}

/* チェック */
.about__support-item::before{
    position: absolute;
    content:"";
    top: 0.4rem;
    left: 0;
    width: 2.0rem;            
    height: 2.0rem;
    flex: 0 0 2.0rem;
    margin-top: 0.2rem; 
    background: url("../img/check.png") no-repeat center / contain;
}

/* 1回目CTAボタン */
.cta {
    display: block;
    width: 100%;
    max-width: 320px;     /* ← カンプに近い幅に調整 */
    margin: 4rem auto 0; /* 上余白＋中央寄せ */
}

.cta:hover {
    opacity: 0.8;
}

.cta--image img {
    width: 100%;
    height: auto;
}


/* =================================
    03 不安に思うこと〜転換メッセージ
==================================== */

.sec-03-1__inner{
    position: relative;
    background: #fff;
    margin: 0 auto;  
    padding: 5rem 0 5rem;   
    text-align: center;
    z-index: 2; /* 2つめより前 */
}

/* 白い下向き三角 */
.sec-03-1__inner::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(-1 * var(--tri-h));
    height: var(--tri-h);
    background: #FFFEFC;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    z-index: 3;
}

.sec-03__title {
    position: relative;
    font-weight: var(--fw-medium);
    display: inline-block;
    margin-bottom: 5rem;
}

.sec-03__title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1rem;
    transform: translateX(-50%);
    width: 100%;
    height: 1.2rem;
    background: url("../img/deco.png") no-repeat center / contain;
}

.sec-03__title-lead {
    color: var(--gray-black);
    font-size: 1.6rem;
    font-weight: var(--fw-medium); 
}

.sec-03__title-main {
    color: var(--green);
    font-size: 2.2rem;
    font-weight: var(--fw-medium); 
}

/* 悩む女性＆もやもや */
.sec-03__visual {
    position: relative;
    width: 90%;
    margin: 0 auto 5rem;
}

.sec-03__person {
    width: 20%;
    margin: 0 auto;
    display: block;
}

.sec-03__moya {
    position: absolute;
    width: 40%;
}

.sec-03__moya--1 {
    top: 0%;
    left: 5%;
}

.sec-03__moya--2 {
    top: 2%;
    right: 5%;
}

.sec-03__moya--3 {
    bottom: 5%;
    left: 0%;
}

.sec-03__moya--4 {
    bottom: 3%;
    right: 0%;
}

.sec-03__text {
    font-size: 1.9rem;
    font-weight: var(--fw-medium);
    color: var(--gray-black);
    margin-bottom: 5rem;
}

.sec-03__accent {
    color: var(--green);
    font-size: 2.3rem;
    font-weight: var(--fw-bold);
}

.sec-03-2__inner{
    position: relative;
    background: #D4E8E3;
    text-align: center;
    z-index: 1;
    margin-top: 0;
    padding: calc(7rem + var(--tri-h)) 0 5rem; /* ←三角分だけ下げる */
}

/* =================================
    04 卒業生の就職とその後
==================================== */
.sec-04 {
    position: relative;
    margin-top: -6rem;
    z-index: 3;
    background: #FFFEFC;
    border-radius: 16px 16px 0 0;
}

.sec-04::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: url("../img/sankaku_o.png") no-repeat center / contain;
    z-index: 5;
    pointer-events: none;
}

.sec-04-1__inner {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding-top: 8rem;
    overflow: hidden; 
    position: relative;
}

.sec-04__title {
    margin-bottom: 3rem;
}

.sec-04__title-lead {
    font-size: 2.2rem;
    font-weight: var(--fw-medium);
}

.sec-04__title-main {
    font-size: 2.9rem;
    font-weight: var(--fw-bold);
    color: var(--green);
}

.sec-04__lead {
    font-size: 1.6rem;
    color: var(--brown-black);
    font-weight: var(--fw-medium);
}

/* 実績（92%）＆対話イラスト */
.sec-04__result {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5rem 0;
    gap: 2rem;
}

.sec-04__rate,
.sec-04__talk {
    width: 40%;
}

.sec-04-2__inner {
    position: relative;
    background: url(../img/bg.png) no-repeat center top;
    background-size: 100% auto;
    text-align: center;
    padding-top: 6rem;
}

.sec-04__subttl {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);

    display: inline-block;
    color: #fff;
    font-size: 1.4rem;
    background: #50A283;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    z-index: 2;
}

.sec-04__jobs {
    width: 90%;
    margin: 0 auto;
}

/* =================================
    05 卒業生の声
==================================== */
.sec-05 {
    padding: 10rem 0;
    background: #fff;
}

.sec-05__inner {
    margin: 0 auto;
    text-align: center;
}

.sec-05__title {
    font-size: 2.9rem;
    font-weight: var(--fw-bold);
    color: var(--green);
    margin-bottom: 4rem;
}

/* Swiper枠 */
.voice-swiper {
    position: relative;
    width: 100%;
    padding: 0 0 5rem; 
}

.voice-swiper .swiper-slide {
    height: auto;/* スライドの高さズレ防止 */
    display: flex;
    justify-content: center;
}

.voice-swiper .swiper {
    overflow: visible;/* 端の「チラ見え」を出したい場合の余白（必要に応じて） */
}

/* card本体 */
.voice-card {
    width: 100%;
    max-width: 360px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    position: relative;
    margin-bottom: 5rem;
    padding-bottom: 2rem;
}

/* 「続きを見る」で開いた時：ボタン分＋余裕を確保 */
.voice-card.is-voice-open{
    padding-bottom: 8rem; 
}

/* 上部：顔＋プロフィール */
.voice-card__header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 90px;
    margin-bottom: 4rem;
    padding-top: 5rem;
}

/* プロフィールの緑帯 */
.voice-card__profile{
    width: 90%;
    background: linear-gradient(180deg, rgba(122, 199, 156, 1) 0%, rgba(80, 162, 131, 1) 100%);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 0;
    padding: 1.6rem 1.6rem 1.6rem 14rem;
    border-radius: 0px 5px 5px 0px;
    text-align: left;
}

/* 名前 */
.profile-name{
    font-weight: var(--fw-bold);
    font-size: 1.5rem;
}

.profile-label{
    font-weight: var(--fw-bold);
}

.profile-value{
    font-weight: var(--fw-regular);
}


.voice-card__avatar{
    position: absolute;
    left: 3%;
    top: 50%;
    transform: translateY(-50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 6px 14px rgba(0,0,0,.12);
    z-index: 2;
}

.voice-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* コメント */
.voice-card__comment {
    margin: 2rem 0 1.8rem;
    position: relative;
}

.voice-card__quote {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 5rem;
    display: block;
}

/* before / after */
.voice-card__ba {
    margin: 0 auto 5rem;
    width: 100%;
    max-width: 300px;
}

.voice-card__ba img {
    width: 100%;
    height: auto;
    display: block;
}

/* --------------------------------------
    卒業生の声：続きを読む（voice accordion）
----------------------------------------- */
.voice-accordion{
    position: relative;
    --voice-hide-h: 140px;
}

/* 折りたたむ本文 */
.voice-accordion__text{
    overflow: hidden;
    position: relative;
    transition: height .25s ease;
}

/* 初期：見えてる高さ */
.voice-accordion__text.is-hide{
    height: var(--voice-hide-h);
}

/* 末尾をふわっと隠す */
.voice-accordion__text::before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,.85) 55%,
        #fff 100%
    );
}

/* ボタン本体（テキストに重ねる） */
.voice-accordion__btn{
    position: absolute;
    left: 50%;
    bottom: 8px;                 
    transform: translateX(-50%);
    display: inline-block;
    width: fit-content;
    padding: 1rem 2.2rem;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-size: 1.4rem;
    font-weight: var(--fw-bold);
    cursor: pointer;
    z-index: 2;
    user-select: none;
}

/* ボタン文言（初期） */
.voice-accordion__btn::after{
    content: "続きを見る";
}

/* hover */
.voice-accordion__btn:hover{
    opacity: .9;
}

/* 開いた状態：ボタンを本文の下へ逃がす（リンクのサイトと同じ考え方） */
.voice-accordion__btn.is-show{
    bottom: 8px;
}

/* 開いた状態：文言を閉じるへ */
.voice-accordion__btn.is-show::after{
    content: "閉じる";
}

/* 開いた状態：グラデ消す */
.voice-accordion__btn.is-show + .voice-accordion__text::before{
    display: none;
}

/* 本文 */
.voice-card__body {
    text-align: left;
    padding: 0 2rem;
}

.voice-card__block + .voice-card__block {
    margin-top: 2rem;
}

.voice-card__ttl {
    font-size: 1.4rem;
    font-weight: var(--fw-bold);
    color: var(--green);
    margin: 0 0 0.8rem;
}

.voice-card__text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #62605D;
    margin: 0;
}

.voice-card__text:last-child {
    padding-bottom: 7rem;
}

/* ページネーション */
.voice-swiper .swiper-pagination {
    bottom: 0 !important;
}

.voice-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    opacity: 0.25;
}

.voice-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* 矢印（left.png / right.png */
.voice-swiper .swiper-button-prev,
.voice-swiper .swiper-button-next {
    width: 44px;
    height: 44px;
    top: 260px;
    transform: translateY(0);
}

.voice-swiper .swiper-button-prev::after,
.voice-swiper .swiper-button-next::after {
    content: "";
    width: 44px;
    height: 44px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

/* left / right 画像 */
.voice-swiper .swiper-button-prev::after {
    background-image: url("../img/left.svg");
}
.voice-swiper .swiper-button-next::after {
    background-image: url("../img/right.svg");
}


/* =================================
    06 manaby大阪本町の魅力
==================================== */
.sec-06 {
    position: relative;
    z-index: 3;
}

.sec-06::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(-1 * var(--tri-h));
    height: var(--tri-h);
    background: #FFFEFC;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    z-index: 3;
}

.sec-06__title {
    text-align: center;
    margin-bottom: 4rem;
}

.sec-06__title-lead {
    color: var(--green);
    font-weight: var(--fw-bold);
    font-size: 1.6rem;
}

.sec-06__title-main {
    font-size: 2.9rem;
    font-weight: var(--fw-medium);
    color: var(--brown-black);
}

.sec-06__title-accent {
    color: var(--green);
    font-weight: var(--fw-bold);
}


/* ポイント */
.point {
    padding-bottom: 5rem;

    /* Grid設定 */
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 85%;
    gap: 2rem;
    
    /* スクロール設定 */
    overflow-x: auto;
    padding-left: 2rem;
    padding-right: 2rem;

    scroll-snap-type: x mandatory;
}

.point__item {
    padding: 2rem 0;
    background: #EAEFEE;
    border-radius: 10px;
}

.point-card__figure {
    padding: 0 2rem 2rem;
    height: 220px;
    overflow: hidden;
}

.point-card__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.point-card__badge {
    width: 25%;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.point-card__ttl {
    font-size: 2.3rem;
    font-weight: var(--fw-medium);
    margin: 0 0 2rem;
}

.point-card__ttl-line {
    display: block;
    width: fit-content;
    font-weight: var(--fw-medium); 
    color: #fff;
    padding: 0.4rem 1rem;
    margin: 0 0 0.4rem 0;       /* 行間の余白 */
    background: linear-gradient(
        180deg,
        rgba(122, 199, 156, 1) 0%,
        rgba(80, 162, 131, 1) 100%
    );
}


.point-card__body {
    padding: 0 2rem;
}

.point-card__text {
    font-size: 1.6rem;
    line-height: 2.4rem;
}

/* =================================
    07 manaby大阪本町での1日
==================================== */
.sec-07 {
    background: #F0ECE2;
    position: relative;
    z-index: 2;
}

.sec-07::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(-0.99 * var(--tri-h));
    height: var(--tri-h);
    background: #F0ECE2;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    z-index: 3;
}

.sec-07__inner {
    width: 90%;
    margin: 0 auto;
    padding-top: 10rem;
}

.sec-07__title {
    color: var(--green);
    font-size: 2.9rem;
    font-weight: var(--fw-bold);
    margin-bottom: 5rem;
    text-align: center;
}

/* ボタン置き場 */
.schedule-more-wrap{
    position: relative;
}

.schedule_list{
    position: relative;
    padding-bottom: 7rem;
}

/* JSがheightを入れるので、collapsedはoverflowだけ担当 */
.schedule_list.is-collapsed{
    overflow: hidden;
}

/* 末尾ふわっと隠す */
.schedule_list.is-collapsed::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height: 90px;
    pointer-events:none;
    background: linear-gradient(
        to bottom,
        rgba(240,236,226,0) 0%,
        rgba(240,236,226,.85) 55%,
        #F0ECE2 100%
    );
}

.schedule-more__btn{
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: inline-block;
    width: fit-content;
    padding: 1rem 2.2rem;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-size: 1.4rem;
    font-weight: var(--fw-bold);
    cursor: pointer;
    z-index: 5;
    user-select: none;
}

.schedule-more__btn::after{
    content:"続きを見る";
}

.schedule-more__btn.is-show::after{
    content:"閉じる";
}

.schedule-more__btn:hover{
    opacity: .9;
}

.schedule_item {
    margin-bottom: 4rem;
    padding-left: 50px;
    position: relative;
}

.schedule_item:not(:last-of-type):before {
    background-color: #50A283;
    content: "";
    display: block;
    height: calc(100% + 56px);
    left: 13px;
    position: absolute;
    top: 0;
    width: 4px;
}

.schedule_head {
    position: relative;
}

.schedule_dot {
    bottom: 0;
    height: auto;
    left: -45px;
    position: absolute;
    top: 0;
    width: 20px;
}

.title {
    display: flex;
    flex-direction: column;
    color: #241F1B;
    font-size: 2.0rem;
    margin-bottom: 1rem;
}

.time {
    font-size: 1.8rem;
    font-family: "Jost", sans-serif;
    font-weight: var(--fw-bold);
}

.text {
    font-size: 1.4rem;
}

/* 吹き出し */
.schedule_fukidashi {
    background: #8CBEA1;
    border-radius: 10px;
    padding: 3rem 2rem 2rem;
    position: relative;
    margin-top: 2rem;
}

.schedule_fukidashi::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 25px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 16px 7px;
    border-color: transparent transparent #8CBEA1 transparent;
}

.schedule_fukidashi .title {
    color: #fff;
    font-weight: var(--fw-medium);
    margin-bottom: 2rem;
    font-size: 2.4rem;
}

.schedule_fukidashi .text {
    color: #fff;
    margin-bottom: 2rem;
}

.fukidashi_img img {
    width: 100%;
}

/* =================================
    08 利用料
==================================== */
.sec-08 {
    background: #50A283;
    text-align: center;
    padding-top: 12rem;
    padding-bottom: 2rem;
    margin-top: -6rem;
}

.sec-08__title {
    display: inline-block;
    color: #fff;
    font-size: 2.4rem;
    position: relative;
    margin-bottom: 5rem;
}

.sec-08__title::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -20%;
    width: 60px;
    height: 70px;
    flex: 0 0 2.0rem;
    margin-top: 0.2rem; 
    background: url("../img/moya_gr.png") no-repeat center / contain;
}

.sec-08__inner {
    width: 90%;
    margin: 0 auto 2rem;
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
}

.sec-08__inner-flex {
    display: flex;
    align-items: center;
}

.sec-08__img {
    width: 130px;
}

.sec-08__text-1 {
    font-size: 1.6rem;
    font-weight: var(--fw-medium);
    color: var(--gray-black);
    text-align: left;
}

.sec-08__text-1-accent {
    color: var(--green);
    font-weight: var(--fw-bold);
}

.sec-08__text-2 {
    background: #EBF1ED;
    border-radius: 5px;
    text-align: left;
    padding: 2rem;
    font-size: 1.6rem;
    color: var(--gray-black);
    font-weight: var(--fw-medium);
    line-height: 1.0;
    margin-bottom: 2rem;
}

.sec-08__text-2-accent,
.sec-08__text-2-accent-b {
    color: var(--green);
    font-weight: var(--fw-bold);
    font-size: 2.0rem;
}

.sec-08__text-2-accent-b {
    font-size: 3.0rem;
}

/* 料金表 */
.fee-accordion{
    margin-top: 2rem;
}

.fee-accordion__media{
    overflow: hidden;
}

/* 詳しく見る */
.fee-accordion__btn{
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 54px;             
    background: #fff;
    color: var(--green);
    font-size: 1.6rem;
    font-weight: var(--fw-bold);

    border-radius: 0 0 8px 8px;
    border-top: 1px solid rgba(0,0,0,0.08);

    cursor: pointer;
    user-select: none;
    position: relative;
    border: 1px solid #D9D9D9;  
}

/* hover */
.fee-accordion__btn:hover{
    opacity: .9;
}

/*  文言（閉じてる時） */
.fee-accordion__btn::after{
    content: "詳しい料金を見る";
    display: inline-block;
    padding-right: 2.2rem;
}

.fee-accordion__btn::before{
    content:"";
    position:absolute;
    right: 18px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    transform: translateY(-60%) rotate(45deg); /* 下向き矢印 */
}

/* 開いた時：文言を「閉じる」に＆矢印を上向き */
.fee-accordion__btn.is-show::after{
    content: "閉じる";
}

.fee-accordion__btn.is-show::before{
  transform: translateY(-40%) rotate(-135deg); /* 上向き矢印 */
}

.sec-08__text-3 {
    color: #fff;
    font-size: 1.4rem;
    text-align: left;
    padding-left: 2rem;
}

/* =================================
    09 2回目CTA
==================================== */
.sec-09 {
    background: #A9D9CD;
    padding: 3rem 0;
    position: relative;
}

.sec-09::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 3%;
    width: 60px;
    height: 90px;
    background: url(../img/sumaho-cta.png) no-repeat center / contain;
}

.sec-09__inner {
    background: #fff;
    border-radius: 5px;
    margin: 0 auto;
    width: 90%;
    padding: 3rem 0;
}

.sec-09__title {
    color: var(--green);
    font-weight: var(--fw-bold);
    text-align: center;
}

.sec-09__title-lead {
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
}

.sec-09__title-main {
    font-size: 2.2rem;
    font-weight: var(--fw-bold);
}

.cta-2 {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 2rem auto 3rem;
}

.cta-2:hover {
    opacity: 0.8;
}

.sec-09__text,
.sec-09__text-2 {
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
    color: var(--gray-black);
    font-weight: var(--fw-bold);
    font-size: 1.6rem;
}

.sec-09__text-2 {
    font-size: 1.4rem;
}

.sec-09__tel {
    max-width: 260px;
    margin: 0.5rem auto;
}

.sec-09__tel img {
    width: 100%;
}

/* =================================
    10 利用者データ
==================================== */
.sec-10__inner {
    padding: 10rem 0;
}

.sec-10__title {
    text-align: center;
    margin-bottom: 5rem;
}

.sec-10__title-lead,
.sec-10__title-main {
    font-size: 1.6rem;
    display: inline-block;
    color: var(--gray-black);
}

.sec-10__title-lead {
    font-size: 1.6rem;
    position: relative;
    font-weight: var(--fw-medium); 
}

.sec-10__title-lead::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1rem;
    transform: translateX(-50%);
    width: 100%;
    height: 1.2rem;
    background: url(../img/deco.png) no-repeat center / contain;
}

.sec-10__title-main {
    font-size: 3.4rem;
    font-weight: var(--fw-medium); 
}

.sec-10__title-main-accent {
    color: var(--green);
    font-weight: var(--fw-medium); 
}

.data01,
.data02 {
    background: #EBF1ED;
    width: 80%;
    margin: 0 auto;
    border-radius: 5px;
    margin-bottom: 3rem;
    padding: 2rem;
}

.data-title {
    text-align: center;
    font-size: 2.0rem;
    color: var(--gray-black);
    margin-bottom: 2rem;
}

.data-img {
    max-width: 300px;
    margin: 0 auto;
}

.data-img img {
    width: 100%;
}

.data-text {
    text-align: left;
    font-size: 1.6rem;
    color: var(--gray-black);
    font-weight: var(--fw-medium);
    margin: 3rem 0;
}

.data02__labels {
    display: flex;
    width: 70%;
    margin: 0 auto;
    justify-content: space-around;
}

.data02__label-1,
.data02__label-2,
.data02__label-3 {
    display: inline-block;
    color: #fff;
    font-size: 1.3rem;
    font-weight: var(--fw-bold);
    padding: 0.5rem 0.7rem;
    border-radius: 999px;   
}

.data02__label-1 {
    background: #89CCE5;
}
.data02__label-2 {
    background: #9FBA48;
}
.data02__label-3 {
    background: #97A6B5;
}


/* =================================
    11 ご利用までの流れ
==================================== */
.sec-11 {
    background: linear-gradient(180deg,rgba(235, 241, 237, 1) 0%, rgba(240, 244, 241, 1) 70%, rgba(248, 248, 248, 1) 100%);;
}

.sec-11__inner {
    padding: 7rem 0;
}

.sec-11__title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--gray-black);
    margin-bottom: 4rem;
}

.sec-11__title-main-b,
.sec-11__title-main-accent {
    font-size: 3.2rem;
    font-weight: var(--fw-medium);
}

.sec-11__title-main-accent {
    color: var(--green);
    font-weight: var(--fw-medium);
}

.nagare_item {
    background: #fff;
    width: 90%;
    margin: 0 auto 3rem; 
    border-radius: 5px;
    display: flex;
    align-items: center;
    position: relative;
}

.nagare_item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    width: 36px;
    height: 36px;
    background: url("../img/sankaku-g.svg") no-repeat center / contain;
    z-index: 5;
}


.nagare_text {
    width: 90%;
    padding: 2rem;
}

.step {
    font-family: "Jost", sans-serif;
    color: var(--green);
    font-weight: var(--fw-medium);
    font-size: 1.4rem;
}

.step-num {
    font-size: 2.0rem;
}

.step__ttl {
    font-size: 1.6rem;
    color: #241F1B;
    margin-bottom: 2rem;
}

.nagare_desc {
    color: #3E3731;
    font-size: 1.4rem;
    line-height: 2.4rem;
    font-weight: var(--fw-medium);
}

.nagare_img {
    padding-right: 1rem;
}

/* =================================
    12 私たちについて
==================================== */
.sec-12 {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.sec-12__inner {
    width: 80%;
    margin: 0 auto;
}

.sec-12__title {
    font-size: 2.9rem;
    font-weight: var(--fw-medium);
    text-align: center;
    color: var(--brown-black);
    margin-bottom: 1rem;
}

.sec-12__logo {
    max-width: 170px;
    margin: 0 auto;
}

.sec-12__logo img {
    width: 100%;
}

.sec-12__img {
    max-width: 300px;
    margin: 4rem auto;
}

.sec-12__img img {
    width: 100%;
}


.sec-12__text {
    font-size: 1.6rem;
    line-height: 3.2rem;
    margin-bottom: 5rem;
}

.sec-12__subttl {
    font-size: 2.2rem;
    text-align: center;
    font-weight: var(--fw-medium);
    color: var(--brown-black);
    position: relative;
    margin-bottom: 5rem;
}

.sec-12__subttl::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1rem;
    transform: translateX(-50%);
    width: 120px;
    height: 1.2rem;
    background: url(../img/deco-s.png) no-repeat center / contain;
}

.syousai_item {
    font-size: 1.4rem;
    padding-left: 4rem;
    margin-bottom: 1rem;
    position: relative;
}

.syousai_item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 3rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.syousai_item:nth-child(1)::before {
    background-image: url("../img/train.svg");
}

.syousai_item:nth-child(2)::before {
    background-image: url("../img/tokei.svg");
}

.sec-12__map {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 5rem;
    overflow: hidden;
}

.sec-12__map iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
    border: 0;
}

/* 無限スワイパー */
.sec12-swiper{
    width: 100%;
    overflow: hidden;
}

/* 等速 */
.sec12-swiper .swiper-wrapper{
    transition-timing-function: linear !important;
}

.sec12-swiper .swiper-slide{
    width: clamp(160px, 38vw, 280px); 
}

.sec12-swiper .swiper-slide img{
    width: 100%;
    height: auto;
    display: block;
}


/* =================================
    13 3回目CTA
==================================== */
.sec-13 {
    --staff-width: 110px;
    --staff-left: 2rem;     /* ← left の余白 */

    background: #50A283;
    border-radius: 8px;
    padding-top: 5rem;
    padding-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.sec-13::before {
    content: "";
    position: absolute;
    left: var(--staff-left);
    top: 3.2rem;
    width: var(--staff-width);
    height: 130px;
    background: url("../img/staff.svg") no-repeat center / contain;
    z-index: 1;
    pointer-events: none;
}

.sec-13__title {
    color: #fff;
    font-size: 2.9rem;
    position: relative;
    z-index: 2;
    display: inline-block;
    padding-left: calc(var(--staff-width) + var(--staff-left) + 1rem);
    margin-bottom: 2rem;
}

.sec-13__inner {
    width: 90%;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.cta_list {
    margin: 0 auto;
    max-width: 250px;
}

.cta_item {
    font-size: 1.6rem;
    color: var(--gray-black);
    font-weight: var(--fw-medium);
    margin-bottom: 0.5rem;
    padding-left: 3rem;
    position: relative;
}

.cta_item::before {
    position: absolute;
    content: "";
    top: 0.4rem;
    left: 0;
    width: 2.0rem;
    height: 2.0rem;
    flex: 0 0 2.0rem;
    margin-top: 0.2rem;
    background: url(../img/check-g.png) no-repeat center / contain;
}


/* =================================
    14 よくある質問
==================================== */
.sec-14 {
    width: 90%;
    margin: 0 auto;
    padding-top: 7rem;
    padding-bottom: 14rem;
}

.sec-14__title {
    text-align: center;
    font-size: 3.2rem;
    color: var(--brown-black);
    font-weight: var(--fw-bold);
    margin-bottom: 5rem;
}

.accordion__item {
    background: #D2EDDD;
    border-radius: 10px;
    margin-bottom: 2rem;
    padding: 2rem;
}

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

.accordion-header {
    display: flex;
    align-items: center;
    gap: 1.2rem; 
}

.accordion-header__q {
    font-family: "Jost", sans-serif;
    color: #fff;
    font-size: 2.3rem;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.accordion-header__text {
    font-size: 1.6rem;
    font-weight: var(--fw-bold);
    color: var(--brown-black);
    flex: 1;
    min-width: 0;
}

.accordion-header__icon {
    font-size: 1.6rem;
    font-weight: var(--fw-bold);
    color: var(--green);
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-left: auto;
    flex-shrink: 0;  
}

.accordion-content {
    position: relative;
    margin-top: 1.6rem; /* Qブロックとの余白 */
    padding-top: 2.4rem; /* 点線とAの間の余白 */
}

.accordion-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(
        to right, var(--green), 
        var(--green) 7px, 
        transparent 4px, 
        transparent 14px);
    left: 1rem;
    width: calc(100% - 2rem);
}

.accordion-content__inner {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1.6rem;
}

.accordion-content__a {
    font-family: "Jost", sans-serif;
    color: var(--green);
    font-size: 2.3rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.accordion-content__text {
    font-size: 1.2rem;
    flex: 1;
    min-width: 0;
}

/* =============================
    問い合わせフォーム（モーダル）
============================= */
.modal{
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 20px 12px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .25s ease;
}
.modal.is-open{
    pointer-events: auto;
    opacity: 1;
}

.modal__overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
}

/* パネル（中身） */
.modal__panel{
    position: relative;
    width: min(520px, 94vw);
    max-height: 92vh;
    outline: none;

    transform: translateY(10px);
    transition: transform .25s ease;
}
.modal.is-open .modal__panel{
    transform: translateY(0);
}

/* 外枠：緑のフレーム */
.modal__frame{
    background: #CCE5CD;
    padding: 1rem;
    box-shadow: 0 18px 40px rgba(0,0,0,.20);
}

/* 内側：白いカード */
.modal__box{
    background: #fff;
    border-radius: 10px;
    padding: 3rem 2rem 3rem;
    overflow: auto;
    max-height: calc(92vh - 32px);
}

/* 閉じるボタン */
.modal__close{
    position: absolute;
    top: 6px;
    right: 6px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 2;
}

.modal__close-icon{
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 auto;
}
.modal__close-icon::before,
.modal__close-icon::after{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    width: 22px;
    height: 2px;
    background: var(--green);
    transform-origin:center;
}
.modal__close-icon::before{ transform: translate(-50%,-50%) rotate(45deg); }
.modal__close-icon::after{ transform: translate(-50%,-50%) rotate(-45deg); }

/* タイトル */
.modal__title{
    text-align: center;
    font-size: 2.2rem;
    font-weight: var(--fw-bold);
    margin: 0 0 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.modal__title::after{
    content:"";
    position:absolute;
    left:50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 140px;
    height: 0;
    border-bottom: 3px dotted #4D957A;
}

.modal__lead{
    text-align: center;
    color: #241F1B;
    margin: 0 0 2rem;
    line-height: 1.6;
    font-size: 1.4rem;
}

/* =============================
    問い合わせフォーム（見た目）
============================= */
.modal .wpcf7{
    margin-top: 3rem;
}

.modal .wpcf7 form{
    display: grid;
    gap: 2rem;
}

.modal .wpcf7 label{
    font-weight: var(--fw-bold);
    color: #222;
    font-size: 1.4rem;
}

/*  CF7が勝手に入れる <br> を無効化 */
.modal .wpcf7 label br {
    display: none;
}

/* label内の見出し行（「お名前」+「必須」）を横並びに固定 */
.modal .wpcf7 label .form-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: var(--fw-bold);
    color: #222;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

/*  入力欄は次の行に落とす（見出し行と分離） */
.modal .wpcf7 label .wpcf7-form-control-wrap {
    display: block;
}

.form-label__radiotext {
    font-weight: var(--fw-bold);
    color: #222;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

/* 必須バッジ */
.modal .req{
    display: inline-block;
    padding: 2px 10px;
    background: #F19A00;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.4;
    vertical-align: middle;
}

/* 入力系 */
.modal .wpcf7 input[type="text"],
.modal .wpcf7 input[type="tel"],
.modal .wpcf7 input[type="email"],
.modal .wpcf7 textarea{
    width: 100%;
    border: none;
    border-radius: 4px;
    background: #EDEDED;
    padding: 14px 12px;
    font-size: 1.6rem;
    outline: none;
}

.modal .wpcf7 textarea{
    min-height: 150px;
    resize: vertical;
}

/* ラジオ：横並び中央 */
.modal .wpcf7 .wpcf7-form-control.wpcf7-radio{
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 6px;
}

.modal .wpcf7 .wpcf7-list-item{
    margin: 0;
}

.modal .wpcf7 .wpcf7-list-item label{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: var(--fw-bold);
}

/* 同意のエリア */
.modal .wpcf7 .acceptance-wrap{
    text-align: center;
    margin-top: 8px;
}
.modal .wpcf7 .acceptance-wrap a{
    color: var(--green);
    text-decoration: underline;
}

/* 送信ボタン：丸いオレンジ */
.modal .wpcf7 input[type="submit"]{
    display: block;
    margin: 8px auto 0;
    border: 0;
    background: #F19A00;
    color: #fff;
    font-weight: var(--fw-bold);
    font-size: 1.8rem;
    padding: 1rem 5rem;
    border-radius: 999px;
}

.modal .wpcf7 input[type="submit"]:hover{
    opacity: .92;
}

/* CF7のエラー/成功の見た目（最低限） */
.modal .wpcf7-response-output{
    margin: 14px 0 0;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 1.4rem;
}

/* 個人情報保護方針（スクロールBOX） */

.modal .privacy-box{
    background: #F7F7F7;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    padding: 0;
    margin-top: 12px;
}

.modal .privacy-box__inner{
    max-height: 150px; 
    overflow-y: auto;
    padding: 14px 14px;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #222;
}

/* タイトル */
.modal .privacy-box__title{
    font-size: 1.6rem;
    font-weight: var(--fw-bold);
    margin: 0 0 10px;
}

/* 小見出し */
.modal .privacy-box__heading{
    font-size: 1.4rem;
    font-weight: var(--fw-bold);
    margin: 14px 0 6px;
}

.modal .privacy-box__inner p{
    margin-bottom: 1rem;
}

.modal .privacy-box__list{
    margin: 6px 0 10px;
    padding-left: 18px;
}
.modal .privacy-box__list li{
    margin: 4px 0;
}

/* 会社情報 */
.modal .privacy-box__company{
    margin: 0;
    font-size: 1.3rem;
}

/* スクロールバー（Webkit系：Chrome/Safari） */
.modal .privacy-box__inner::-webkit-scrollbar{
    width: 10px;
}
.modal .privacy-box__inner::-webkit-scrollbar-track{
    background: transparent;
}
.modal .privacy-box__inner::-webkit-scrollbar-thumb{
    background: #CFCFCF;
    border-radius: 999px;
    border: 3px solid transparent;
    background-clip: content-box;
}

.modal .privacy-box__inner::-webkit-scrollbar-thumb:hover{
    background: #BDBDBD;
    border: 3px solid transparent;
    background-clip: content-box;
}


/* PC画面 */
@media (min-width: 1000px) {
    :root{
        --center-w: 450px; /* site-wrapperの幅 */
        --side-w: calc((100vw - var(--center-w)) / 2); /* 左右レーン幅 */
    }

    /* 置き場（右レーン） */
    .pc-nav-wrap{
        position: fixed;
        top: 0;
        right: 0;
        width: var(--side-w);
        height: 100vh;
        z-index: 900;

        /* 中のpc-navを“右レーン内で右端、下辺寄せ”にする */
        display: grid;
        place-items: end;
    }

    /* PCメニュー中身 */
    .pc-nav{
        width: 90%;    
        height: 95vh;   
        background: #CCE5CD;

        display: flex;
        flex-direction: column;
        justify-content: space-between;

        border-radius: 70px 0 0 0;
        padding: 7rem 2rem 2rem;
    }

    .pc-nav__list{
        margin: 0 auto;
        width: fit-content;
        display: grid;
        gap: 2rem;
    }

    .pc-nav__link{
        color: var(--green);
        font-weight: var(--fw-medium);
        text-decoration: none;
        font-size: 2rem;
    }

    .pc-nav__link:hover {
        opacity: .9;
    }

    .pc-nav__btn,
    .pc-nav__tel{
        margin: 0 auto 1rem;
        display: block;
        width: 100%;
        max-width: 320px;
    }

    .pc-nav__btn:hover,
    .pc-nav__tel {
        opacity: .8;
    }

    .pc-side-logo{
        display: grid;             /* 中央寄せに便利 */
        place-items: center;       /* ど真ん中 */
        position: fixed;
        top: 0;
        left: 0;
        width: var(--side-w);
        height: 100vh;
        z-index: 800;
        pointer-events: none;      /* クリック不要なら */
    }

    .pc-side-logo img{
        width: min(320px, 80%);    /* レーン内で良い感じのサイズ */
        height: auto;
        display: block;
    }

    .site-wrapper {
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }

    .sp-fixed-cta{
        display: none; 
    }
    .drawer{ 
        display: none; 
    } /* PCはドロワー不要なら */

    /* ハンバーガーメニューは非表示 */
    .header__menu{
        display: none;
    }

    /* スマホ下固定CTAもPCでは非表示 */
    .sp-fixed-cta{
        display: none;
    }
}

/* 450px未満：ハンバーガーメニュー画面右端にピタ */
@media (max-width: 449.98px){
    .header__menu{
        left: auto;
        transform: none; 
        right: 0; 
    }

    .sp-only {
        display: inline;
    }
}