/* ============================================
   ゴルフコンサルティング HP テンプレート
   CSS Custom Properties で色変更が一括で可能
   ============================================ */

/* --- カラー変数 --- */
:root {
  /* メインカラー（ロゴ準拠: ダークネイビー×ゴールド） */
  --color-primary: #1a2744;       /* ダークネイビー */
  --color-primary-light: #2a3a5c; /* ネイビー明るめ */
  --color-accent: #c5a855;        /* ゴールド */
  --color-accent-light: #d4ba6a;  /* ゴールド明るめ */

  /* ベースカラー（白系・明るい系） */
  --color-bg: #ffffff;
  --color-bg-alt: #f8f7f4;        /* オフホワイト（セクション交互用） */
  --color-bg-dark: #1a2744;       /* ダークセクション用（ネイビー） */
  --color-text: #222222;
  --color-text-light: #666666;
  --color-text-on-dark: #ffffff;
  --color-text-on-dark-muted: rgba(255, 255, 255, 0.7);
  --color-border: #e0ddd5;

  /* フォント */
  --font-body: 'Noto Sans JP', sans-serif;
  --font-heading: 'Noto Serif JP', serif;
  --font-accent: 'Cormorant Garamond', serif;

  /* サイズ */
  --container-max: 1100px;
  --header-height: 72px;
  --section-padding: 76px;
  --section-padding-mobile: 64px;
  --border-radius: 4px;

  /* トランジション */
  --transition-base: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* --- コンテナ --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- セクション共通 --- */
.section {
  padding: var(--section-padding) 0;
}

.section--alt {
  background-color: var(--color-bg-alt);
}

.section--dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-on-dark);
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4.5vw, 2.625rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.section-subtitle {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  max-width: 640px;
  line-height: 1.8;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

/* --- サンプルバナー（デモサイト営業用） --- */
.sample-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-accent);
  color: #fff;
  text-align: center;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  z-index: 1100;
}

.sample-banner a {
  color: #fff;
  text-decoration: underline;
  margin-left: 8px;
}

body.has-banner {
  padding-top: 32px;
}

body.has-banner .header {
  top: 32px;
}

/* --- ヘッダー --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(26, 39, 68, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
  transition: background var(--transition-base);
}

.header.scrolled {
  background: rgba(26, 39, 68, 0.98);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.header-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}

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

.nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-base);
  position: relative;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-block;
  padding: 11px 26px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: var(--border-radius);
  border: 2px solid var(--color-accent);
  box-shadow: 0 4px 12px rgba(197, 168, 85, 0.45);
  transition: all var(--transition-base);
}

.nav-cta:hover {
  background: var(--color-accent-light);
  box-shadow: 0 6px 16px rgba(197, 168, 85, 0.6);
  transform: translateY(-1px);
}

/* --- ハンバーガー --- */
.hamburger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  /* focus時の青/金枠を除去。キーボードのみ outline を残す（a11y維持） */
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.hamburger:focus {
  outline: none;
}

.hamburger:focus-visible {
  outline: none;
}

.hamburger span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  margin: 0;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  transform: translate(-50%, -50%);
}

.hamburger span:nth-child(1) {
  top: calc(50% - 7px);
}

.hamburger span:nth-child(3) {
  top: calc(50% + 7px);
}

/* active時: 3本を中央に重ねてから rotate で×を作る */
.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* --- ヒーロー --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text-on-dark);
  overflow: hidden;
  padding-top: var(--header-height);
  padding-bottom: 20px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  /* ヒアリング後に背景画像を設定 */
  /* background-image: url('../images/hero-bg.webp'); */
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 20px;
}

.hero-label {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(0.875rem, 2vw, 1.0625rem);
  line-height: 2;
  color: var(--color-text-on-dark-muted);
  margin-bottom: 40px;
}

.hero-cta {
  display: inline-block;
  padding: 14px 40px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: var(--border-radius);
  transition: background var(--transition-base), transform var(--transition-base);
}

.hero-cta:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
}

/* --- ABOUT（コーチ紹介） --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}

.about-text {
  display: flex;
  flex-direction: column;
}
.about-text .section-label {
  text-align: left;
}
.about-text .about-stats {
  margin-top: auto;
}

.about-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
  padding: 6px 18px 6px 0;
  background: linear-gradient(to left, rgba(197, 168, 85, 0.18), transparent 75%);
  border-right: 3px solid var(--color-accent);
}

.about-role {
  font-size: 0.875rem;
  color: var(--color-primary);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  padding: 5px 18px 5px 0;
  background: linear-gradient(to left, rgba(26, 39, 68, 0.16), transparent 75%);
  border-right: 3px solid var(--color-primary);
}

.about-description {
  font-size: 0.9375rem;
  line-height: 2;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .about-description {
    margin-bottom: 18px;
    line-height: 1.85;
  }
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.credential-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

.about-image {
  position: relative;
  background: transparent;
  padding: 0;
  border: 1px solid var(--color-accent);
  box-shadow: 0 10px 28px rgba(26, 39, 68, 0.14);
  align-self: stretch;
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

/* プロフィール写真なし時のプレースホルダー */
.about-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-accent);
  font-size: 4rem;
}

/* --- SERVICE（サービス内容） --- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--color-accent);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.service-card p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

/* --- PLANNING EXAMPLE（プランニング事例 図解） --- */
.planning-example {
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 32px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  box-sizing: border-box;
  overflow-x: hidden;
}

.planning-example-label {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 6px;
}

.planning-example-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.planning-state-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 40px;
}

.planning-state {
  padding: 20px 24px;
  border-radius: var(--border-radius);
  background: var(--color-bg-alt);
}

.planning-state--current {
  border-left: 3px solid #b8b5a8;
}

.planning-state--goal {
  border-left: 3px solid var(--color-accent);
  background: rgba(197, 168, 85, 0.08);
}

.planning-state-heading {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.planning-state--goal .planning-state-heading {
  color: var(--color-accent);
}

.planning-state-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.planning-state-list li {
  position: relative;
  padding-left: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-text);
}

.planning-state-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 1px;
  background: var(--color-text-light);
}

.planning-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.planning-timeline-header {
  text-align: center;
  margin-bottom: 24px;
}

.planning-timeline-label {
  display: inline-block;
  padding: 6px 20px;
  background: var(--color-primary);
  color: var(--color-text-on-dark);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: 2px;
}

.planning-timeline {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
  position: relative;
}

.planning-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: stretch;
  padding: 16px 20px;
  background: var(--color-bg-alt);
  border-radius: var(--border-radius);
  border-left: 3px solid var(--color-accent);
}

.planning-step-month {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: 0;
}

.planning-step-month span {
  font-size: 0.875rem;
  font-weight: 500;
  margin-left: 2px;
  color: var(--color-text-light);
  line-height: 1;
  display: inline-block;
}

.planning-step-body h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 4px;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

.planning-step-body p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin: 0;
}

.planning-result {
  text-align: center;
  padding: 24px;
  background: var(--color-primary);
  border-radius: var(--border-radius);
  color: var(--color-text-on-dark);
}

.planning-result-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.planning-result-text {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 0;
}

.planning-result-text strong {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  color: var(--color-accent);
  font-weight: 700;
  margin: 0 2px;
  line-height: 1;
  display: inline-block;
  /* vertical-align は末尾の「⑧ RESULT」ブロックで管理 */
}

@media (max-width: 768px) {
  .planning-example {
    padding: 28px 20px;
    width: 100%;
    max-width: 100%;
  }
  .planning-state-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .planning-arrow {
    transform: rotate(90deg);
  }
  .planning-step {
    grid-template-columns: 86px 1fr;
    gap: 14px;
    padding: 14px 16px;
  }
  .planning-step-month {
    font-size: 1.75rem;
    justify-content: flex-start;
  }
}

/* --- PRICING（料金） --- */
.pricing-table {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.pricing-row {
  display: flex;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--color-border);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row--header {
  background: var(--color-primary);
  color: var(--color-text-on-dark);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
.pricing-row--header .pricing-label,
.pricing-row--header .pricing-detail,
.pricing-row--header .pricing-price {
  color: var(--color-text-on-dark);
}

.pricing-label {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 500;
}

.pricing-detail {
  flex: 1;
  font-size: 0.875rem;
  color: var(--color-text-light);
  text-align: center;
}

.pricing-price {
  min-width: 160px;
  text-align: right;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  font-feature-settings: "palt";
}

.pricing-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

/* --- VOICE（お客様の声） --- */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
}

.voice-card {
  padding: 22px 18px 20px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.voice-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 39, 68, 0.08);
}

/* 属性バッジ（控えめ） */
.voice-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text-light);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 999px;
}

/* 数字強調ブロック */
.voice-highlight {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 6px 10px;
  padding: 0;
  font-family: var(--font-body);
}

.voice-highlight__label {
  font-size: 1rem;
  color: var(--color-text-light);
  letter-spacing: 0.06em;
  flex-basis: 100%;
  margin-bottom: 4px;
  text-align: center;
}

.voice-highlight__number {
  font-family: var(--font-body);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent);
  letter-spacing: -0.01em;
}

.voice-highlight__unit {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-accent);
}

.voice-highlight__unit--inline {
  margin-left: 2px;
}

.voice-highlight__ba {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}

.voice-highlight__before {
  font-family: var(--font-body);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--color-text-light);
  line-height: 1;
}

.voice-highlight__arrow {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-accent);
  line-height: 1;
  transform: translateY(-1px);
}

.voice-highlight__after {
  font-family: var(--font-body);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: -0.01em;
}

/* 本文 */
.voice-text {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
  order: 1;
  padding: 14px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  min-height: 168px;
  box-sizing: border-box;
}
.voice-highlight {
  order: 2;
}

/* ④のようにハイライトが無いカードは本文が主役：縦方向中央揃えで他カードと高さを視覚的に揃える */
.voice-card--text {
  justify-content: center;
}

.voice-card--text .voice-text {
  font-size: 0.875rem;
  line-height: 1.8;
  border-bottom: none !important;
  min-height: auto !important;
}

/* --- FLOW（ご利用の流れ） --- */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.flow-step {
  text-align: center;
  position: relative;
  counter-increment: step;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 44px 20px 28px;
  margin-top: 28px;
}

.flow-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  background: linear-gradient(to bottom, var(--color-bg-alt) 50%, var(--color-bg) 50%);
  padding: 4px 12px;
  line-height: 1;
}

.flow-step h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.flow-step p {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

/* ステップ間の矢印（削除） */

/* --- ACCESS --- */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.access-map {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.access-info table {
  width: 100%;
  border-collapse: collapse;
}

.access-info th,
.access-info td {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9375rem;
  text-align: left;
  vertical-align: top;
}

.access-info th {
  width: 120px;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
}

/* --- CTA セクション --- */
.cta-section {
  padding: 80px 0;
  background: var(--color-primary);
  text-align: center;
  color: var(--color-text-on-dark);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.cta-text {
  font-size: 0.9375rem;
  color: var(--color-text-on-dark-muted);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--border-radius);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

.btn--accent {
  background: var(--color-accent);
  color: #fff;
}

.btn--accent:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* --- FAQ --- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  line-height: 1.6;
}

.faq-question::after {
  content: '+';
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--color-accent);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: 16px;
  line-height: 1;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--color-text-light);
}

/* --- フッター --- */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark-muted);
  padding: 56px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-on-dark);
  margin-bottom: 12px;
}

.footer-description {
  font-size: 0.8125rem;
  line-height: 1.8;
  max-width: 320px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.8125rem;
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--color-text-on-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

.footer-sample {
  color: var(--color-accent);
}

/* --- フェードインアニメーション --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- LINE追従ボタン --- */
.line-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #06C755;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.3);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.line-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
}

.line-float svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   レスポンシブ
   ============================================ */

@media (max-width: 1024px) and (min-width: 769px) {
  .flow-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .flow-step:not(:last-child)::after {
    display: none;
  }
}

/* 1024px以下でflow-stepsのみ共通で2列化（タブレット&スマホ） */
@media (max-width: 1024px) {
  .flow-steps {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 18px;
  }
  .flow-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: var(--section-padding-mobile);
  }

  .hamburger {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(26, 39, 68, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 22px;
    padding: 80px 32px 32px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.25);
    transition: right var(--transition-base);
    overflow-y: auto;
  }

  .nav.open {
    right: 0;
  }

  .nav-link {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
  }

  .hamburger span {
    background: #fff;
  }


  .header-logo {
    font-size: 0.9375rem;
  }

  .header-logo img {
    height: 28px !important;
  }

  .header-logo span {
    font-size: 0.6875rem !important;
  }

  .header-inner {
    /* ハンバーガー×の右見切れ対策: 右パディングを32pxに拡大し safe-area 考慮（8px以上の視覚的余白を確保） */
    padding: 0 16px 0 20px;
    padding-right: max(32px, env(safe-area-inset-right, 32px));
  }

  /* ハンバーガー: モバイル時のサイズ調整 */
  .hamburger {
    width: 40px;
    height: 40px;
    margin-right: 0;
    overflow: visible;
  }
  .hamburger:focus,
  .hamburger:focus-visible {
    outline: none;
  }
  /* active時の×は L308-321 のベース定義（position:absolute + translate(-50%,-50%) + rotate）で完結。
     ここでの上書きは不要（translateで×が右にずれる不具合の原因になるため削除） */

  .hero-content {
    padding: 0 16px;
    text-align: center;
  }

  .hero-title {
    font-size: 1.75rem !important;
  }

  .hero-subtitle {
    font-size: 0.8125rem !important;
  }

  .hero-content img {
    width: 100px !important;
    height: 100px !important;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  #service [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  #service [style*="padding: 20px; text-align: center"] {
    padding: 16px !important;
    font-size: 0.875rem !important;
  }

  .about-image {
    order: -1;
    aspect-ratio: 1 / 1;
    max-width: 100%;
    margin: 0 auto;
  }
  .about-image img {
    object-position: center 60%;
  }
  .about-text .about-name,
  .about-text .about-role {
    text-align: left;
  }
  .about-text .about-name {
    padding: 8px 0 8px 22px;
    background: linear-gradient(to right, rgba(197, 168, 85, 0.32), rgba(197, 168, 85, 0.05) 65%, transparent 100%);
    border-right: none;
    border-left: 5px solid var(--color-accent);
  }
  .about-text .about-role {
    padding: 6px 0 6px 22px;
    background: linear-gradient(to right, rgba(26, 39, 68, 0.28), rgba(26, 39, 68, 0.05) 65%, transparent 100%);
    border-right: none;
    border-left: 5px solid var(--color-primary);
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }


  .voice-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .voice-card {
    padding: 28px 24px;
    gap: 16px;
  }

  .voice-highlight__number,
  .voice-highlight__after {
    font-size: 2.5rem;
  }

  .voice-highlight__before {
    font-size: 1.5rem;
  }

  .voice-highlight__arrow {
    font-size: 1.25rem;
  }

  .voice-highlight__unit {
    font-size: 1rem;
  }

  /* SP: ヘッダ行はコンパクトに表示、各プランをカード化 */
  .pricing-row--header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 20px !important;
    gap: 12px !important;
  }
  .pricing-row--header .pricing-label,
  .pricing-row--header .pricing-detail,
  .pricing-row--header .pricing-price {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    align-self: auto !important;
    text-align: left !important;
    font-weight: 500 !important;
  }
  .pricing-row--header .pricing-price {
    text-align: right !important;
  }
  .pricing-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 18px 20px;
  }
  .pricing-label {
    font-size: 1rem !important;
    font-weight: 700 !important;
  }
  .pricing-detail {
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-align: left;
  }
  .pricing-row--header .pricing-detail {
    display: none !important;
  }
  .pricing-price {
    font-size: 1.375rem !important;
    font-weight: 700;
    color: var(--color-primary);
    align-self: flex-end;
    text-align: right;
    min-width: auto;
  }
  /* おすすめ行のみゴールド */
  .pricing-row[style*="rgba(197"] .pricing-price {
    color: var(--color-accent) !important;
  }

  .access-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .line-float {
    bottom: 60px;
    right: 12px;
    padding: 10px 16px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    padding: 12px 28px;
    font-size: 0.8125rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (hover: none) {
  .service-card:hover {
    transform: none;
    box-shadow: none;
  }
  .nav-link::after {
    display: none;
  }
}

/* SERVICE ↔ プランニング事例 は同じalt背景で連続するため間の余白を圧縮 */
#service {
  padding-bottom: 40px;
}
#planning-example {
  padding-top: 40px;
}

/* ============================================
   大フォント数字×小フォント単位の「視覚下端」揃え（v7 baseline化）

   方針:
   CSS の alphabetic baseline で揃える（= ひらがな・漢字・descender なし数字の下端）。
   Noto Sans JP は日本語 descender なし文字（漢字/ひらがな/数字）の下端が baseline と一致。
   そのため align-items: baseline で揃えれば、視覚下端も自動的に揃う。
   translateY / vertical-align 等の pixel 補正は使わない（フォント変更で崩れるため）。
   ============================================ */

/* === ① 実績バー（数字+単位 baseline 揃え） ================================ */
.achievement-num {
  display: inline-flex !important;
  align-items: baseline !important;
  justify-content: center;
  line-height: 1 !important;
  gap: 2px;
}
.achievement-num > span {
  line-height: 1;
  display: inline-block;
}

/* === ② ABOUT 実績4ボックス === */
.about-stat-num {
  display: inline-flex !important;
  align-items: baseline !important;
  line-height: 1 !important;
  gap: 1px;
}
.about-stat-num > span {
  line-height: 1;
  display: inline-block;
}

/* === ③ planning-step-month（「1ヶ月目」等） ====================== */
/* 親の align-items: baseline は 643行で設定済み */
.planning-step-month {
  line-height: 1 !important;
  gap: 2px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.planning-step-month span {
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
}

/* === ④ VOICE +40yd / 102→83 / 200→250yd ========================= */
/* 親コンテナ: baseline 揃え（840行で align-items: baseline が元々設定済み。念のため再明示） */
.voice-highlight {
  align-items: baseline !important;
}
.voice-highlight__number,
.voice-highlight__before,
.voice-highlight__after,
.voice-highlight__arrow,
.voice-highlight__unit {
  line-height: 1 !important;
  display: inline-block;
}
/* 102 → 83 等の内部コンテナも baseline */
.voice-highlight__ba {
  align-items: baseline !important;
}

/* === ⑤ RESULT 「ベストスコア 90 達成、コンペで優勝」 =============
   文章中の <strong>90</strong>。inline 要素として baseline 揃え。
   vertical-align: baseline が CSS default。line-height のみ統一。*/
.planning-result-text {
  line-height: 1.4;
}
.planning-result-text strong {
  line-height: 1;
  vertical-align: baseline;
}

/* --- SERVICE 番号（丸数字）：日本語フォントで安定表示 --- */
.service-number {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: 0;
  flex-shrink: 0;
}

/* --- SERVICE 番号とタイトルを横並び --- */
.service-heading-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin: 0;
}

/* --- プランニング「ヶ月目」表記のサイズ微調整（1文字→3文字） --- */
.planning-step-month span {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

/* --- SERVICE 02：モバイルのみ テキスト先→画像後に並び替え --- */
@media (max-width: 768px) {
  .service-row-02 {
    /* grid の row order で制御（flex化ではなくorder使用） */
  }
  .service-row-02__image {
    order: 2;
  }
  .service-row-02__text {
    order: 1;
  }
  /* SP用: SERVICEセクションの写真を横長化、サービス間余白縮小 */
  #service [style*="aspect-ratio: 4/3"] {
    aspect-ratio: 16/9 !important;
  }
  #service [style*="margin-bottom: 56px"] {
    margin-bottom: 32px !important;
  }
  /* モバイルでは丸数字を少し小さく */
  .service-number {
    font-size: 1.5rem;
  }
  .service-title {
    font-size: 1.125rem;
  }
}

/* ===== ヒーロー画像一体型（2026-05-07追加） ===== */
.hero--image {
  position: relative;
  width: 100%;
  min-height: auto;
  margin: 0;
  padding: 0;
  display: block;
  background: var(--color-primary);
  overflow: hidden;
}
.hero--image .hero__picture {
  display: block;
  width: 100%;
  margin: 0;
  line-height: 0;
}
.hero--image .hero__picture img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
/* CTA透明リンク：PC（横長画像 1717×916）= 左下のゴールド枠CTAに合わせる
   crop画像実測値（2026-05-09）：枠線含むCTA y=770-865 (84.06-94.43%) / x=80-780 (4.66-45.43%)
   調整中はhover時も枠を可視化して位置確認（完了後outline削除予定） */
/* CTA透明リンク：PC（新画像 1672×941・金色塗りつぶしCTA）= 左下に合わせる
   2026-05-09 白壁さん視覚調整で確定: left:4.15% top:80.8% width:41.0% height:10.6% */
.hero--image .hero__cta-link {
  position: absolute;
  display: block;
  z-index: 5;
  left: 4.15%;
  top: 80.8%;
  width: 41.0%;
  height: 10.6%;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
}
.hero--image .hero__cta-link:focus-visible {
  outline: 2px solid var(--color-accent-light);
  outline-offset: -2px;
}
/* ===== きらきら shine エフェクト（CTAボタンの上を光が流れる） ===== */
.hero--image .hero__cta-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.45) 45%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0.45) 55%,
    transparent 70%
  );
  transform: translateX(-150%) skewX(-20deg);
  animation: cta-shine 4s ease-in-out infinite;
  pointer-events: none;
  filter: blur(1px);
}
@keyframes cta-shine {
  0% { transform: translateX(-150%) skewX(-20deg); }
  35% { transform: translateX(350%) skewX(-20deg); }
  100% { transform: translateX(350%) skewX(-20deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero--image .hero__cta-link::before {
    animation: none;
    display: none;
  }
}
@media (max-width: 768px) {
  /* SP（縦長画像 941×1672）= 中央下部のゴールド枠CTAに合わせる
     2026-05-09 白壁さん視覚調整で確定: left:8.5% top:90.4% width:83.2% height:8.0% */
  .hero--image .hero__cta-link {
    left: 8.5%;
    top: 90.4%;
    width: 83.2%;
    height: 8.0%;
  }
}
/* スクリーンリーダー用テキスト（視覚的非表示） */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== ヘッダー画像一体化・追従解除（2026-05-07追加） ===== */
.header.header--overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  /* 上端から下に向かって透明化するネイビーグラデで視認性確保 */
  background: linear-gradient(180deg, rgba(10, 24, 49, 0.55) 0%, rgba(10, 24, 49, 0.25) 60%, rgba(10, 24, 49, 0) 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  z-index: 10;
}
.header.header--overlay .header-inner {
  padding: 16px 20px;
  justify-content: flex-end;
}
/* ナビ文字に黒シャドウで視認性アップ（緑/明るい空の上でも見える） */
.header.header--overlay .nav-link {
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 0, 0, 0.3);
}
.header.header--overlay .nav-cta {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.header.header--overlay .hamburger span {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
/* main の上余白解除（ヘッダーが fixed じゃなくなったため） */
body main,
main {
  padding-top: 0 !important;
}
/* ヒーローを画面上端から（既存 padding-top 解除） */
.hero--image {
  padding-top: 0;
}

/* ===== セクションアイコン（2026-05-10追加・E案アイコン32個適用） ===== */
.section-icon {
  display: inline-block;
  width: auto;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
  user-select: none;
  -webkit-user-drag: none;
}

/* 見出し横の装飾（小・セクションタイトル隣等） */
.section-icon--inline {
  width: 32px;
  height: 32px;
}

/* セクション見出し中央配置（h2の上） */
.section-icon--heading {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
}

/* カード/ボックス見出し用（中サイズ） */
.section-icon--card {
  width: 44px;
  height: 44px;
  display: block;
  margin-bottom: 12px;
}

/* 実績バーの数字横 */
.section-icon--achievement {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 8px;
}

/* リスト/ステップ先頭 */
.section-icon--step {
  width: 36px;
  height: 36px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

/* SNSアイコン置き換え用（既存svgレイアウトと差し替え） */
.section-icon--sns {
  width: 56px;
  height: 56px;
  display: block;
  flex-shrink: 0;
}

/* VOICE 引用符（カード装飾） */
.section-icon--quote {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 40px;
  height: 40px;
  opacity: 0.55;
  pointer-events: none;
}

/* PLANNING ステップ番号横の小アイコン */
.section-icon--planning-step {
  width: 28px;
  height: 28px;
  display: block;
  margin-bottom: 6px;
}

/* ABOUT 実績ボックスの右上 */
.section-icon--about-stat {
  width: 28px;
  height: 28px;
  display: block;
  margin-bottom: 6px;
}

/* CONCEPT 解決ボックスのアクセント（中央上） */
.section-icon--concept-solve {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

/* CONCEPT 悩み3項目の左 */
.section-icon--concept-issue {
  width: 36px;
  height: 36px;
  display: block;
  margin-bottom: 8px;
}

/* ACCESS カードの左肩 */
.section-icon--access {
  width: 32px;
  height: 32px;
  display: block;
  margin-bottom: 8px;
}

/* スマホ用調整 */
@media (max-width: 768px) {
  .section-icon--heading { width: 48px; height: 48px; }
  .section-icon--card { width: 40px; height: 40px; }
  .section-icon--achievement { width: 44px; height: 44px; }
  .section-icon--concept-solve { width: 52px; height: 52px; }
  .section-icon--quote { width: 32px; height: 32px; top: 10px; right: 12px; }
  .section-icon--sns { width: 48px; height: 48px; }
}

/* VOICEカードを relative に（quote絶対配置の親） */
.voice-card {
  position: relative;
}

/* ===== 2026-05-10 アイコン配置リファイン（@@モード白壁さん指示） ===== */

/* === セクションタイトル行（アイコン左+タイトル右） === */
.section-title-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
}
.section-title-row .section-title {
  margin-bottom: 0;
  line-height: 1;
}
.section-title-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}
#price .section-title-icon {
  width: 54px;
  height: 54px;
}
#about .section-title-row {
  margin-bottom: 8px;
  align-items: center;
  gap: 6px;
}
#about .section-title-icon {
  width: 110px;
  height: 110px;
}
#about .section-title-row .section-title {
  white-space: nowrap;
  margin-left: -0.5em;
}
.about-name,
.about-role {
  text-align: right;
}
@media (max-width: 768px) {
  .section-title-row { gap: 12px; }
  .section-title-icon { width: 44px; height: 44px; }
  #about .section-title-icon { width: 56px; height: 56px; }
}

/* === CONCEPT 解決ボックス（強調） === */
.concept-solve-box {
  background: rgba(26, 39, 68, 0.05);
  border: 2px solid var(--color-accent);
  border-radius: var(--border-radius);
  padding: 36px 28px 32px;
  box-shadow: 0 8px 24px rgba(26, 39, 68, 0.08);
}
@media (max-width: 768px) {
  .concept-solve-box { padding: 28px 18px 24px; }
}

/* === CONCEPT 悩みカード（左icon+右text） === */
.concept-issue-list {
  display: grid;
  gap: 18px;
}
.concept-issue-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 28px;
  background: var(--color-bg-alt);
  border-radius: var(--border-radius);
  border-left: 3px solid var(--color-primary);
}
.concept-issue-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}
.concept-issue-text {
  flex: 1;
}
.concept-issue-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: var(--color-primary);
}
.concept-issue-body {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 768px) {
  .concept-issue-card { padding: 18px 18px; gap: 16px; }
  .concept-issue-icon { width: 72px; height: 72px; }
  .concept-issue-title { font-size: 0.9375rem; }
}

/* === VOICE カードヘッド（人型左+バッジ右） === */
/* voice-card は gap:20px → 0、各要素に個別 margin-bottom で制御 */
.voice-card {
  gap: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(26, 39, 68, 0.06);
}
.voice-card-head {
  display: flex;
  align-items: center;
  min-height: 36px;
  gap: 10px;
  margin-bottom: 4px;
}
.voice-card-head .voice-silhouette {
  width: 36px;
  height: 36px;
  margin: 0;
  flex-shrink: 0;
}
.voice-card-head .voice-badge {
  margin: 0;
}
.voice-card .voice-highlight {
  margin-bottom: 20px;
}
.voice-card--text .voice-card-head {
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .voice-card-head { gap: 8px; margin-bottom: 2px; }
  .voice-card-head .voice-silhouette { width: 40px; height: 40px; }
  .voice-card .voice-highlight { margin-bottom: 16px; }
}

/* === ACHIEVEMENTS（左icon+右text、枠なし） === */
/* 実績バー section（ヒーロー画像のネイビーと同色） */
.achievements-section {
  background: #001028;
  padding: 10px 0;
}
.achievements-eyebrow {
  text-align: center;
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--color-accent);
  border-radius: var(--border-radius);
  background: rgba(197, 168, 85, 0.06);
  overflow: hidden;
}
.achievement-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 10px 14px 10px 28px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
}
.achievement-card:last-child {
  border-right: none;
}
.achievement-card--hero {
  border: none;
  background: transparent;
  box-shadow: none;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.achievement-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
}
.achievement-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}
.achievement-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-on-dark-muted);
  letter-spacing: 0.06em;
  margin: 0 0 4px 0;
  line-height: 1;
  white-space: nowrap;
}
.achievement-num {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  background: linear-gradient(135deg, #F0D38A 0%, #E5C77D 25%, #C5A855 55%, #B19237 80%, #DDC376 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.achievement-unit {
  font-size: 1.25rem;
  font-weight: 500;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media (max-width: 1024px) {
  .achievement-card {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 22px 12px;
  }
  .achievement-text { align-items: center; }
  .achievement-icon { width: 56px; height: 56px; }
  .achievement-num { font-size: 2.2rem; }
}
@media (max-width: 768px) {
  .achievements-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 100%;
  }
  .achievement-card {
    flex-direction: column;
    text-align: center;
    justify-content: flex-start;
    padding: 0 6px 8px;
    gap: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: none;
  }
  .achievement-card:last-child {
    border-right: none;
  }
  .achievement-text { align-items: center; text-align: center; width: 100%; }
  .achievement-icon { width: 88px; height: 88px; }
  .achievement-label { font-size: 0.8125rem; white-space: nowrap; letter-spacing: 0; margin: 0 0 2px 0; text-align: center; width: 100%; line-height: 1; }
  .achievement-num { font-size: 1.625rem; white-space: nowrap; text-align: center; width: 100%; }
  .achievement-unit { font-size: 0.9375rem; }
}
/* 極小画面対応 */
@media (max-width: 380px) {
  .achievements-section .container { padding: 0 8px; }
  .achievement-icon { width: 44px; height: 44px; }
  .achievement-num { font-size: 1.125rem; }
  .achievement-unit { font-size: 0.6875rem; }
  .achievement-label { font-size: 0.5625rem; letter-spacing: 0; }
  .achievement-card { padding: 12px 4px; gap: 6px; }
}

/* === SERVICE（左大きめicon+右text） === */
.service-content {
  display: flex;
  align-items: center;
  gap: 24px;
}
.service-icon-large {
  width: 110px;
  height: 110px;
  object-fit: contain;
  flex-shrink: 0;
}
.service-text {
  flex: 1;
}
.service-text .service-title {
  margin-bottom: 12px;
}
.service-text p {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--color-text-light);
  margin: 0;
}
@media (max-width: 768px) {
  .service-content {
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
  }
  .service-icon-large { width: 70px; height: 70px; }
  .service-text .service-title { font-size: 1rem; margin-bottom: 8px; }
  .service-text p { font-size: 0.875rem; line-height: 1.7; }
}

/* === PLANNING リザルト（左上斜め目標達成、右王冠） === */
.planning-result {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
  padding: 14px 24px 12px 130px;
  min-height: 110px;
  max-width: 100%;
  box-sizing: border-box;
}
.planning-result-icon {
  object-fit: contain;
  flex-shrink: 0;
}
.planning-result-icon--left {
  position: absolute;
  top: 6px;
  left: -20px;
  width: 100px;
  height: 100px;
  transform: rotate(-15deg);
  z-index: 2;
}
.planning-result-icon--right {
  width: 110px;
  height: 110px;
}
.planning-result-text-wrap {
  flex: 1 1 0;
  text-align: center;
  min-width: 0;
}
.planning-result .planning-result-text {
  font-size: 1.75rem;
  line-height: 1.5;
}
.planning-result .planning-result-text strong {
  font-size: 2.5rem;
}
.planning-result .planning-result-label {
  font-size: 1.0625rem;
  margin-bottom: 10px;
}
.planning-result-br { display: none; }
.planning-result-text .planning-result-line1,
.planning-result-text .planning-result-line2 {
  display: inline;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .planning-result {
    gap: 12px;
    padding: 12px 80px 12px 76px;
    min-height: 76px;
  }
  .planning-result-icon--left {
    width: 74px; height: 74px;
    top: -18px; left: -10px;
  }
  .planning-result-icon--right {
    position: absolute;
    width: 60px; height: 60px;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
  }
  .planning-result-text-wrap {
    text-align: center;
  }
  .planning-result .planning-result-text {
    font-size: clamp(0.8125rem, 3.6vw, 1rem);
  }
  .planning-result .planning-result-text strong {
    font-size: clamp(1.125rem, 5vw, 1.375rem);
  }
  .planning-result-br { display: none; }
  .planning-result-comma { display: none; }
  .planning-result-text .planning-result-line1,
  .planning-result-text .planning-result-line2 {
    display: block;
    white-space: nowrap;
    text-align: center;
  }
}
@media (max-width: 360px) {
  .planning-result {
    padding: 10px 66px 10px 64px;
    min-height: 68px;
  }
  .planning-result-icon--left {
    width: 60px; height: 60px;
    top: -14px; left: -6px;
  }
  .planning-result-icon--right {
    width: 50px; height: 50px;
    right: 6px;
  }
}

/* === ABOUT 実績（左大きめicon+右見出し+数字） === */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.about-stat-card {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 2px solid var(--color-accent);
  border-radius: var(--border-radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26, 39, 68, 0.08);
}
.about-stat-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}
.about-stat-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
  padding-bottom: 4px;
}
.about-stat-label {
  font-size: 0.75rem;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.about-stat-num {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.125rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.about-stat-unit {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
}
.about-stat-card--feature {
  background: #fff;
}
.about-stat-card--feature .about-stat-num,
.about-stat-card--feature .about-stat-unit {
  color: var(--color-accent) !important;
}
@media (max-width: 768px) {
  .about-stats { gap: 10px; }
  .about-stat-card { padding: 14px 14px; gap: 12px; }
  .about-stat-icon { width: 44px; height: 44px; }
  .about-stat-num { font-size: 1.5rem; }
}

/* === VOICE SP用 2x2グリッド + コンパクト化 === */
@media (max-width: 768px) {
  .voice-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 1fr !important;
    gap: 10px !important;
  }
  .voice-card {
    padding: 14px 10px 12px !important;
    gap: 8px !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .voice-card .voice-text {
    flex: 1 !important;
  }
  .voice-card-head {
    gap: 6px !important;
    margin-bottom: 0 !important;
  }
  .voice-card-head .voice-silhouette {
    width: 30px !important;
    height: 30px !important;
  }
  .voice-badge {
    font-size: 0.6875rem !important;
    padding: 2px 8px !important;
  }
  .voice-text {
    font-size: 0.75rem !important;
    line-height: 1.65 !important;
    padding: 10px 0 !important;
    min-height: 130px !important;
  }
  .voice-highlight {
    background: transparent !important;
    padding: 2px 0 !important;
    margin: 0 !important;
  }
  .voice-highlight__label {
    font-size: 0.9375rem !important;
    margin-bottom: 6px !important;
    color: var(--color-text-light) !important;
    font-weight: 700 !important;
  }
  .voice-highlight__number,
  .voice-highlight__after {
    font-size: 2.125rem !important;
    background: linear-gradient(135deg, #F0D38A 0%, #E5C77D 25%, #C5A855 55%, #B19237 80%, #DDC376 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  }
  .voice-highlight__before {
    font-size: 1.25rem !important;
    color: rgba(110, 110, 110, 0.75) !important;
    font-weight: 500 !important;
  }
  .voice-highlight__arrow {
    font-size: 1.0625rem !important;
    color: var(--color-accent) !important;
  }
  .voice-highlight__unit {
    font-size: 0.9375rem !important;
    background: none !important;
    -webkit-text-fill-color: var(--color-accent) !important;
    color: var(--color-accent) !important;
    font-weight: 600;
  }
}

/* === VOICE 人型シルエット === */
.voice-silhouette {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 0 14px 0;
}
@media (max-width: 768px) {
  .voice-silhouette { width: 52px; height: 52px; margin-bottom: 10px; }
}

/* === FLOW アイコン（D#14背景+前景アイコン重ね） === */
.flow-step {
  text-align: center;
}
.flow-icon-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 14px;
}
.flow-icon-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}
.flow-icon-fg {
  position: absolute;
  width: 60%;
  height: 60%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  z-index: 2;
}
.flow-icon-fg--ball {
  width: 38%;
  height: 38%;
  top: 56%;
  left: 38%;
}
.flow-icon-fg--club {
  width: 50%;
  height: 50%;
  top: 42%;
  left: 60%;
  transform: translate(-50%, -50%) rotate(20deg);
}
@media (max-width: 768px) {
  .flow-icon-wrap { width: 88px; height: 88px; margin-bottom: 10px; }
}

/* === ACCESS 各拠点（左icon+右text） === */
.access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.access-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
}
.access-card--dispatch {
  background: var(--color-primary);
  color: var(--color-text-on-dark);
  border-color: var(--color-primary);
}
.access-card--dispatch .access-name {
  color: var(--color-accent);
}
.access-card--dispatch .access-detail {
  color: var(--color-text-on-dark-muted);
}
.access-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.access-text { display: flex; flex-direction: column; }
.access-name {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: var(--color-primary);
}
.access-detail {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin: 0;
}
@media (max-width: 768px) {
  .access-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .access-card {
    padding: 12px 10px;
    gap: 10px;
  }
  .access-icon { width: 30px; height: 30px; }
  .access-name { font-size: 0.8125rem; margin: 0 0 2px 0; }
  .access-detail { font-size: 0.6875rem; line-height: 1.4; }
}

/* === トップに戻るボタン（常駐・右下） === */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 86px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 998;
  padding: 0;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}
@media (max-width: 768px) {
  .back-to-top {
    right: 14px;
    bottom: 76px;
    width: 42px;
    height: 42px;
  }
}
