/* ==========================================================================
   THE LANA CLINIC - メインスタイルシート
   PC版 + SP版 統合CSS
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. デザイントークン（カラー・サイズ変数）
   -------------------------------------------------------------------------- */
:root {
  /* カラーパレット */
  --color-gold:        #c7a47a;
  --color-gold-dark:   #76644e;
  --color-gold-light:  #efd7ba;
  --color-gold-pale:   #fad0ac;
  --color-brown:       #554a4a;
  --color-brown-mid:   #867979;
  --color-beige:       #faf1ec;
  --color-beige-light: #fff3f1;
  --color-beige-mid:   #ffe9e9;
  --color-peach:       #ffc9ca;
  --color-peach-light: #ffe1c7;
  --color-pink:        #fba2a4;
  --color-mocha:       #dac5ba;
  --color-mocha-dark:  #9e815f;
  --color-white:       #fff;
  --color-line-green:  #06c755;

  /* SP プレビュー枠サイズ */
  --sp-width:   420px;
  --sp-height:  780px;
  --sp-radius:  22px;
  --header-height: 78px; /* SP ヘッダーの高さ（padding 16px×2 + ロゴ約46px） */

  /* アニメーション */
  --transition-base: 0.3s ease;

  /* フォント */
  --font-serif:   'Noto Serif JP', serif;
  --font-sans:    'Noto Sans JP', sans-serif;
  --font-garamond:'EB Garamond', serif;
}

/* --------------------------------------------------------------------------
   2. リセット・ベース
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

p {
  margin: 0;
}

/* button・input 等フォーム要素のブラウザデフォルト除去 */
button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-serif);
  color: var(--color-brown);
  background-color: var(--color-white);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* --------------------------------------------------------------------------
   3. 共通ユーティリティ
   -------------------------------------------------------------------------- */

/* ── ハンバーガーボタン（開く） ── */
.menu-btn {
  height: 46px;
  width: 46px;
  border-radius: 100px;
  background-color: var(--color-white);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  overflow: hidden;
}

/* ── ハンバーガー線（共通） ── */
.horizontal-divider {
  width: 26px;
  height: 1px;
  background-color: var(--color-gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
  flex-shrink: 0;
}

/* ── ハンバーガーボタン内部 ── */
/* 通常時: flex で 8px gap 2本線 */
.menu-btn__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 26px;
  height: 26px;
  position: relative;
}

/* 通常時: 線は static */
.menu-btn__inner .horizontal-divider {
  position: static;
}

/* 開いた時: 線を絶対配置でボタン中央に重ねる */
.menu-btn.is-open .menu-btn__inner {
  gap: 0;
}

.menu-btn.is-open .menu-btn__inner .horizontal-divider {
  position: absolute;
  left: 0;
  top: calc(50% - 0.5px);
}

.menu-btn.is-open .menu-btn__inner .horizontal-divider:nth-child(1) {
  transform: rotate(-34deg);
}

.menu-btn.is-open .menu-btn__inner .horizontal-divider:nth-child(2) {
  transform: rotate(34deg);
}

/* ── 閉じるボタン（×） ── */
.btn-close {
  height: 46px;
  width: 46px;
  border-radius: 100px;
  background-color: var(--color-white);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-close__inner {
  border-radius: 10px;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.horizontal-divider--close-1 {
  width: 26px;
  height: 1px;
  position: relative;
  background-color: var(--color-gold);
  transform: rotate(-34deg);
}

.horizontal-divider--close-2 {
  width: 26px;
  height: 1px;
  position: relative;
  background-color: var(--color-gold);
  transform: rotate(34deg);
  margin-top: -18px;
}

/* ── インスタグラムアイコン ── */
.insta {
  height: 48px;
  width: 48px;
  border-radius: 40px;
  background-color: var(--color-white);
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-base);
}

.insta-icon {
  width: 20px;
  height: 20px;
  fill: var(--color-gold);
  transition: var(--transition-base);
  flex-shrink: 0;
}

.insta:hover { background-color: var(--color-gold); }
.insta:hover .insta-icon { fill: var(--color-white); }

/* ── 丸いCTAボタン（LINE/初診/WEB予約）基底 ── */
.cta-btn {
  height: 107px;
  width: 107px;
  border-radius: 556px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  cursor: pointer;
  color: var(--color-white);
  transition: .3s ease;
}

.cta-btn--line    { background-color: var(--color-line-green); }
.cta-btn--line:hover { background-color: #17984C; }
.cta-btn--contact { background-color: var(--color-pink); }
.cta-btn--contact:hover { background-color: #EB7B7D; }
.cta-btn--reserve { background-color: var(--color-mocha-dark); }
.cta-btn--reserve:hover { background-color: #6D5B44; }

.cta-btn__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 0;
  flex-shrink: 0;
  font-size: 14px;
  line-height: 100%;
}

/* 回転するリングアニメーション（SPモーダル内のCTAボタン用） */
.kaiten {
  position: absolute;
  margin: 0 !important;
  /* top: -1.24px;
  left: -1.24px; */
  z-index: 1;
  flex-shrink: 0;
  width: 109.5px;        /* SPモーダル内サイズ */
  height: 109.5px;       /* img { height:auto } を上書き */
  object-fit: contain;
  animation: rotate 50s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── 「もっと見る」ボタン ── */
.more-button {
  border-radius: 100px;
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 15px;
  transition: background-color var(--transition-base), color var(--transition-base);
}

.more-button:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
}

/* ── アウトラインボタン（料金表・はじめての方へ等） ── */
.outline-btn {
  border-radius: 100px;
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  font-size: 16px;
  transition: color var(--transition-base);
}

.outline-btn:hover { color: var(--color-gold); }

/* ── セクションH2（EB Garamond 英語 + 日本語タイトル） ── */
.section-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-garamond);
}

.section-heading__en {
  display: block;
  letter-spacing: 0.03em;
  line-height: 100%;
  font-weight: 500;
}

.section-heading__en--gold {
  background: linear-gradient(90.95deg, #d7cbbf, #ffd4c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading__en--gray {
  background: linear-gradient(90deg, #adadad, rgba(173, 173, 173, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading__en--brand {
  background: linear-gradient(90deg, var(--color-gold), var(--color-brown));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading__en--light {
  /* doctor/voice/news/columnセクション用 白系 */
  color: inherit;
}

.section-heading__ja {
  font-size: 20px;
  letter-spacing: 0.03em;
  line-height: 100%;
  font-weight: 500;
  font-family: var(--font-serif);
}

/* ── 診療時間テーブル（table タグ版） ── */
.hours-table {
  width: 75%;
  border-collapse: collapse;
  table-layout: fixed;       /* 列幅を均等に固定 */
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--color-brown);
}

/* 左端ラベル列だけ少し広く */
.hours-table col.col-label { width: 4em; }

.hours-table col.col-day { width: 1.5em; }

.hours-table col.col-holiday { width: 2.5em;}
.hours-table02 {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;       /* 列幅を均等に固定 */
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--color-brown);
}

/* 左端ラベル列だけ少し広く */
.hours-table02 col.col-label { width: 4em; }

.hours-table02 col.col-day { width: 1.5em; }

.hours-table02 col.col-holiday { width: 2.5em;}
/* th 共通 */
.hours-th {
  border: 1px solid var(--color-gold);
  padding: 8px 4px;
  text-align: center;
  font-weight: 500;
  vertical-align: middle;
  white-space: nowrap;
  background-color: transparent;
  border-top: none;
}

/* 左端「診療時間」ラベル th */
.hours-th--label {
  width: 5em;
  white-space: nowrap;
  border-left: none;
}

/* 「日・祝」th */
.hours-th--holiday {
  font-size: 13px;
  letter-spacing: -0.02em;
  border-right: none;
}

/* td 共通 */
.hours-td {
  border: 1px solid var(--color-gold);
  padding: 8px 4px;
  text-align: center;
  vertical-align: middle;
  border-bottom: none;
}

/* 左端「10:00〜19:00」セル */
.hours-td--time {
  color: var(--color-brown);
  font-size: 12px;
  /* white-space: nowrap; */
  width: 5em;
  border-left: none;
}

/* 〇 セル */
.hours-td--mark {
  color: var(--color-gold);
  font-size: 14px;
}

/* ／ セル */
.hours-td--closed {
  color: var(--color-gold);
  font-size: 12px;
  border-right: none;
}

/* ── SP枠内（420px以下）の追加調整 ── */
@media (max-width: 420px) {
  .hours-table {
    font-size: 10px;
  }
    
  .hours-table02 {
    font-size: 10px;
  }    
  .hours-th,
  .hours-td {
    padding: 6px 2px;
  }
  .hours-th--label,
  .hours-td--time {
    width: 4.4em;
    font-size: 9px;
  }
  .hours-th--holiday {
    font-size: 9px;
  }
  .hours-td--mark,
  .hours-td--closed {
    font-size: 11px;
  }
}

/* ── 375px以下のさらに狭い端末 ── */
@media (max-width: 390px) {
  .hours-table {
    font-size: 9px;
  }
    
  .hours-table02 {
    font-size: 9px;
  }    
  .hours-th,
  .hours-td {
    padding: 5px 1px;
  }
  .hours-th--label,
  .hours-td--time {
    width: 4em;
    font-size: 8.5px;
  }
  .hours-th--holiday {
    font-size: 8.5px;
    letter-spacing: -0.04em;
  }
  .hours-td--mark,
  .hours-td--closed {
    font-size: 10px;
  }
}

/* ── ポップアップオーバーレイ ── */
/*
  .popup-overlay は .sp-frame の直接子要素。
  sticky + margin-bottom のトリックで「.sp-frame の表示枠だけを覆う」固定レイヤーを実現する。
  - position: sticky; top: 0  → スクロールしても枠の上端に張り付く
  - height: var(--sp-height)  → sp-frame の表示高さ分だけカバー
  - margin-bottom: calc(-1 * var(--sp-height)) → 後続コンテンツのレイアウトに影響させない
  - pointer-events: none / is-open で on  → 非表示時はクリックを素通しにする
*/
.popup-overlay {
  width: 100%;
  /* ヘッダー分を除いた高さ・位置にすることで、ヘッダーを常に表示 */
  height: calc(var(--sp-height) - var(--header-height));
  position: sticky;
  top: var(--header-height); /* ヘッダーの真下から開始 */
  margin-bottom: calc(-1 * (var(--sp-height) - var(--header-height)));
  z-index: 200;
  flex-shrink: 0;

  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;

  /* 初期状態：非表示 */
  background-color: rgba(113, 113, 113, 0);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
}

/* 開いているとき */
.popup-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background-color: rgba(113, 113, 113, 0.4);
}

/* モーダル本体のスライドイン（上から） */
.popup-overlay .sp-modal {
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-overlay.is-open .sp-modal {
  transform: translateY(0);
}

/* ── 閉じるボタン（将来的な利用のため定義は残す） ── */
.btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Swiper 共通リセット ── */
.swiper {
  width: 100%;
  overflow: hidden;
}

/* ── Swiper カスタムページネーション（インジケーター） ── */
/* .swiper-pagination を .section-banner / .section-column / .footer-logo-block 内に配置 */
.swiper-pagination-banner,
.swiper-pagination-column,
.swiper-pagination-footer {
  position: static !important; /* Swiperデフォルトのabsoluteを解除 */
  display: flex;
  align-items: center;
  gap: 6px;
  width: auto;
  bottom: auto;
}

.swiper-pagination-banner {
  padding: 0 20px;
}

/* COLUMNのインジケーターは左寄せ */
.swiper-pagination-column {
  justify-content: flex-start;
}

/* バナー・フッターのインジケーターも左寄せ */
.swiper-pagination-banner,
.swiper-pagination-footer {
  justify-content: flex-start;
}

/* ドットの見た目をカスタム */
.swiper-pagination-banner .swiper-pagination-bullet,
.swiper-pagination-column .swiper-pagination-bullet,
.swiper-pagination-footer .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: transparent;
  border: 0.5px solid var(--color-gold);
  opacity: 1;
  margin: 0 !important;
  transition: background-color 0.3s ease;
}

/* アクティブドット */
.swiper-pagination-banner .swiper-pagination-bullet-active,
.swiper-pagination-column .swiper-pagination-bullet-active,
.swiper-pagination-footer .swiper-pagination-bullet-active {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
}


/* --------------------------------------------------------------------------
   4. PC レイアウト（.pc-layout）
   -------------------------------------------------------------------------- */

/* PCビューのルートラッパー */
.pc-layout {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  font-size: 18px;
  color: var(--color-white);
  font-family: var(--font-serif);
}

/* 背景（全体グラデーション） */
.pc-layout__bg {
  height: 900px;
  flex: 1;
  background: linear-gradient(180deg, var(--color-white), var(--color-white) 50%, var(--color-beige));
  overflow-y: scroll;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  gap: 60px;
  max-width: 100%;
}

/* 左サイド */
.pc-layout__left {
  flex: 1;
  overflow-y: scroll;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pc-left__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 100%;
}

.pc-left__media {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 430px;
}

.pc-logo-wrap {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pc-logo {
  align-self: stretch;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  object-fit: cover;
}

.pc-carousel {
  align-self: stretch;
  height: 268.6px;
  max-width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  object-fit: cover;
}

/* PCスライド */

.img-box{
  width: 100%;
  height: 46vw;
  overflow: hidden;
  position: relative;
}
.img-box>div{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 268.6px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 10;
  opacity: 0;
  animation-name: fade;
  animation-duration: 24s;
  animation-iteration-count: infinite;
}
@keyframes fade {
  0%   { opacity: 0; }
  8%   { opacity: 1; }   /* 24s × 8% ≒ 2s かけてフェードイン */
  25%  { opacity: 1; }   /* 24s × 25% = 6s まで表示（4s表示 + 余裕） */
  33%  { opacity: 0; }   /* 24s × 33% ≒ 8s でフェードアウト完了 */
  100% { opacity: 0; }
}
/* 1枚目のスライド */
/* 1枚目のスライド */
.img-box > div:first-of-type {
  background-image: url("https://lana-clinic.jp/wp-content/themes/lana-clinic/assets/images/footer/sliderimg01.png");
}

/* 2枚目のスライド */
.img-box > div:nth-of-type(2) {
  background-image: url("https://lana-clinic.jp/wp-content/themes/lana-clinic/assets/images/footer/sliderimg02.png");
  animation-delay: 4s;
}

/* 3枚目のスライド */
.img-box > div:nth-of-type(3) {
  background-image: url("https://lana-clinic.jp/wp-content/themes/lana-clinic/assets/images/footer/sliderimg03.png");
  animation-delay: 8s;
}

/* 4枚目のスライド */
.img-box > div:nth-of-type(4) {
  background-image: url("https://lana-clinic.jp/wp-content/themes/lana-clinic/assets/images/footer/sliderimg04.png");
  animation-delay: 12s;
}

/* 5枚目のスライド */
.img-box > div:nth-of-type(5) {
  background-image: url("https://lana-clinic.jp/wp-content/themes/lana-clinic/assets/images/footer/sliderimg05.png");
  animation-delay: 16s;
}

/* 6枚目のスライド */
.img-box > div:last-of-type {
  background-image: url("https://lana-clinic.jp/wp-content/themes/lana-clinic/assets/images/footer/sliderimg06.png");
  animation-delay: 20s;
}

/* スライドここまで */

.pc-line-deco {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 16px 0 0;
}

/* PC CTA ボタンエリア */
.pc-left__cta {
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  align-content: flex-start;
}

.pc-cta__list {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 8px;
  max-width: 100%;
}

/* PC CTA ボタン（大きめ） */
.pc-cta-btn {
  height: 135px;
  width: 135px;
  border-radius: 636px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  text-decoration: none;
  color: var(--color-white);
  transition: var(--transition-base);
  font-size: 18px;
  font-weight: 700;
}

.pc-cta-btn--line    { background-color: var(--color-line-green); }
.pc-cta-btn--line:hover { background-color: #17984C; }

.pc-cta-btn--contact { background-color: var(--color-pink); }
.pc-cta-btn--contact:hover { background-color: #EB7B7D; }

.pc-cta-btn--reserve { background-color: var(--color-mocha-dark); }
.pc-cta-btn--reserve:hover { background-color: #6D5B44; }

.pc-cta-btn__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 0;
  flex-shrink: 0;
}

/* PC CTA 回転リング（大きめサイズ） */
.pc-cta-btn .kaiten {
  width: 134.7px !important;
  height: 134.7px !important;
  /* top: -6.49px !important;
  left: -6.49px !important; */
  object-fit: contain;
}

/* 右サイド */
.pc-layout__right {
  height: 623px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 500px;
  font-size: 14px;
  color: var(--color-brown);
}

.pc-right__logo {
  width: 180px;
  object-fit: cover;
}

.pc-right__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* PC 住所 */
.pc-access {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.pc-address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.pc-address__zip {
  width: 75px;
  line-height: 150%;
  font-weight: 600;
}

.pc-address__street {
  font-size: 18px;
  line-height: 150%;
  font-weight: 600;
}

.pc-access__station {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 15px;
}

.pc-access__station-text {
  align-self: stretch;
  line-height: 100%;
  font-weight: 500;
}

/* PC 診療時間 */
.pc-hours {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
}

/* PC SNS・電話 */
.pc-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  gap: 12px;
  font-size: 32px;
}

.pc-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.pc-tel__link {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.pc-tel__icon {
  height: 26.5px;
  width: 26.6px;
}

.pc-tel__number {
  width: 206px;
  line-height: 100%;
  font-weight: 500;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.pc-tel__hours {
  font-size: 15px;
  line-height: 100%;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   5. SP プレビュー枠 (.sp-frame)
   -------------------------------------------------------------------------- */

/* SP全体ラッパー（PCプレビュー時に枠を出す） */
/* NOTE: .sp-frame の color は gold だが、内部セクションは各自で color を上書きする */
.sp-frame {
  width: var(--sp-width);
  height: var(--sp-height);   /* 枠の見た目上の高さ（スクロール起点） */
  border-radius: var(--sp-radius);
  border: 1px solid var(--color-gold);
  overflow-x: hidden;         /* 横はクリップ */
  overflow-y: auto;           /* 縦はスクロール可 */
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  isolation: isolate;
  font-size: 13px;
  color: var(--color-brown); /* デフォルト文字色はbrown（ゴールドは各セクションで個別指定） */
  /* スクロールバーを細くてスタイリッシュに */
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold-light) transparent;
}

.sp-frame::-webkit-scrollbar {
  width: 4px;
}

.sp-frame::-webkit-scrollbar-track {
  background: transparent;
}

.sp-frame::-webkit-scrollbar-thumb {
  background-color: var(--color-gold-light);
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   6. SP ヘッダー
   -------------------------------------------------------------------------- */

.sp-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 300;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--color-gold);
  background-color: transparent;
  position: sticky;
  top: 0;
  transition: background-color 0.35s ease;
}

/* スクロール後：背景色を付ける */
.sp-header.is-scrolled {
  background-color: rgba(250, 241, 236, 0.92); /* --color-beige に半透明 */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* モーダルが開いているとき：不透明な背景色で下が透けないようにする */
.sp-header.menu-is-open {
  background-color: var(--color-beige);
}

.sp-header__inner {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.sp-header__logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

.sp-header__logo {
  width: 214px;
  object-fit: cover;
}

.sp-header__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  isolation: isolate;
  gap: 15px;
  flex-shrink: 0;
}

/* 言語選択 */
.language-select-wrap {
  position: absolute;
  top: 17px;
  right: 64px;
  z-index: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.language-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent;
  padding: 0 14px 0 0;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  letter-spacing: 0.03em;
  line-height: 100%;
  font-weight: 500;
  cursor: pointer;
  outline: none;
}

.language-select::-ms-expand { display: none; }

.language-select-wrap .vector-icon {
  width: 6px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  object-fit: contain;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   7. SP メインビジュアル（FV）
   -------------------------------------------------------------------------- */

/* FV 背景プリズム画像 */
.fv-background {
  width: var(--sp-width);
  height: 100%;
  max-height: 100%;
  display: block;
  background-image: url("../images/top/FV_Background_prizm.png");
  background-size: 1314px auto;
  background-repeat: no-repeat;
  background-position: -131px -61px;
  position: absolute;
  margin: 0 !important;
  z-index: 0;
  flex-shrink: 0;
}

/* FV セクション */
.fv-section {
  align-self: stretch;
  height: 710px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 48px 0 0;
  position: relative;
  isolation: isolate;
  z-index: 2;
  font-size: 38px;
  color: var(--color-gold);
}

/* FV コピーエリア */
.fv-copy {
  width: var(--sp-width);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 50px 0 0 24px;
  gap: 20px;
  z-index: 2;
  flex-shrink: 0;
}

.fv-maincopy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

/* メインキャッチコピー行（背景グラデ付き） */
.fv-copy__bg {
  background: linear-gradient(90deg, var(--color-white), rgba(255,255,255,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

/* メインキャッチコピーテキスト（グラデ文字） */
.fv-copy__main-text {
  position: relative;
  letter-spacing: 0.03em;
  line-height: 100%;
  font-weight: 600;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* サブコピー */
.fv-subcopy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  font-size: 22px;
}

.fv-subcopy__text {
  position: relative;
  letter-spacing: 0.03em;
  line-height: 100%;
  font-weight: 600;
}

/* 下部コピー */
.fv-tagline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 30px 24px;
  gap: 8px;
  z-index: 1;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--color-brown);
  font-family: var(--font-sans);
}

.fv-tagline__text {
  position: relative;
  letter-spacing: 0.03em;
  line-height: 100%;
  font-weight: 500;
}

/* FV 女性イラスト */
.fv-woman {
  width: var(--sp-width);
  height: 520px;
  position: absolute;
  margin: 0 !important;
  right: -40px;
  bottom: 0px;
  object-fit: cover;
  z-index: 0;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   8. SP 各セクション共通
   -------------------------------------------------------------------------- */

/* セクション共通パディング */
.sp-section {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px 24px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   9. SP セクション2：お悩み・シミの種類・当院のシミ治療
   -------------------------------------------------------------------------- */

.section-trouble {
  background: linear-gradient(180deg, var(--color-beige), var(--color-beige-mid) 60.1%, var(--color-beige-mid));
  z-index: 3;
  text-align: center;
  font-size: 22px;
  color: var(--color-brown); /* 明示的にbrown（sp-frame の gold を上書き） */
}

.trouble-group {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}

/* H3ブロック（見出し + 破線区切り） */
.section-h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.section-h3__title {
  position: relative;
  letter-spacing: 0.03em;
  line-height: 150%;
}

.section-h3__divider {
  width: 41px;
  height: 1px;
  border-top: 1px dashed var(--color-gold);
}

/* お悩みリスト */
.trouble-item {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.trouble-list-wrap {
  align-self: stretch;
  height: 403px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  isolation: isolate;
  gap: 20px;
  font-size: 16px;
}

.trouble-tags-left {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  z-index: 2;
}

.trouble-tags-right {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  isolation: isolate;
  gap: 12px;
  z-index: 1;
}

/* お悩みタグ（グレーグラデ） */
.trouble-tag {
  background: linear-gradient(90deg, #adadad, rgba(173, 173, 173, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
}

.trouble-tag--z0 { z-index: 0; }
.trouble-tag--z1 { z-index: 1; }

.trouble-tag__text {
  position: relative;
  line-height: 150%;
  font-weight: 500;
}

/* お悩み写真（円形） */
.trouble-photo {
  margin: 0 !important;
  position: absolute;
  bottom: 12px;
  left: calc(50% - 148px);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  z-index: 0;
  height: 296px;
  width: 296px;
  flex-shrink: 0;
}

.trouble-photo__img {
  width: 100%;
  height: auto;
}

/* シミの種類 テキストブロック */
.shimis-text-block {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  font-size: 16px;
}

.shimis-desc {
  align-self: stretch;
  line-height: 150%;
  font-weight: 500;
}

/* シミアイテムリスト */
.shimi-items-wrap {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  font-size: 14px;
  color: var(--color-white);
  font-family: var(--font-sans);
}

.shimi-items-row {
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}

.shimi-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.shimi-item__icon-wrap {
  align-self: stretch;
  height: 120px;
  border-radius: 400px;
  background-color: #ffe2e2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.shimi-item__icon-inner {
  width: 86px;
  height: 86px;
  position: relative;
}

.shimi-item__blur {
  position: absolute;
  top: calc(50% - 43px);
  left: calc(50% - 43px);
  filter: blur(6px);
  border-radius: 200px;
  background-color: var(--color-white);
  width: 86px;
  height: 86px;
}

.shimi-item__img {
  position: absolute;
  top: calc(50% - 32px);
  left: calc(50% - 30px);
  width: 60px;
  height: 64px;
}

.shimi-item__label-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shimi-item__label {
  background-color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  font-size: 14px;
  line-height: 100%;
  font-weight: 500;
  flex-shrink: 0;
}

/* 当院のシミ治療（丸いリンクカード） */
.treatment-type {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  font-size: 16px;
}

.treatment-type__h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  font-size: 22px;
}

.treatment-circles {
  width: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
  isolation: isolate;
  text-align: left;
  color: var(--color-gold);
  gap: 60px;
}

.treatment-circles__row {
  align-self: stretch;
  display: flex;
  align-items: center;
  position: relative;
}

.treatment-circles__row--right { justify-content: flex-end; }

.treatment-circles__row--overlap {
  margin-top: 0px;
}

.treatment-circles__row:nth-of-type(1)::before {
    content: "";
    display: inline-block;
    width: 142px;
    height: 142px;
    border-radius: 99%;
    background-color: #ffe2e2;
    background-image: url(../images/top/plan01.png);
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 26px;
}

.treatment-circles__row:nth-of-type(2)::after {
    content: "";
    display: inline-block;
    width: 142px;
    height: 142px;
    border-radius: 99%;
    background-color: #ffe2e2;
    background-image: url(../images/top/plan02.png);
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
    z-index: -1;
    position: absolute;
    top: 0;
    right: 26px;
}

.treatment-circles__row:nth-of-type(3)::before {
    content: "";
    display: inline-block;
    width: 142px;
    height: 142px;
    border-radius: 99%;
    background-color: #ffe2e2;
    background-image: url(../images/top/plan03.png);
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 26px;
}

/* 丸いメニューカード */
.treatment-card {
  height: 218px;
  width: 218px;
  border-radius: 400px;
  background-color: var(--color-white);
  border: 1px solid var(--color-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  isolation: isolate;
  gap: 10px;
  text-decoration: none;
  color: var(--color-gold);
}

.treatment-card__tag {
  background: linear-gradient(90deg, var(--color-peach-light), var(--color-peach));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  z-index: 0;
  color: var(--color-brown);
  font-size: 14px;
}

.treatment-card__name {
  font-size: 22px;
  line-height: 120%;
  text-align: center;
  z-index: 1;
  font-weight: 700;
}

.treatment-card__downtime {
  font-size: 13px;
  line-height: 150%;
  font-weight: 500;
  font-family: var(--font-sans);
  z-index: 2;
  text-align: center;
}

.treatment-card__arrow {
  width: 33px;
  height: 33px;
  margin: 0 !important;
  position: absolute;
  right: 8px;
  bottom: 24px;
  border-radius: 100px;
  z-index: 3;
}

/* 注入機器・薬剤 */
.approach{
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-size: 16px;
  font-family: 'Noto Sans JP';
}
.approach-label{
  width: 90px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.approach-label span{
  background-color: #fff;
  padding: 2px 4px;
}
.approach-text{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 6px 0px 0px;
  gap: 8px;
  text-align: left;
}

/* 治療説明テキスト */
.treatment-desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
  font-family: var(--font-serif);
}

/* --------------------------------------------------------------------------
   10. SP セクション：バナー（おすすめ）
   -------------------------------------------------------------------------- */

.section-banner {
  background: linear-gradient(180deg, var(--color-beige-mid), var(--color-beige-light));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 0 30px 0;
  gap: 20px;
  z-index: 4;
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
  /* overflow は設定しない → 子の .swiper-banner-clip が overflow:hidden を担う */
}

/* ページネーション（バナー）は左に24px余白 */
.swiper-pagination-banner {
  padding-left: 24px;
}

/*
  ちら見せ（peek）の仕組み:
  ① .swiper-banner-clip  : 左24px のオフセットを確保し overflow:hidden でクリップ
  ② .swiper-banner       : width:100% で Swiper を保持（overflow:hidden）
  ③ 右端に padding-right を設けることで次スライドが「ちら見え」する
     → JS 側で slidesOffsetBefore:24 / spaceBetween:10 を設定
*/
.swiper-banner-clip {
  width: 100%;
  overflow: hidden; /* loop複製スライドを隠しつつちら見せを両立 */
  box-sizing: border-box;
}

.swiper-banner {
  overflow: visible; /* clip は親の .swiper-banner-clip が担当 */
  width: calc(100% - 24px); /* 左24px のインセット */
  margin-left: 24px;
  box-sizing: border-box;
}

/* swiper-slide に幅を明示（slidesPerView:'auto' 時は必須） */
.swiper-banner .swiper-slide {
  width: 224px;
  height: auto;
}

.banner-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.banner-item__img {
  width: 224px;
  height: 188px;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   11. SP セクション3：人気施術（POPULAR）
   -------------------------------------------------------------------------- */

.section-popular {
  background-color: var(--color-beige-light);
  z-index: 5;
  font-family: var(--font-garamond);
}

.popular-list {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 22px;
  font-family: var(--font-serif);
}

/* 施術アイテム */
.popular-item {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  gap: 30px;
}

/* 区切り線（img） */
.line-deco {
  align-self: stretch;
  display: flex;
  align-items: center;
  z-index: 0;
  flex-shrink: 0;
}

/* 写真（円形） */
.photo-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  z-index: 1;
  flex-shrink: 0;
}

.photo-circle__img {
  height: 294px;
  width: 294px;
  border-radius: 200px 200px 200px 4px;
  object-fit: cover;
  z-index: 1;
  flex-shrink: 0;
}

/* テキストブロック */
.popular-item__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 0 0 24px;
  gap: 12px;
  z-index: 2;
  flex-shrink: 0;
  margin-bottom: 30px;
}

.popular-item:last-of-type .popular-item__text { margin-bottom: 0; }

.popular-item__title {
  position: relative;
  letter-spacing: 0.03em;
  line-height: 150%;
  font-family: var(--font-serif);
}

.popular-item__body {
  width: 302px;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 150%;
  font-family: var(--font-sans);
}

/* 左縦ラインの装飾 */
.line-accent {
  width: 10px;
  margin: 0 !important;
  position: absolute;
  top: 0;
  left: -1px;
  object-fit: contain;
  z-index: 4;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   12. SP セクション4：施術メニュー（MENU）
   -------------------------------------------------------------------------- */

.section-menu {
  background: linear-gradient(180deg, var(--color-beige-light), var(--color-beige));
  z-index: 6;
  text-align: center;
}

.section-menu__heading {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  font-family: var(--font-garamond);
}

.menu-list {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 20px;
}

/* メニューリンク行 */
.menu-link {
  position: relative;
  align-self: stretch;
  background: linear-gradient(90deg, var(--color-peach-light), var(--color-peach));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  gap: 20px;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-brown);
}

.menu-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color-gold-pale), #ffb1b2);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
}

.menu-link:hover::before { opacity: 1; }
.menu-link > * { position: relative; z-index: 1; }

.menu-link--wide { gap: 6px; }

/* メニューアイコン */
.menu-icon-wrap {
  height: 57px;
  width: 57px;
  position: relative;
  flex-shrink: 0;
}

.menu-icon-wrap__blur {
  position: absolute;
  top: 0;
  left: 0;
  filter: blur(6px);
  border-radius: 200px 200px 200px 4px;
  background-color: var(--color-white);
  width: 57px;
  height: 57px;
}

.menu-icon-wrap__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* メニューテキスト */
.menu-link__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
}

.menu-link__sub {
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 100%;
  font-weight: 500;
  font-family: var(--font-sans);
  color: var(--color-brown-mid);
}

.menu-link__arrow {
  width: 33px;
  border-radius: 100px;
}

.menu-note {
  align-self: stretch;
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 150%;
  font-family: var(--font-sans);
}

/* --------------------------------------------------------------------------
   13. SP セクション5：お悩みから探す（BY TROUBLE）
   -------------------------------------------------------------------------- */

.section-bytrouble {
  background-color: var(--color-beige);
  z-index: 7;
  font-family: var(--font-garamond);
}

.bytrouble-grid {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
  font-size: 15px;
  font-family: var(--font-serif);
}

.bytrouble-row {
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* お悩みリンク（タイル） */
.bt-link {
  flex: 1;
  background: linear-gradient(-39.34deg, #ffe8e0, #efe7d9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 0;
  gap: 16px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-brown);
}

.bt-link--border-left  { border-left: 1px dashed var(--color-white); }
.bt-link--border-top   { border-top: 1px dashed var(--color-white); }
.bt-link--border-both  { border-top: 1px dashed var(--color-white); border-left: 1px dashed var(--color-white); }

.bt-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-39.34deg, #f5dad1, #eaddc6);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
}

.bt-link:hover::before { opacity: 1; }
.bt-link > * { position: relative; z-index: 1; }

.bt-link__icon {
  width: 66px;
  height: 66px;
  position: relative;
}

.bt-link__icon-blur {
  position: absolute;
  top: 0;
  left: 0;
  filter: blur(6px);
  border-radius: 200px 200px 200px 4px;
  background-color: var(--color-white);
  width: 66px;
  height: 66px;
}

.bt-link__icon-img {
  position: absolute;
  top: calc(50% - 27px);
  left: calc(50% - 25px);
  width: 50px;
  height: 54px;
}

.bt-link__text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.bt-link__word { line-height: 100%; }
.bt-link__sep  { font-size: 8px; line-height: 100%; }

.bt-btn-wrap {
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 0 0;
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   14. SP セクション6：クリニックの特徴（FEATURE）
   -------------------------------------------------------------------------- */

.section-feature {
  background-color: var(--color-beige);
  z-index: 8;
  text-align: right;
}

.section-feature__heading {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  font-family: var(--font-garamond);
}

.feature-list {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  font-size: 22px;
  color: var(--color-gold);
}

.feature-item__body {
  width: 302px;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 150%;
  font-family: var(--font-sans);
  color: var(--color-brown);
}

.feature-btn-wrap {
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   15. SP セクション7：ドクター挨拶（DOCTOR）
   -------------------------------------------------------------------------- */

.section-doctor {
  background-color: var(--color-mocha);
  z-index: 9;
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-garamond);
}

.doctor-inner {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: left;
  font-size: 16px;
  color: var(--color-brown);
  font-family: var(--font-serif);
}

.doctor-illust {
  height: 326px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
}

.doctor-illust__blur {
  height: 322px;
  width: 322px;
  position: absolute;
  margin: 0 !important;
  top: calc(50% - 161.33px);
  left: calc(50% - 160px);
  filter: blur(15px);
  border-radius: 200px 200px 200px 4px;
  background-color: var(--color-beige);
  border: 3px solid var(--color-white);
  z-index: 0;
  flex-shrink: 0;
}

.doctor-illust__img {
  width: 160px;
  z-index: 1;
  flex-shrink: 0;
}

.doctor-heading {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.doctor-heading__catch {
  align-self: stretch;
  font-size: 22px;
  letter-spacing: 0.03em;
  line-height: 150%;
  text-align: center;
}

.doctor-heading__text {
  align-self: stretch;
  letter-spacing: 0.03em;
  line-height: 150%;
  font-weight: 500;
}

.doctor-heading__text--mixed {
  align-self: stretch;
  letter-spacing: 0.03em;
  line-height: 150%;
}

.doctor-name {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: right;
  font-size: 18px;
}

.doctor-name__line {
  align-self: stretch;
  letter-spacing: 0.03em;
  line-height: 100%;
}

/* --------------------------------------------------------------------------
   16. SP セクション8：患者様の声（VOICE）
   -------------------------------------------------------------------------- */

.section-voice {
  background: linear-gradient(180deg, var(--color-mocha), var(--color-beige));
  z-index: 10;
  text-align: center;
  font-size: 18px;
  padding: 60px 0;
}

.voice-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.voice-header {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  color: var(--color-white);
}

.voice-title-block {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 56px;
  font-family: var(--font-garamond);
}

.voice-lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: var(--color-brown);
}

.voice-lead__main {
  /* width: 241px; */
  letter-spacing: 0.03em;
  line-height: 150%;
  font-weight: 500;
}

.voice-lead__sub {
  width: var(--sp-width);
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 150%;
  font-weight: 500;
}

.voice-quote-bar {
  align-self: stretch;
  background: linear-gradient(90deg, #b5a197, #c4aea3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 73px;
  gap: 10px;
  text-align: left;
}

.voice-quote-bar__icon {
  height: 20px;
  width: 13px;
  object-fit: contain;
  flex-shrink: 0;
}

.voice-quote-bar__text {
  letter-spacing: 0.03em;
  line-height: 100%;
  font-weight: 500;
  flex-shrink: 0;
}

/* 口コミカード */
.voice-cards {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  text-align: left;
  font-size: 16px;
}

.voice-card-row {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  position: relative;
}

.voice-card-row--right {
  align-items: flex-end;
  margin-top: -8px;
}

.voice-card-row--left {
  align-items: flex-start;
  margin-top: -8px;
}

.voice-card {
  border-radius: 400px;
  background-color: var(--color-beige);
  border: 1px solid var(--color-mocha);
  display: flex;
  align-items: flex-start;
  padding: 16px 20px;
  gap: 8px;
}

.voice-card__quote-icon {
  height: 9.4px;
  width: 14.2px;
}

.voice-card__text {
  letter-spacing: 0.03em;
  line-height: 150%;
}

.voice-source {
  width: 276px;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 100%;
  font-family: var(--font-sans);
}

.voice-source__link { color: #345e7d; }
.voice-source__link--google { color: #425b97; }
.voice-source__underline { text-decoration: underline; }

/* --------------------------------------------------------------------------
   17. SP セクション9：お知らせ（NEWS）
   -------------------------------------------------------------------------- */

.section-news {
  background-color: var(--color-beige);
  z-index: 11;
  color: var(--color-gold);
}

.news-inner {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  padding: 24px;
}

.news-list {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 13px;
  color: var(--color-brown);
}

.news-item {
  align-self: stretch;
  border-bottom: 1px solid var(--color-gold-light);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 8px;
  gap: 12px;
  transition: .3s ease;
}

.news-item:hover {
  color: var(--color-gold);
}

.news-item--top { border-top: 1px solid var(--color-gold-light); }

.news-item__date {
  align-self: stretch;
  letter-spacing: 0.03em;
  line-height: 100%;
  font-weight: 500;
}

.news-item__title {
  align-self: stretch;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 150%;
  font-weight: 500;
  display: -webkit-inline-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* --------------------------------------------------------------------------
   18. SP セクション10：コラム（COLUMN）
   -------------------------------------------------------------------------- */

.section-column {
  background-color: var(--color-beige);
  z-index: 12;
  color: var(--color-gold);
  /* sp-section の padding: 60px 24px を上書きして左右余白を0にする */
  /* Swiper側で margin-left:24px を設定するため、ここでは左右0にする */
  padding-left: 0 !important;
  padding-right: 0 !important;
  /* overflow は設定しない → 子の .swiper-column-clip が担う */
  width: 100%;
  margin-left: 0;
}

/*
  ちら見せ（peek）の仕組み（バナーと同様）:
  ① .swiper-column-clip : overflow:hidden でクリップ
  ② .swiper-column      : overflow:visible で次カードを見せる
     → JS 側で slidesOffsetBefore:24 / spaceBetween:12 を設定
*/
.section-column .swiper-column-clip {
  width: calc(100% + 24px);
  margin-right: -24px;
}

.swiper-column-clip {
  align-self: stretch;
  overflow: hidden;
  box-sizing: border-box;
}

.swiper-column {
  overflow: visible; /* clip は親の .swiper-column-clip が担当 */
  width: 100%;
  font-size: 13px;
  color: var(--color-brown);
}

/* swiper-slide に幅を明示（slidesPerView:'auto' 時は必須） */
.swiper-column .swiper-slide {
  width: 278px;
  height: auto;
}

.column-card {
  width: 278px;
  background-color: var(--color-white);
  border: 2px solid var(--color-gold-light);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  gap: 8px;
}

.column-card__img {
  align-self: stretch;
  height: 156px;
  max-width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  object-fit: cover;
}

.column-card__meta {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 4px 0 0;
  gap: 13px;
}

.column-card__meta-top {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 12px;
}

.column-card__date {
  letter-spacing: 0.03em;
  line-height: 100%;
  font-weight: 500;
}

.column-card__cat-wrap { display: flex; align-items: flex-start; }

.column-card__cat {
  align-self: stretch;
  border-radius: 100px;
  border: 1px solid var(--color-gold-light);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 4px 8px;
  font-size: 13px;
  line-height: 100%;
  font-weight: 500;
}

.column-card__title-wrap {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 15px;
}

.column-card__title {
  align-self: stretch;
  letter-spacing: 0.03em;
  line-height: 150%;
  font-weight: 500;
  display: -webkit-inline-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.column-card__tags {
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0 4px;
  color: var(--color-gold);
  font-family: var(--font-sans);
}

.column-card__tag {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 5px 6px;
  font-size: 13px;
  line-height: 100%;
  font-weight: 500;
}

.column-card__link {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   19. SP フッター（店舗情報）
   -------------------------------------------------------------------------- */

.section-footer {
  align-self: stretch;
  background: linear-gradient(90deg, var(--color-peach-light), var(--color-peach));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 13;
  flex-shrink: 0;
  font-size: 18px;
}

body.home .section-footer{
  background: var(--color-beige)!important;
}

body.page-id-49 .section-footer {
  background: transparent !important;
}

.footer-inner {
  align-self: stretch;
  border-radius: 40px 40px 0 0;
  background: linear-gradient(180deg, var(--color-white), var(--color-white) 50%, var(--color-beige));
  display: flex;
  flex-direction: column;   /* 縦並び */
  align-items: stretch;
  padding: 28px 24px 30px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 32px;
}

.footer-logo-block {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  overflow: hidden;
  /* 幅は親(.footer-content)から stretch で決まる */
  min-width: 0;  /* flexアイテムの幅縮小バグ防止 */
}

.footer-logo {
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  object-fit: cover;
}

/* Swiperラッパー（フッター） */
.swiper-footer {
  width: 100%;
  overflow: hidden;
  /* swiper-slide に高さを持たせるため align-self:stretch で親幅を引き継ぐ */
}

/* swiper-slide（フッター）に幅を明示 */
.swiper-footer .swiper-slide {
  width: 100%;
  height: auto;
}

.footer-carousel {
  width: 100%;
  height: 289px;
  object-fit: cover;
  display: block;
}

.footer-address-block {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-address {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-address__zip {
  width: 75px;
  font-size: 14px;
  line-height: 100%;
  font-weight: 500;
}

.footer-address__line {
  align-self: stretch;
  line-height: 100%;
  font-weight: 500;
}

.footer-map {
  align-self: stretch;
  height: 204px;
  max-width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-access-list {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
}

.footer-access-lines {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-access-note {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* フッター 診療情報 */
.footer-info {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  font-size: 13px;
}

.footer-hours-block {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}


.footer-closed-note {
  font-size: 13px;
  line-height: 100%;
  font-weight: 500;
}

/* フッター 電話 */
.footer-tel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 32px;
}

.footer-tel__link {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.footer-tel__icon {
  width: 26px;
}

.footer-tel__number {
  width: 206px;
  line-height: 100%;
  font-weight: 500;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-tel__hours {
  align-self: stretch;
  font-size: 15px;
  line-height: 100%;
  font-weight: 500;
}

/* フッター ナビ */
.footer-nav {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 0 0;
  gap: 12px;
  font-size: 12px;
  font-family: var(--font-sans);
}

.footer-nav__top {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
  gap: 11px;
}

.footer-nav__link {
  height: 13px;
  position: relative;
  line-height: 100%;
}

.footer-nav__sep {
  height: 10px;
  width: 1px;
  border-right: 1px solid var(--color-gold-light);
}

.footer-copyright {
  line-height: 100%;
  font-weight: 500;
  font-family: var(--font-serif);
}

/* --------------------------------------------------------------------------
   20. SP モーダルメニュー
   -------------------------------------------------------------------------- */

.sp-modal {
  background-color: var(--color-beige);
  overflow-y: auto;
  display: flex;
  align-items: flex-start;
  /* popup-overlay と同じ幅・高さ（ヘッダー分を除いた領域） */
  width: var(--sp-width);
  height: calc(var(--sp-height) - var(--header-height));
  flex-shrink: 0;
  text-align: center;
  font-size: 13px;
  color: var(--color-gold);
  font-family: var(--font-serif);
}

.sp-modal__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 0 40px;
  gap: 32px;
  min-height: 100%;
}

.sp-modal__nav {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  font-size: 18px;
  color: var(--color-brown);
}

.sp-modal__nav-list {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 32px;
}

.sp-modal__nav-items {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ナビトリガー */
.nav-trigger {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px 0 0;
  gap: 16px;
}

.nav-trigger__label {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 100%;
}

.nav-trigger__label--arrow {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  gap: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 100%;
  cursor: pointer; /* クリック可能と分かるように */
  user-select: none;
}

/* + / - アイコン（疑似要素で描画） */
.nav-trigger__plus-icon {
  position: relative;
  height: 13px;
  width: 13px;
  flex-shrink: 0;
}

/* 横線（常時表示） */
.nav-trigger__plus-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 13px;
  height: 1px;
  background-color: var(--color-brown);
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
}

/* 縦線（+のときだけ表示、-のときは消す） */
.nav-trigger__plus-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 13px;
  background-color: var(--color-brown);
  transform: translateX(-50%) scaleY(1);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* 開いたとき：縦線を消して - になる */
.nav-trigger__plus-icon.is-rotated::before {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}

/* サブメニュー（アコーディオン） */
.nav-subitem {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0 16px;
  font-size: 14px;
  overflow: hidden;
  transition: max-height 0.35s ease;
  max-height: 0;
}

.nav-trigger[data-accordion]:not(.is-open) .nav-subitem {
  display: none;
}

.nav-subitem--fixed { box-sizing: border-box; }

.nav-subitem__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.nav-subitem__link {
  align-self: stretch;
  border-bottom: 1px solid var(--color-gold-light);
  display: flex;
  align-items: center;
  padding: 12px 0;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 100%;
}

.nav-subitem__link--last {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 12px 0;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 100%;
}

/* モーダル CTA エリア */
.sp-modal__cta {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 14px;
  color: var(--color-white);
}

.sp-modal__cta-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}


/* ===============================
FIXED CTA
=============================== */

.fixed-cta{

position:fixed;

bottom:0;
left:50%;

transform:translateX(-50%);

width:420px;

height: 80px;

display:flex;

z-index:199;

}

.cta-contact{

flex:1;
background: var(--color-pink);
color:var(--color-white);
padding: 4px;
border-radius: 5px 5px 0px 0px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s ease;

}

.cta-contact:hover{
background: #EB7B7D;
}

.cta-line{

flex:1;
background:var(--color-line-green);
color:var(--color-white);
padding: 4px;
border-radius: 5px 5px 0px 0px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s ease;
}

.cta-line:hover{
background: #17984C;
}

.cta-reserve{

flex:1;
background:var(--color-mocha-dark);
color:var(--color-white);
padding: 4px;
border-radius: 5px 5px 0px 0px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s ease;
}
.cta-reserve:hover{
background: var(--color-gold-dark);
}

.cta-icon{
  height: 12px;
  width: auto;
}

.cta-contact div,.cta-line div,.cta-reserve div{


height: 100%;
width: 100%;

text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;

position: relative;

line-height: 16px;

gap: 4px;


}

.cta-contact div span,.cta-line div span,.cta-reserve div span{

  font-size: 14px;
  font-weight: bold;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  gap: 8px;
}

body.menu-open .fixed-cta {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ==========================================================================
   レスポンシブ対応
   ========================================================================== */
/* ===============================
PC VIEW
=============================== */

@media(min-width:768px){

.fixed-cta{

display:none;

}

}
/* --------------------------------------------------------------------------
   タブレット（431px 〜 1024px）
   PC左サイドを非表示にして、SP枠 + PC右サイド情報を縦に並べる
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {

  /* PC左サイドを非表示 */
  .pc-layout__left {
    display: none;
  }

  /* 背景ラッパー: パディングを縮小、縦並びに */
  .pc-layout__bg {
    flex-direction: column;
    align-items: center;
    padding: 40px 24px;
    gap: 40px;
    height: auto;
    min-height: 100vh;
  }

  /* SP枠: 枠は維持したままセンタリング */
  .sp-frame {
    flex-shrink: 0;
  }

  /* PC右サイド: SP枠の下に表示 */
  .pc-layout__right {
    width: 100%;
    max-width: var(--sp-width);
    height: auto;
    flex-shrink: 0;
  }
}





/* --------------------------------------------------------------------------
   スマートフォン（〜 430px）
   SP枠の「枠」を外して全画面表示。PC左右サイドを非表示。
   -------------------------------------------------------------------------- */
@media (max-width: 430px) {

  /* PC左右サイドを非表示 */
  .pc-layout__left,
  .pc-layout__right {
    display: none;
  }

  /* 背景ラッパー: パディングをゼロに */
  .pc-layout__bg {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
    height: auto;
    min-height: 100dvh;
  }

  /* SP枠: 枠デザインを解除して画面全体に展開 */
  .sp-frame {
    width: 100%;
    height: auto;          /* 高さ固定を解除 */
    min-height: 100dvh;    /* 画面高さ以上は確保 */
    border-radius: 0;      /* 角丸を解除 */
    border: none;          /* 枠線を解除 */
    overflow-x: hidden;
    overflow-y: visible;   /* スクロールを body に委ねる */
    flex-shrink: 0;
  }

  /* スクロールバーを非表示（body スクロールになるため） */
  .sp-frame::-webkit-scrollbar { display: none; }

  /* popup-overlay:
     SP実機では sticky が sp-frame のスクロールに連動しなくなるため
     fixed に切り替えてビューポート基準で表示する */
  .popup-overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100dvh - var(--header-height));
    margin-bottom: 0;
  }

  /* sp-modal もビューポート幅に合わせる */
  .sp-modal {
    width: 100%;
    height: calc(100dvh - var(--header-height));
  }

  /* ヘッダーも fixed に（body スクロール時にページ上部に固定） */
  .sp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 300;
    background-color: transparent; /* 初期は透明、スクロールで .is-scrolled が付く */
  }

  .fv-background {
    width: 100%;
  }

  /* FV セクション: fixed ヘッダー分 padding-top を追加 */
  .fv-section {
    padding-top: calc(48px + var(--header-height));
  }

  
/* VOICEセクション */
  .section-voice {
    width: 100%;
  }

  .voice-lead{
    width: 100%;
  }

.footer-inner {
  padding: 28px 24px 120px;
}

  .fixed-cta{

width:100%;

}
}

/* --------------------------------------------------------------------------
   固定ページ用共通CSS
   -------------------------------------------------------------------------- */
.page-main {
  width: 100%;
  background: var(--color-white);
  color: var(--color-brown);
  font-family: var(--font-serif);
}

.page-fv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  gap: 36px;
  background: var(--color-white);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
}

.breadcrumb__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold-light);
}

.page-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-heading__en {
  font-family: var(--font-garamond);
  font-size: 56px;
  line-height: 1;
  letter-spacing: .03em;
  font-weight: 500;
  color: var(--color-gold-light);
}

.page-heading__ja {
  margin: 0;
  font-size: 20px;
  line-height: 1;
  letter-spacing: .03em;
  font-weight: 500;
}

.page-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px 60px;
  gap: 56px;
  background: var(--color-white);
}

.contact-cta {
  background: linear-gradient(90deg, var(--color-peach-light), var(--color-peach));
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 24px;
  text-align: center;
  color: var(--color-white);
}

.contact-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.contact-cta__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-garamond);
  font-size: 56px;
}

.contact-cta__ja {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--color-brown);
}

.contact-cta .footer-tel{
      align-items: center;
      color: var(--color-brown);
}
/* --------------------------------------------------------------------------
   固定ページアコーディオン
   -------------------------------------------------------------------------- */

   .js-accordion {
  align-self: stretch;
}

.js-accordion-trigger {
  cursor: pointer;
}

.js-accordion-icon {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-gold);
  position: relative;
  flex-shrink: 0;
}

.js-accordion-icon::before,
.js-accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-gold);
  transform: translate(-50%, -50%);
  transition: transform .3s ease, opacity .3s ease;
}

.qanda .js-accordion-icon {
  background: transparent;
  border: none;
}

.qanda .js-accordion-icon::before,
.qanda .js-accordion-icon::after {
  background: var(--color-white);
}

.js-accordion-icon::before {
  width: 13px;
  height: 1px;
}

.js-accordion-icon::after {
  width: 1px;
  height: 13px;
}

.js-accordion.is-open .js-accordion-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.js-accordion-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}

@media (max-width: 430px) {
  .page-fv {
    padding-top: calc(24px + var(--header-height));
  }
}


