/* =========================================================
   自然派四柱推命運営部  —  Stylesheet
   グリーン基調 / 和風モダン
   ========================================================= */

/* ---------- カラーパレット & 変数 ---------- */
:root {
  --green-900: #1c3a2b;
  --green-700: #2f6b4f;
  --green-500: #4f9d76;
  --green-300: #9fc9b1;
  --green-100: #e7f1ea;
  --gold:      #b89968;
  --ink:       #2a2f2c;
  --ink-soft:  #5b635e;
  --paper:     #fbfdfb;
  --paper-2:   #f3f7f4;
  --line:      #d9e4dd;

  --serif: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans:  "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;

  --container: 1080px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(28, 58, 43, 0.08);
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
}
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; transition: color .2s, opacity .2s; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.4; margin: 0; }

/* ---------- スクロール出現アニメーション ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease, transform 1s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* 続けて並ぶ要素は少しずつ遅らせて、波のように現れる */
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.delay-3 { transition-delay: .36s; }

/* ヒーロー内テキストの登場アニメーション */
.hero-anim { opacity: 0; transform: translateY(20px); animation: heroIn 1s ease forwards; }
.hero-anim.a1 { animation-delay: .2s; }
.hero-anim.a2 { animation-delay: .5s; }
.hero-anim.a3 { animation-delay: .8s; }
.hero-anim.a4 { animation-delay: 1.1s; }
@keyframes heroIn {
  to { opacity: 1; transform: none; }
}
/* 動きを減らす設定の人には出さない */
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-anim { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ---------- 共通レイアウト ---------- */
.container { width: 90%; max-width: var(--container); margin-inline: auto; }

.section { padding: 88px 0; }
.section:nth-of-type(even) { background: var(--paper-2); }

.section-head { text-align: center; margin-bottom: 48px; }
.section-label {
  font-family: var(--serif);
  color: var(--green-500);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin: 0 0 8px;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--green-900);
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 48px; height: 2px;
  background: var(--gold);
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  color: var(--green-900);
  margin: 0 0 1rem;
}

.section-foot {
  text-align: center;
  margin-top: 36px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.intro-body { max-width: 720px; margin: 0 auto; text-align: center; }
.intro-body p { color: var(--ink-soft); }

/* ---------- ボタン ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--green-700);
  color: #fff;
  box-shadow: 0 8px 20px rgba(47, 107, 79, 0.25);
}
.btn-primary:hover { background: var(--green-900); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(2px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.28); }
.btn-outline {
  background: transparent;
  color: var(--green-700);
  border: 1px solid var(--green-500);
}
.btn-outline:hover { background: var(--green-700); color: #fff; }
.btn-lg { padding: 18px 48px; font-size: 1.05rem; }

/* =========================================================
   ヘッダー
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 253, 251, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: 92%;
  max-width: 1240px;
  margin-inline: auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-mark { font-size: 1.4rem; }
.logo-text {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-900);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.logo-text small { font-size: 0.7em; font-weight: 500; color: var(--ink-soft); }

.global-nav ul { display: flex; align-items: center; gap: 16px; }
.global-nav a {
  font-size: 0.9rem;
  color: var(--ink);
  position: relative;
  white-space: nowrap;
}
.global-nav a:not(.nav-cta):hover { color: var(--green-700); }
.global-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--green-500);
  transition: width .25s;
}
.global-nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--green-700);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--green-900); }
.global-nav a.is-current:not(.nav-cta) { color: var(--green-700); }
.global-nav a.is-current:not(.nav-cta)::after { width: 100%; }

/* ハンバーガー */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--green-900);
  transition: transform .3s, opacity .3s;
  margin-inline: auto;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   ヒーロー
   ========================================================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(160deg, var(--green-900) 0%, var(--green-700) 55%, var(--green-500) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0 12%, transparent 12.5%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.06) 0 18%, transparent 18.5%);
  background-size: 60% 60%, 80% 80%;
  opacity: 0.7;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,58,43,0.1), rgba(28,58,43,0.35));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 760px;
  padding: 40px 0;
}
.hero-sub {
  font-family: var(--serif);
  letter-spacing: 0.35em;
  font-size: 0.95rem;
  margin: 0 0 20px;
  opacity: 0.9;
}
.hero-title {
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.45;
  margin: 0 0 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-lead {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  line-height: 2;
  margin: 0 0 36px;
  opacity: 0.95;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
/* ヒーローのメインボタン（枠なし・ぷっくり立体グリーン） */
.btn-hero {
  background: linear-gradient(180deg, var(--green-700) 0%, var(--green-900) 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 6px rgba(0, 0, 0, 0.18);
}
.btn-hero:hover {
  background: linear-gradient(180deg, var(--green-500) 0%, var(--green-700) 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 6px rgba(0, 0, 0, 0.18);
}
/* 控えめなサブ導線（講座・鑑定） */
.hero-sub-actions {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.hero-textlink {
  color: #fff;
  font-size: 0.92rem;
  opacity: 0.9;
  position: relative;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  transition: opacity .2s, border-color .2s;
}
.hero-textlink:hover { opacity: 1; border-color: #fff; }

/* =========================================================
   下層ページ共通バナー
   ========================================================= */
.page-hero {
  background: linear-gradient(160deg, var(--green-900), var(--green-700));
  color: #fff;
  text-align: center;
  padding: 60px 0;
}
.page-hero-en {
  font-family: var(--serif);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--green-300);
  margin: 0 0 8px;
}
.page-hero-title { font-size: clamp(1.6rem, 4vw, 2.2rem); margin: 0; }
/* 下層バナーの文字をふわっと登場 */
.page-hero .page-hero-en { opacity: 0; transform: translateY(16px); animation: heroIn .9s ease .15s forwards; }
.page-hero .page-hero-title { opacity: 0; transform: translateY(16px); animation: heroIn .9s ease .35s forwards; }
@media (prefers-reduced-motion: reduce) {
  .page-hero .page-hero-en,
  .page-hero .page-hero-title { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* =========================================================
   コンセプト
   ========================================================= */
.concept-body { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.concept-body p { color: var(--ink-soft); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(28,58,43,0.12);
}
.feature-icon { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.15rem; color: var(--green-900); margin-bottom: 10px; }
.feature-card p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* =========================================================
   差し込み用プレースホルダー（共通）
   ========================================================= */
.fill-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-700);
  letter-spacing: 0.05em;
  margin: 0 0 8px;
}
.fill-label::before { content: "▼ "; color: var(--gold); }
.fill-box {
  border: 1.5px dashed var(--green-300);
  border-radius: 10px;
  background: rgba(231, 241, 234, 0.4);
  padding: 18px 20px;
  margin: 0 0 24px;
}
.fill-box p { margin: 0 0 0.6em; color: var(--ink-soft); }
.fill-box p:last-child { margin-bottom: 0; }

/* =========================================================
   講師プロフィール
   ========================================================= */
.profile-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.profile-photo { margin: 0; }
.profile-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}
.photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1.5px dashed var(--green-300);
  border-radius: var(--radius);
  background: rgba(231, 241, 234, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--green-500);
  font-family: var(--serif);
  font-size: 1.05rem;
}
.photo-placeholder small { font-size: 0.75rem; opacity: 0.8; }
.profile-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--green-900);
  margin: 0 0 6px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.profile-yomi { font-size: 0.85rem; color: var(--ink-soft); letter-spacing: 0.08em; }
.profile-role {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-700);
  margin: 0 0 6px;
}
.profile-catch {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--gold);
  margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.profile-greeting p { color: var(--ink-soft); margin: 0 0 1em; }
.profile-subhead {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--green-900);
  margin: 32px 0 14px;
  padding-left: 14px;
  border-left: 4px solid var(--green-500);
}
.profile-history-text p { color: var(--ink-soft); margin: 0 0 1em; }
.profile-history-text p:last-child { margin-bottom: 0; }
.profile-books { margin: 0; }
.profile-books li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.profile-books li::before {
  content: "📖";
  position: absolute;
  left: 0; top: 0;
  font-size: 0.8rem;
}
.profile-note { font-size: 0.82rem; color: var(--ink-soft); margin: 6px 0 0; }
.profile-media { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* =========================================================
   よくある質問（FAQ）
   ========================================================= */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { margin-bottom: 28px; }
.faq-q {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--green-900);
  font-weight: 600;
  margin: 0 0 10px;
  padding-left: 30px;
  position: relative;
}
.faq-q::before {
  content: "Q";
  position: absolute;
  left: 0; top: -2px;
  width: 22px; height: 22px;
  background: var(--green-700);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* FAQ回答 */
.faq-a {
  position: relative;
  padding-left: 30px;
}
.faq-a::before {
  content: "A";
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  background: var(--gold);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-a p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.faq-a a { color: var(--green-700); border-bottom: 1px solid var(--green-300); padding-bottom: 1px; }
.faq-a a:hover { color: var(--green-900); }

/* FAQ下の問い合わせ */
.faq-contact {
  max-width: 760px;
  margin: 48px auto 0;
  text-align: center;
}
.faq-contact p { color: var(--ink-soft); margin: 0 0 16px; }

/* =========================================================
   講座情報（アコーディオン・リスト）
   ========================================================= */
/* はじめての方へ ガイドボックス */
.course-guide {
  max-width: 760px;
  margin: 0 auto 28px;
  background: var(--green-100);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
}
.course-guide-title {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--green-900);
  font-size: 1.05rem;
  margin: 0 0 8px;
}
.course-guide p:last-child { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.course-guide strong { color: var(--green-700); }
.course-list-note {
  max-width: 760px;
  margin: 0 auto 14px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.course-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.course-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green-500);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.course-summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  transition: background .2s;
}
.course-summary::-webkit-details-marker { display: none; }
.course-summary:hover { background: var(--green-100); }
.course-badge {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  flex: 0 0 auto;
}
.course-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-900);
  flex: 1 1 auto;
}
.acc-icon { flex: 0 0 auto; width: 18px; height: 18px; position: relative; }
.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  background: var(--green-700);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.acc-icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.acc-icon::after  { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.course-acc[open] .acc-icon::after { opacity: 0; transform: translateX(-50%) scaleY(0); }

.course-acc-body {
  padding: 4px 24px 28px;
  border-top: 1px solid var(--line);
}
.course-desc { color: var(--ink-soft); font-size: 0.95rem; margin: 18px 0 14px; }
/* この講座で身につくこと */
.course-goal {
  position: relative;
  background: var(--paper-2);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px 12px 38px;
  margin: 0 0 20px;
  font-size: 0.92rem;
  color: var(--green-900);
}
.course-goal::before {
  content: "✓";
  position: absolute;
  left: 14px; top: 12px;
  color: var(--green-500);
  font-weight: 700;
}
.course-meta {
  margin: 0 0 22px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
/* 料金の見せ方 */
.price {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-900);
}
.price-tax { font-size: 0.78rem; color: var(--ink-soft); margin-left: 2px; }
.price-prep { font-size: 0.88rem; color: var(--gold); font-weight: 700; }
/* 講座カードの申込ボタンは幅いっぱいで目立たせる */
.course-btn { display: block; text-align: center; margin-top: 6px; }
.course-meta div { display: flex; gap: 16px; margin-bottom: 6px; }
.course-meta dt {
  flex: 0 0 48px;
  font-weight: 700;
  color: var(--green-700);
  font-size: 0.85rem;
}
.course-meta dd { margin: 0; font-size: 0.9rem; color: var(--ink-soft); }
.detail-head {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-900);
  margin: 0 0 6px;
}
.detail-note {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  margin-left: 8px;
}
/* カリキュラムの日割り表示 */
.course-curriculum { margin: 0 0 18px; padding: 0; }
.course-curriculum li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.course-curriculum li::before { content: none; }
.cur-day {
  flex: 0 0 52px;
  font-weight: 700;
  color: var(--green-700);
  font-size: 0.8rem;
}
.course-acc-body ul { margin: 0 0 18px; padding: 0; }
.course-acc-body li {
  position: relative;
  padding-left: 16px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.course-acc-body li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--green-500);
}
.detail-book { font-size: 0.9rem; color: var(--ink-soft); margin: 0 0 22px; }

/* 受講後のサポート */
.course-followup {
  max-width: 720px;
  margin: 48px auto 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green-500);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.course-followup h3 {
  font-size: 1.1rem;
  color: var(--green-900);
  margin: 0 0 14px;
}
.course-followup ul { margin: 0; }
.course-followup li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.course-followup li:last-child { margin-bottom: 0; }
.course-followup li::before {
  content: "🍃";
  position: absolute;
  left: 0; top: 0;
  font-size: 0.85rem;
}
.course-followup-note {
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.followup-link { margin-top: 18px; text-align: center; }
.study-note { font-size: 0.82rem; color: var(--ink-soft); }

/* 迷ったら相談ボックス */
.course-contact {
  max-width: 760px;
  margin: 48px auto 0;
  text-align: center;
  background: linear-gradient(160deg, var(--green-700), var(--green-900));
  color: #fff;
  border-radius: var(--radius);
  padding: 44px 32px;
}
.course-contact-lead {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin: 0 0 12px;
}
.course-contact p:not(.course-contact-lead) {
  opacity: 0.92;
  font-size: 0.95rem;
  margin: 0 0 24px;
}
.course-contact .btn-outline {
  border-color: rgba(255,255,255,0.8);
  color: #fff;
}
.course-contact .btn-outline:hover { background: #fff; color: var(--green-700); }
/* 申し込み・相談ボタンを横並び（狭いと縦） */
.contact-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
/* CTA内の補足（公式LINE相談など） */
.contact-sub {
  margin: 18px 0 0 !important;
  font-size: 0.88rem !important;
  opacity: 0.9;
}
.contact-sub a {
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  padding-bottom: 1px;
}
.contact-sub a:hover { border-bottom-color: #fff; }
/* 休止中ボタン */
.btn-disabled {
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.35);
  cursor: default;
}
.btn-disabled:hover { transform: none; }
.contact-note-pause {
  margin: 16px 0 0 !important;
  font-size: 0.9rem !important;
  color: #fff;
  opacity: 0.95;
}

/* =========================================================
   鑑定のご案内
   ========================================================= */
.reading-body { max-width: 720px; margin: 0 auto; text-align: center; }
.reading-body p { color: var(--ink-soft); }
.reading-points {
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
  text-align: left;
}
.reading-points li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
}
.reading-points li::before {
  content: "🍃";
  position: absolute;
  left: 0; top: 0;
}

/* 鑑定の形式 2カード */
.reading-style {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.style-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--green-500);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.style-card h3 { font-size: 1.2rem; color: var(--green-900); margin: 0 0 12px; }
.style-card p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }
.style-link { margin-top: 12px !important; }
.style-link a {
  color: var(--green-700);
  font-weight: 700;
  border-bottom: 1px solid var(--green-300);
  padding-bottom: 2px;
}
.style-link a:hover { color: var(--green-900); }

/* アクセス情報 */
.access-info {
  max-width: 680px;
  margin: 40px auto 0;
  border-top: 1px solid var(--line);
}
.access-info > div {
  display: flex;
  gap: 20px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
}
.access-info dt {
  flex: 0 0 80px;
  font-weight: 700;
  color: var(--green-700);
  font-size: 0.9rem;
}
.access-info dd { margin: 0; color: var(--ink); font-size: 0.95rem; }
/* Googleマップ埋め込み */
.access-map {
  max-width: 760px;
  margin: 36px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}
.access-map iframe { display: block; width: 100%; }

/* 道順ステップ（各ステップに写真つき） */
.route-steps {
  max-width: 680px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.route-steps li {
  padding: 0 0 32px;
  position: relative;
}
/* 番号をつなぐ縦線 */
.route-steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 17px; top: 40px;
  width: 2px; height: calc(100% - 40px);
  background: var(--green-300);
}
.route-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.route-num {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.route-body { padding-top: 4px; }
.route-text { margin: 0; color: var(--ink); font-size: 0.98rem; }
.route-text strong { color: var(--green-700); }
.route-note { margin: 8px 0 0; font-size: 0.82rem; color: var(--gold); }
.route-sub { margin: 6px 0 0; font-size: 0.88rem; color: var(--ink-soft); }
.route-sub a { color: var(--green-700); font-weight: 700; border-bottom: 1px solid var(--green-300); padding-bottom: 1px; }
.route-sub a:hover { color: var(--green-900); }
/* 各ステップの写真（番号の文字幅ぶん下げて揃える） */
.route-photo { margin: 14px 0 0 54px; }
.route-photo img {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.route-photo figcaption {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* 道順写真（3枚） */
.access-media {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.access-photo { margin: 0; }
.access-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.access-photo figcaption {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
}
.media-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1.5px dashed var(--green-300);
  border-radius: var(--radius);
  background: rgba(231, 241, 234, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--green-500);
  font-family: var(--serif);
  font-size: 0.95rem;
}
.media-placeholder small { font-size: 0.78rem; opacity: 0.8; }

/* 鑑定メニュー・料金 */
.price-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.price-card.is-special {
  border: 1px solid var(--gold);
  background: #fdfbf6;
}
.price-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: 999px;
  margin: 0;
  white-space: nowrap;
}
.price-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--green-900);
  margin: 0 0 6px;
}
.price-time { font-size: 0.82rem; color: var(--ink-soft); margin: 0 0 14px; }
.price-amount {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--green-700);
  margin: 0;
}
.price-amount span { font-size: 0.8rem; font-weight: 500; color: var(--ink-soft); }
.price-note {
  max-width: 760px;
  margin: 20px auto 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
}

/* =========================================================
   お知らせ
   ========================================================= */
.news-list { max-width: 760px; margin: 0 auto; }
.news-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 8px;
  border-bottom: 1px solid var(--line);
}
.news-item:first-child { border-top: 1px solid var(--line); }
.news-date {
  font-family: var(--serif);
  color: var(--green-700);
  font-size: 0.9rem;
  flex: 0 0 auto;
}
.news-cat {
  flex: 0 0 auto;
  background: var(--green-700);
  color: #fff;
  font-size: 0.72rem;
  padding: 3px 12px;
  border-radius: 999px;
}
.news-text { margin: 0; font-size: 0.95rem; color: var(--ink); }

/* =========================================================
   SNS発信
   ========================================================= */
.sns { text-align: center; }
.sns-lead { color: var(--ink-soft); margin: 0 auto 28px; max-width: 600px; }
.sns-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.sns-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid var(--green-500);
  color: var(--green-700);
  font-weight: 500;
  transition: background .2s, color .2s, transform .2s;
}
.sns-btn:hover { background: var(--green-700); color: #fff; transform: translateY(-2px); }
.sns-icon { font-size: 1.1rem; font-weight: 700; }

/* 文字だけのSNSリンク */
.sns-links { gap: 32px; }
.sns-text {
  position: relative;
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--green-700);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.sns-text:hover { color: var(--green-900); border-bottom-color: var(--green-500); }
/* 準備中：少し薄め＆ホバーで吹き出し */
.sns-text.is-soon { color: var(--green-300); cursor: default; }
.sns-text.is-soon:hover { color: var(--green-300); border-bottom-color: transparent; }
.sns-text.is-soon::after {
  content: attr(data-soon);
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  white-space: nowrap;
  background: var(--green-900);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.72rem;
  padding: 6px 12px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, transform .25s;
  pointer-events: none;
  z-index: 5;
}
.sns-text.is-soon::before {
  content: "";
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  border: 5px solid transparent;
  border-top-color: var(--green-900);
  margin-bottom: -5px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, transform .25s;
  pointer-events: none;
  z-index: 5;
}
.sns-text.is-soon:hover::after,
.sns-text.is-soon:focus::after,
.sns-text.is-soon:hover::before,
.sns-text.is-soon:focus::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* =========================================================
   CTA / お問い合わせ
   ========================================================= */
.cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(160deg, var(--green-700), var(--green-900));
  color: #fff;
}
.cta-title { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 14px; }
.cta-lead { opacity: 0.9; margin: 0 0 20px; }
.cta-mail {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin: 0 0 24px;
  opacity: 0.95;
}
.contact-mail {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--green-900);
  letter-spacing: 0.08em;
  margin: 24px 0;
  text-align: center;
}

/* =========================================================
   法的ページ（特商法・プライバシー・利用規約）
   ========================================================= */
.legal-note {
  font-size: 0.85rem;
  color: var(--gold);
  background: rgba(184,153,104,0.08);
  border-radius: 8px;
  padding: 12px 16px;
  max-width: 760px;
  margin: 0 auto 28px;
}
.legal-table {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.legal-table > div {
  display: flex;
  gap: 20px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
}
.legal-table dt {
  flex: 0 0 200px;
  font-weight: 700;
  color: var(--green-700);
  font-size: 0.92rem;
}
.legal-table dd { margin: 0; color: var(--ink); font-size: 0.92rem; }
.legal-body { max-width: 760px; margin: 0 auto; }
.legal-body > p { color: var(--ink-soft); }
.legal-h2 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--green-900);
  margin: 32px 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--green-500);
}
.legal-list { margin: 0 0 1em; }
.legal-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 6px;
}
.legal-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--green-500);
}
.legal-date { font-size: 0.88rem; color: var(--ink-soft); margin-top: 28px; }
.legal-info {
  max-width: 760px;
  margin: 24px auto 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
}
/* 記入が必要な箇所のハイライト（仮置きの目印） */
.is-fill {
  background: rgba(231, 241, 234, 0.7);
  border: 1px dashed var(--green-300);
  border-radius: 6px;
  padding: 6px 10px !important;
  color: var(--green-700) !important;
  font-size: 0.88rem;
}

/* =========================================================
   フッター
   ========================================================= */
.site-footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.85);
  padding: 48px 0 28px;
}
.footer-inner { text-align: center; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text small { color: rgba(255,255,255,0.7); }
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.footer-nav a { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.footer-nav a:hover { color: #fff; }
.footer-sns { display: flex; gap: 18px; justify-content: center; margin-bottom: 16px; }
.footer-sns a { font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.footer-sns a:hover { color: #fff; }
.footer-legal {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.75); }
.footer-legal a:hover { color: #fff; }
.footer-extra { font-size: 0.82rem; margin: 0 0 18px; color: rgba(255,255,255,0.7); }
.footer-extra a { color: var(--green-300); text-decoration: underline; }
.copyright { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin: 0; }

/* =========================================================
   レスポンシブ（メニュー：横に収まらない幅でハンバーガー）
   ========================================================= */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .global-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    background: rgba(251, 253, 251, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
  }
  .global-nav.is-open { max-height: 560px; }
  .global-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 0 24px;
  }
  .global-nav li { width: 100%; text-align: center; }
  .global-nav a {
    display: block;
    padding: 14px;
    width: 100%;
  }
  .nav-cta { display: inline-block; margin-top: 12px; width: auto; }
}

/* レスポンシブ（タブレット） */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .profile-body { grid-template-columns: 1fr; gap: 28px; max-width: 480px; margin-inline: auto; }
  .profile-photo { max-width: 260px; margin-inline: auto; }
}

/* レスポンシブ（スマホ） */
@media (max-width: 680px) {
  .section { padding: 64px 0; }

  /* PC用の改行はスマホでは無効化し、画面幅に合わせて自然に折り返す */
  br.br-pc { display: none; }

  .reading-style { grid-template-columns: 1fr; max-width: 420px; }
  .price-list { grid-template-columns: 1fr; max-width: 420px; }
  .access-media { grid-template-columns: 1fr; max-width: 320px; }

  .course-summary { padding: 16px 18px; gap: 10px; }
  .course-name { font-size: 1.08rem; }
  .course-acc-body { padding: 4px 18px 24px; }

  .hero { min-height: 80vh; }
  .hero-actions .btn { width: 100%; max-width: 280px; }

  .news-item { flex-wrap: wrap; gap: 8px 12px; }
  .news-text { flex: 1 1 100%; }
}
