/* ===========================================
   PGAティーチングプロ 北野 共通スタイル
   =========================================== */

/* ----- リセット ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 140px; overflow-x: hidden; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  color: #1d2d3a;
  background: #fdfcf7;
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  /* 本文：日本語の自然な折返し＋禁則処理（。、）が行頭に来ない） */
  line-break: strict;
  word-break: normal;
  overflow-wrap: normal;
  overflow-x: hidden;
}

/* タイトル・ボタン・テーブル見出しは単語途中で折らない */
h1, h2, h3, h4,
.btn, .nav-list a,
.profile-table th, .access-info dt,
.plan-card h3, .plan-card h4,
.strength-card h3, .voice-card .who-info,
.stat-card .num, .ba-num {
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-break: strict;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s ease; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ----- カラー変数 ----- */
:root {
  --green-deep: #1e5631;
  --green: #2d6a4f;
  --green-dark: #0f3a1f;
  --green-light: #52b788;
  --gold: #d4a437;
  --gold-dark: #a8821e;
  --gold-light: #e6c068;
  --cream: #fdfcf7;
  --offwhite: #fffefb;
  --ink: #1d2d3a;
  --ink-soft: #506372;
  --line-green: #06C755;
  --line: #e6e1d4;
  --shadow: 0 6px 24px rgba(30, 86, 49, 0.08);
  --shadow-lg: 0 18px 50px rgba(30, 86, 49, 0.14);
  /* sticky 配置用のヘッダー/バナー高さ */
  --banner-h: 42px;
  --header-h: 76px;
}

/* ----- フォント ----- */
.font-mincho, h1, h2, h3, h4 {
  font-family: 'Shippori Mincho', 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.font-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* ===========================================
   デモバナー
   =========================================== */
.demo-banner {
  background: #fef3f3;
  border-bottom: 2px solid #c0392b;
  color: #6b2120;
  padding: 10px 16px;
  text-align: center;
  font-size: 13px;
  position: sticky;
  top: 0;
  z-index: 9999;
  line-height: 1.6;
}
.demo-banner a {
  color: #c0392b;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 8px;
}

/* ----- 共通レイアウト ----- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-tight { padding: 60px 0; }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--offwhite); }
.bg-green {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  color: #fff;
}
.bg-green h2, .bg-green h3 { color: #fff; }

/* ----- セクション見出し ----- */
.sec-head {
  text-align: center;
  margin-bottom: 56px;
}
.sec-head .en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.22em;
  margin-bottom: 10px;
}
.sec-head h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.3rem);
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}
.sec-head h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background: var(--gold);
}
.sec-head .lead {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.bg-green .sec-head .en { color: var(--gold-light); }
.bg-green .sec-head .lead { color: rgba(255,255,255,0.86); }

/* ----- スキップリンク ----- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--green-deep);
  color: #fff;
  padding: 12px 20px;
  z-index: 200;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  transition: top .2s;
}
.skip-link:focus { top: 0; outline: 2px solid var(--gold); }

/* ===========================================
   ヘッダー
   =========================================== */
.site-header {
  position: sticky;
  top: var(--banner-h);
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(253, 252, 247, 0.0);
  transition: all .35s ease;
}
.site-header.scrolled {
  background: rgba(253, 252, 247, 0.97);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 10px 0;
  backdrop-filter: blur(8px);
}
.site-header.solid {
  background: rgba(253, 252, 247, 0.97);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  position: sticky;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}
.site-header .site-logo { min-width: 0; flex-shrink: 1; }
.site-header .site-logo .logo-text { min-width: 0; }
.site-header .site-logo .name,
.site-header .site-logo .sub { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Shippori Mincho', serif;
  color: #fff;
  transition: color .35s;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
.site-header.scrolled .site-logo,
.site-header.solid .site-logo {
  color: var(--ink);
  text-shadow: none;
}
.site-logo .logo-mark {
  width: 44px;
  height: 44px;
  border: 2px solid currentColor;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0;
  border-radius: 50%;
}
.site-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.site-logo .logo-text .name {
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.site-logo .logo-text .sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  opacity: 0.85;
}

.nav-list {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-list a {
  color: #fff;
  font-size: 0.93rem;
  letter-spacing: 0.08em;
  position: relative;
  padding: 6px 0;
  transition: color .25s;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.site-header.scrolled .nav-list a,
.site-header.solid .nav-list a {
  color: var(--ink);
  text-shadow: none;
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width .3s;
}
.nav-list a:hover::after,
.nav-list a.is-current::after { width: 100%; }
.nav-list a:hover { color: var(--gold-light); }
.site-header.scrolled .nav-list a:hover,
.site-header.solid .nav-list a:hover { color: var(--gold); }
.nav-list a.is-current { color: var(--gold); }

.nav-cta {
  background: var(--line-green);
  color: #fff !important;
  padding: 10px 22px !important;
  letter-spacing: 0.1em;
  border: 1px solid var(--line-green);
  transition: opacity .25s;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.88rem !important;
}
.nav-cta:hover { opacity: 0.85; }
.nav-cta::after { display: none; }

/* ハンバーガー */
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 110;
}
.hamburger span {
  position: absolute;
  left: 8px;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all .3s;
}
.site-header.scrolled .hamburger span,
.site-header.solid .hamburger span { background: var(--ink); }
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 20px; }
.hamburger span:nth-child(3) { top: 26px; }
.hamburger.is-open span { background: var(--ink); }
.hamburger.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* ===========================================
   フッター
   =========================================== */
.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.88);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  margin-bottom: 50px;
}
.footer-brand .site-logo { color: #fff; margin-bottom: 18px; }
.footer-brand .desc {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.78);
}
.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  letter-spacing: 0.1em;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-col .info-row {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 12px;
  line-height: 1.7;
}
.footer-col .info-row strong {
  display: block;
  color: var(--gold-light);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-demo-note {
  width: 100%;
  margin-top: 14px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  text-align: center;
}

/* ===========================================
   汎用ボタン
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-size: 0.94rem;
  letter-spacing: 0.1em;
  border: 1px solid var(--green-deep);
  background: var(--green-deep);
  color: #fff;
  transition: all .3s;
  position: relative;
  border-radius: 4px;
  font-weight: 500;
}
.btn:hover { background: var(--green); border-color: var(--green); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--green-deep); }
.btn-outline:hover { background: var(--green-deep); color: #fff; }
.btn-gold { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-line {
  background: var(--line-green);
  border-color: var(--line-green);
}
.btn-line:hover { background: #04a847; border-color: #04a847; }
.btn-white {
  background: #fff;
  color: var(--green-deep);
  border-color: #fff;
}
.btn-white:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn .arrow { font-family: 'Cormorant Garamond', serif; font-style: italic; }

/* ===========================================
   下層ページのページタイトル
   =========================================== */
.page-hero {
  position: relative;
  isolation: isolate;
  height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  margin-top: 0;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15, 50, 30, 0.72), rgba(30, 86, 49, 0.85)),
    url('https://images.unsplash.com/photo-1535131749006-b7f58c99034b?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.page-hero .en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
  letter-spacing: 0.3em;
  margin-bottom: 12px;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  letter-spacing: 0.14em;
}
.page-hero .breadcrumb {
  margin-top: 18px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
}
.page-hero .breadcrumb a:hover { color: var(--gold-light); }
.page-hero .breadcrumb .sep { margin: 0 10px; opacity: .5; }

/* ===========================================
   トップ：ヒーロー
   =========================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  margin-top: -130px;
  padding-top: 140px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(10, 35, 22, 0.55), rgba(20, 60, 35, 0.65)),
    url('https://images.unsplash.com/photo-1535131749006-b7f58c99034b?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 24px 90px;
  width: 100%;
}
.hero .lead-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 18px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5.4vw, 3.6rem);
  line-height: 1.45;
  margin-bottom: 20px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.3);
  letter-spacing: 0.05em;
  text-wrap: pretty;
}
.page-hero h1, .sec-head h2, .cta-block h2 { text-wrap: pretty; }
.hero h1 .accent { color: var(--gold-light); }
.hero .sub {
  font-size: 1.05rem;
  line-height: 1.95;
  margin-bottom: 36px;
  max-width: 640px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===========================================
   強み3カード
   =========================================== */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.strength-card {
  background: #fff;
  padding: 44px 30px;
  text-align: center;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.strength-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.strength-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1;
}
.strength-card h3 {
  font-size: 1.18rem;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.strength-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.9;
  text-align: left;
}

/* ===========================================
   悩み（こんな方へ）
   =========================================== */
.trouble-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}
.trouble-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 22px 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.trouble-card p { min-width: 0; word-break: keep-all; overflow-wrap: anywhere; }
.trouble-card .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.trouble-card p {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
}

/* ===========================================
   ビフォーアフター
   =========================================== */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.ba-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.ba-pair > div {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.ba-pair .label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(30, 86, 49, 0.92);
  color: #fff;
  font-size: 0.72rem;
  padding: 4px 12px;
  letter-spacing: 0.15em;
  border-radius: 3px;
}
.ba-pair .label-after { background: var(--gold); }

/* ビフォーアフター データカード */
.ba-stat {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  background: linear-gradient(135deg, #f4f0e6 0%, #ece4cc 100%);
  border-bottom: 3px solid var(--gold);
}
.ba-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.ba-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  font-weight: 600;
}
.ba-num {
  font-family: 'Shippori Mincho', serif;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.ba-side.ba-before .ba-num {
  color: #8a6a3a;
  opacity: 0.75;
}
.ba-side.ba-after .ba-num {
  color: var(--green-dark);
}
.ba-unit {
  font-size: 0.72rem;
  color: var(--ink-soft);
  font-style: normal;
  letter-spacing: 0.1em;
}
.ba-delta {
  display: inline-block;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: var(--gold);
  padding: 2px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}
.ba-arrow {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
}
@media (max-width: 480px) {
  .ba-stat { padding: 22px 10px; gap: 6px; }
  .ba-num { font-size: 1.7rem; }
  .ba-label { font-size: 0.68rem; letter-spacing: 0.12em; }
  .ba-unit, .ba-delta { font-size: 0.7rem; }
  .ba-arrow { font-size: 1.1rem; }
}
.ba-card .body {
  padding: 22px 24px;
}
.ba-card .body h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.ba-card .body p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.8;
}
.ba-card .meta {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 10px;
  letter-spacing: 0.1em;
}

/* ===========================================
   プロフィール抜粋
   =========================================== */
.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: center;
}
.profile-photo {
  height: 460px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}
.profile-text h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}
.profile-text .role {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.76rem;
  padding: 4px 14px;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  border-radius: 3px;
}
.profile-text p { color: var(--ink-soft); margin-bottom: 18px; }
.profile-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 0.92rem;
}
.profile-table th, .profile-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.profile-table th {
  width: 32%;
  color: var(--green-deep);
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.profile-table td { color: var(--ink-soft); word-break: keep-all; overflow-wrap: anywhere; }

/* ===========================================
   経歴年表
   =========================================== */
.timeline {
  position: relative;
  padding-left: 30px;
  max-width: 720px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--gold);
}
.timeline-item {
  position: relative;
  padding-bottom: 32px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -27px;
  top: 8px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--cream);
}
.timeline-item .year {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--green-deep);
  font-weight: 600;
  margin-bottom: 4px;
}
.timeline-item h4 { font-size: 1.05rem; margin-bottom: 6px; }
.timeline-item p { font-size: 0.92rem; color: var(--ink-soft); }

/* ===========================================
   料金プラン
   =========================================== */
/* プラングループ（単発／継続） */
.plan-group {
  margin-top: 48px;
}
.plan-group:first-of-type {
  margin-top: 0;
}
.plan-group + .plan-group {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 2px dashed var(--gold);
}
.plan-group-head {
  text-align: center;
  margin-bottom: 32px;
}
.plan-group-title {
  font-size: 1.5rem;
  font-family: 'Shippori Mincho', serif;
  color: var(--green-deep);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.plan-group-title span {
  font-size: 0.78em;
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-left: 6px;
}
.plan-group-desc {
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto;
}
.plan-group-continue .plan-group-title {
  color: var(--gold-dark, #a8821e);
}

/* 継続プランの「お得」表示 */
.plan-savings {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin: -4px 0 4px;
  text-decoration: line-through;
  line-height: 1.7;
}
.plan-savings span {
  display: inline-block;
  margin-left: 6px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  padding: 2px 9px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* h4を h3 と同じスタイルに（プラングループ内） */
.plan-group .plan-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.plan-group-continue .plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 920px;
  margin: 0 auto;
}
.plan-card {
  background: #fff;
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
  transition: all .3s;
}
.plan-card.featured {
  border: 2px solid var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.plan-card.featured::before {
  content: 'おすすめ';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  padding: 5px 18px;
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  border-radius: 30px;
}
.plan-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.plan-card.featured:hover { transform: translateY(-10px); }
.plan-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}
.plan-card .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--green-deep);
  font-weight: 600;
  margin: 10px 0;
}
.plan-card .price .yen { font-size: 1.1rem; margin-right: 4px; }
.plan-card .price .unit { font-size: 0.82rem; color: var(--ink-soft); margin-left: 6px; font-style: italic; }
.plan-card .duration {
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.plan-card ul {
  text-align: left;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.plan-card ul li {
  font-size: 0.84rem;
  color: var(--ink-soft);
  padding: 6px 0 6px 22px;
  position: relative;
  line-height: 1.6;
}
.plan-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ===========================================
   流れ
   =========================================== */
.flow-list {
  display: grid;
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}
.flow-item {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 28px;
  background: #fff;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
  border-radius: 4px;
}
.flow-item .step-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
}
.flow-item h4 { font-size: 1.1rem; margin-bottom: 6px; }
.flow-item p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.8; }

/* ===========================================
   声カード
   =========================================== */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.voice-card {
  background: #fff;
  padding: 32px 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--green-light);
  position: relative;
}
.voice-card::before {
  content: '“';
  position: absolute;
  top: 10px;
  right: 22px;
  font-family: serif;
  font-size: 5rem;
  color: var(--gold-light);
  opacity: 0.4;
  line-height: 1;
}
.voice-card .who {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  min-width: 0;
}
.voice-card .who-info { min-width: 0; flex: 1; }
.voice-card .avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 1.1rem;
}
.voice-card .who-info .name {
  font-weight: 600;
  font-size: 0.98rem;
}
.voice-card .who-info .meta {
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.voice-card .score {
  display: inline-block;
  background: rgba(212, 164, 55, 0.1);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.voice-card h4 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  line-height: 1.6;
}
.voice-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.95;
}

/* ===========================================
   実績数字
   =========================================== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  text-align: center;
}
.stat-card {
  padding: 30px 18px;
}
.stat-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold-light);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
  white-space: nowrap;
}
.stat-card .label { word-break: keep-all; overflow-wrap: anywhere; }
.stat-card .num .small { font-size: 1.4rem; }
.stat-card .label {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
}

/* ===========================================
   フォーム
   =========================================== */
.contact-form {
  display: grid;
  gap: 22px;
  max-width: 680px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  gap: 8px;
}
.form-row label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.form-row label .req {
  color: #c0392b;
  font-size: 0.78rem;
  margin-left: 6px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--ink);
  transition: border .25s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 164, 55, 0.15);
}
.form-row textarea { resize: vertical; min-height: 140px; }
.form-disabled-note {
  background: #fef3f3;
  border: 1px solid #f0c4c4;
  color: #6b2120;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 0.86rem;
  text-align: center;
  margin-top: 8px;
}
.form-submit {
  text-align: center;
  margin-top: 12px;
}

/* ===========================================
   FAQ
   =========================================== */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 26px 20px 64px;
  position: relative;
  font-weight: 600;
  font-size: 0.98rem;
  transition: background .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: 'Q';
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: var(--green-deep);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
}
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { background: var(--cream); }
.faq-item .a {
  padding: 0 26px 22px 64px;
  position: relative;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.95;
}
.faq-item .a::before {
  content: 'A';
  position: absolute;
  left: 22px;
  top: -2px;
  width: 30px;
  height: 30px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
}

/* ===========================================
   アクセス
   =========================================== */
.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: stretch;
}
.access-info {
  background: #fff;
  padding: 36px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.access-info h3 {
  font-size: 1.3rem;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.access-info dl {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 14px 20px;
  font-size: 0.92rem;
}
.access-info dt { white-space: nowrap; }
.access-info dd { word-break: keep-all; overflow-wrap: anywhere; }
.access-info dt {
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.06em;
}
.access-info dd { color: var(--ink-soft); }
.access-map {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  min-height: 320px;
  text-align: center;
  padding: 20px;
}
.access-map small {
  display: block;
  margin-top: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  font-style: normal;
  font-family: inherit;
  opacity: 0.85;
}

/* ===========================================
   CTAブロック
   =========================================== */
.cta-block {
  text-align: center;
}
.cta-block h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  margin-bottom: 16px;
}
.cta-block p {
  margin-bottom: 32px;
  color: rgba(255,255,255,0.9);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================================
   画像読み込み失敗フォールバック
   =========================================== */
.img-error {
  position: relative;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-deep) 100%);
  min-height: 200px;
}
.img-error::after {
  content: 'IMAGE';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.85);
}

/* fade-in */
[data-fade] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
[data-fade].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================
   レスポンシブ
   =========================================== */
@media (max-width: 1024px) and (min-width: 769px) {
  .nav-list { gap: 22px; }
  .nav-list a { font-size: 0.86rem; letter-spacing: 0.05em; }
  .nav-cta { padding: 9px 16px !important; }
  .site-logo .logo-text .name { font-size: 1.05rem; letter-spacing: 0.08em; }
}

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 36px; }
  .strength-grid, .ba-grid { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .plan-grid,
  .plan-group-continue .plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .profile-grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .profile-photo { height: 380px; }
  .access-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 768px) {
  :root { --banner-h: 50px; }
  .section { padding: 70px 0; }
  .hamburger { display: block; }
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 36px;
    gap: 22px;
    transition: right .35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  }
  .nav-list.is-open { right: 0; }
  .nav-list a {
    color: var(--ink) !important;
    font-size: 1.05rem;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    text-shadow: none;
  }
  .nav-list .nav-cta {
    margin-top: 14px;
    width: 100%;
    text-align: center;
    color: #fff !important;
  }
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .page-hero { height: 280px; }
  .hero { min-height: 80vh; padding-top: 100px; }
  .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .stat-card { padding: 20px 10px; }
  .stat-card .num { font-size: 2.2rem; }
  .voice-grid { grid-template-columns: minmax(0, 1fr); }
  .trouble-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 480px) {
  :root { --banner-h: 64px; }
  body { font-size: 15px; }
  .container, .container-narrow { padding: 0 18px; }
  .section { padding: 56px 0; }
  .sec-head { margin-bottom: 40px; }
  .site-logo .logo-text .name { font-size: 0.98rem; }
  .site-logo .logo-text .sub { font-size: 0.62rem; }
  .site-logo .logo-mark { width: 36px; height: 36px; font-size: 0.9rem; }
  .page-hero { height: 240px; }
  .page-hero h1 { letter-spacing: 0.06em; }
  .plan-grid,
  .plan-group-continue .plan-grid { grid-template-columns: minmax(0, 1fr); }
  .demo-banner { font-size: 11.5px; padding: 8px 12px; line-height: 1.5; }
  .demo-banner a { display: inline-block; margin-left: 0; margin-top: 4px; }
  .hero h1 { font-size: 1.7rem; line-height: 1.55; }
  .flow-item { grid-template-columns: 50px minmax(0, 1fr); padding: 18px 20px; }
  .flow-item .step-num { font-size: 1.6rem; }
  .footer-bottom { font-size: 0.72rem; word-break: break-word; }
}

.nowrap { white-space: nowrap; }
