/* ============================================================
   styles.css
   超速出版コンサルティング | 株式会社ニキグル

   カラーパレット:
   --bg-primary   : #080808  (深黒)
   --bg-secondary : #0f0f0f  (セクション背景)
   --bg-card      : #141414  (カード背景)
   --gold         : #c9a84c  (ゴールドアクセント)
   --gold-light   : #e8cc7a  (明るいゴールド)
   --gold-dark    : #9d7a2e  (暗いゴールド)
   --text-primary : #f0ece4  (オフホワイト)
   --text-sub     : #c0b8ae  (サブテキスト)
   --text-muted   : #7a7268  (ミュートテキスト)

   目次:
   01. CSS Variables & Reset
   02. Base Styles
   03. Layout Utilities
   04. Buttons
   05. Section Common
   06. Header
   07. Hero
   08. Challenges
   09. About / Process Flow
   10. Covers / Book Mockups
   11. Consultation
   12. Routes
   13. Plans & Pricing
   14. FAQ
   15. Final CTA
   16. Footer
   17. Fixed CTA Button
   18. Animations
   19. Profile（代表プロフィール） ← [新規追加]
   20. Responsive
============================================================ */


/* ============================================================
   01. CSS Variables & Reset
============================================================ */
:root {
  /* Colors */
  --bg-primary:   #080808;
  --bg-secondary: #0f0f0f;
  --bg-card:      #141414;
  --bg-card-alt:  #1a1814;
  --gold:         #c9a84c;
  --gold-light:   #e8cc7a;
  --gold-dark:    #9d7a2e;
  --gold-alpha:   rgba(201, 168, 76, 0.12);
  --gold-border:  rgba(201, 168, 76, 0.25);
  --text-primary: #f0ece4;
  --text-sub:     #c0b8ae;
  --text-muted:   #7a7268;
  --border-sub:   rgba(255, 255, 255, 0.06);
  --border-gold:  rgba(201, 168, 76, 0.22);

  /* Layout */
  --max-width:    1100px;
  --sp-section:   128px;
  --sp-container: 48px;

  /* Typography */
  --font-serif-en: 'Cormorant Garamond', serif;
  --font-serif-ja: 'Noto Serif JP', serif;
  --font-sans:     'Noto Sans JP', sans-serif;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur:  0.3s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin:  0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  color: inherit;
}


/* ============================================================
   02. Layout Utilities
============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-container);
}

.text-gold {
  color: var(--gold);
}


/* ============================================================
   03. Buttons
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

/* シマーエフェクト用疑似要素 */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.btn:hover::after {
  opacity: 1;
}

/* ゴールド主ボタン */
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0a0a;
  font-weight: 700;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.32);
}

/* ゴーストボタン */
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* 大サイズ */
.btn-large {
  padding: 20px 56px;
  font-size: 1rem;
  letter-spacing: 0.08em;
}


/* ============================================================
   04. Section Common
============================================================ */
.section {
  padding: var(--sp-section) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

/* セクションラベル（eyebrow） */
.section-label {
  display: block;
  font-family: var(--font-serif-en);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* セクションタイトル */
.section-title {
  font-family: var(--font-serif-ja);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 24px;
  color: var(--text-primary);
}

/* セクション説明文 */
.section-desc {
  font-size: 0.975rem;
  color: var(--text-sub);
  line-height: 2;
  max-width: 640px;
  margin: 0 auto;
}


/* ============================================================
   05. HEADER
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-sub);
  transition: padding var(--dur) var(--ease);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ロゴ */
.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-company {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.logo-service {
  font-family: var(--font-serif-ja);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

/* ヘッダーナビゲーション */
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 0.83rem;
  color: var(--text-sub);
  letter-spacing: 0.04em;
  transition: color var(--dur) var(--ease);
}

.header-nav a:hover {
  color: var(--gold);
}

/* ヘッダー内CTAボタン */
.btn-nav {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a0a !important;
  font-weight: 700 !important;
  border-radius: 2px;
  font-size: 0.8rem !important;
  transition: all var(--dur) var(--ease) !important;
}

.btn-nav:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.32);
}


/* ============================================================
   06. HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

/* 背景レイヤー */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

/* グラデーションオーバーレイ（画像がない場合のフォールバックも兼ねる） */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 8, 8, 0.96) 0%,
    rgba(8, 8, 8, 0.72) 50%,
    rgba(8, 8, 8, 0.88) 100%
  );
}

/* 画像なし時のアンビエントグロー */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(201, 168, 76, 0.055) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(201, 168, 76, 0.03) 0%, transparent 55%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  max-width: 740px;
  padding: 72px 0;
}

.hero-eyebrow {
  font-family: var(--font-serif-en);
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-serif-ja);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.42;
  margin-bottom: 28px;
  color: var(--text-primary);
  text-shadow: 0 0 80px rgba(201, 168, 76, 0.08);
}

.hero-subheadline {
  font-size: clamp(0.93rem, 1.4vw, 1.05rem);
  color: var(--text-sub);
  line-height: 2.1;
  margin-bottom: 52px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* [新規] ヒーロー信頼バッジ（3点） */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust-item {
  font-family: var(--font-serif-en);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.hero-trust-sep {
  color: var(--gold);
  opacity: 0.4;
  font-size: 0.7rem;
}

/* スクロールインジケーター */
.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

.hero-scroll span {
  font-family: var(--font-serif-en);
  font-size: 0.63rem;
  letter-spacing: 0.32em;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(1); }
  50%       { opacity: 0.9;  transform: scaleY(0.55); }
}


/* ============================================================
   07. CHALLENGES
============================================================ */
.challenges {
  background-color: var(--bg-secondary);
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.challenge-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  padding: 40px 32px;
  border-radius: 2px;
  transition:
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.challenge-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.challenge-icon {
  font-family: var(--font-serif-en);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 18px;
  line-height: 1;
}

.challenge-card h3 {
  font-family: var(--font-serif-ja);
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.55;
}

.challenge-card p {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.85;
}

/* ブリッジコピー */
.challenges-bridge {
  text-align: center;
  padding: 52px 48px;
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  background: var(--gold-alpha);
}

.bridge-text {
  font-family: var(--font-serif-ja);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-primary);
}


/* ============================================================
   08. ABOUT / Process Flow
============================================================ */
.about {
  background-color: var(--bg-primary);
}

/* 4ステップ横並び（デスクトップ） */
.process-flow {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
}

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: 2px;
  padding: 36px 28px;
  transition: border-color var(--dur) var(--ease);
}

.process-step:hover {
  border-color: var(--border-gold);
}

/* ステップ間の矢印 */
.process-arrow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  opacity: 0.5;
  padding-top: 44px;
}

.step-number {
  font-family: var(--font-serif-en);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 16px;
  line-height: 1;
}

.step-body h3 {
  font-family: var(--font-serif-ja);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.6;
}

.step-body p {
  font-size: 0.83rem;
  color: var(--text-sub);
  line-height: 1.85;
}


/* ============================================================
   09. COVERS / Book Mockups
============================================================ */
.covers {
  background-color: var(--bg-secondary);
}

.covers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 36px;
}

.cover-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* ---- ブックカバー共通 ---- */
.book-cover {
  position: relative;
  width: 180px;
  height: 255px;
  border-radius: 2px 5px 5px 2px;
  cursor: default;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  box-shadow:
    -5px 2px 10px rgba(0, 0, 0, 0.5),
    4px 6px 24px rgba(0, 0, 0, 0.5);
}

.book-cover:hover {
  transform: rotate(-3deg) translateY(-10px) scale(1.03);
  box-shadow:
    -5px 2px 10px rgba(0, 0, 0, 0.5),
    10px 20px 48px rgba(0, 0, 0, 0.65);
}

/* 背表紙（左端の暗い帯） */
.book-spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 14px;
  border-radius: 2px 0 0 2px;
  background: rgba(0, 0, 0, 0.42);
}

/* 表紙コンテンツ */
.book-front {
  position: absolute;
  left: 14px;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* TYPE A：権威型 ---- ダークゴールド */
.book-cover--authority {
  background: linear-gradient(155deg, #0d0c08 0%, #1c1a10 100%);
  border: 1px solid rgba(201, 168, 76, 0.28);
}

/* TYPE B：ストーリー型 ---- ネイビーダーク */
.book-cover--story {
  background: linear-gradient(155deg, #080a12 0%, #0e1220 100%);
  border: 1px solid rgba(90, 130, 200, 0.2);
}

/* TYPE C：実践型 ---- ダークレッド */
.book-cover--practical {
  background: linear-gradient(155deg, #0f0808 0%, #1c0d0d 100%);
  border: 1px solid rgba(190, 80, 60, 0.2);
}

/* ---- 表紙内パーツ ---- */
.book-type {
  font-family: var(--font-serif-en);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.book-title-text {
  font-family: var(--font-serif-ja);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.7;
}

.book-subtitle-text {
  font-size: 0.63rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.book-author-text {
  font-size: 0.63rem;
  color: var(--text-muted);
  text-align: right;
}

/* TYPE A 装飾ライン */
.book-line-top,
.book-line-bottom {
  width: 100%;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

/* TYPE B 幾何学パターン */
.book-pattern-deco {
  width: 100%;
  height: 60px;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 5px,
      rgba(90, 130, 200, 0.1) 5px,
      rgba(90, 130, 200, 0.1) 6px
    );
  margin: 4px 0;
  border-radius: 1px;
}

/* TYPE C アクセントバー */
.book-bar-deco {
  width: 100%;
  height: 3px;
  background: rgba(190, 80, 60, 0.55);
  margin: 4px 0;
}

/* カード下テキスト */
.cover-desc {
  text-align: center;
  max-width: 220px;
}

.cover-desc h4 {
  font-family: var(--font-serif-ja);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}

.cover-desc p {
  font-size: 0.84rem;
  color: var(--text-sub);
  line-height: 1.75;
}

/* 注記 */
.covers-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}


/* ============================================================
   10. CONSULTATION
============================================================ */
.consultation {
  background-color: var(--bg-primary);
}

.session-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.session-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  padding: 40px 32px;
  border-radius: 2px;
  position: relative;
  transition:
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}

.session-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

/* 上部ゴールドアクセントライン */
.session-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold) 0%, var(--gold-dark) 60%, transparent 100%);
  border-radius: 2px 2px 0 0;
}

.session-num {
  font-family: var(--font-serif-en);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.session-card h3 {
  font-family: var(--font-serif-ja);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text-primary);
  line-height: 1.65;
}

.session-card p {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.88;
  margin-bottom: 20px;
}

.session-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 7px 0 7px 18px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  line-height: 1.6;
}

.session-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.6;
}

/* コンサル完了ノート */
.consultation-note {
  text-align: center;
  padding: 32px 40px;
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  background: var(--gold-alpha);
}

.consultation-note p {
  font-family: var(--font-serif-ja);
  font-size: 0.98rem;
  color: var(--gold-light);
}


/* ============================================================
   11. ROUTES
============================================================ */
.routes {
  background-color: var(--bg-secondary);
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.route-card {
  padding: 56px 48px;
  border-radius: 2px;
  border: 1px solid var(--border-sub);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.route-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

/* ゴールドルート（商業出版） */
.route-card--commercial {
  background: linear-gradient(155deg, #0f0d08 0%, #15130a 100%);
  border-color: rgba(201, 168, 76, 0.22);
}

.route-card--commercial::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-dark), transparent);
}

/* ブルーグリーンルート（セルフ出版） */
.route-card--self {
  background: linear-gradient(155deg, #080d0f 0%, #0b1215 100%);
  border-color: rgba(70, 160, 190, 0.2);
}

.route-card--self::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, rgba(70, 160, 190, 0.7), transparent);
}

/* ルートバッジ */
.route-badge {
  display: inline-block;
  font-family: var(--font-serif-en);
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 1px;
  margin-bottom: 24px;
}

.route-card--commercial .route-badge {
  background: var(--gold-alpha);
  color: var(--gold);
  border: 1px solid var(--border-gold);
}

.route-card--self .route-badge {
  background: rgba(70, 160, 190, 0.1);
  color: rgba(100, 185, 210, 0.9);
  border: 1px solid rgba(70, 160, 190, 0.22);
}

.route-card h3 {
  font-family: var(--font-serif-ja);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.route-lead {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.95;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-sub);
}

.route-price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
}

.price-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.price-val {
  font-family: var(--font-serif-en);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.price-val--na {
  font-size: 1.3rem;
  color: var(--text-sub);
}

.route-features {
  margin-bottom: 32px;
}

.route-features li {
  font-size: 0.875rem;
  color: var(--text-sub);
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid var(--border-sub);
  position: relative;
  line-height: 1.65;
}

.route-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.72rem;
  top: 13px;
}

.route-merit {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.85;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-sub);
  border-radius: 2px;
}

.route-merit strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-sub);
  font-weight: 500;
}


/* ============================================================
   12. PLANS & PRICING
============================================================ */
.plans {
  background-color: var(--bg-primary);
}

/* カテゴリブロック */
.plans-group {
  margin-bottom: 72px;
}

.plans-group:last-child {
  margin-bottom: 0;
}

.plans-group-title {
  font-family: var(--font-serif-ja);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  gap: 14px;
}

.plans-group-title::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* プランカードグリッド（2列） */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  padding: 48px 40px;
  border-radius: 2px;
  transition:
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
  position: relative;
}

.plan-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.36);
}

/* フィーチャーカード（AI執筆代行） */
.plan-card--featured {
  background: linear-gradient(155deg, #0f0d08 0%, #151310 100%);
  border-color: rgba(201, 168, 76, 0.35);
}

.plan-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-dark));
  border-radius: 2px 2px 0 0;
}

.plan-badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  background: var(--gold);
  color: #0a0a0a;
  font-weight: 700;
  border-radius: 1px;
  margin-bottom: 18px;
}

.plan-name {
  font-family: var(--font-serif-ja);
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.plan-price {
  font-family: var(--font-serif-en);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 24px;
  line-height: 1;
}

.plan-desc {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.92;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-sub);
}

.plan-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 8px 0 8px 18px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  line-height: 1.6;
}

.plan-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.55;
}

/* オプションカードグリッド（3列） */
.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.option-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  padding: 40px 28px;
  border-radius: 2px;
  text-align: center;
  transition:
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.option-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.34);
}

.option-icon {
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
  opacity: 0.75;
}

.option-name {
  font-family: var(--font-serif-ja);
  font-size: 0.97rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.option-price {
  font-family: var(--font-serif-en);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 14px;
  line-height: 1;
}

.option-card p {
  font-size: 0.83rem;
  color: var(--text-sub);
  line-height: 1.82;
}


/* ============================================================
   13. FAQ
============================================================ */
.faq {
  background-color: var(--bg-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-sub);
}

/* FAQ 質問ボタン */
.faq-question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 26px 0;
  text-align: left;
  transition: color var(--dur) var(--ease);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-q {
  font-family: var(--font-serif-en);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
  width: 22px;
  padding-top: 1px;
  line-height: 1;
}

.faq-a {
  font-family: var(--font-serif-en);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
  width: 22px;
  line-height: 1;
}

.faq-question p {
  font-family: var(--font-serif-ja);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.72;
  flex: 1;
}

/* ± トグルアイコン */
.faq-toggle {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  margin-top: 3px;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.faq-toggle::before {
  width: 18px;
  height: 1px;
  top: 8px;
  left: 0;
}

.faq-toggle::after {
  width: 1px;
  height: 18px;
  top: 0;
  left: 8px;
}

/* 開いた状態の縦線を消す（＋ → ー トグル） */
.faq-item.is-open .faq-toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}

/* FAQ 回答エリア（アコーディオン） */
.faq-answer {
  display: flex;
  gap: 22px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-bottom: 0;
  transition:
    max-height 0.42s var(--ease),
    opacity    0.38s var(--ease),
    padding    0.38s var(--ease);
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding-bottom: 28px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.95;
  flex: 1;
}


/* ============================================================
   14. FINAL CTA
============================================================ */
.final-cta {
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

/* アンビエントグロー */
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.045) 0%, transparent 68%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-eyebrow {
  display: block;
  font-family: var(--font-serif-en);
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.cta-title {
  font-family: var(--font-serif-ja);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.cta-body {
  font-size: 0.975rem;
  color: var(--text-sub);
  line-height: 2.1;
  margin-bottom: 48px;
}

.cta-actions {
  margin-bottom: 22px;
}

.cta-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.18em;
}


/* ============================================================
   15. FOOTER
============================================================ */
.site-footer {
  background-color: var(--bg-secondary);
  padding: 64px 0 40px;
  border-top: 1px solid var(--border-sub);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.footer-company {
  font-family: var(--font-serif-ja);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.footer-service {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: center;
}

.footer-nav {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.83rem;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.73rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}


/* ============================================================
   16. FIXED CTA BUTTON（右下固定）
============================================================ */
.fixed-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 200;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a0a;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px 20px;
  border-radius: 2px;
  text-align: center;
  line-height: 1.6;
  box-shadow: 0 4px 28px rgba(201, 168, 76, 0.42);

  /* 初期状態：非表示 */
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease),
    box-shadow 0.3s var(--ease);
}

.fixed-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fixed-cta:hover {
  box-shadow: 0 8px 44px rgba(201, 168, 76, 0.6);
  transform: translateY(-2px);
}


/* ============================================================
   17. ANIMATIONS（スクロールフェードイン）
============================================================ */
.anim-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.65s var(--ease),
    transform 0.65s var(--ease);
}

.anim-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* スタガー（兄弟要素への遅延） */
.anim-fade-up:nth-child(2) { transition-delay: 0.1s; }
.anim-fade-up:nth-child(3) { transition-delay: 0.2s; }
.anim-fade-up:nth-child(4) { transition-delay: 0.3s; }
.anim-fade-up:nth-child(5) { transition-delay: 0.4s; }


/* ============================================================
   18. PROFILE（代表プロフィール）← [新規追加]
============================================================ */
.profile {
  background-color: var(--bg-primary);
}

/* 2カラムレイアウト：左＝写真、右＝本文 */
.profile-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: start;
}

/* ---- 左カラム：写真＋バッジ ---- */
.profile-photo-col {
  position: sticky;
  top: 110px; /* ヘッダー高さ分オフセット */
}

/* 写真枠（3:4 縦長） */
.profile-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* 画像が未設定の場合に表示するプレースホルダーテキスト */
.profile-photo::before {
  content: 'PHOTO';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif-en);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  opacity: 0.35;
  pointer-events: none;
}

/* 写真上部のゴールドアクセントライン */
.profile-photo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-dark), transparent);
  pointer-events: none;
}

/* 実績数値バッジ */
.profile-credentials {
  border: 1px solid var(--border-sub);
  border-radius: 2px;
  overflow: hidden;
}

.credential-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-sub);
  transition: background var(--dur) var(--ease);
}

.credential-item:last-child {
  border-bottom: none;
}

.credential-item:hover {
  background: rgba(201, 168, 76, 0.04);
}

.credential-num {
  font-family: var(--font-serif-en);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.credential-num small {
  font-size: 0.78rem;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  margin-left: 2px;
}

.credential-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-align: right;
  line-height: 1.5;
}

/* ---- 右カラム：本文 ---- */

/* 氏名ブロック */
.profile-name-block {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-sub);
}

.profile-name-en {
  font-family: var(--font-serif-en);
  font-size: 0.78rem;
  letter-spacing: 0.38em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.profile-name-ja {
  font-family: var(--font-serif-ja);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.profile-title {
  font-size: 0.875rem;
  color: var(--text-sub);
  letter-spacing: 0.03em;
}

/* プロフィール本文 */
.profile-text {
  margin-bottom: 44px;
}

.profile-text p {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 2.05;
  margin-bottom: 20px;
}

.profile-text p:last-child {
  margin-bottom: 0;
}

.profile-text strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* キャリアタイムライン */
.profile-timeline {
  border-top: 1px solid var(--border-sub);
  padding-top: 32px;
}

.timeline-item {
  display: flex;
  gap: 28px;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tl-year {
  font-family: var(--font-serif-en);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  min-width: 72px;
}

.tl-text {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.72;
}


/* ============================================================
   19. RESPONSIVE
============================================================ */

/* ---- タブレット（1024px 以下） ---- */
@media (max-width: 1024px) {
  :root {
    --sp-section:    96px;
    --sp-container:  32px;
  }

  /* プロセスフローを縦積みに変更 */
  .process-flow {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-arrow {
    transform: rotate(90deg);
    padding: 6px 0;
    justify-content: flex-start;
    padding-left: 32px;
  }

  /* セッションカード2列 */
  .session-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .session-cards .session-card:last-child {
    grid-column: 1 / -1;
  }

  /* プロフィール：写真カラム幅を縮小 */
  .profile-inner {
    grid-template-columns: 240px 1fr;
    gap: 48px;
  }
}

/* ---- モバイル（768px 以下） ---- */
@media (max-width: 768px) {
  :root {
    --sp-section:    72px;
    --sp-container:  20px;
  }

  /* ヘッダーナビを非表示 */
  .header-nav {
    display: none;
  }

  /* ヒーロー */
  .hero-headline {
    font-size: 2.1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  /* ヒーロー信頼バッジ：改行を許容してコンパクトに */
  .hero-trust {
    gap: 10px;
  }

  /* チャレンジグリッド1列 */
  .challenges-grid {
    grid-template-columns: 1fr;
  }

  .challenges-bridge {
    padding: 36px 24px;
  }

  /* 表紙グリッド：横並び（アイコン＋テキスト形式） */
  .covers-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cover-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
  }

  .book-cover {
    width: 110px;
    height: 156px;
    flex-shrink: 0;
  }

  .book-spine { width: 10px; }
  .book-front { left: 10px; padding: 16px 14px; }
  .book-title-text { font-size: 0.78rem; }

  .cover-desc {
    text-align: left;
  }

  /* セッションカード1列 */
  .session-cards {
    grid-template-columns: 1fr;
  }

  .session-cards .session-card:last-child {
    grid-column: auto;
  }

  /* ルートグリッド1列 */
  .routes-grid {
    grid-template-columns: 1fr;
  }

  .route-card {
    padding: 40px 28px;
  }

  /* プランカード1列 */
  .plans-grid {
    grid-template-columns: 1fr;
  }

  /* オプションカード1列 */
  .options-grid {
    grid-template-columns: 1fr;
  }

  /* セクションヘッダー */
  .section-header {
    margin-bottom: 52px;
  }

  /* 固定CTAボタン */
  .fixed-cta {
    bottom: 18px;
    right: 18px;
    font-size: 0.73rem;
    padding: 13px 16px;
  }

  /* プロフィール：縦並びに変更 */
  .profile-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .profile-photo-col {
    position: static; /* sticky を解除 */
  }

  .profile-photo {
    aspect-ratio: 4 / 3; /* 横長に切り替え */
    max-width: 360px;
    margin: 0 auto 20px;
  }

  .profile-credentials {
    max-width: 360px;
    margin: 0 auto;
  }

  .timeline-item {
    flex-direction: column;
    gap: 4px;
  }

  .tl-year {
    min-width: auto;
  }
}

/* ---- スモールモバイル（480px 以下） ---- */
@media (max-width: 480px) {
  :root {
    --sp-container: 16px;
  }

  .hero-content {
    padding: 56px 0;
  }

  .hero-headline {
    font-size: 1.9rem;
  }

  .plan-card {
    padding: 36px 22px;
  }

  .session-card {
    padding: 32px 22px;
  }

  .challenge-card {
    padding: 30px 22px;
  }

  .route-card {
    padding: 36px 22px;
  }

  .btn-large {
    padding: 18px 36px;
    font-size: 0.92rem;
  }

  /* プロフィール：写真フル幅 */
  .profile-photo {
    max-width: 100%;
    aspect-ratio: 3 / 4;
  }
}
