/* =========================================================
     ヘッダー｜フローティング1段
     ========================================================= */
  .hd {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0 clamp(1rem, 3vw, 3.5rem);
    pointer-events: none;
    transition: padding .25s ease;
  }
  .hd__panel {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 0 0 24px 24px;
    box-shadow: 0 4px 24px rgba(58,124,165,.10);
    padding: 1rem clamp(1.25rem, 3vw, 2.5rem);
    pointer-events: auto;
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
    transition: padding .25s ease, box-shadow .25s ease, border-radius .25s ease;
  }
  .hd__logo img { height: 54px; width: auto; display: block; transition: height .25s ease; }

  /* スクロール時：コンパクトに */
  .hd.is-scrolled { padding: 0; }
  .hd.is-scrolled .hd__panel {
    border-radius: 0;
    padding: .625rem clamp(1.25rem, 3vw, 2.5rem);
    box-shadow: 0 2px 16px rgba(58,124,165,.14);
  }
  .hd.is-scrolled .hd__logo img { height: 40px; }

  .hd__nav { display: flex; align-items: center; gap: 1.75rem; flex: 1; justify-content: center; }
  .hd__nav-link {
    position: relative; display: block; padding-bottom: 11px;
    font-size: .9375rem; font-weight: 600; color: #2D3748;
    text-decoration: none; white-space: nowrap; transition: color .2s;
  }
  .hd__nav-link:hover { color: #83B8DD; }
  .hd__caret {
    position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 4px solid transparent; border-right: 4px solid transparent;
    border-top: 5px solid #83B8DD;
  }
  .hd__btn {
    background: #F2795C; color: #fff; text-decoration: none;
    font-size: .875rem; font-weight: 600;
    padding: .75rem 1.625rem; border-radius: 100px;
    box-shadow: 0 4px 12px rgba(242,121,92,.28);
    white-space: nowrap; transition: transform .2s, box-shadow .2s;
  }
  .hd__btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(242,121,92,.34); }

  /* =========================================================
     FV｜全面写真 ＋ 白帯テキスト ＋ 丸3つ
     ========================================================= */
  .fv2 { position: relative; min-height: 54vh; display: flex; align-items: center; }
  .fv2__bg {
    position: absolute; inset: 0; z-index: 1;
    background-image: url('../img/hero-pc.webp');
    background-size: cover; background-position: center center;
  }
  .fv2__bg::after {
    content: ""; position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to right,
      rgba(255,255,255,.30) 0%,
      rgba(255,255,255,.18) 36%,
      rgba(255,255,255,.02) 62%,
      rgba(255,255,255,0) 82%);
  }
  .fv2__content {
    position: relative; z-index: 3;
    max-width: var(--container-max); margin: 0 auto; width: 100%;
    padding: 7.5rem var(--container-padding) 2.5rem;
  }
  .fv2__text { max-width: 640px; }

  .fv2__title { margin-bottom: 1.75rem; }
  .fv2__title span + span { margin-top: 12px; }
  .fv2__title span {
    display: table;          /* 幅を文字量に合わせ、行間の影響を受けない */
    background: rgba(255,255,255,.94);
    color: #83B8DD;
    font-size: 2.875rem; font-weight: 600;
    line-height: 1.45;
    padding: .5rem 1.375rem;
    letter-spacing: .04em;
  }
  .fv2__title em { font-style: normal; color: #5A9AC9; }

  .fv2__btn {
    display: inline-block; margin-left: 1.375rem; margin-top: 1.75rem;
    text-decoration: none; text-align: center;
    font-size: .9375rem; font-weight: 600;
    color: var(--color-primary-dark);
    background: #fff; border: 2px solid var(--color-primary);
    padding: .8125rem 2rem; border-radius: var(--radius-full);
    box-shadow: 0 4px 14px rgba(58,124,165,.14);
    transition: transform .2s, box-shadow .2s;
  }
  .fv2__btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(58,124,165,.2); }
  .fv2__lead {
    color: #2D3748;
    font-size: 1.125rem; font-weight: 600;
    line-height: 1.9;
    padding-left: 1.375rem;     /* 見出し帯の左padding と揃える */
    letter-spacing: .02em;
    text-shadow: 0 0 12px rgba(255,255,255,.95),
                 0 0 24px rgba(255,255,255,.85);
  }


  @media screen and (max-width: 1100px) {
    .hd__nav { gap: 1.25rem; }
    .hd__nav-link { font-size: .875rem; }
    .hd__logo img { height: 46px; }
    .fv2__title span { font-size: 2.25rem; }
    .fv2__lead { font-size: 1.0625rem; }
    }
  @media screen and (max-width: 900px) {
    .hd { padding: 0; }
    .hd__panel { border-radius: 0; padding: .75rem 1rem; }
    .hd__nav { display: none; }
    .hd__logo img { height: 40px; }
  }
  @media screen and (max-width: 768px) {
    .fv2 { min-height: auto; }
    .fv2__bg {
      background-position: 68% center;
      background-image: url('../img/hero-sp.webp');
    }
    .fv2__bg::after {
      background: linear-gradient(to bottom, rgba(255,255,255,.88) 0%, rgba(255,255,255,.62) 45%, rgba(255,255,255,.2) 100%);
    }
    .fv2__content { padding: 6.5rem var(--container-padding-sp) 1.75rem; }
    .fv2__title span { font-size: 1.625rem; padding: .375rem .875rem; }
    .fv2__title span + span { margin-top: 7px; }
    .fv2__lead { font-size: .9375rem; padding-left: .875rem; line-height: 1.85; }
    .fv2__btn { margin-left: .875rem; margin-top: 1.25rem; font-size: .875rem; padding: .75rem 1.5rem; }
          }

  /* =========================================================
     ブロックB｜こんな状態、ありませんか（states）
     ========================================================= */
  .states { padding: 4.5rem 0 5rem; }
  /* 見出しは中央。イラストは右に絶対配置（装飾） */
  .states__head {
    position: relative;
    max-width: 620px; margin: 0 auto 2.5rem;
    text-align: center;
  }
  .states__head-text .section-title { margin-bottom: 0; }
  .states__list {
    max-width: 720px; margin: 0 auto;
    display: flex; flex-direction: column;
  }
  .states__item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    font-size: 1.0625rem; line-height: 1.7;
  }
  .states__item:first-child { border-top: 1px solid var(--color-border); }
  .states__check {
    flex-shrink: 0; width: 22px; height: 22px; margin-top: .3rem;
    border: 2px solid var(--color-primary);
    border-radius: 4px; background: #fff;
  }
  .states__note {
    position: relative;
    max-width: 720px; margin: 2.5rem auto 0;
    padding: 1.75rem 2rem 1.75rem 8.5rem;   /* 左にイラスト分の余白 */
    background: var(--color-primary-pale);
    border-radius: var(--radius); text-align: center;
  }
  .states__note-illust {
    position: absolute; left: 1.25rem; top: 50%;
    transform: translateY(-50%);
    width: 118px; pointer-events: none;
  }
  .states__note-illust img { width: 100%; height: auto; display: block; }
  .states__note p { font-size: 1.0625rem; line-height: 1.95; font-weight: 600; }
  .states__note-last {
    display: inline-block;
    margin-top: 1.25rem;
    background: #fff;
    padding: .625rem 1.5rem;
    border-radius: var(--radius);
    font-size: 1.1875rem !important;
    color: var(--color-primary-dark);
  }

  /* =========================================================
     ブロックC｜医療との対比（position）
     ========================================================= */
  .position { background: #fff; padding: 5rem 0; }
  .position .section-title { line-height: 1.65; }
  .position__voice { color: var(--color-text); }
  .position__answer-line { color: var(--color-primary-dark); }
  .position__lead { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
  .position__lead p { font-size: 1.0625rem; line-height: 2; }
  .position__gap { margin-top: 2rem; font-size: 1.1875rem; font-weight: 600; line-height: 1.85; }
  .position__gap strong { font-weight: 600; }
  .position__gap-accent { color: var(--color-primary-dark); }

  .position__compare {
    max-width: 860px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: stretch; gap: 1.25rem;
  }
  .position__col {
    padding: 2rem 1.75rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius); text-align: center;
  }
  .position__icon {
    width: 44px; height: 44px; display: block; margin: 0 auto 1rem;
  }
  .position__col-name { font-size: 1.125rem; font-weight: 600; margin-bottom: .75rem; }
  .position__col-desc { font-size: .9375rem; line-height: 1.8; }
  .position__answer { max-width: 720px; margin: 2.5rem auto 0; text-align: center; }
  .position__answer p { font-size: 1.125rem; line-height: 1.9; font-weight: 600; }

  @media screen and (max-width: 768px) {
    .states { padding: 3rem 0 3.5rem; }
    .states__head { margin-bottom: 2rem; }
    .states__item { padding: 1rem .25rem; font-size: .9375rem; gap: .75rem; }
    .states__note { padding: 1.5rem 1.25rem; }
    .states__note-illust { position: static; transform: none; width: 90px; margin: 0 auto 1rem; }
    .states__note p { font-size: 1rem; }
    .position { padding: 3.5rem 0; }
    .position__lead p { font-size: .9375rem; }
    .position__gap { font-size: 1.0625rem; }
    .position__compare { grid-template-columns: 1fr; gap: .75rem; }
    .position__col { padding: 1.5rem 1.25rem; }
    .position__icon { width: 36px; height: 36px; margin-bottom: .75rem; }
    .position__answer p { font-size: 1rem; }
  }


  /* =========================================================
     ブロックD｜ココトレとは（3本柱）
     ========================================================= */
  .pillars { background: var(--color-bg); padding: 5rem 0; }
  .pillars__name {
    text-align: center; font-size: 1rem; line-height: 2.1;
    color: var(--color-text);
    margin-bottom: 3rem;
  }
  .pillars__name span { font-weight: 600; color: var(--color-primary-dark); }
  .pillars__grid {
    max-width: 900px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  }
  .pillars__item {
    background: #fff; border-radius: var(--radius);
    padding: 2.25rem 1.5rem; text-align: center;
    box-shadow: 0 4px 20px rgba(58,124,165,.07);
  }
  .pillars__label {
    display: inline-block;
    background: var(--color-primary); color: #fff;
    font-size: .75rem; font-weight: 600;
    padding: .25rem 1rem; border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
  }
  .pillars__ttl {
    font-size: 1.1875rem; font-weight: 600;
    color: var(--color-primary-dark); line-height: 1.55;
    margin-bottom: .875rem;
    min-height: 3.1em;                    /* 2行分を確保して本文の開始位置を揃える */
    display: flex; align-items: center; justify-content: center;
  }
  .pillars__txt { font-size: .9375rem; line-height: 1.85; text-align: left; }

  .pillars__close {
    max-width: 720px; margin: 3rem auto 0;
    padding: 2rem; text-align: center;
    background: var(--color-primary-pale); border-radius: var(--radius);
  }
  .pillars__close p { font-size: 1.125rem; font-weight: 600; line-height: 1.9; }

  @media screen and (max-width: 768px) {
    .pillars { padding: 3.5rem 0; }
    .pillars__name { margin-bottom: 2rem; font-size: .9375rem; line-height: 2; }
    .pillars__grid { grid-template-columns: 1fr; gap: 1rem; }
    .pillars__item { padding: 1.75rem 1.25rem; }
    .pillars__ttl { font-size: 1.0625rem; min-height: 0; display: block; }
    .pillars__close { padding: 1.5rem 1.25rem; margin-top: 2rem; }
    .pillars__close p { font-size: 1rem; }
  }


  /* =========================================================
     共通｜リンクボタン
     ========================================================= */
  .btn-link {
    display: inline-block; width: fit-content;
    text-decoration: none; text-align: center;
    font-size: .875rem; font-weight: 600;
    color: var(--color-primary-dark);
    background: #fff;
    border: 2px solid var(--color-primary);
    padding: .75rem 1.75rem;
    border-radius: var(--radius-full);
    transition: transform .2s, box-shadow .2s;
  }
  .btn-link:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(131,184,221,.32); }
  .btn-link--center { display: block; margin-left: auto; margin-right: auto; }

  /* =========================================================
     services｜ココトレでは、こんなことを行います。
     ========================================================= */
  .svc { background: #fff; padding: 5rem 0; }
  .svc__list {
    max-width: 900px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 2.5rem;
  }
  .svc__row {
    display: grid; grid-template-columns: 38% 1fr;
    gap: 2.5rem; align-items: center;
    text-decoration: none; color: inherit;
  }
  .svc__photo {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    background: var(--color-primary-pale);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .svc__photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
  .svc__photo-ph { font-size: .75rem; color: #A8C6DE; text-align: center; line-height: 1.8; }
  .svc__body { text-align: left; }
  .svc__label {
    display: inline-block;
    font-size: .8125rem; font-weight: 600;
    color: var(--color-primary-dark);
    background: var(--color-primary-pale);
    padding: .25rem .875rem; border-radius: var(--radius-full);
    margin-bottom: .875rem;
  }
  .svc__name {
    font-size: 1.4375rem; font-weight: 600;
    color: var(--color-text); line-height: 1.45; margin-bottom: .875rem;
  }
  .svc__txt { font-size: .9375rem; line-height: 1.95; margin-bottom: 1.25rem; }
  a.svc__row:hover .svc__photo img { transform: scale(1.03); }

  @media screen and (max-width: 768px) {
    .svc { padding: 3.5rem 0; }
    .svc__list { gap: 2rem; }
    .svc__row { grid-template-columns: 1fr; gap: 1.25rem; }
    .svc__name { font-size: 1.1875rem; }
    .svc__label { font-size: .75rem; }
    .svc__txt { font-size: .875rem; }
  }

  /* =========================================================
     proof｜実績＋お客様の声（統合）
     ========================================================= */
  .proof { background: #fff; padding: 5rem 0; }
  .proof__badges {
    display: flex; flex-wrap: wrap; gap: 1rem;
    justify-content: center; margin-top: 2rem;
  }
  .proof__badge {
    display: inline-flex; align-items: center; gap: .75rem;
    background: var(--color-primary-pale);
    padding: .875rem 1.5rem; border-radius: var(--radius-full);
  }
  .proof__badge-g { font-size: 1.125rem; font-weight: 900; color: #4285F4; }
  .proof__badge-label { font-size: .875rem; font-weight: 600; color: var(--color-text); }
  .proof__badge-sep { width: 1px; height: 18px; background: var(--color-border); }
  .proof__badge-value {
    font-size: 1.625rem; font-weight: 700; color: var(--color-primary-dark);
    font-family: var(--font-en), var(--font-ja); line-height: 1;
  }
  .proof__badge-value small { font-size: .875rem; font-weight: 600; margin-left: .125rem; }
  .proof__badge-stars { color: #FBBC04; font-size: .9375rem; letter-spacing: .05em; }
  .proof__note {
    text-align: center; font-size: .75rem; color: #8FA0B3; margin-top: .875rem;
  }
  .proof__widget {
    max-width: 980px; margin: 2.5rem auto 0;
    min-height: 280px;
    border: 2px dashed #B8D4EA; border-radius: var(--radius);
    background: var(--color-bg);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: .5rem;
    padding: 2rem 1.5rem; text-align: center;
  }
  .proof__widget p { font-size: .875rem; color: #8FA0B3; line-height: 1.9; }
  .proof__widget strong { color: var(--color-primary-dark); font-weight: 600; }
  @media screen and (max-width: 768px) {
    .proof { padding: 3.5rem 0; }
    .proof__badges { flex-direction: column; align-items: center; gap: .75rem; }
    .proof__badge { padding: .75rem 1.25rem; }
    .proof__badge-value { font-size: 1.375rem; }
    .proof__widget { min-height: 220px; margin-top: 2rem; }
  }

  /* =========================================================
     flow｜当日の流れ（写真つき）
     ========================================================= */
  .flow2 { background: #fff; padding: 5rem 0; }
  .flow2__lead { margin-top: 1rem; font-size: .875rem; color: #8FA0B3; }
  .flow2__steps {
    max-width: 820px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 2rem;
  }
  .flow2__step {
    display: grid; grid-template-columns: 240px 1fr;
    gap: 2rem; align-items: center;
  }
  .flow2__photo {
    aspect-ratio: 4 / 3; border-radius: var(--radius);
    background: var(--color-primary-pale);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; position: relative;
  }
  .flow2__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .flow2__photo-ph { font-size: .6875rem; color: #A8C6DE; text-align: center; line-height: 1.8; }
  .flow2__num {
    position: absolute; top: .625rem; left: .625rem;
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--color-primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: .9375rem; font-weight: 700;
    font-family: var(--font-en), var(--font-ja);
  }
  .flow2__ttl { font-size: 1.1875rem; font-weight: 600; margin-bottom: .625rem; }
  .flow2__txt { font-size: .9375rem; line-height: 1.9; }
  @media screen and (max-width: 768px) {
    .flow2 { padding: 3.5rem 0; }
    .flow2__steps { gap: 1.75rem; }
    .flow2__step { grid-template-columns: 110px 1fr; gap: 1.25rem; align-items: start; }
    .flow2__num { width: 26px; height: 26px; font-size: .75rem; top: .375rem; left: .375rem; }
    .flow2__ttl { font-size: 1.0625rem; }
    .flow2__txt { font-size: .875rem; }
    .flow2__txt br { display: none; }
  }

  /* =========================================================
     plans｜プラン
     ========================================================= */
  .plans2 { background: var(--color-bg); padding: 5rem 0; }
  .plans2__lead { margin-top: 1rem; font-size: .9375rem; line-height: 1.9; }
  .plans2__cards {
    max-width: 820px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem;
  }
  .plans2__card {
    background: #fff; border-radius: var(--radius);
    padding: 2.25rem 1.75rem; position: relative;
    display: flex; flex-direction: column;
    box-shadow: 0 4px 20px rgba(58,124,165,.08);
  }
  .plans2__card--rec { border: 2px solid var(--color-primary); }
  .plans2__badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--color-primary); color: #fff;
    font-size: .75rem; font-weight: 600;
    padding: .25rem 1rem; border-radius: var(--radius-full); white-space: nowrap;
  }
  .plans2__name { font-size: 1.25rem; font-weight: 600; text-align: center; margin-bottom: .5rem; }
  .plans2__catch {
    font-size: .875rem; color: var(--color-primary-dark);
    text-align: center; margin-bottom: 1.5rem; min-height: 3em;
    display: flex; align-items: center; justify-content: center;
  }
  .plans2__price {
    text-align: center; margin-bottom: 1.5rem;
    padding-bottom: 1.5rem; border-bottom: 1px solid var(--color-border);
  }
  .plans2__price-val {
    font-size: 2.25rem; font-weight: 700; color: var(--color-primary-dark);
    font-family: var(--font-en), var(--font-ja); line-height: 1;
  }
  .plans2__price-unit { font-size: .875rem; font-weight: 600; margin-left: .25rem; }
  .plans2__list { list-style: none; margin-bottom: 1.75rem; }
  .plans2__list li {
    font-size: .875rem; line-height: 1.7; padding-left: 1.375rem;
    position: relative; margin-bottom: .625rem;
  }
  .plans2__list li::before {
    content: ""; position: absolute; left: 0; top: .5rem;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--color-primary);
  }
  .plans2__btn {
    display: block; margin-top: auto; text-align: center; text-decoration: none;
    font-size: .9375rem; font-weight: 600;
    padding: .875rem 1rem; border-radius: var(--radius-full);
    background: #fff; color: var(--color-primary-dark);
    border: 2px solid var(--color-primary);
    transition: transform .2s, box-shadow .2s;
  }
  .plans2__btn--primary {
    background: var(--color-primary); color: #fff; border-color: var(--color-primary);
  }
  .plans2__btn:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(131,184,221,.35); }
  .plans2__note {
    max-width: 820px; margin: 1.75rem auto 0;
    text-align: center; font-size: .8125rem; color: #8FA0B3;
  }
  @media screen and (max-width: 768px) {
    .plans2 { padding: 3.5rem 0; }
    .plans2__lead { margin-top: 1rem; font-size: .9375rem; line-height: 1.9; }
  .plans2__cards { grid-template-columns: 1fr; gap: 1.75rem; }
    .plans2__card { padding: 2rem 1.5rem; }
    .plans2__catch { min-height: 0; }
    .plans2__lead { font-size: .875rem; }
    .plans2__price-val { font-size: 1.875rem; }
  }

  /* =========================================================
     trial｜体験コース
     ========================================================= */
  .trial { background: var(--color-bg); padding: 5rem 0; }
  .trial__lead { max-width: 620px; margin: 1.25rem auto 0; font-size: .9375rem; line-height: 1.9; }
  .trial__cards { max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
  .trial__card { background: #fff; border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 4px 20px rgba(58,124,165,.08); }
  .trial__photo { aspect-ratio: 16/9; background: var(--color-primary-pale); display: flex; align-items: center; justify-content: center; position: relative; }
  .trial__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .trial__photo-ph { font-size: .75rem; color: #A8C6DE; text-align: center; line-height: 1.8; }
  .trial__body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
  .trial__label { display: block; text-align: center; font-size: .75rem; font-weight: 600; color: var(--color-primary-dark); background: var(--color-primary-pale); padding: .3125rem .875rem; border-radius: var(--radius-full); margin: 0 auto .875rem; width: fit-content; }
  .trial__name { font-size: 1.25rem; font-weight: 600; line-height: 1.5; margin-bottom: .875rem; text-align: center; min-height: 3em; display: flex; align-items: center; justify-content: center; }
  .trial__desc { font-size: .875rem; line-height: 1.85; margin-bottom: 1rem; text-align: center; }
  .trial__meta { font-size: .8125rem; color: var(--color-primary-dark); font-weight: 600; margin-bottom: 1.25rem; text-align: center; }
  .trial__price { margin-top: auto; margin-bottom: 1rem; display: flex; align-items: baseline; gap: .625rem; flex-wrap: wrap; justify-content: center; }
  .trial__price-was { font-size: .8125rem; color: #8FA0B3; text-decoration: line-through; }
  .trial__price-now { font-size: 1.75rem; font-weight: 700; color: var(--color-primary-dark); font-family: var(--font-en), var(--font-ja); line-height: 1; }
  .trial__price-now small { font-size: .8125rem; font-weight: 600; margin-left: .125rem; }
  .trial__btn { display: block; width: 100%; text-align: center; text-decoration: none; background: #F2795C; color: #fff; font-size: .9375rem; font-weight: 600; padding: .9375rem 1rem; border-radius: var(--radius-full); box-shadow: 0 4px 14px rgba(242,121,92,.28); transition: transform .2s, box-shadow .2s; }
  .trial__btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(242,121,92,.36); }
  .trial__btn--sub {
    background: #fff; color: #E06642;
    border: 2px solid #F2795C; box-shadow: none;
    padding: .8125rem 1rem;
  }
  .trial__btn--sub:hover { box-shadow: 0 4px 12px rgba(242,121,92,.22); }

  /* --- リカバリーサポート（水素吸入）：白背景＋フチ＋右に写真 --- */
  .svc__recovery {
    max-width: 900px; margin: 2.5rem auto 0;
    background: #fff;
    border: 2px solid var(--color-primary-pale);
    border-radius: var(--radius);
    padding: 2rem 2.25rem;
    display: grid; grid-template-columns: 1fr 260px;
    gap: 2.25rem; align-items: center;
    text-decoration: none; color: inherit;
    transition: transform .2s, box-shadow .2s, border-color .2s;
  }
  a.svc__recovery:hover {
    transform: translateY(-2px);
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(58,124,165,.10);
  }
  .svc__recovery-label {
    display: inline-block;
    font-size: .75rem; font-weight: 600; color: #fff;
    background: var(--color-primary);
    padding: .25rem .875rem; border-radius: var(--radius-full);
    margin-bottom: .75rem;
  }
  .svc__recovery-name {
    font-size: 1.25rem; font-weight: 600;
    color: var(--color-text); margin-bottom: .5rem;
  }
  .svc__recovery-catch {
    font-size: 1rem; font-weight: 600;
    color: var(--color-primary-dark); margin-bottom: .625rem;
  }
  .svc__recovery-txt { font-size: .875rem; line-height: 1.9; margin-bottom: 1.25rem; }
  .svc__recovery-photo {
    aspect-ratio: 4/3; border-radius: var(--radius);
    background: var(--color-primary-pale);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .svc__recovery-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .svc__recovery-photo-ph { font-size: .6875rem; color: #A8C6DE; text-align: center; line-height: 1.8; }
  @media screen and (max-width: 768px) {
    .svc__recovery { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.5rem 1.25rem; }
    .svc__recovery-photo { order: -1; }
    .svc__recovery-name { font-size: 1.125rem; }
    .svc__recovery-catch { font-size: .9375rem; }
    .svc__recovery-txt { font-size: .8125rem; }
  }

  /* =========================================================
     concerns｜お悩み別に探す
     ========================================================= */
  .cnc { background: var(--color-bg); padding: 5rem 0; }
  .cnc__tabs { max-width: 900px; margin: 0 auto 2rem; display: flex; flex-wrap: wrap; gap: .625rem; justify-content: center; }
  .cnc__tab { background: var(--color-primary-pale); color: var(--color-text); border: 1px solid transparent; font-size: .875rem; font-weight: 600; padding: .625rem 1.5rem; border-radius: var(--radius-full); cursor: pointer; transition: all .2s; }
  .cnc__tab.is-active { background: #fff; color: var(--color-primary-dark); border-color: var(--color-primary); }
  .cnc__panel { max-width: 900px; margin: 0 auto; background: #fff; border-radius: var(--radius); padding: 2.5rem; }
  .cnc__item { display: grid; grid-template-columns: 42% 1fr; gap: 2.5rem; align-items: center; }
  .cnc__image { aspect-ratio: 4/3; border-radius: var(--radius); background: var(--color-primary-pale); display: flex; align-items: center; justify-content: center; overflow: hidden; }
  .cnc__image-ph { font-size: .6875rem; color: #A8C6DE; text-align: center; line-height: 1.8; }
  .cnc__title { font-size: 1.375rem; font-weight: 600; margin-bottom: .875rem; }
  .cnc__desc { font-size: .9375rem; line-height: 1.95; margin-bottom: 1.5rem; }
  .cnc__list { list-style: none; }
  .cnc__list li { display: flex; align-items: center; gap: .75rem; font-size: .9375rem; padding: .75rem 0; border-bottom: 1px solid var(--color-border); }
  .cnc__list li:first-child { border-top: 1px solid var(--color-border); }
  .cnc__check { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--color-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .6875rem; }
  .cnc__all { display: block; width: fit-content; margin: 2rem auto 0; text-decoration: none; text-align: center; font-size: .9375rem; font-weight: 600; color: var(--color-primary-dark); background: #fff; border: 2px solid var(--color-primary); padding: .875rem 2.5rem; border-radius: var(--radius-full); }

  /* =========================================================
     counselor｜カウンセラー紹介
     ========================================================= */
  .cnsl { background: var(--color-bg); padding: 5rem 0; }
  .cnsl__main { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 340px 1fr; gap: 2.75rem; align-items: start; background: #fff; border-radius: var(--radius); padding: 2.5rem; }
  .cnsl__photo { aspect-ratio: 3/4; border-radius: var(--radius); background: var(--color-primary-pale); display: flex; align-items: center; justify-content: center; overflow: hidden; }
  .cnsl__photo-ph { font-size: .6875rem; color: #A8C6DE; text-align: center; line-height: 1.8; }
  .cnsl__role { display: inline-block; font-size: .75rem; font-weight: 600; color: var(--color-primary-dark); background: var(--color-primary-pale); padding: .25rem .875rem; border-radius: var(--radius-full); margin-bottom: .875rem; }
  .cnsl__name { font-size: 1.5rem; font-weight: 600; margin-bottom: 1.25rem; }
  .cnsl__name small { font-size: .8125rem; font-weight: 400; color: #8FA0B3; margin-left: .625rem; }
  .cnsl__txt { font-size: .9375rem; line-height: 1.95; }
  .cnsl__txt + .cnsl__txt { margin-top: 1rem; }
  .cnsl__team { max-width: 800px; margin: 3rem auto 0; text-align: center; }
  .cnsl__team-ttl { font-size: 1.0625rem; font-weight: 600; margin-bottom: 1.75rem; }
  .cnsl__team-list { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
  .cnsl__member-photo { width: 96px; height: 96px; border-radius: 50%; background: var(--color-primary-pale); margin: 0 auto .75rem; }
  .cnsl__member-role { font-size: .75rem; color: #8FA0B3; margin-bottom: .25rem; }
  .cnsl__member-name { font-size: .875rem; font-weight: 600; }
  .cnsl__note { margin-top: 2.5rem; padding: 1.75rem; background: var(--color-primary-pale); border-radius: var(--radius); }
  .cnsl__note-ttl { font-size: 1.0625rem; font-weight: 600; margin-bottom: .625rem; }
  .cnsl__note-txt { font-size: .875rem; line-height: 1.9; }

  @media screen and (max-width: 768px) {
    .trial { padding: 3.5rem 0; }
    .trial__cards { grid-template-columns: 1fr; gap: 1.5rem; }
    .trial__body { padding: 1.5rem 1.25rem; }
    .trial__name { font-size: 1.125rem; min-height: 0; display: block; }
    .trial__lead { font-size: .875rem; }
    .trial__btn { font-size: .9375rem; padding: .9375rem 1rem; }
  }

  /* =========================================================
     faq｜よくある質問（既存 section-faq.php 準拠）
     ========================================================= */
  .faq2 { background: var(--color-bg-blue, #EDF6FC); padding: 5rem 0; }
  .faq2__tabs {
    max-width: 1000px; margin: 0 auto 1.75rem;
    display: flex; flex-wrap: wrap; gap: .625rem; justify-content: center;
  }
  .faq2__tab {
    background: #fff; color: var(--color-text);
    border: 1px solid transparent;
    font-size: .875rem; font-weight: 600;
    padding: .625rem 1.5rem; border-radius: var(--radius-full);
    cursor: pointer; transition: all .2s;
  }
  .faq2__tab.is-active { color: var(--color-primary-dark); border-color: var(--color-primary); }
  .faq2__list {
    max-width: 760px; margin: 0 auto;
    display: flex; flex-direction: column; gap: .875rem;
  }
  .faq2__item { background: #fff; border-radius: var(--radius); overflow: hidden; }
  .faq2__item summary {
    display: flex; align-items: center; gap: .875rem;
    padding: 1.25rem 1.5rem; cursor: pointer;
    font-size: .9375rem; font-weight: 600; line-height: 1.7; list-style: none;
  }
  .faq2__item summary::-webkit-details-marker { display: none; }
  .faq2__q { flex: 1; }
  .faq2__arrow { width: 16px; height: 16px; flex-shrink: 0; color: var(--color-primary); transition: transform .25s; }
  .faq2__item[open] .faq2__arrow { transform: rotate(180deg); }
  .faq2__a {
    padding: 0 1.5rem 1.375rem;
    font-size: .875rem; line-height: 1.95;
  }
  .faq2__all {
    display: block; width: fit-content; margin: 2rem auto 0;
    text-decoration: none; text-align: center;
    font-size: .9375rem; font-weight: 600; color: var(--color-primary-dark);
    background: #fff; border: 2px solid var(--color-primary);
    padding: .875rem 2.5rem; border-radius: var(--radius-full);
  }

  /* =========================================================
     news｜お知らせ ／ column｜コラム
     ========================================================= */
  .nws { background: #fff; padding: 4rem 0; }
  .nws__list { max-width: 760px; margin: 0 auto; }
  .nws__item {
    display: flex; gap: 1.25rem; align-items: baseline;
    padding: 1rem .5rem; border-bottom: 1px solid var(--color-border);
    text-decoration: none; color: var(--color-text);
    transition: background .2s;
  }
  .nws__item:hover { background: var(--color-bg); }
  .nws__date { font-size: .8125rem; color: #8FA0B3; white-space: nowrap; font-family: var(--font-en), var(--font-ja); }
  .nws__ttl { font-size: .9375rem; line-height: 1.6; }

  .col { background: var(--color-bg); padding: 5rem 0; }
  .col__lead { margin-top: 1rem; font-size: .9375rem; line-height: 1.9; }
  .col__grid {
    max-width: 940px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  }
  .col__card {
    background: #fff; border-radius: var(--radius); overflow: hidden;
    text-decoration: none; color: inherit;
    transition: transform .2s, box-shadow .2s;
  }
  .col__card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(58,124,165,.12); }
  .col__thumb {
    aspect-ratio: 16/9; background: var(--color-primary-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: .6875rem; color: #A8C6DE;
  }
  .col__body { padding: 1.25rem; }
  .col__date { font-size: .75rem; color: #8FA0B3; margin-bottom: .5rem; font-family: var(--font-en), var(--font-ja); }
  .col__ttl { font-size: .9375rem; font-weight: 600; line-height: 1.65; }
  .col__all {
    display: block; width: fit-content; margin: 2rem auto 0;
    text-decoration: none; text-align: center;
    font-size: .9375rem; font-weight: 600; color: var(--color-primary-dark);
    background: #fff; border: 2px solid var(--color-primary);
    padding: .875rem 2.5rem; border-radius: var(--radius-full);
  }

  /* =========================================================
     access｜店舗情報（★隔離ブロック：FC展開時はここだけ差し替え）
     ========================================================= */
  .acs { background: #fff; padding: 5rem 0; }
  .acs__inner {
    max-width: 900px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
  }
  .acs__map {
    aspect-ratio: 4/3; border-radius: var(--radius);
    background: var(--color-primary-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; color: #A8C6DE;
  }
  .acs__name { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; }
  .acs__row { display: flex; gap: .875rem; padding: .75rem 0; border-bottom: 1px solid var(--color-border); font-size: .9375rem; }
  .acs__row:first-of-type { border-top: 1px solid var(--color-border); }
  .acs__label { flex-shrink: 0; width: 5em; font-weight: 600; color: var(--color-primary-dark); font-size: .875rem; }
  .acs__online { margin-top: 1.5rem; font-size: .875rem; color: var(--color-primary-dark); font-weight: 600; }

  /* =========================================================
     footer
     ========================================================= */
  .ftr {
    position: relative;
    background: linear-gradient(180deg, #EDF6FC 0%, #DCEBF7 100%);
    padding: 0 0 2rem;
    overflow: hidden;
  }
  /* 上端の波形 */
  .ftr__wave { display: block; width: 100%; height: 70px; }
  .ftr__wave path { fill: #fff; }

  .ftr__top {
    max-width: 1000px; margin: 2.5rem auto 3.5rem;
    display: grid; grid-template-columns: 300px 1fr;
    gap: 3rem; align-items: start;
  }
  .ftr__brand img { height: 58px; width: auto; display: block; margin-bottom: 1.25rem; }
  .ftr__addr { font-size: .8125rem; line-height: 1.9; color: var(--color-text); }
  .ftr__addr span { display: block; color: #7C93A8; font-size: .75rem; margin-top: .375rem; }

  .ftr__cols {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  }
  .ftr__col-ttl {
    font-size: .75rem; font-weight: 600; letter-spacing: .1em;
    color: var(--color-primary); margin-bottom: .875rem;
    padding-bottom: .5rem; border-bottom: 1px solid rgba(131,184,221,.35);
  }
  .ftr__col a {
    display: block; font-size: .8125rem; color: var(--color-text);
    text-decoration: none; padding: .3125rem 0;
    transition: color .2s, padding-left .2s;
  }
  .ftr__col a:hover { color: var(--color-primary-dark); padding-left: .25rem; }


  .ftr__bottom {
    max-width: 1000px; margin: 0 auto; padding-top: 1.5rem;
    border-top: 1px solid rgba(131,184,221,.3);
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    font-size: .75rem; color: #7C93A8;
  }
  .ftr__bottom a { color: #7C93A8; text-decoration: none; }
  .ftr__bottom a:hover { color: var(--color-primary-dark); }

  @media screen and (max-width: 768px) {
    .faq2 { padding: 3.5rem 0; }
    .faq2__tab { font-size: .8125rem; padding: .5rem 1rem; }
    .faq2__list { gap: .75rem; }
    .faq2__item summary { padding: 1rem 1.125rem; font-size: .875rem; gap: .625rem; }
    .faq2__a { padding: 0 1.125rem 1.125rem; }
    .col { padding: 3.5rem 0; }
    .col__lead { font-size: .875rem; }
    .col__grid { grid-template-columns: 1fr; gap: 1rem; }
    .acs { padding: 3.5rem 0; }
    .acs__inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .ftr__wave { height: 40px; }
    .ftr__top { grid-template-columns: 1fr; gap: 2rem; margin: 1.5rem auto 2rem; }
    .ftr__brand img { height: 48px; margin: 0 auto 1rem; }
    .ftr__brand { text-align: center; }
    .ftr__cols { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .ftr__bottom { flex-direction: column; text-align: center; }
  }


/* =========================================================
   既存ナビ（wp_nav_menu）との整合
   ※ Walker が出力する要素を、新ヘッダー/フッターに適合させる
========================================================= */

/* --- ヘッダーナビ（親子・ドロップダウン対応） --- */
.hd__nav { gap: .375rem; }
.hd__nav .header-nav__item {
  position: relative; height: auto;
  display: flex; align-items: center;
}
.hd__nav .header-nav__label {
  height: auto;
  padding: .625rem .875rem;
  font-size: .9375rem; font-weight: 600;
  color: #2D3748; white-space: nowrap;
  display: block;
}
.hd__nav .header-nav__label:hover { color: #83B8DD; }
.hd__nav .header-nav__item:hover .header-nav__label::before { width: calc(100% - 1.75rem); }

/* ドロップダウン：新ヘッダーの下に出す */
.hd__nav .header-dropdown {
  top: 100%; margin-top: .375rem;
  padding: .5rem;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(58,124,165,.14);
}
.hd__nav .header-dropdown__link {
  display: block;
  padding: .625rem .875rem;
  font-size: .875rem; font-weight: 500;
  border-radius: 8px;
}

.ftr__cols a {
  display: block; font-size: .8125rem; color: #2D3748;
  text-decoration: none; padding: .3125rem 0;
  transition: color .2s, padding-left .2s;
}
.ftr__cols a:hover { color: #5A9AC9; padding-left: .25rem; }
.ftr__cols ul { list-style: none; }

/* SP：ハンバーガーの位置調整（フローティングヘッダー内） */
@media screen and (max-width: 900px) {
  .hd__panel { justify-content: space-between; }
  .pc-only { display: none !important; }
}
@media screen and (min-width: 901px) {
  .sp-only { display: none !important; }
}


/* =========================================================
   固定ヘッダー分の余白
========================================================= */
body { padding-top: 0; }
.fv2 { padding-top: 0; }          /* FVは自前でpadding済み */
@media screen and (max-width: 900px) {
  .hd { padding: 0; }
  .hd__panel { border-radius: 0; padding: .75rem 1rem; }
  .hd.is-scrolled .hd__panel { padding: .625rem 1rem; }
}


/* =========================================================
   WebP 対応：既存 style.css の hero 参照を上書き
   ※ style.css は 393行 / 6655行 で .jpg を参照しています
========================================================= */
.hero__bg { background-image: url('../img/hero-pc.webp'); }
@media screen and (max-width: 768px) {
  .hero__bg { background-image: url('../img/hero-sp.webp'); }
}


/* --- カウンセラー：写真の表示 --- */
.cnsl__photo img { width:100%; height:100%; object-fit:cover; display:block; }
.cnsl__member-photo { overflow:hidden; }
.cnsl__member-photo img { width:100%; height:100%; object-fit:cover; display:block; border-radius:50%; }
.cnsl__msg p { font-size:.9375rem; line-height:1.95; }
.cnsl__msg p + p { margin-top:1rem; }


/* --- 悩み別：画像とパネル切替 --- */
.cnc__image img { width:100%; height:100%; object-fit:cover; display:block; }
.cnc__panel[hidden] { display:none !important; }
.cnc__tab { border:1px solid transparent; }


/* =========================================================
   SP対応｜悩み別・カウンセラー・お知らせ
========================================================= */
@media screen and (max-width: 768px) {

  /* 悩み別 */
  .cnc { padding: 3.25rem 0; }
  .cnc__tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 var(--container-padding-sp);
    margin: 0 calc(var(--container-padding-sp) * -1) 1.5rem;
  }
  .cnc__tabs::-webkit-scrollbar { display: none; }
  .cnc__tab { flex-shrink: 0; font-size: .8125rem; padding: .5rem 1rem; }
  .cnc__panel { padding: 1.5rem 1.25rem; }
  .cnc__item { grid-template-columns: 1fr; gap: 1.25rem; }
  .cnc__title { font-size: 1.1875rem; }
  .cnc__desc { font-size: .875rem; margin-bottom: 1.25rem; }
  .cnc__list li { font-size: .875rem; padding: .625rem 0; gap: .625rem; }
  .cnc__check { width: 20px; height: 20px; }

  /* カウンセラー */
  .cnsl { padding: 3.25rem 0; }
  .cnsl__main { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.75rem 1.25rem; }
  .cnsl__photo { max-width: 240px; margin: 0 auto; width: 100%; }
  .cnsl__name { font-size: 1.25rem; margin-bottom: 1rem; }
  .cnsl__name small { display: block; margin-left: 0; margin-top: .25rem; }
  .cnsl__msg p { font-size: .875rem; line-height: 1.9; }
  .cnsl__team { margin-top: 2rem; }
  .cnsl__team-ttl { font-size: 1rem; margin-bottom: 1.25rem; }
  .cnsl__team-list { gap: 1.25rem; }
  .cnsl__member-photo { width: 72px; height: 72px; }
  .cnsl__member-role { font-size: .6875rem; }
  .cnsl__member-name { font-size: .8125rem; }
  .cnsl__note { margin-top: 2rem; padding: 1.25rem; }
  .cnsl__note-ttl { font-size: .9375rem; }
  .cnsl__note-txt { font-size: .8125rem; }

  /* お知らせ */
  .nws { padding: 3rem 0; }
  .nws__item { flex-direction: column; gap: .25rem; padding: .875rem .25rem; }
  .nws__date { font-size: .75rem; }
  .nws__ttl { font-size: .875rem; }

}


/* =========================================================
   SP：コンテナ左右の余白を広げる
   ※ common.css の --container-padding-sp を上書き
========================================================= */
:root {
  --container-padding-sp: 1.25rem;
}
@media screen and (max-width: 768px) {
  :root { --container-padding: 1.25rem; }
}

/* =========================================================
   下層ページ｜COCOTOREとは
========================================================= */
/* 下層ページ共通 */
  .crumb { background:#fff; padding: 7rem 0 0; }
  .crumb .container { font-size:.75rem; color:#8FA0B3; }
  .crumb a { color:#8FA0B3; text-decoration:none; }
  .crumb__sep { margin:0 .5rem; color:#C9D6E0; }

  /* ページヘッダー：写真を敷く */
  .pghd { position:relative; background:#fff; padding: 2.25rem 0 0; text-align:center; }
  .pghd__en { font-size:.75rem; font-weight:600; letter-spacing:.14em; color:var(--color-primary); margin-bottom:.75rem; }
  .pghd__ttl { font-size:2.375rem; font-weight:600; line-height:1.5; margin-bottom:2.5rem; }
  .pghd__ttl em { font-style:normal; color:var(--color-primary-dark); }
  .pghd__photo {
    max-width:820px; margin:0 auto; aspect-ratio:9/4; border-radius:var(--radius);
    background:var(--color-primary-pale); display:flex; align-items:center; justify-content:center;
    font-size:.75rem; color:#A8C6DE; overflow:hidden;
  }
  .pghd__lead { max-width:680px; margin:3rem auto 0; font-size:.9375rem; line-height:2.1; text-align:left; padding-bottom:4rem; }
  .pghd__lead p + p { margin-top:1.375rem; }
  .pghd__lead strong { font-weight:600; color:var(--color-primary-dark); }

  .sec { background:#fff; padding: 5rem 0; }
  .sec--tint { background:var(--color-bg); }
  .sec__tag {
    display:block; width:fit-content; margin:0 auto .875rem;
    font-size:.6875rem; font-weight:600; letter-spacing:.1em; color:var(--color-primary-dark);
    background:var(--color-primary-pale); padding:.3125rem 1rem; border-radius:100px;
  }
  .sec--tint .sec__tag { background:#fff; }
  .sec__ttl { font-size:1.875rem; font-weight:600; text-align:center; line-height:1.55; margin-bottom:2.25rem; }
  .sec__body { max-width:680px; margin:0 auto; font-size:.9375rem; line-height:2.1; }
  .sec__body p + p { margin-top:1.375rem; }
  .sec__body--center { text-align:center; }

  /* 3項目：番号つきカード */
  .three { max-width:680px; margin:2.75rem auto 0; display:flex; flex-direction:column; gap:1.25rem; }
  .three__item {
    background:#fff; border-radius:var(--radius); padding:2rem;
    position:relative; box-shadow:0 4px 20px rgba(58,124,165,.07);
  }
  .sec--tint .three__item { box-shadow:0 4px 20px rgba(58,124,165,.09); }
  .three__label {
    display:inline-block; width:fit-content; align-self:flex-start;
    font-size:.6875rem; font-weight:600; color:#fff;
    background:var(--color-primary); padding:.25rem .875rem; border-radius:100px; margin-bottom:.875rem;
  }

  /* 写真つきカード（アプローチ用） */
  .three--photo .three__item {
    padding:0; overflow:hidden;
    display:grid; grid-template-columns:232px 1fr; align-items:stretch;
    min-height:174px;
  }
  .three--photo .three__photo {
    background:var(--color-primary-pale);
    display:flex; align-items:center; justify-content:center;
    font-size:.625rem; color:#A8C6DE; text-align:center; line-height:1.7;
    overflow:hidden;
  }
  .three--photo .three__photo img { width:100%; height:100%; object-fit:cover; display:block; }
  .three--photo .three__body { padding:1.5rem 1.75rem; display:flex; flex-direction:column; justify-content:center; }
  .three__ttl { font-size:1.25rem; font-weight:600; line-height:1.5; margin-bottom:.75rem; color:var(--color-primary-dark); }
  .three__txt { font-size:.9375rem; line-height:2; }

  /* 名前の由来 */
  .origin { max-width:680px; margin:0 auto; text-align:center; font-size:.9375rem; line-height:2.1; }
  .origin__words { display:flex; justify-content:center; gap:.75rem; flex-wrap:wrap; margin:1.25rem 0; }
  .origin__word {
    font-size:1rem; font-weight:600; color:var(--color-primary-dark);
    background:var(--color-primary-pale); padding:.5rem 1.5rem; border-radius:100px;
  }
  .sec--tint .origin__word { background:#fff; }

  /* 引用型ブロック */
  .quote { max-width:680px; margin:0 auto; text-align:center; }
  .quote__big { font-size:1.375rem; font-weight:600; line-height:1.9; color:var(--color-primary-dark); }

  /* 医療との対比 */
  .role { max-width:680px; margin:2.5rem auto 0; display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; }
  .role__col { background:#fff; border:1px solid var(--color-border); border-radius:var(--radius); padding:2rem 1.5rem; text-align:center; }
  .role__icon { width:44px; height:44px; display:block; margin:0 auto 1rem; }
  .role__name { font-size:1.0625rem; font-weight:600; margin-bottom:.75rem; }
  .role__desc { font-size:.875rem; line-height:1.9; }

  /* CTA */
  .cta { background:#fff; padding:4.5rem 0; text-align:center; }
  .cta__tag { display:inline-block; font-size:.6875rem; font-weight:600; letter-spacing:.1em; color:var(--color-primary-dark);
    background:var(--color-primary-pale); padding:.3125rem 1rem; border-radius:100px; margin-bottom:1.25rem; }
  .cta__ttl { font-size:1.75rem; font-weight:600; line-height:1.5; margin-bottom:1.25rem; }
  .cta__txt { max-width:680px; margin:0 auto 2rem; font-size:.9375rem; line-height:2.05; }
  .cta__price {
    display:inline-block; font-size:.9375rem; font-weight:600; color:var(--color-primary-dark);
    background:var(--color-primary-pale); padding:.75rem 1.75rem; border-radius:100px; margin-bottom:1.75rem;
  }
  .cta__btn { display:block; width:fit-content; margin:0 auto; text-decoration:none; background:#F2795C; color:#fff;
    font-size:1rem; font-weight:600; padding:1.0625rem 3rem; border-radius:100px; box-shadow:0 6px 18px rgba(242,121,92,.3); }

  @media screen and (max-width:768px){
    .crumb { padding:5.5rem 0 0; }
    .crumb .container { font-size:.6875rem; }
    .pghd { padding:1.5rem 0 0; }
    .pghd__ttl { font-size:1.5rem; margin-bottom:1.75rem; }
    .pghd__photo { aspect-ratio:16/9; }
    .pghd__lead { margin-top:2rem; padding-bottom:3rem; font-size:.875rem; }
    .sec { padding:3.25rem 0; }
    .sec__ttl { font-size:1.3125rem; }
    .sec__body, .three__txt, .origin { font-size:.875rem; }
    .three__item { padding:1.5rem 1.25rem; }
    .three--photo .three__item { grid-template-columns:1fr; padding:0; }
    .three--photo .three__item { min-height:0; }
    .three--photo .three__photo { aspect-ratio:16/9; }
    .three--photo .three__body { padding:1.5rem 1.25rem; }
    .three__ttl { font-size:1.0625rem; }
    .quote { padding:1.75rem 1.25rem; }
    .quote__big { font-size:1.125rem; }
    .role { grid-template-columns:1fr; gap:.875rem; }
    .cta__ttl { font-size:1.25rem; }
    .cta__btn { width:100%; padding:1rem; }
  }

/* =========================================================
   下層ページ｜脳波測定・トレーニング
========================================================= */
/* 下層ページ共通 */
  .crumb { background:#fff; padding: 7rem 0 0; }
  .crumb .container { font-size:.75rem; color:#8FA0B3; }
  .crumb a { color:#8FA0B3; text-decoration:none; }
  .crumb__sep { margin:0 .5rem; color:#C9D6E0; }

  .pghd { background:#fff; padding: 2.25rem 0 0; text-align:center; }
  .pghd__en { font-size:.75rem; font-weight:600; letter-spacing:.14em; color:var(--color-primary); margin-bottom:.75rem; }
  .pghd__ttl { font-size:2.375rem; font-weight:600; line-height:1.5; margin-bottom:2rem; }
  .pghd__ttl em { font-style:normal; color:var(--color-primary-dark); }
  .pghd__photo {
    max-width:820px; margin:0 auto; aspect-ratio:9/4; border-radius:var(--radius);
    background:var(--color-primary-pale); display:flex; align-items:center; justify-content:center;
    font-size:.75rem; color:#A8C6DE; overflow:hidden;
  }
  .pghd__lead { max-width:680px; margin:2.75rem auto 0; font-size:.9375rem; line-height:2.1; text-align:left; padding-bottom:4rem; }
  .pghd__lead p + p { margin-top:1.25rem; }

  .sec { background:#fff; padding: 5rem 0; }
  .sec--tint { background:var(--color-bg); }
  .sec__tag {
    display:block; width:fit-content; margin:0 auto .875rem;
    font-size:.6875rem; font-weight:600; letter-spacing:.1em; color:var(--color-primary-dark);
    background:var(--color-primary-pale); padding:.3125rem 1rem; border-radius:100px;
  }
  .sec--tint .sec__tag { background:#fff; }
  .sec__ttl { font-size:1.875rem; font-weight:600; text-align:center; line-height:1.55; margin-bottom:2.25rem; }
  .sec__body { max-width:680px; margin:0 auto; font-size:.9375rem; line-height:2.1; }
  .sec__body p + p { margin-top:1.25rem; }

  /* 測定 */
  .meas { max-width:680px; margin:2.5rem auto 0; }
  .meas__photo {
    aspect-ratio:16/9; border-radius:var(--radius); background:var(--color-primary-pale);
    display:flex; align-items:center; justify-content:center; font-size:.6875rem; color:#A8C6DE;
    margin-bottom:2rem; overflow:hidden;
  }
  .meas__list { list-style:none; }
  .meas__list li {
    display:flex; gap:1rem; align-items:flex-start;
    padding:1rem 0; border-bottom:1px solid var(--color-border);
    font-size:.9375rem; line-height:1.85;
  }
  .meas__list li:first-child { border-top:1px solid var(--color-border); }
  .meas__dot { flex-shrink:0; width:8px; height:8px; border-radius:50%; background:var(--color-primary); margin-top:.6875rem; }

  /* レポート */
  .rep {
    max-width:680px; margin:2.5rem auto 0;
    background:#fff; border-radius:var(--radius); overflow:hidden;
    display:grid; grid-template-columns:260px 1fr; align-items:stretch;
    min-height:200px;
    box-shadow:0 4px 20px rgba(58,124,165,.10);
  }
  .rep__photo {
    background:var(--color-primary-pale);
    display:flex; align-items:center; justify-content:center;
    font-size:.6875rem; color:#A8C6DE; text-align:center; line-height:1.7;
    overflow:hidden;
  }
  .rep__photo img { width:100%; height:100%; object-fit:cover; display:block; }
  .rep__body { padding:1.75rem; display:flex; flex-direction:column; justify-content:center; }
  .rep__ttl { font-size:1.125rem; font-weight:600; color:var(--color-primary-dark); margin-bottom:.875rem; }
  .rep__txt { font-size:.875rem; line-height:2; }

  /* トレーニング：NFブロック */
  .nf {
    max-width:680px; margin:2.5rem auto 0;
    background:#fff; border-radius:var(--radius); padding:2.25rem 2rem;
    box-shadow:0 4px 20px rgba(58,124,165,.08);
  }
  .sec--tint .nf { box-shadow:0 4px 20px rgba(58,124,165,.10); }
  .nf__ttl { font-size:1.25rem; font-weight:600; color:var(--color-primary-dark); margin-bottom:.75rem; }
  .nf__lead { font-size:.9375rem; line-height:2; margin-bottom:1.75rem; }
  .nf__steps { list-style:none; }
  .nf__step {
    display:grid; grid-template-columns:auto 1fr; gap:1.125rem;
    padding:1.25rem 0; border-top:1px solid var(--color-border);
  }
  .nf__num {
    font-size:.875rem; font-weight:700; color:#fff; background:var(--color-primary);
    width:32px; height:32px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-family:var(--font-en), var(--font-ja);
  }
  .nf__step-ttl { font-size:1rem; font-weight:600; margin-bottom:.375rem; }
  .nf__step-txt { font-size:.875rem; line-height:1.9; }

  /* その他トレーニング */
  .tr { max-width:680px; margin:1.75rem auto 0; display:flex; flex-direction:column; gap:1.25rem; }
  .tr__item { background:#fff; border-radius:var(--radius); padding:1.75rem 2rem; box-shadow:0 4px 20px rgba(58,124,165,.08); }
  .sec--tint .tr__item { box-shadow:0 4px 20px rgba(58,124,165,.10); }
  .tr__ttl { font-size:1.125rem; font-weight:600; color:var(--color-primary-dark); margin-bottom:.75rem; }
  .tr__txt { font-size:.9375rem; line-height:2; }

  /* できること／できないこと */
  .know { max-width:680px; margin:2.5rem auto 0; display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; }
  .know__col { background:#fff; border:1px solid var(--color-border); border-radius:var(--radius); padding:1.75rem 1.5rem; }
  .know__ttl { font-size:1rem; font-weight:600; text-align:center; margin-bottom:1.125rem; padding-bottom:.75rem; border-bottom:1px solid var(--color-border); }
  .know__col--yes .know__ttl { color:var(--color-primary-dark); }
  .know__col--no .know__ttl { color:#8FA0B3; }
  .know__list { list-style:none; }
  .know__list li { font-size:.875rem; line-height:1.8; padding:.5rem 0 .5rem 1.375rem; position:relative; }
  .know__list li::before { content:""; position:absolute; left:0; top:.9375rem; width:7px; height:7px; border-radius:50%; }
  .know__col--yes li::before { background:var(--color-primary); }
  .know__col--no li::before { background:#C9D6E0; }

  /* CTA */
  .cta { background:#fff; padding:4.5rem 0; text-align:center; border-top:1px solid var(--color-border); }
  .cta__tag { display:inline-block; font-size:.6875rem; font-weight:600; letter-spacing:.1em; color:var(--color-primary-dark);
    background:var(--color-primary-pale); padding:.3125rem 1rem; border-radius:100px; margin-bottom:1.25rem; }
  .cta__ttl { font-size:1.75rem; font-weight:600; line-height:1.5; margin-bottom:1.25rem; }
  .cta__txt { max-width:680px; margin:0 auto 2rem; font-size:.9375rem; line-height:2.05; }
  .cta__price { display:inline-block; font-size:.9375rem; font-weight:600; color:var(--color-primary-dark);
    background:var(--color-primary-pale); padding:.75rem 1.75rem; border-radius:100px; margin-bottom:1.75rem; }
  .cta__btn { display:block; width:fit-content; margin:0 auto; text-decoration:none; background:#F2795C; color:#fff;
    font-size:1rem; font-weight:600; padding:1.0625rem 3rem; border-radius:100px; box-shadow:0 6px 18px rgba(242,121,92,.3); }

  @media screen and (max-width:768px){
    .crumb { padding:5.5rem 0 0; }
    .crumb .container { font-size:.6875rem; }
    .pghd { padding:1.5rem 0 0; }
    .pghd__ttl { font-size:1.5rem; margin-bottom:1.5rem; }
    .pghd__photo { aspect-ratio:16/9; }
    .pghd__lead { margin-top:2rem; padding-bottom:3rem; font-size:.875rem; }
    .sec { padding:3.25rem 0; }
    .sec__ttl { font-size:1.3125rem; }
    .sec__body, .meas__list li, .tr__txt, .nf__lead { font-size:.875rem; }
    .rep { grid-template-columns:1fr; }
    .rep { min-height:0; }
    .rep__photo { aspect-ratio:4/3; }
    .rep__body { padding:1.5rem 1.25rem; }
    .rep__txt { font-size:.8125rem; }
    .nf, .tr__item { padding:1.5rem 1.25rem; }
    .nf__ttl { font-size:1.125rem; }
    .nf__step { grid-template-columns:auto 1fr; gap:.875rem; }
    .nf__num { width:28px; height:28px; font-size:.8125rem; }
    .tr__ttl { font-size:1.0625rem; }
    .know { grid-template-columns:1fr; gap:.875rem; }
    .cta__ttl { font-size:1.25rem; }
    .cta__btn { width:100%; padding:1rem; }
  }


/* --- 下層ページ：画像の表示 --- */
.pghd__photo img,
.meas__photo img,
.rep__photo img,
.three__photo img { width:100%; height:100%; object-fit:cover; display:block; }


/* --- アンカーリンク：固定ヘッダー分を逃がす --- */
[id] { scroll-margin-top: 100px; }
@media screen and (max-width: 900px) {
  [id] { scroll-margin-top: 76px; }
}


/* =========================================================
   SP｜FV（縦長画像・上から下へのグラデーション）
========================================================= */
@media screen and (max-width: 768px) {
  .fv2 { min-height: 68vh; }
  .fv2__bg {
    background-image: url('../img/hero-sp.webp');
    background-position: center top;
  }
  .fv2__bg::after {
    background: linear-gradient(to bottom,
      rgba(255,255,255,.48) 0%,
      rgba(255,255,255,.24) 38%,
      rgba(255,255,255,.03) 70%,
      rgba(255,255,255,0) 100%);
  }
  .fv2__content { padding: 7.5rem var(--container-padding-sp) 1.75rem; }
}

/* =========================================================
   下層ページ｜体験コース
========================================================= */
/* 下層共通 */
  .crumb { background:#fff; padding: 7rem 0 0; }
  .crumb .container { font-size:.75rem; color:#8FA0B3; }
  .crumb a { color:#8FA0B3; text-decoration:none; }
  .crumb__sep { margin:0 .5rem; color:#C9D6E0; }

  .pghd { background:#fff; padding: 2.25rem 0 0; text-align:center; }
  .pghd__en { font-size:.75rem; font-weight:600; letter-spacing:.14em; color:var(--color-primary); margin-bottom:.75rem; }
  .pghd__ttl { font-size:2.375rem; font-weight:600; line-height:1.5; margin-bottom:2rem; }
  .pghd__ttl em { font-style:normal; color:var(--color-primary-dark); }
  .pghd__photo { max-width:820px; margin:0 auto; aspect-ratio:9/4; border-radius:var(--radius);
    background:var(--color-primary-pale); display:flex; align-items:center; justify-content:center;
    font-size:.75rem; color:#A8C6DE; overflow:hidden; }
  .pghd__lead { max-width:680px; margin:2.75rem auto 0; font-size:.9375rem; line-height:2.1; text-align:left; padding-bottom:4rem; }
  .pghd__lead p + p { margin-top:1.25rem; }

  .sec { background:#fff; padding: 5rem 0; }
  .sec--tint { background:var(--color-bg); }
  .sec__tag { display:block; width:fit-content; margin:0 auto .875rem;
    font-size:.6875rem; font-weight:600; letter-spacing:.1em; color:var(--color-primary-dark);
    background:var(--color-primary-pale); padding:.3125rem 1rem; border-radius:100px; }
  .sec--tint .sec__tag { background:#fff; }
  .sec__ttl { font-size:1.875rem; font-weight:600; text-align:center; line-height:1.55; margin-bottom:1rem; }
  .sec__note { text-align:center; font-size:.8125rem; color:#8FA0B3; margin-bottom:2rem; }
  .sec__body { max-width:680px; margin:0 auto 2.25rem; font-size:.9375rem; line-height:2.1; }

  /* コース2枚 */
  .cs { max-width:680px; margin:0 auto; display:flex; flex-direction:column; gap:1.75rem; }
  .cs__card { background:#fff; border-radius:var(--radius); overflow:hidden; box-shadow:0 4px 20px rgba(58,124,165,.09); }
  .cs__photo { aspect-ratio:16/9; background:var(--color-primary-pale);
    display:flex; align-items:center; justify-content:center; font-size:.6875rem; color:#A8C6DE; overflow:hidden; }
  .cs__body { padding:1.75rem; text-align:center; }
  .cs__label { display:inline-block; font-size:.75rem; font-weight:600; color:var(--color-primary-dark);
    background:var(--color-primary-pale); padding:.3125rem .875rem; border-radius:100px; margin-bottom:.875rem; }
  .cs__name { font-size:1.25rem; font-weight:600; line-height:1.5; margin-bottom:.875rem; }
  .cs__desc { font-size:.875rem; line-height:1.9; margin-bottom:1rem; }
  .cs__meta { font-size:.8125rem; font-weight:600; color:var(--color-primary-dark); margin-bottom:1.25rem; }
  .cs__price { display:flex; align-items:baseline; gap:.625rem; justify-content:center; margin-bottom:1.25rem; }
  .cs__was { font-size:.8125rem; color:#8FA0B3; text-decoration:line-through; }
  .cs__now { font-size:1.75rem; font-weight:700; color:var(--color-primary-dark); font-family:var(--font-en),var(--font-ja); line-height:1; }
  .cs__now small { font-size:.8125rem; font-weight:600; margin-left:.125rem; }
  .cs__btn { display:block; text-align:center; text-decoration:none; background:#F2795C; color:#fff;
    font-size:.9375rem; font-weight:600; padding:.9375rem 1rem; border-radius:100px; box-shadow:0 4px 14px rgba(242,121,92,.28); }
  .cs__btn--sub { background:#fff; color:#E06642; border:2px solid #F2795C; box-shadow:none; padding:.8125rem 1rem; }

  /* 流れ */
  .fl { max-width:680px; margin:0 auto; display:flex; flex-direction:column; gap:1.75rem; }
  .fl__step { display:grid; grid-template-columns:200px 1fr; gap:1.75rem; align-items:center; }
  .fl__photo { aspect-ratio:4/3; border-radius:var(--radius); background:var(--color-primary-pale);
    display:flex; align-items:center; justify-content:center; font-size:.625rem; color:#A8C6DE;
    position:relative; overflow:hidden; }
  .fl__num { position:absolute; top:.5rem; left:.5rem; width:30px; height:30px; border-radius:50%;
    background:var(--color-primary); color:#fff; display:flex; align-items:center; justify-content:center;
    font-size:.8125rem; font-weight:700; font-family:var(--font-en),var(--font-ja); }
  .fl__ttl { font-size:1.125rem; font-weight:600; margin-bottom:.5rem; }
  .fl__txt { font-size:.875rem; line-height:1.95; }

  /* レポート */
  .rep { max-width:680px; margin:0 auto; background:#fff; border-radius:var(--radius); overflow:hidden;
    display:grid; grid-template-columns:260px 1fr; align-items:stretch; min-height:220px;
    box-shadow:0 4px 20px rgba(58,124,165,.09); }
  .rep__photo { background:var(--color-primary-pale); display:flex; align-items:center; justify-content:center;
    font-size:.6875rem; color:#A8C6DE; text-align:center; line-height:1.7; overflow:hidden; }
  .rep__body { padding:1.75rem; display:flex; flex-direction:column; justify-content:center; }
  .rep__txt { font-size:.875rem; line-height:2; }
  .rep__txt + .rep__txt { margin-top:.875rem; }
  .rep__note { max-width:680px; margin:1.25rem auto 0; font-size:.75rem; color:#8FA0B3; line-height:1.9; }

  /* 予約の流れ */
  .rsv { max-width:680px; margin:0 auto; }
  .rsv__step { display:grid; grid-template-columns:auto 1fr; gap:1.25rem;
    padding:1.5rem 0; border-bottom:1px solid var(--color-border); }
  .rsv__step:first-child { border-top:1px solid var(--color-border); }
  .rsv__num { width:34px; height:34px; border-radius:50%; background:var(--color-primary); color:#fff;
    display:flex; align-items:center; justify-content:center; font-size:.875rem; font-weight:700;
    font-family:var(--font-en),var(--font-ja); }
  .rsv__ttl { font-size:1.0625rem; font-weight:600; margin-bottom:.375rem; }
  .rsv__txt { font-size:.875rem; line-height:1.95; }
  .rsv__after { max-width:680px; margin:2rem auto 0; padding:1.5rem; text-align:center;
    background:#fff; border-radius:var(--radius); font-size:.9375rem; line-height:1.95; font-weight:600; }

  /* FAQ */
  .fq { max-width:680px; margin:0 auto; display:flex; flex-direction:column; gap:.875rem; }
  .fq__item { background:#fff; border-radius:var(--radius); overflow:hidden; }
  .sec--tint .fq__item { background:#fff; }
  .fq__item summary { display:flex; align-items:center; gap:.875rem; padding:1.25rem 1.5rem;
    cursor:pointer; font-size:.9375rem; font-weight:600; line-height:1.7; list-style:none; }
  .fq__item summary::-webkit-details-marker { display:none; }
  .fq__q { flex:1; }
  .fq__arrow { width:16px; height:16px; flex-shrink:0; color:var(--color-primary); transition:transform .25s; }
  .fq__item[open] .fq__arrow { transform:rotate(180deg); }
  .fq__a { padding:0 1.5rem 1.375rem; font-size:.875rem; line-height:1.95; }

  /* ご利用にあたって */
  .nt { max-width:680px; margin:0 auto; background:var(--color-bg); border-radius:var(--radius); padding:2rem; }
  .nt__block + .nt__block { margin-top:1.5rem; padding-top:1.5rem; border-top:1px solid var(--color-border); }
  .nt__ttl { font-size:1rem; font-weight:600; color:var(--color-primary-dark); margin-bottom:.625rem; }
  .nt__txt { font-size:.875rem; line-height:2; }
  .nt__btn {
    display:inline-block; margin-top:1rem;
    text-decoration:none; text-align:center;
    font-size:.8125rem; font-weight:600; color:var(--color-primary-dark);
    background:#fff; border:2px solid var(--color-primary);
    padding:.625rem 1.5rem; border-radius:100px;
    transition:transform .2s, box-shadow .2s;
  }
  .nt__btn:hover { transform:translateY(-1px); box-shadow:0 4px 12px rgba(131,184,221,.3); }

  /* CTA */
  .cta { background:#fff; padding:4.5rem 0; text-align:center; border-top:1px solid var(--color-border); }
  .cta__ttl { font-size:1.75rem; font-weight:600; line-height:1.5; margin-bottom:1.5rem; }
  .cta__price { display:inline-block; font-size:.9375rem; font-weight:600; color:var(--color-primary-dark);
    background:var(--color-primary-pale); padding:.75rem 1.75rem; border-radius:100px; margin-bottom:1.75rem; }
  .cta__btn { display:block; width:fit-content; margin:0 auto; text-decoration:none; background:#F2795C; color:#fff;
    font-size:1rem; font-weight:600; padding:1.0625rem 3rem; border-radius:100px; box-shadow:0 6px 18px rgba(242,121,92,.3); }

  @media screen and (max-width:768px){
    .crumb { padding:5.5rem 0 0; }
    .crumb .container { font-size:.6875rem; }
    .pghd { padding:1.5rem 0 0; }
    .pghd__ttl { font-size:1.5rem; margin-bottom:1.5rem; }
    .pghd__photo { aspect-ratio:16/9; }
    .pghd__lead { margin-top:2rem; padding-bottom:3rem; font-size:.875rem; }
    .sec { padding:3.25rem 0; }
    .sec__ttl { font-size:1.3125rem; }
    .sec__body { font-size:.875rem; }
    .cs__body { padding:1.5rem 1.25rem; }
    .cs__name { font-size:1.125rem; }
    .fl__step { grid-template-columns:110px 1fr; gap:1.125rem; align-items:start; }
    .fl__num { width:24px; height:24px; font-size:.6875rem; }
    .fl__ttl { font-size:1rem; }
    .fl__txt { font-size:.8125rem; }
    .rep { grid-template-columns:1fr; min-height:0; }
    .rep__photo { aspect-ratio:4/3; }
    .rep__body { padding:1.5rem 1.25rem; }
    .rsv__ttl { font-size:1rem; }
    .rsv__txt { font-size:.8125rem; }
    .fq__item summary { padding:1rem 1.125rem; font-size:.875rem; }
    .fq__a { padding:0 1.125rem 1.125rem; }
    .nt { padding:1.5rem 1.25rem; }
    .nt__btn { display:block; width:100%; }
    .prc__num { font-size:2.25rem; }
    .prc2__num { font-size:2rem; }
    .prc2__name { font-size:1.0625rem; }
    .cta__ttl { font-size:1.25rem; }
    .cta__btn { width:100%; padding:1rem; }
  }

.fl__photo img, .take__photo img, .onl__photo img { width:100%; height:100%; object-fit:cover; display:block; }


/* --- フッター規約リンク --- */
.ftr__legal { display:flex; flex-wrap:wrap; gap:1.25rem; justify-content:flex-end; }
.ftr__legal a { font-size:.75rem; color:#7C93A8; text-decoration:none; }
.ftr__legal a:hover { color:var(--color-primary-dark); }
@media screen and (max-width: 768px) {
  .ftr__legal { justify-content:center; gap:.875rem; }
  .ftr__legal a { font-size:.6875rem; }
}


/* --- SP：PCナビは非表示（ハンバーガーを使用） --- */
@media screen and (max-width: 900px) {
  .hd__nav { display: none !important; }
}


/* =========================================================
   ヘッダー確定分｜2026-08-26
   1. ドロップダウンの追従性（隙間で消える問題）
   2. キャレット（∨）を名前の下・中央へ
   3. SPヘッダーを浮かせる
   4. SPメニュー：白基調＋アコーディオン
   ※ このブロックは add.css の最後に置くこと（上書きの向きを保つため）
========================================================= */

/* --- 1. ドロップダウン｜隙間を要素で埋める --- */
.hd__nav .header-dropdown {
  margin-top: 0;
  transform: translateX(-50%) translateY(14px);
  transition: opacity .2s ease .18s, transform .2s ease .18s, visibility 0s linear .38s;
}
.hd__nav .header-nav__item.has-dropdown:hover .header-dropdown {
  transform: translateX(-50%) translateY(6px);
  transition: opacity .18s ease 0s, transform .18s ease 0s, visibility 0s linear 0s;
}
.hd__nav .header-dropdown::before {
  content: ''; position: absolute; left: 0; right: 0; top: -16px; height: 16px;
}

/* --- 2. キャレット｜名前の下・中央。全項目の高さを揃える --- */
.hd__nav .header-nav__label {
  padding: .5rem .875rem .8125rem;
  line-height: 1.45;
  text-align: center;
}
.hd__nav .header-nav__label::before { bottom: 5px; }
.hd__nav .header-nav__item.has-dropdown:hover .header-nav__label::before { width: 0; }

.hd__nav .header-nav__item.has-dropdown .header-nav__label::after {
  display: block; position: absolute; left: 50%; bottom: 4px;
  margin-left: -3.5px; width: 7px; height: 7px; opacity: 1;
  border: 0;
  border-right: 1.6px solid #83B8DD;
  border-bottom: 1.6px solid #83B8DD;
  transform: rotate(45deg);
  transition: transform .25s ease, border-color .25s ease;
}
.hd__nav .header-nav__item.has-dropdown:hover .header-nav__label::after {
  transform: rotate(-135deg);
  border-right-color: #5A9AC9;
  border-bottom-color: #5A9AC9;
}

@media screen and (max-width: 900px) {

  /* --- 3. SPヘッダーを浮かせる --- */
  .hd { padding: 0 .75rem; }
  .hd__panel { border-radius: 0 0 16px 16px; padding: .75rem 1rem; }
  .hd.is-scrolled { padding: 0; }
  .hd.is-scrolled .hd__panel { border-radius: 0; padding: .625rem 1rem; }

  /* --- 4. SPメニュー｜白基調 --- */
  .mobile-nav {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 5.75rem 1.5rem 2.5rem;
  }

  /* グループ＝アコーディオン */
  .mobile-nav__group { margin-bottom: 0; border-bottom: 1px solid #E8EDF2; }
  .mobile-nav__group:first-child { border-top: 1px solid #E8EDF2; }

  .mobile-nav__group-title {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    background: none; border: 0; text-align: left; cursor: pointer;
    color: #2D3748; font-family: inherit;
    font-size: 1.0625rem; font-weight: 600; letter-spacing: .03em;
    padding: 1.0625rem .25rem; margin: 0;
  }
  .mobile-nav__group-title::after {
    content: ''; flex: 0 0 auto; margin-left: 1rem;
    width: 8px; height: 8px;
    border-right: 1.8px solid #83B8DD;
    border-bottom: 1.8px solid #83B8DD;
    transform: translateY(-3px) rotate(45deg);
    transition: transform .25s ease;
  }
  .mobile-nav__group.is-open .mobile-nav__group-title::after {
    transform: translateY(1px) rotate(-135deg);
  }

  .mobile-nav__group-links { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
  .mobile-nav__group.is-open .mobile-nav__group-links { max-height: 420px; }

  .mobile-nav__group-links .mobile-nav__link {
    display: block;
    color: #5A6C7D; font-size: .9375rem; font-weight: 400;
    padding: .75rem .25rem .75rem 1rem;
    border-top: 0; border-bottom: 0;
  }
  .mobile-nav__group-links .mobile-nav__link:first-child { border-top: 0; }
  .mobile-nav__group-links .mobile-nav__link:last-child { border-bottom: 0; padding-bottom: 1.125rem; }
  .mobile-nav__group-links .mobile-nav__link:hover { padding-left: 1rem; }

  /* 直リンク（グループ外） */
  .mobile-nav__link {
    display: block;
    color: #2D3748; font-size: 1.0625rem; font-weight: 600;
    padding: 1.0625rem .25rem;
    border-top: 0; border-bottom: 1px solid #E8EDF2;
  }
  .mobile-nav__link:first-child { border-top: 0; }
  .mobile-nav__link:hover { padding-left: .25rem; }
  /* クリック・タップ時の青枠を消す。キーボード操作時のみ表示 */
  .mobile-nav__group-title:focus { outline: none; }
  .mobile-nav__group-title:focus-visible {
    outline: 2px solid #83B8DD;
    outline-offset: -2px;
    border-radius: 8px;
  }

  /* CTA */
  .mobile-nav__cta { margin-top: 2rem; }
  .mobile-nav__cta-primary {
    background: #F2795C; color: #fff;
    box-shadow: 0 4px 14px rgba(242,121,92,.28);
  }
}


/* =========================================================
   立ち位置セクション確定分｜2026-08-26
   白背景 × ブルーのフチ／アイコン拡大／余白の圧縮
   ※ ヘッダー確定分の後ろ、add.css の最後に置くこと
========================================================= */

.position__col {
  background: #fff;
  border: 1.5px solid #83B8DD;
}
.position__icon {
  width: 80px;
  height: 80px;
  margin-bottom: .5rem;
}
.position__col-name {
  line-height: 1.45;
}

@media screen and (max-width: 768px) {
  .position__icon {
    width: 64px;
    height: 64px;
    margin-bottom: .375rem;
  }
}


/* =========================================================
   アクセス｜Googleマップ埋め込み｜2026-08-26
   ※ add.css の最後に置くこと
========================================================= */

.acs__map {
  display: block;
  overflow: hidden;
}
.acs__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}


/* =========================================================
   体験コースページ（/trial/）｜欠落分の補完｜2026-08-26
   PC側の基本スタイルが未記述だったため追加
   ※ add.css の最後に置くこと
========================================================= */

/* --- 声のチェックリスト --- */
.voices { max-width:560px; margin:0 auto 2rem; display:flex; flex-direction:column; gap:.625rem; }
.voices__item {
  display:flex; align-items:flex-start; gap:.875rem;
  background:#fff; border:1px solid var(--color-border); border-radius:var(--radius);
  padding:.875rem 1.25rem; font-size:.9375rem; line-height:1.7; text-align:left;
}
.sec--tint .voices__item { border-color:transparent; box-shadow:0 2px 12px rgba(58,124,165,.08); }
.voices__check {
  flex-shrink:0; width:18px; height:18px; margin-top:.3125rem; position:relative;
  border:2px solid var(--color-primary); border-radius:5px;
}
.voices__check::after {
  content:''; position:absolute; left:4px; top:0; width:5px; height:10px;
  border-right:2px solid var(--color-primary); border-bottom:2px solid var(--color-primary);
  transform:rotate(45deg);
}

/* --- 料金（ページヘッダー） --- */
.prc {
  max-width:420px; margin:0 auto; text-align:center;
  background:#fff; border:1.5px solid var(--color-primary);
  border-radius:var(--radius); padding:1.5rem 2rem;
}
.prc__label { font-size:.9375rem; font-weight:600; color:var(--color-primary-dark); margin-bottom:.875rem; }
.prc__row { display:flex; align-items:baseline; justify-content:center; gap:.75rem; }
.prc__min { font-size:.9375rem; font-weight:600; color:#5A6C7D; }
.prc__sep { width:1px; height:1.25rem; background:var(--color-border); align-self:center; }
.prc__num {
  font-size:2.75rem; font-weight:700; line-height:1;
  color:var(--color-primary-dark); font-family:var(--font-en), var(--font-ja);
}
.prc__yen { font-size:1rem; font-weight:600; color:var(--color-primary-dark); }
.prc__yen small { font-size:.8125rem; font-weight:400; color:#8FA0B3; }

/* --- 体験コースで行うこと --- */
.do { max-width:680px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; }
.do__item { background:#fff; border-radius:var(--radius); padding:1.75rem; box-shadow:0 4px 20px rgba(58,124,165,.10); }
.do__ttl { font-size:1.125rem; font-weight:600; color:var(--color-primary-dark); margin-bottom:.875rem; }
.do__txt { font-size:.875rem; line-height:2; }
.do__txt + .do__txt { margin-top:1rem; }

/* --- 持ち帰れるもの --- */
.take { max-width:680px; margin:0 auto; display:flex; flex-direction:column; gap:1.25rem; }
.take__item { background:#fff; border-radius:var(--radius); padding:1.75rem 2rem; box-shadow:0 4px 20px rgba(58,124,165,.10); }
.take__ttl { font-size:1.125rem; font-weight:600; color:var(--color-primary-dark); margin-bottom:.75rem; }
.take__txt { font-size:.9375rem; line-height:2; }
.take__report {
  max-width:680px; margin:2.5rem auto 0;
  background:#fff; border-radius:var(--radius); overflow:hidden;
  display:grid; grid-template-columns:260px 1fr; align-items:stretch; min-height:200px;
  box-shadow:0 4px 20px rgba(58,124,165,.10);
}
.take__photo { background:var(--color-primary-pale); overflow:hidden; }
.take__body { padding:1.75rem; display:flex; flex-direction:column; justify-content:center; }

/* --- オンライン --- */
.onl {
  max-width:860px; margin:0 auto; overflow:hidden;
  background:#fff; border:1px solid var(--color-border); border-radius:var(--radius);
  display:grid; grid-template-columns:340px 1fr; align-items:stretch;
}
.onl__photo { background:var(--color-primary-pale); overflow:hidden; min-height:240px; }
.onl__body { padding:2rem 2.25rem; display:flex; flex-direction:column; justify-content:center; }
.onl__label {
  align-self:flex-start; font-size:.6875rem; font-weight:700; letter-spacing:.14em;
  color:var(--color-primary-dark); background:var(--color-primary-pale);
  padding:.3125rem .875rem; border-radius:var(--radius-full); margin-bottom:.875rem;
  font-family:var(--font-en), var(--font-ja);
}
.onl__ttl { font-size:1.25rem; font-weight:600; margin-bottom:.875rem; }
.onl__txt { font-size:.875rem; line-height:2; margin-bottom:1.25rem; }
.onl__price { font-size:.9375rem; font-weight:600; color:var(--color-primary-dark); margin-bottom:.5rem; }
.onl__note { font-size:.75rem; color:#8FA0B3; line-height:1.8; }

/* --- 料金（CTA内） --- */
.prc2 {
  max-width:420px; margin:0 auto 2rem; text-align:center;
  background:var(--color-bg); border:1.5px solid var(--color-primary);
  border-radius:var(--radius); padding:1.75rem 2rem;
}
.prc2__name { font-size:1.125rem; font-weight:600; margin-bottom:.875rem; }
.prc2__tags { display:flex; flex-wrap:wrap; justify-content:center; gap:.5rem; margin-bottom:1.125rem; }
.prc2__tag {
  font-size:.75rem; font-weight:600; color:var(--color-primary-dark);
  background:#fff; border:1px solid var(--color-primary-light);
  padding:.25rem .75rem; border-radius:var(--radius-full);
}
.prc2__val { display:flex; align-items:baseline; justify-content:center; gap:.375rem; }
.prc2__num {
  font-size:2.5rem; font-weight:700; line-height:1;
  color:var(--color-primary-dark); font-family:var(--font-en), var(--font-ja);
}
.prc2__yen { font-size:1rem; font-weight:600; color:var(--color-primary-dark); }
.prc2__yen small { font-size:.75rem; font-weight:400; color:#8FA0B3; }
.prc2__note { font-size:.75rem; color:#8FA0B3; margin-top:.875rem; }

@media screen and (max-width: 768px) {
  .voices { margin-bottom:1.5rem; }
  .voices__item { font-size:.875rem; padding:.75rem 1rem; gap:.75rem; }
  .prc, .prc2 { padding:1.25rem; }
  .do { grid-template-columns:1fr; gap:1rem; }
  .do__item { padding:1.5rem 1.25rem; }
  .take__item { padding:1.5rem 1.25rem; }
  .take__report { grid-template-columns:1fr; min-height:0; }
  .take__photo { aspect-ratio:4/3; }
  .take__body { padding:1.5rem 1.25rem; }
  .onl { grid-template-columns:1fr; }
  .onl__photo { aspect-ratio:16/9; min-height:0; }
  .onl__body { padding:1.5rem 1.25rem; }
}
