/* ===================================================
   120分からだチューンアップPlus  公式LP
   Mobile First
   "木漏れ日の中を歩くような" 温かみ・上品・やわらかい
=================================================== */

/* ---------- リセット & ベース ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── 温かみカラーパレット ── */
  --navy:       #1e3040;
  --navy-d:     #14232f;
  --ivory:      #faf7f2;          /* 温かいアイボリー */
  --ivory-d:    #f2ece0;
  --gold:       #b8935a;          /* ウォームゴールド */
  --gold-l:     #d4aa70;
  --gold-pale:  #f5e9d4;
  --green:      #3b6351;          /* フォレストグリーン */
  --green-l:    #4d7d67;
  --green-pale: #e8f0eb;
  --wine:       #7a3040;
  --text:       #1e3d2f;
  --text-m:     #2d5040;
  --text-l:     #5a7a6a;
  --line-green: #06c755;
  --radius:     10px;
  --radius-l:   20px;
  --shadow:     0 6px 28px rgba(50,35,15,.10);
  --shadow-s:   0 2px 12px rgba(50,35,15,.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Hiragino Kaku Gothic ProN','Noto Sans JP',sans-serif;
  font-size: 16px;
  color: var(--text);
  line-height: 1.9;
  overflow-x: hidden;
  /* 木漏れ日の森を全ページ背景に固定表示 */
  background-image: url('../images/forest-bg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-wrap {
  /* 各セクションに半透明の白を乗せて文字を読みやすくする */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  touch-action: pan-x pan-y;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* 明朝見出し用クラス */
.mincho {
  font-family: 'Hiragino Mincho ProN','Yu Mincho','游明朝','Noto Serif JP',serif;
}

/* ---------- ユーティリティ ---------- */
.section-inner {
  max-width: 100%;
  margin: 0 14px;
  padding: 40px 28px;
  background: rgba(250,247,242,.86);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}

.section-title {
  font-family: 'Hiragino Mincho ProN','Yu Mincho','游明朝','Noto Serif JP',serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 28px;
  line-height: 1.5;
  position: relative;
  padding-bottom: 14px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-title span {
  display: block;
  font-family: 'Hiragino Kaku Gothic ProN',sans-serif;
  font-size: .72rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .18em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--line-green);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(6,199,85,.30);
  transition: opacity .2s, transform .15s;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.btn-line:hover  { opacity: .88; transform: translateY(-2px); }
.btn-line:active { opacity: .75; transform: translateY(0); }
.btn-line svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }

/* ===================================================
   ① ヘッダー（固定）
=================================================== */
#site-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  padding-top: env(safe-area-inset-top);
  border-bottom: 1px solid rgba(184,147,90,.2);
  box-shadow: 0 2px 16px rgba(50,35,15,.07);
  gap: 8px;
}
#site-header .logo img {
  height: 112px;
  width: auto;
  max-width: min(58vw, 420px);
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.15));
  pointer-events: none;
}
#site-header .logo-fallback {
  font-family: 'Hiragino Mincho ProN','Yu Mincho',serif;
  font-size: .72rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  white-space: nowrap;
}
#site-header .header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
#site-header .header-consult-banner {
  display: block;
}
#site-header .header-consult-banner img {
  height: 50px;
  width: auto;
  display: block;
  max-width: 240px;
}
#site-header .header-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--line-green);
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(6,199,85,.35);
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}
#site-header .header-btn svg { width: 18px; height: 18px; fill: #fff; }

/* ===================================================
   ② ファーストビュー　スライドショー
=================================================== */
#hero {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 80vh;
  overflow: hidden;
  background: transparent;
  margin-top: 0;
  border-radius: 12px;
}
@media (max-width: 600px) {
  #hero {
    aspect-ratio: 4 / 3;
    max-height: none;
  }
}
.hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  background: transparent;
}
.hero-slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ivory-d) 0%, #e0d5c0 100%);
  color: rgba(90,70,40,.35);
  font-size: .85rem;
  text-align: center;
  padding: 20px;
}

/* 木漏れ日ライクな温かいオーバーレイ */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(255,248,235,.08) 0%,
    rgba(30,48,64,.20)   40%,
    rgba(30,48,64,.62)   100%
  );
  z-index: 2;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 3;
  padding: 0 26px 52px;
  text-align: left;
  max-width: 680px;
}
.hero-sub-en {
  font-size: .68rem;
  letter-spacing: .2em;
  color: var(--gold-l);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
}
.hero-main {
  font-family: 'Hiragino Mincho ProN','Yu Mincho','游明朝','Noto Serif JP',serif;
  font-size: clamp(1.55rem, 6.5vw, 2.6rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  letter-spacing: .04em;
  text-shadow: 0 2px 16px rgba(20,30,40,.50), 0 1px 4px rgba(0,0,0,.3);
}
.hero-main em {
  color: var(--gold-l);
  font-style: normal;
}
.hero-sub-jp {
  margin-top: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.72);
  letter-spacing: .1em;
}
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.hero-dots span {
  width: 28px; height: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,.35);
  transition: background .4s, width .3s;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
}
.hero-dots span.active {
  background: var(--gold-l);
  width: 44px;
}

.hero-wrapper {
  position: relative;
  width: 100%;
  padding: 8px 10px 12px;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,.32);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  touch-action: manipulation;
}
.hero-arrow:hover { background: rgba(0,0,0,.55); }
.hero-prev { left: 26px; }
.hero-next { right: 26px; }

/* ===================================================
   セクション区切り波形
=================================================== */
.wave-top {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}
.wave-top svg { display: block; width: 100%; }

/* ===================================================
   ③ かかりつけPTPという考え方
=================================================== */
.ptp-concierge-img {
  width: 100%;
  border-radius: var(--radius-l);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.ptp-concierge-img img {
  width: 100%;
  display: block;
  pointer-events: none;
}
#ptp {
  background: transparent;
  padding: 48px 0 56px;
}
.ptp-lead {
  font-family: 'Hiragino Mincho ProN','Yu Mincho',serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.5;
}
.ptp-body { color: var(--text-m); font-size: .95rem; }
.ptp-body p { margin-bottom: 8px; line-height: 1.6; }
.ptp-fact-box {
  background: var(--green-pale);
  border: 1px solid rgba(59,99,81,.18);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin: 16px 0;
}
.ptp-fact-box p { margin-bottom: 6px; font-size: .9rem; color: var(--text); line-height: 1.5; }
.ptp-fact-box p:last-child { margin-bottom: 0; }
.ptp-fact-box strong { color: var(--green); }
.ptp-note {
  font-size: .8rem;
  color: var(--text-l);
  margin-top: 6px;
}
.ptp-conclude {
  margin-top: 16px;
  font-family: 'Hiragino Mincho ProN','Yu Mincho',serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1.6;
}

/* ===================================================
   ④ なぜ120分だけなのか
=================================================== */
#why120 {
  padding: 72px 0 80px;
  background: transparent;
}
.why120-img {
  width: calc(100% + 56px);
  margin-left: -28px;
  margin-right: -28px;
  margin-bottom: 28px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.why120-img img {
  width: 100%;
  height: auto;
  display: block;
}
.why120-text {
  font-size: .95rem;
  color: var(--text-m);
  line-height: 2;
}
.why120-text p { margin-bottom: 14px; }

/* ===================================================
   ⑤ からだマネジメント 6ステップ
=================================================== */
#management {
  padding: 72px 0 80px;
  background: transparent;
}
#management .section-title {
  font-family: 'Hiragino Mincho ProN','Yu Mincho',serif;
  color: var(--navy);
}
#management .section-title::after { background: var(--gold); }
#management .section-title span { color: var(--green); }
.mgmt-img {
  width: calc(100% + 56px);
  margin-left: -28px;
  margin-right: -28px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.mgmt-img img {
  width: 100%;
  height: auto;
  display: block;
}
.mgmt-text {
  font-size: .95rem;
  color: var(--text-m);
  line-height: 2;
  margin-top: 28px;
}
.mgmt-text p { margin-bottom: 14px; }
.mgmt-text strong { color: var(--navy); }
.mgmt-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}
.mgmt-step {
  background: rgba(250,247,242,.86);
  border: 1px solid rgba(184,147,90,.3);
  border-radius: var(--radius);
  padding: 14px 14px;
  text-align: center;
}
.mgmt-step .step-num {
  font-size: .68rem;
  color: var(--gold);
  letter-spacing: .12em;
  display: block;
  margin-bottom: 4px;
  font-family: Georgia, serif;
}
.mgmt-step .step-label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

/* ===================================================
   ⑥ 90歳の分岐点
=================================================== */
#future {
  padding: 80px 0;
  background: transparent;
  position: relative;
}
#future::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 40px;
  background: var(--navy);
  clip-path: ellipse(55% 100% at 50% 0%);
}
.future-img {
  width: calc(100% + 56px);
  margin-left: -28px;
  margin-right: -28px;
  margin-bottom: 28px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.future-img img {
  width: 100%;
  height: auto;
  display: block;
}
.future-text {
  font-size: .95rem;
  color: var(--text-m);
  line-height: 2;
}
.future-text p { margin-bottom: 14px; }
.future-text strong { color: var(--navy); }

/* ===================================================
   ⑦ 料金
=================================================== */
#price {
  padding: 72px 0 80px;
  background: transparent;
}
.price-card {
  background: linear-gradient(135deg, var(--navy) 0%, #263d50 100%);
  color: #fff;
  border-radius: var(--radius-l);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
/* 木漏れ日装飾 */
.price-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: rgba(212,170,112,.10);
  border-radius: 50%;
}
.price-name {
  font-family: 'Hiragino Mincho ProN','Yu Mincho',serif;
  font-size: .88rem;
  color: var(--gold-l);
  letter-spacing: .12em;
  margin-bottom: 10px;
}
.price-amount {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold-l);
  line-height: 1;
  letter-spacing: -.01em;
}
.price-amount small {
  font-size: .88rem;
  font-weight: 400;
  color: rgba(255,255,255,.65);
  margin-left: 4px;
}
.price-ext {
  margin-top: 18px;
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
}
.price-note {
  margin-top: 10px;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
}

/* ===================================================
   ⑧ ギャラリー
=================================================== */
#room {
  padding: 56px 0 64px;
  background: transparent;
}
.room-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.room-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-s);
}
.room-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
@media (max-width: 600px) {
  .room-grid { grid-template-columns: 1fr; }
  .room-item img { aspect-ratio: 4/3; }
}

#gallery {
  padding: 72px 0 80px;
  background: transparent;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.gallery-grid .gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-s);
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
.gallery-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: #e0d8cc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0a898;
  font-size: .75rem;
  text-align: center;
}

/* ===================================================
   ⑨ 口コミ（エキテン枠）
=================================================== */
#reviews {
  padding: 72px 0 80px;
  background: transparent;
}
.reviews-placeholder {
  border: 2px dashed #d0c8b8;
  border-radius: var(--radius-l);
  padding: 48px 24px;
  text-align: center;
  color: #c0b8a8;
  font-size: .85rem;
  line-height: 1.9;
  background: var(--ivory);
}
.btn-ekiten {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  background: #fff;
  color: #1a1a1a;
  font-size: .9rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  pointer-events: auto;
  touch-action: manipulation;
  transition: opacity .2s, box-shadow .2s;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  text-decoration: none;
}
.btn-ekiten:hover {
  opacity: .85;
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
}
.ekiten-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

/* ===================================================
   ⑩ プロフィール
=================================================== */
#profile {
  padding: 72px 0 80px;
  background: transparent;
}
.profile-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.profile-img-wrap {
  width: 100%;
  max-width: 200px;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 6px 24px rgba(184,147,90,.3);
  flex-shrink: 0;
  margin: 0 auto;
}
.profile-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}
.profile-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--ivory-d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-l);
  font-size: .75rem;
}
.profile-greeting {
  font-size: 1.13rem;
  line-height: 2.1;
  color: var(--text-m);
}
.profile-greeting p { margin-bottom: 8px; line-height: 1.6; }
.profile-data { margin-top: 28px; }
.profile-data h4 {
  font-family: 'Hiragino Mincho ProN','Yu Mincho',serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--ivory-d);
  padding-bottom: 6px;
  margin-bottom: 12px;
}
.profile-data ul { padding: 0; }
.profile-data li {
  font-size: 1.08rem;
  color: var(--text-m);
  padding: 6px 0;
  border-bottom: 1px dotted #e0d8cc;
  line-height: 1.7;
}
.profile-data li::before {
  content: '▸ ';
  color: var(--gold);
}
.badge-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  border: 1px solid rgba(59,99,81,.2);
  font-size: .95rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .04em;
}

/* ===================================================
   ⑪ インフォメーション（営業時間・ご予約）
=================================================== */
#info {
  padding: 40px 0 80px;
  background: transparent;
  position: relative;
}
.info-spacer {
  height: 48px;
}
#info .section-title {
  font-family: 'Hiragino Mincho ProN','Yu Mincho',serif;
  color: var(--navy);
}
#info .section-title::after { background: var(--gold); }
#info .section-title span { color: var(--green); }
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.info-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(212,170,112,.2);
  border-radius: var(--radius-l);
  padding: 24px 20px;
}
.info-card h3 {
  font-family: Georgia, serif;
  font-size: .78rem;
  color: var(--gold-l);
  letter-spacing: .16em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,.07); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 10px 4px;
  font-size: .88rem;
  color: rgba(255,255,255,.82);
  vertical-align: top;
}
.hours-table td:first-child {
  width: 130px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.hours-note {
  margin-top: 14px;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
}
.reserve-steps { padding: 0; }
.reserve-steps li {
  font-size: .88rem;
  color: rgba(255,255,255,.80);
  padding: 8px 0;
  line-height: 1.8;
  border-bottom: 1px dotted rgba(255,255,255,.08);
}
.reserve-steps li:last-child { border-bottom: none; }
.reserve-steps li::before {
  content: attr(data-step) '. ';
  color: var(--gold-l);
  font-weight: 700;
}

/* ===================================================
   ブログ
=================================================== */
#blog {
  padding: 72px 0 80px;
  background: transparent;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}
.blog-card {
  background: rgba(250,247,242,.92);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.blog-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--ivory-d), #ddd5c0);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-icon {
  font-size: 2.5rem;
  opacity: .4;
}
.blog-card-body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.blog-card-date {
  font-size: .8rem;
  color: var(--text-l);
  margin: 0;
}
.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.5;
}
.blog-card-excerpt {
  font-size: .88rem;
  color: var(--text-m);
  margin: 0;
  line-height: 1.7;
}
.blog-card--empty {
  opacity: .6;
}
@media (min-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===================================================
   ⑫ アクセス
=================================================== */
#access {
  padding: 72px 0 80px;
  background: transparent;
  position: relative;
}
#access::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 40px;
  background: var(--navy);
  clip-path: ellipse(55% 100% at 50% 0%);
}
.access-address {
  font-size: .92rem;
  color: var(--text-m);
  line-height: 2;
  margin-bottom: 24px;
}
.access-address strong { color: var(--navy); }
.access-card {
  background: #fff;
  border: 1px solid rgba(184,147,90,.3);
  border-radius: var(--radius-l);
  padding: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}
.access-card-label {
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 3px solid var(--gold);
  line-height: 1.3;
}
.access-map-wrap {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}
.access-map-wrap img {
  width: 100%;
  pointer-events: none;
  display: block;
}
.access-map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--ivory-d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-l);
  font-size: .85rem;
  text-align: center;
  padding: 20px;
}
.access-note {
  font-size: .84rem;
  color: var(--text-m);
  line-height: 1.9;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ===================================================
   ⑬ コンバージョン（最下部）
=================================================== */
#cta {
  padding: 88px 0;
  background: linear-gradient(150deg, #2b211a 0%, #3a2c20 60%, #4a3826 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta .section-inner {
  background: transparent;
  box-shadow: none;
  margin: 0;
}
.cta-banners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}
.cta-banners--new {
  gap: 12px;
  align-items: center;
}
.cta-banner-new {
  display: block;
  flex: 1 1 200px;
  max-width: 320px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.28);
  transition: transform .15s;
}
.cta-banner-new img {
  width: 100%;
  height: auto;
  display: block;
}
.cta-banner {
  display: flex;
  flex-direction: column;
  flex: 1 1 220px;
  max-width: 280px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,.28);
  transition: transform .15s, box-shadow .2s;
  pointer-events: auto;
}
.cta-banner--qr {
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.cta-qr-box {
  display: block;
  width: 100%;
  max-width: 180px;
}
.cta-qr-box img {
  width: 100%;
  height: auto;
  display: block;
}
.cta-banner-handle--line {
  color: var(--green) !important;
}
.cta-banner:hover { transform: translateY(-3px); box-shadow: 0 12px 34px rgba(0,0,0,.34); }
.cta-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.cta-banner-handle {
  display: block;
  background: #fff;
  color: #c2185b;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 8px 4px;
  text-align: center;
}
/* 木漏れ日装飾サークル */
#cta::before {
  content: '';
  position: absolute;
  top: -80px; left: -60px;
  width: 260px; height: 260px;
  background: rgba(212,170,112,.06);
  border-radius: 50%;
}
#cta::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -40px;
  width: 180px; height: 180px;
  background: rgba(77,125,103,.08);
  border-radius: 50%;
}
.cta-title {
  font-family: 'Hiragino Mincho ProN','Yu Mincho','游明朝',serif;
  font-size: clamp(1.25rem, 5vw, 1.85rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.65;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.cta-sub {
  font-size: .9rem;
  color: rgba(255,255,255,.60);
  margin-bottom: 36px;
  line-height: 1.9;
  position: relative;
  z-index: 1;
}
.cta-btn-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cta-btn-wrap .btn-line {
  font-size: 1.1rem;
  padding: 18px 40px;
}

/* LINE banners in CTA */
.cta-line-banners {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}
.cta-line-banners > a {
  display: block;
  width: 100%;
  max-width: 320px;
}
.cta-line-banners > a img {
  width: 100%;
  height: auto;
  display: block;
}
.cta-qr {
  width: 160px;
}
.cta-qr img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===================================================
   フッター
=================================================== */
#site-footer {
  background: var(--navy-d);
  padding: 36px 20px;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.38);
  line-height: 2.2;
  padding-bottom: calc(36px + env(safe-area-inset-bottom));
}
#site-footer a {
  color: rgba(255,255,255,.5);
  text-decoration: underline;
}
.footer-logo {
  margin: 0 auto 14px;
  width: 160px;
}

/* ===================================================
   LINE 追従ボタン（右下固定）
=================================================== */
#float-line {
  position: fixed;
  right: 16px;
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 900;
  pointer-events: auto;
  touch-action: manipulation;
}
#float-line a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--line-green);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 10px 10px 8px;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(6,199,85,.45);
  letter-spacing: .04em;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: opacity .2s, transform .2s;
  min-width: 56px;
}
#float-line a:hover  { opacity: .88; transform: translateY(-2px); }
#float-line a:active { opacity: .75; transform: translateY(0); }
#float-line svg { width: 28px; height: 28px; fill: #fff; }

/* ===================================================
   トップへ戻る
=================================================== */
#back-top {
  position: fixed;
  right: 16px;
  bottom: calc(90px + env(safe-area-inset-bottom));
  z-index: 900;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
#back-top.visible { opacity: 1; visibility: visible; }
#back-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(30,48,64,.88);
  border: 1px solid rgba(212,170,112,.35);
  border-radius: 50%;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: opacity .2s;
}
#back-top a:hover { opacity: .8; }
#back-top svg { width: 18px; height: 18px; fill: #fff; }

/* ===================================================
   PC（481px以上）調整
=================================================== */
@media (min-width: 481px) {
  #hero { margin-top: 56px; }
  .mgmt-steps { grid-template-columns: 1fr 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .profile-wrap { flex-direction: row; align-items: flex-start; }
  .profile-img-wrap { margin: 0; }
}

@media (min-width: 760px) {
  body { font-size: 16px; }
  .section-title { font-size: 1.7rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }

  /* トップスライドは画面の4/5幅で中央寄せ */
  .hero-wrapper {
    max-width: 80vw;
    margin: 0 auto;
  }
  /* 本文カードは画面の3/5幅で中央寄せ */
  .section-inner {
    max-width: 60vw;
    margin: 0 auto;
  }
}

/* ===================================================
   森の背景が見えるセクション間ギャップ
=================================================== */
#ptp, #why120, #future, #price, #gallery, #reviews, #profile, #access {
  margin: 0;
  /* 上下に透明な余白を入れて背景が見えるようにする */
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

/* セクション間に森が見えるスペーサー */
#ptp::before,
#why120::before,
#future::before,
#price::before,
#gallery::before,
#reviews::before,
#profile::before,
#access::before {
  content: '';
  display: block;
  height: 32px;
  margin-top: -32px;
  background: transparent;
}

/* ===================================================
   ▼ 2026 改修：背景メリハリ / 区切り / CTA / 未来カード / フッター
=================================================== */

/* --- 修正1：セクション背景のメリハリ（淡い上品な色） --- */
#ptp .section-inner,
#ptp-brand .section-inner {
  background: rgba(246, 238, 223, .93);   /* 淡いベージュ */
}
#management .section-inner,
#future-vision .section-inner {
  background: rgba(230, 239, 233, .94);   /* 淡いグリーン */
}
#access .section-inner {
  background: rgba(246, 238, 223, .93);   /* 淡いベージュ */
}

/* --- 修正2：セクションの区切りを分かりやすく --- */
/* 上下余白をしっかり */
.section-inner {
  padding: 52px 28px;
}
/* タイトル下の区切り線を少し上品に強調 */
.section-title::after {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-l) 100%);
}
/* グリーン背景セクションは区切り線を深いグリーンに */
#management .section-title::after,
#future-vision .section-title::after {
  background: linear-gradient(90deg, var(--green) 0%, var(--green-l) 100%);
}

/* --- 修正3：途中CTAボタン --- */
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 560px;
  margin: 0 auto;
  padding: 24px 14px;
  position: relative;
  z-index: 2;
}
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 88%;
  max-width: 420px;
  padding: 18px 24px;
  border-radius: 50px;
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .03em;
  box-shadow: 0 6px 22px rgba(30, 40, 30, .28);
  transition: transform .15s, box-shadow .2s, opacity .2s;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.btn-cta:hover  { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(30,40,30,.34); }
.btn-cta:active { transform: translateY(0); opacity: .9; }
.btn-cta svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }
.btn-cta--line   { background: var(--green); }   /* 深いグリーン */
.btn-cta--reserve{ background: var(--wine); }    /* ワイン色 */
@media (min-width: 600px) {
  .cta-buttons { flex-direction: row; justify-content: center; }
  .btn-cta { width: auto; min-width: 230px; }
}

/* --- 修正4：未来カードセクション --- */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 8px;
}
.vision-card {
  background: #fff;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.vision-card > img {
  width: 100%;
  height: auto;
  display: block;
}
.vision-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-pale) 0%, #ece3d0 100%);
  position: relative;
}
.vision-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vision-photo.is-empty::after {
  content: '写真準備中';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(120, 95, 55, .45);
  font-size: .9rem;
  letter-spacing: .1em;
}
.vision-caption {
  padding: 18px 16px;
  text-align: center;
  font-family: 'Hiragino Mincho ProN','Yu Mincho','游明朝','Noto Serif JP',serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}
@media (min-width: 600px) {
  .vision-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
}
@media (min-width: 1100px) {
  .vision-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- 修正5：PTP図・5サイクル図を強調（余白・角丸・薄影） --- */
.mgmt-img {
  width: 100%;
  margin: 0 auto 28px;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.mgmt-img img {
  width: 100%;
  height: auto;
  display: block;
}
#management .section-inner { padding-top: 60px; padding-bottom: 60px; }

/* --- 修正6：フッター Information リンク --- */
.footer-info {
  margin: 28px auto 4px;
  max-width: 560px;
}
.footer-info-title {
  font-size: .72rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-info ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  line-height: 1.6;
}
.footer-info ul a {
  font-size: .76rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding-bottom: 1px;
}
.footer-info ul a:hover { color: rgba(255,255,255,.85); }

/* 未来セクションにも森ギャップを適用 */
#future-vision::before {
  content: '';
  display: block;
  height: 32px;
  margin-top: -32px;
  background: transparent;
}

/* ===================================================
   固定ページ（FAQ・各ポリシー等）
=================================================== */
.legal-main { padding: 36px 0 72px; }
.legal-inner {
  background: rgba(255, 255, 255, .95);
  max-width: 760px;
  margin: 0 14px;
  padding: 40px 26px 46px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
@media (min-width: 800px) {
  .legal-inner { margin: 0 auto; }
}
.legal-eyebrow {
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.legal-inner h1 {
  font-family: 'Hiragino Mincho ProN','Yu Mincho','游明朝','Noto Serif JP',serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  padding-bottom: 14px;
  margin-bottom: 22px;
  position: relative;
}
.legal-inner h1::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 56px; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-l) 100%);
}
.legal-lead {
  color: var(--text-m);
  line-height: 1.95;
  margin-bottom: 26px;
}
.legal-section { margin-top: 30px; }
.legal-section h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  border-left: 4px solid var(--gold);
  padding-left: 12px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.legal-section p {
  color: var(--text-m);
  line-height: 1.95;
  margin-bottom: 12px;
}
.legal-section ul { margin: 0 0 12px; padding-left: 1.1em; }
.legal-section ul li {
  list-style: disc;
  color: var(--text-m);
  line-height: 1.9;
  margin-bottom: 4px;
}
/* FAQ */
.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(184, 147, 90, .22);
}
.faq-item:first-child { padding-top: 4px; }
.faq-q {
  display: flex;
  gap: 10px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
}
.faq-q::before {
  content: 'Q';
  flex-shrink: 0;
  color: #fff;
  background: var(--gold);
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
}
.faq-a {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  color: var(--text-m);
  line-height: 1.95;
}
.faq-a::before {
  content: 'A';
  flex-shrink: 0;
  color: #fff;
  background: var(--green);
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
}
.legal-meta { margin-top: 26px; font-size: .8rem; color: var(--text-l); }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 34px;
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}
.legal-back:hover { text-decoration: underline; }

/* 電話に関する注意書き */
.tel-note {
  margin: 14px 0 4px;
  padding: 14px 16px;
  background: rgba(122, 48, 64, .06);
  border-left: 3px solid var(--wine);
  border-radius: 8px;
}
.tel-note p {
  font-size: .82rem;
  color: var(--text-m);
  line-height: 1.85;
  margin: 0;
}
.tel-note p + p { margin-top: 8px; }

/* 未来セクション：4枚を1枚にまとめた画像 */
.vision-single {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.vision-single img { width: 100%; height: auto; display: block; }

/* ===================================================
   スライドショー直下の実績メッセージ
=================================================== */
#intro-message {
  padding: 44px 0 8px;
}
.intro-message-inner {
  max-width: 720px;
  margin: 0 14px;
  padding: 36px 28px 36px 36px;
  background: rgba(250, 247, 242, .97);
  border-radius: 16px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(184, 147, 90, 0.2);
  text-align: center;
  position: relative;
  border-left: 5px solid var(--gold);
}
.intro-message-lead {
  font-family: 'Hiragino Mincho ProN','Yu Mincho','游明朝','Noto Serif JP',serif;
  font-size: clamp(1.125rem, 4.5vw, 1.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: .02em;
  margin-bottom: 20px;
}
.intro-message-lead strong {
  color: var(--wine);
  font-size: 1.2em;
}
.intro-message-body {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: var(--text-m);
  line-height: 1.8;
  margin-bottom: 14px;
}
.intro-message-body:last-child { margin-bottom: 0; }
.intro-message-body strong {
  color: var(--green);
  font-weight: 700;
}
@media (min-width: 760px) {
  .intro-message-inner {
    margin: 0 auto;
    max-width: 60vw;
    padding: 48px 7% 48px calc(7% + 4px);
  }
}

/* ===== モバイル（〜767px）フォントサイズ明示 ===== */
@media (max-width: 767px) {
  h1 { font-size: clamp(1.75rem, 7.5vw, 2rem); line-height: 1.3; }
  h2 { font-size: clamp(1.25rem, 5.5vw, 1.5rem); line-height: 1.3; }
  .section-title { font-size: clamp(1.2rem, 5.2vw, 1.45rem); }
  p, .intro-message-body { font-size: 0.9375rem; line-height: 1.6; }
  strong { font-size: 1rem; }
  .legal-lead, small, .legal-meta { font-size: 0.75rem; }
}
/* ===== デスクトップ（768px〜）フォントサイズ明示 ===== */
@media (min-width: 768px) {
  h1 { font-size: clamp(3rem, 4vw, 3.5rem); line-height: 1.3; }
  h2 { font-size: clamp(2rem, 2.5vw, 2.25rem); line-height: 1.3; }
  .section-title { font-size: clamp(1.8rem, 2.2vw, 2.1rem); }
  p { font-size: 1rem; line-height: 1.6; }
  strong { font-size: clamp(1.125rem, 1.4vw, 1.25rem); }
  .legal-lead, small, .legal-meta { font-size: 0.875rem; }
}

/* ===================================================
   フォントサイズ統一（全ページ）
=================================================== */

/* グローバル h1 */
h1 {
  font-family: 'Hiragino Mincho ProN','Yu Mincho','游明朝','Noto Serif JP',serif;
  font-size: clamp(1.75rem, 6vw, 3.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 1.2em;
}

/* グローバル h2 */
h2 {
  font-family: 'Hiragino Mincho ProN','Yu Mincho','游明朝','Noto Serif JP',serif;
  font-size: clamp(1.25rem, 4.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 1em;
  margin-top: 0.8em;
}

/* 本文段落の基本 */
p {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  line-height: 1.6;
  color: var(--text-m);
  margin-bottom: 1.2em;
}

/* 強調テキスト */
strong, .strong {
  font-weight: 700;
  font-size: clamp(1rem, 2.8vw, 1.25rem);
  color: var(--wine);
}

/* 小さい説明文（法律ページなど） */
.legal-lead, .legal-meta, .small-text {
  font-size: clamp(0.75rem, 2.2vw, 0.875rem);
}

/* ===================================================
   モバイル版フォントサイズ最適化（タブレット以下）
=================================================== */
@media (max-width: 767px) {
  /* h1：ファーストビュー */
  h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  /* h2：セクションタイトル */
  h2 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 0.8em;
    margin-top: 0.6em;
  }

  /* h3：サブタイトル */
  h3 {
    font-size: 18px;
    line-height: 1.3;
  }

  /* 本文：段落 */
  p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 1em;
  }

  /* 強調テキスト */
  strong, .strong {
    font-size: 16px;
    font-weight: 700;
  }

  /* 小さい説明文 */
  .legal-lead, .legal-meta, .small-text {
    font-size: 12px;
  }

  /* セクション内部の余白 */
  .section-inner {
    padding: 32px 20px;
    margin: 0 8px;
  }

  /* セクションタイトル */
  .section-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }

  /* 実績メッセージ */
  .intro-message-inner {
    padding: 32px 20px;
    margin: 0 12px;
  }

  .intro-message-lead {
    font-size: 1.1rem;
    margin-bottom: 18px;
  }

  .intro-message-lead strong {
    font-size: 1.15em;
  }

  .intro-message-body {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 14px;
  }
}


/* ===================================================
   画像上フリガナオーバーレイ
=================================================== */
.img-furigana-wrap { position: relative; }
.img-furigana {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 12px;
  background: rgba(30, 48, 64, 0.62);
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.65rem, 2vw, 0.8rem);
  letter-spacing: 0.08em;
  text-align: center;
  font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  pointer-events: none;
}
.img-furigana--ptp {
  background: rgba(30, 48, 64, 0.55);
  font-size: clamp(0.6rem, 1.8vw, 0.75rem);
}

/* span内カタカナ（英語ラベルの下） */
.span-kana {
  display: block;
  font-size: .65rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .12em;
  margin-top: 2px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
}

.cta-banner-block {
  padding: 16px 14px;
  text-align: center;
}
.cta-banner-img-link {
  display: block;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.22);
  transition: transform .15s, box-shadow .2s;
}
.cta-banner-img-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,.3);
}
.cta-banner-img-link img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .cta-banner-img-link {
    max-width: 720px;
  }
}

/* ===== 料金セクション ===== */
#price { padding: 48px 0 40px; }

.price-card {
  background: #fff;
  border: 1.5px solid var(--gold-pale);
  border-radius: 16px;
  padding: 28px 20px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  text-align: center;
}

.price-tagline {
  font-size: clamp(.88rem, 2.4vw, 1rem);
  color: var(--text-m);
  line-height: 1.7;
  margin-bottom: 24px;
}

.price-amount-wrap {
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-amount {
  font-size: clamp(2.4rem, 7vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: .02em;
  line-height: 1;
}

.price-unit {
  font-size: clamp(.95rem, 2.6vw, 1.1rem);
  color: var(--text-m);
}

.price-includes {
  list-style: none;
  text-align: left;
  display: inline-block;
  margin: 0 0 24px;
  padding: 0;
}

.price-includes li {
  padding: 6px 0 6px 1.4em;
  font-size: clamp(.88rem, 2.4vw, .95rem);
  color: var(--text);
  line-height: 1.5;
  position: relative;
}

.price-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.price-note {
  font-size: clamp(.75rem, 2vw, .82rem);
  color: var(--text-l);
  line-height: 1.6;
  margin-bottom: 4px;
}

.price-cta-btn {
  display: block;
  margin: 24px auto 0;
  max-width: 320px;
  background: #06C755;
  color: #fff;
  font-size: clamp(.95rem, 2.6vw, 1.05rem);
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: .04em;
  box-shadow: 0 4px 16px rgba(6,199,85,.35);
  transition: opacity .15s, transform .15s;
}

.price-cta-btn:hover {
  opacity: .88;
  transform: translateY(-1px);
}

.price-cta-sub {
  font-size: clamp(.78rem, 2.1vw, .85rem);
  color: var(--text-l);
  margin-top: 10px;
  margin-bottom: 24px;
}

.price-honest {
  font-size: clamp(.8rem, 2.2vw, .88rem);
  color: var(--text-l);
  line-height: 1.75;
  border-top: 1px solid var(--gold-pale);
  padding-top: 16px;
  text-align: left;
}

/* ===== からだの整え方は、さまざま ===== */
#approach-types { padding: 0; }

/* PC版：画像のみ */
.approach-pc {
  margin: 0 14px;
}
.approach-pc img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .approach-pc {
    max-width: 60vw;
    margin: 24px auto;
  }
}

/* スマホ版：デフォルト非表示、768px未満で表示 */
.approach-sp { display: none; }

@media (max-width: 767px) {
  .approach-pc { display: none; }
  .approach-sp { display: block; background: #F7F8FA; }
}

.approach-heading-bar {
  background: #1A2B4A;
  padding: 20px 16px;
  text-align: center;
}

.approach-heading {
  color: #fff;
  font-size: clamp(1.15rem, 4.5vw, 1.4rem);
  font-weight: 700;
  letter-spacing: .04em;
  margin: 0;
}

/* カード共通 */
.atype-card {
  margin: 12px 14px;
  border-radius: 10px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
}

/* 脇役カード */
.atype-sub { border: 1px solid #e0e4ec; }

/* 主役カード */
.atype-main {
  border: 2px solid #1A2B4A;
  background: #EEF3FA;
  padding: 22px 18px 20px;
  margin: 16px 14px;
}

.atype-brand-label {
  display: inline-block;
  background: #1A2B4A;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.atype-title {
  font-size: clamp(1rem, 3.8vw, 1.15rem);
  font-weight: 700;
  color: #1A2B4A;
  margin: 0 0 12px;
  line-height: 1.4;
}

.atype-note {
  display: block;
  font-size: .75rem;
  font-weight: 400;
  color: #6b7a99;
  margin-top: 2px;
}

.atype-dl { margin: 0; }

.atype-dl dt {
  font-size: .82rem;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 2px;
}

.atype-dl dd {
  margin: 0 0 4px 0;
  font-size: .88rem;
  color: #2c3a5a;
  line-height: 1.7;
}

.atype-dl dd strong { color: #1A2B4A; }

.atype-good    { color: #1A6640; }
.atype-caution { color: #7a6010; }
.atype-for     { color: #1A2B4A; }

/* カード4：特徴リスト */
.atype-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  border-top: 1px solid #c5d0e8;
  border-bottom: 1px solid #c5d0e8;
  padding: 12px 0;
}

.atype-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.atype-features li:last-child { margin-bottom: 0; }

.atype-feat-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.atype-features strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: #1A2B4A;
  margin-bottom: 2px;
}

.atype-features p {
  font-size: .83rem;
  color: #2c3a5a;
  line-height: 1.65;
  margin: 0;
}

/* カード4 CTAボタン */
.atype-cta-btn {
  display: block;
  margin-top: 18px;
  background: #06C755;
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  padding: 14px 16px;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  letter-spacing: .03em;
  box-shadow: 0 4px 14px rgba(6,199,85,.3);
}

/* ===== 守備範囲比較表 ===== */
#comparison { padding: 48px 0 40px; }

.comparison-heading {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: var(--text);
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.comparison-sub {
  font-size: clamp(.82rem, 2.2vw, .92rem);
  color: var(--text-l);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.6;
}

.comparison-swipe-hint {
  display: none;
  text-align: center;
  font-size: .78rem;
  color: var(--gold);
  letter-spacing: .06em;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .comparison-swipe-hint { display: block; }
}

.comparison-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

.comparison-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 640px;
  background: #fff;
  font-size: clamp(.75rem, 1.9vw, .88rem);
}

.comparison-table thead tr {
  background: var(--green-pale);
}

.comparison-table th,
.comparison-table td {
  padding: 10px 8px;
  text-align: center;
  border-bottom: 1px solid #ece8df;
  vertical-align: middle;
  line-height: 1.4;
}

.comparison-table .col-label {
  text-align: left;
  min-width: 130px;
  position: sticky;
  left: 0;
  background: var(--green-pale);
  z-index: 2;
  font-weight: 700;
  font-size: .8rem;
  color: var(--text);
  white-space: nowrap;
}

.comparison-table tbody th[scope="row"] {
  text-align: left;
  position: sticky;
  left: 0;
  background: #faf8f3;
  z-index: 1;
  font-weight: 500;
  font-size: .8rem;
  color: var(--text-m);
  border-right: 2px solid #ece8df;
  padding-left: 10px;
  white-space: normal;
  min-width: 130px;
}

.col-type {
  min-width: 90px;
  font-weight: 700;
  color: var(--text);
  font-size: .78rem;
}

.col-type span {
  display: block;
  font-size: .7rem;
  font-weight: 400;
  color: var(--text-l);
  margin-top: 2px;
}

/* タイプ4（PTP）列ハイライト */
.col-ptp {
  background: rgba(59, 99, 81, 0.1) !important;
  position: relative;
}

.col-ptp-row {
  background: rgba(59, 99, 81, 0.07);
}

.ptp-badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  margin-bottom: 4px;
  letter-spacing: .04em;
}

/* マーク色分け */
.mark { font-weight: 700; font-size: 1em; }
.mark-great .mark { color: var(--green); }
.mark-good  .mark { color: var(--gold); }
.mark-partial .mark { color: #a08060; }
.mark-none .mark { color: #bbb; }
.mark-none { color: #bbb; }

.mark-partial small {
  display: block;
  font-size: .68rem;
  color: var(--text-l);
  font-weight: 400;
}

/* 費用行 */
.row-cost th,
.row-cost td {
  font-size: .78rem;
  background: #f5f0e8;
}

.row-cost .col-ptp-row { background: rgba(59,99,81,.1); }

.cost-label {
  font-size: .78rem;
  color: var(--text-l);
  font-weight: 500;
}

.cost-ptp {
  color: var(--green);
  font-weight: 700;
}

.cost-ptp small {
  display: block;
  font-size: .68rem;
  font-weight: 400;
  color: var(--text-l);
}

/* 凡例 */
.comparison-legend {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: .78rem;
  justify-content: center;
}

.legend-item { font-weight: 600; }
.legend-item.mark-great { color: var(--green); }
.legend-item.mark-good  { color: var(--gold); }
.legend-item.mark-partial { color: #a08060; }
.legend-item.mark-none  { color: #aaa; }

.legend-note {
  width: 100%;
  text-align: center;
  font-size: .74rem;
  color: var(--text-l);
  margin-top: 4px;
  font-style: italic;
}

/* ===================================================
   ヒーロー上部 サービス説明1行
=================================================== */
.hero-service-desc {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(26, 42, 74, 0.78);
  color: #e8f4ee;
  font-size: clamp(.6rem, 1.8vw, .82rem);
  font-weight: 500;
  text-align: center;
  padding: 7px 12px;
  letter-spacing: .04em;
  line-height: 1.5;
}

/* ===================================================
   FV直下 LINE相談ボタン
=================================================== */
/* スライドショー上に浮かせるLINEボタン */
.hero-line-btn {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #06C755;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 6px 24px rgba(0,0,0,.28);
  white-space: nowrap;
  transition: opacity .2s, transform .2s;
}
.hero-line-btn:hover,
.hero-line-btn:active {
  opacity: .88;
  transform: translateX(-50%) translateY(-2px);
}
.hero-line-btn-icon {
  background: #fff;
  color: #06C755;
  font-size: .72rem;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: .02em;
}
.hero-line-btn-text {
  font-size: 1rem;
}
@media (max-width: 480px) {
  .hero-line-btn {
    bottom: 36px;
    padding: 12px 20px;
  }
  .hero-line-btn-text {
    font-size: .88rem;
  }
}

.fv-line-cta {
  text-align: center;
  padding: 16px 16px 8px;
  background: transparent;
}
.fv-line-cta-sub {
  font-size: .82rem;
  color: #666;
  margin-top: 10px;
  letter-spacing: .03em;
}
.fv-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #06C755;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 800;
  padding: 20px 44px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: .06em;
  box-shadow: 0 8px 28px rgba(6,199,85,.5);
  transition: opacity .2s, transform .2s;
  animation: fv-btn-pulse 2.4s ease-in-out infinite;
}
.fv-line-btn::before {
  content: "LINE";
  background: #fff;
  color: #06C755;
  font-size: .72rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.fv-line-btn:hover,
.fv-line-btn:active {
  opacity: .88;
  transform: translateY(-3px);
  animation: none;
}
@keyframes fv-btn-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(6,199,85,.5); }
  50% { box-shadow: 0 8px 36px rgba(6,199,85,.75); transform: translateY(-2px); }
}

/* ===================================================
   セクション節目 テキストLINE CTA
=================================================== */
.cta-line-text-block {
  text-align: center;
  padding: 24px 20px 28px;
  background: transparent;
}
.cta-line-text-block .atype-cta-btn {
  display: inline-block;
  max-width: 360px;
  width: 100%;
}

/* ===================================================
   お客様の声カード
=================================================== */
.voice-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.voice-card {
  background: #fff;
  border: 1px solid rgba(184,147,90,.22);
  border-radius: 16px;
  padding: 24px 20px 18px;
  box-shadow: 0 3px 16px rgba(0,0,0,.07);
  position: relative;
  overflow: visible;
}
.voice-card::before {
  content: '\201C';
  position: absolute;
  top: -14px;
  left: 18px;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: .35;
  font-family: Georgia, serif;
}
.voice-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.voice-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-l) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.voice-header-right {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.voice-star {
  color: #e4a012;
  font-size: .82rem;
  letter-spacing: 2px;
}
.voice-name {
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy, #1a2a4a);
}
.voice-text {
  font-size: .88rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 14px;
  padding-top: 4px;
}
.voice-attr {
  font-size: .73rem;
  color: var(--gold);
  text-align: right;
  font-weight: 600;
  letter-spacing: .04em;
  border-top: 1px solid rgba(184,147,90,.15);
  padding-top: 10px;
  margin-top: 4px;
}
