/* ========================================
   AI自動化セミナー LP - スタイルシート
   Design: Navy + Emerald | Modern & Trustworthy
   ======================================== */

/* ----------------------------------------
   リセット・ベース
   ---------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  background-color: #fff;
}

/* タイトル用フォント */
h1, h2, h3, h4, h5, h6,
.hero__title,
.section__title,
.card__title,
.step__title,
.learn-note-card__title,
.reason-item__title,
.subsidy-box__title,
.curriculum-day__title {
  font-family: var(--font-heading);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ----------------------------------------
   CSS変数
   ---------------------------------------- */
:root {
  /* フォント */
  --font-heading: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-body: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", Meiryo, sans-serif;

  /* メインカラー: ディープネイビー */
  --color-navy: #0F172A;
  --color-navy-light: #1E293B;
  --color-navy-muted: #334155;

  /* アクセントカラー: エメラルドグリーン */
  --color-emerald: #10B981;
  --color-emerald-dark: #059669;
  --color-emerald-light: #34D399;
  --color-emerald-pale: #D1FAE5;

  /* セマンティックカラー */
  --color-primary: #10B981;
  --color-primary-dark: #059669;
  --color-primary-light: #34D399;
  --color-accent: #F43F5E;
  --color-accent-light: #FB7185;
  --color-danger: #EF4444;
  --color-success: #10B981;

  /* テキスト */
  --color-text: #0F172A;
  --color-text-light: #475569;
  --color-text-muted: #94A3B8;

  /* 背景 */
  --color-bg-white: #FFFFFF;
  --color-bg-gray: #F8FAFC;
  --color-bg-navy: #0F172A;
  --color-bg-navy-light: #1E293B;

  /* ボーダー */
  --color-border: #E2E8F0;
  --color-border-light: #F1F5F9;

  /* レイアウト */
  --max-width: 1100px;
  --header-height: 72px;

  /* スペーシング */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;
  --section-padding: 100px;
  --section-padding-mobile: 64px;

  /* ボーダーラジウス */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;

  /* シャドウ */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 4px 20px rgba(15, 23, 42, 0.08);
  --shadow-card-hover: 0 12px 40px rgba(15, 23, 42, 0.15);
  --shadow-emerald: 0 4px 15px rgba(16, 185, 129, 0.35);
  --shadow-emerald-hover: 0 8px 25px rgba(16, 185, 129, 0.45);

  /* 3Dボタン用シャドウ */
  --shadow-btn-3d: 0 4px 0 0 rgba(0, 0, 0, 0.15), 0 6px 20px rgba(0, 0, 0, 0.12);
  --shadow-btn-3d-primary: 0 4px 0 0 rgba(5, 150, 105, 0.8), 0 6px 20px rgba(16, 185, 129, 0.35);
  --shadow-btn-3d-accent: 0 4px 0 0 rgba(190, 18, 60, 0.8), 0 6px 20px rgba(244, 63, 94, 0.35);
  --shadow-btn-3d-download: 0 4px 0 0 rgba(29, 78, 216, 0.8), 0 6px 20px rgba(59, 130, 246, 0.35);

  /* 資料ダウンロードボタン用カラー */
  --color-download: #3B82F6;
  --color-download-dark: #2563EB;
  --color-download-light: #60A5FA;

  /* トランジション */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ----------------------------------------
   コンテナ
   ---------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----------------------------------------
   ヘッダー
   ---------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  z-index: 1000;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
}

.header__logo a {
  display: flex;
  align-items: center;
  transition: opacity var(--transition-fast);
}

.header__logo a:hover {
  opacity: 0.85;
}

.header__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  gap: var(--spacing-lg);
}

.header__nav-list a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light);
  transition: color var(--transition-fast);
  position: relative;
}

.header__nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-emerald);
  transition: width var(--transition-base);
}

.header__nav-list a:hover {
  color: var(--color-navy);
}

.header__nav-list a:hover::after {
  width: 100%;
}

/* ----------------------------------------
   ボタン（立体感・光沢・ぷっくり）
   ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.btn--sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.875rem;
  border-radius: 12px;
}

.btn--lg {
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
  border-radius: 16px;
}

.btn-img {
  display: inline-block;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.btn-img img {
  display: block;
  height: 56px;
  width: auto;
}

.btn-img:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.btn-img:active {
  transform: translateY(1px);
  opacity: 0.85;
}

.btn-img--header {
  display: flex;
  align-items: center;
}

.btn-img--header img {
  height: calc(var(--header-height) - 20px);
  width: auto;
}

/* ヘッダー電話ボタン（HTML/CSS版） */
.btn-tel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, var(--color-emerald-light) 0%, var(--color-emerald) 40%, var(--color-emerald-dark) 100%);
  color: #fff;
  padding: 7px 18px 7px 14px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.btn-tel-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  opacity: 0.95;
}

.btn-tel-header:active {
  transform: translateY(1px);
  box-shadow: 0 1px 3px rgba(16, 185, 129, 0.3);
}

.btn-tel-header__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-tel-header__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.btn-tel-header__label {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.btn-tel-header__number {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

/* 光沢オーバーレイ（共通） */
.btn--primary::before,
.btn--accent::before,
.btn--download::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 100%
  );
  border-radius: 16px 16px 50% 50% / 8px 8px 50% 50%;
  pointer-events: none;
}

.btn--primary.btn--sm::before,
.btn--accent.btn--sm::before,
.btn--download.btn--sm::before {
  border-radius: 12px 12px 50% 50% / 6px 6px 50% 50%;
}

/* 資料ダウンロード: ブルー（立体・光沢・ぷっくり） */
.btn--download {
  background: linear-gradient(
    180deg,
    var(--color-download-light) 0%,
    var(--color-download) 35%,
    var(--color-download-dark) 100%
  );
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    var(--shadow-btn-3d-download);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.btn--download:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 6px 0 0 rgba(29, 78, 216, 0.8),
    0 10px 28px rgba(59, 130, 246, 0.45);
  background: linear-gradient(
    180deg,
    #60A5FA 0%,
    var(--color-download) 40%,
    var(--color-download-dark) 100%
  );
}

.btn--download:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.2),
    0 2px 0 0 rgba(29, 78, 216, 0.8),
    0 4px 12px rgba(59, 130, 246, 0.3);
}

/* プライマリ: エメラルド（立体・光沢・ぷっくり） */
.btn--primary {
  background: linear-gradient(
    180deg,
    var(--color-emerald-light) 0%,
    var(--color-emerald) 35%,
    var(--color-emerald-dark) 100%
  );
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    var(--shadow-btn-3d-primary);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 6px 0 0 rgba(5, 150, 105, 0.8),
    0 10px 28px rgba(16, 185, 129, 0.45);
  background: linear-gradient(
    180deg,
    #34D399 0%,
    var(--color-emerald) 40%,
    var(--color-emerald-dark) 100%
  );
}

.btn--primary:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.2),
    0 2px 0 0 rgba(5, 150, 105, 0.8),
    0 4px 12px rgba(16, 185, 129, 0.3);
}

/* セカンダリ: アウトライン（ぷっくり） */
.btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 3px 0 0 rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn--secondary:hover {
  background: #fff;
  color: var(--color-navy);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 4px 0 0 rgba(0, 0, 0, 0.08),
    0 6px 20px rgba(0, 0, 0, 0.12);
}

.btn--secondary:active {
  transform: translateY(1px);
}

.btn--secondary-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 3px 0 0 rgba(0, 0, 0, 0.08);
}

.btn--secondary-light:hover {
  background: #fff;
  color: var(--color-navy);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 4px 0 0 rgba(0, 0, 0, 0.06),
    0 6px 20px rgba(0, 0, 0, 0.1);
}

.btn--secondary-light:active {
  transform: translateY(1px);
}

.btn--white {
  background: linear-gradient(
    180deg,
    #fff 0%,
    #f8fafc 100%
  );
  color: var(--color-navy);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 3px 0 0 rgba(0, 0, 0, 0.06),
    0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 5px 0 0 rgba(0, 0, 0, 0.05),
    0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
  background: #fff;
  color: var(--color-navy);
  border-color: #fff;
}

/* ----------------------------------------
   セクション共通
   ---------------------------------------- */
.section {
  padding: var(--section-padding) 0;
}

.section--white {
  background: var(--color-bg-white);
}

.section--gray {
  background: var(--color-bg-gray);
}

/* Hero画像（右側に配置） */
.hero__visual {
  display: block;
  max-width: 400px;
  margin: 0 auto;
  flex-shrink: 0;
}

.hero__visual-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
}

/* セミナー概要・こんな方におすすめ（ヒーローと悩みの橋渡し） */
.section--intro {
  background: var(--color-bg-white);
  overflow: visible;
}

.intro__wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.intro__content {
  flex: 1;
  text-align: center;
  margin: 0 auto;
}

.intro__lead {
  max-width: 56ch;
  margin: 0 auto var(--spacing-lg);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  color: var(--color-text);
  text-align: center;
}

.intro__lead-accent {
  color: var(--color-emerald);
  font-size: 1.5em;
  font-weight: 800;
  text-decoration: none;
}

/* こんな方におすすめ：人物画像＋ミニカード */
.intro__recommend {
  margin-top: var(--spacing-lg);
}

.intro__recommend-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-emerald);
  letter-spacing: 0.2em;
  text-align: center;
  margin: 0 0 16px;
}

.intro__recommend-title {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-navy);
  text-align: center;
  margin: 0 0 18px;
}

.intro__recommend-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
}

.intro__people {
  position: relative;
  z-index: 2;
  margin-bottom: -24px;
  width: 100%;
  max-width: 420px;
}

.intro__people img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.intro__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  width: 100%;
  position: relative;
}

.intro__card {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-lg) var(--spacing-md);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.intro__card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.intro__card-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--color-emerald);
}

.intro__card-icon svg {
  width: 100%;
  height: 100%;
}

.intro__card-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4;
}

/* 悩みセクション: テクスチャ背景をセクション全体に */
.section--problem-bg {
  background-color: #E8ECF0;
  background-image: url('../assets/images/bg_nayami.jpg');
  background-size: cover;
  background-position: center;
}

/* ----------------------------------------
   ソリューション提示セクション
   ---------------------------------------- */
.section--solution {
  position: relative;
  background:
    repeating-linear-gradient(
      -20deg,
      transparent,
      transparent 10px,
      rgba(15, 23, 42, 0.04) 10px,
      rgba(15, 23, 42, 0.04) 11px
    ),
    #fff;
  padding: var(--spacing-xxl) var(--spacing-md);
  overflow: hidden;
}

.section--solution::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section--solution::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.solution__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.solution__arrow-label {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--color-text-light);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: var(--spacing-md);
}

.solution__name-block {
  margin-bottom: var(--spacing-sm);
}

.solution__name-main {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--color-emerald-dark) 0%, var(--color-emerald) 50%, var(--color-emerald-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solution__name-sub {
  font-size: clamp(0.875rem, 2vw, 1.0625rem);
  color: var(--color-emerald-dark);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 0.25rem;
}

.solution__resolve {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: var(--color-navy);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
}

.solution__resolve-accent {
  color: var(--color-emerald);
  font-size: 1.2em;
  font-weight: 900;
}

.solution__line {
  display: none;
}

.solution__desc {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--color-text-light);
  line-height: 1.9;
}

.solution__cta {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: center;
  margin-top: var(--spacing-xl);
}

@media (min-width: 769px) {
  .solution__cta {
    flex-direction: row;
    justify-content: center;
    gap: var(--spacing-md);
  }
}

@media (max-width: 767px) {
  .section--solution {
    background:
      repeating-linear-gradient(
        -20deg,
        transparent,
        transparent 10px,
        rgba(15, 23, 42, 0.02) 10px,
        rgba(15, 23, 42, 0.02) 11px
      ),
      #fff;
  }

}

@media (min-width: 768px) {
  .section--solution {
    padding: calc(var(--spacing-xxl) * 1.2) var(--spacing-md);
  }
}

.section--primary {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
}

/* Learnセクション: ネイビー背景 */
.section--learn {
  background: linear-gradient(135deg, var(--color-navy-muted) 0%, #475569 55%, #64748B 100%);
}

.section--learn .section__label {
  color: var(--color-emerald);
}

.section--learn .section__title {
  color: #fff;
}

.section--learn .section__lead {
  color: rgba(255, 255, 255, 0.9);
}

.section__label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-emerald);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section__title-wrap {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section__label + .section__title {
  margin-bottom: var(--spacing-sm);
}

.section__label + .section__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-emerald), var(--color-emerald-light));
  margin: var(--spacing-sm) auto 0;
  border-radius: 2px;
}

.section__title {
  font-size: 1.875rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--color-navy);
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.section__title--warning {
  color: var(--color-danger);
}

.section__title--white {
  color: #fff;
}

.section__lead {
  text-align: center;
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-top: calc(-1 * var(--spacing-sm));
  margin-bottom: var(--spacing-xl);
  line-height: 1.8;
}

.section__title-highlight {
  color: var(--color-emerald);
  font-size: 2.6rem;
}

.section__title-accent {
  color: var(--color-danger);
  font-weight: 900;
}

/* ----------------------------------------
   Hero（ファーストビュー）- 明るい緑基調・参考画像風
   ---------------------------------------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-height) + var(--spacing-xxl));
  padding-bottom: var(--spacing-xxl);
  /* 背景画像（SP: 縦長 / PC: 横長）＋フォールバック色 */
  background-color: #D1FAE5;
  background-image: url('../assets/images/hero_sp.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* 中央の柔らかいグロー（参考画像の中央グラデーション） */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255, 255, 255, 0.6) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.hero__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  align-items: center;
}

.hero__text {
  text-align: center;
  flex: 1;
}

.hero__title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: var(--spacing-lg);
  letter-spacing: 0.02em;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: center;
}

.hero__cta .btn--primary {
  background: linear-gradient(
    180deg,
    var(--color-emerald-light) 0%,
    var(--color-emerald) 35%,
    var(--color-emerald-dark) 100%
  );
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    var(--shadow-btn-3d-primary);
}

.hero__cta .btn--primary:hover {
  background: linear-gradient(
    180deg,
    #34D399 0%,
    var(--color-emerald) 40%,
    var(--color-emerald-dark) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 6px 0 0 rgba(5, 150, 105, 0.8),
    0 10px 28px rgba(16, 185, 129, 0.45);
}

/* 左ブロック（タイトル+CTA+丸三つ） */
.hero__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
}

.hero__features {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.5rem;
}

.hero__feature {
  position: relative;
  flex: 0 0 auto;
  width: 11rem;
  max-width: 11rem;
  padding: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(to bottom, #ff4113 0%, #FFA642 100%);
}

/* 上部の白い切り欠き（オレンジの線が無い部分） */
.hero__feature::before {
  position: absolute;
  top: -0.05rem;
  left: 50%;
  width: 3.6rem;
  height: 0.9rem;
  transform: translateX(-50%);
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  background-color: #fff;
  content: "";
}

/* 内側の白い円 */
.hero__feature-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: #fff;
}

.hero__feature-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.hero__feature-txt {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.25;
  color: var(--color-navy);
}

.hero__feature-txt--grad {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: -webkit-linear-gradient(-90deg, #ff4113, #FFA642);
  background-clip: text;
}

.hero__feature-txt--fz-sm {
  font-size: 1.1rem;
  -webkit-text-fill-color: initial;
  color: var(--color-navy);
}

/* アイコン（円の上部・切り欠きの上に載せる） */
.hero__feature-icon {
  position: absolute;
  top: -0.55rem;
  left: 50%;
  width: 2.6rem;
  height: 1.8rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero__feature-icon img {
  width: 1.8rem;
  height: 1.8rem;
  object-fit: contain;
  /* 緑SVGをオレンジグラデーション風に */
  filter: invert(48%) sepia(95%) saturate(2476%) hue-rotate(355deg) brightness(98%) contrast(101%);
}

/* 2番目・3番目のバッジのフォント調整 */
.hero__feature:nth-child(2) .hero__feature-txt {
  font-size: 1.35rem;
  line-height: 1.1;
}

.hero__feature:nth-child(2) .hero__feature-txt--fz-sm {
  font-size: 1.2rem;
  line-height: 1.5;
}

.hero__feature:nth-child(3) .hero__feature-txt {
  font-size: 1.35rem;
  line-height: 1.2;
}

/* 助成金バッジ：「助成金」をオレンジで強調 */
.hero__feature--subsidy .hero__feature-txt--grad {
  font-size: 1.5rem;
}

.hero__feature-note {
  margin-top: 0.35rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-text-light);
  line-height: 1.2;
}

/* ----------------------------------------
   課題セクション（お悩み・雲背景）
   ---------------------------------------- */
.problem-cloud {
  position: relative;
  min-height: 420px;
  padding: var(--spacing-xl);
  overflow: hidden;
}

/* 悩みテキスト（吹き出し形式・cloud.pngを背景に） */
.problem-cloud__texts {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md) var(--spacing-lg);
  padding: var(--spacing-lg) var(--spacing-md) 240px;
}

.problem-cloud__bubble {
  background-image: url('../assets/images/cloud.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: var(--spacing-md) var(--spacing-xl) var(--spacing-lg);
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-cloud__text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.5;
  text-align: center;
}

/* 悩むビジネスマン（中央下部） */
.problem-cloud__people {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.problem-cloud__people.fade-in-up {
  transform: translateX(-50%) translateY(30px);
}

.problem-cloud__people.fade-in-up.is-visible {
  transform: translateX(-50%) translateY(0) scale(1);
}

.problem-cloud__people img {
  width: 100%;
  height: auto;
  display: block;
}

/* ----------------------------------------
   カード共通
   ---------------------------------------- */
.cards {
  display: grid;
  gap: var(--spacing-lg);
}

.cards--3col {
  grid-template-columns: 1fr;
}

.card {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.card__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-emerald);
  margin-bottom: var(--spacing-sm);
}

.card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--color-navy);
}

.card__text {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.card--risk {
  text-align: center;
  border-top: 4px solid var(--color-danger);
}

/* ----------------------------------------
   リスク・課題（3ステップ）
   ---------------------------------------- */
.risks {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.risk {
  text-align: center;
  padding: var(--spacing-md);
}

.risk__image {
  width: 160px;
  height: 160px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.risk__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.risk__text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.6;
}

/* ----------------------------------------
   ステップ
   ---------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.step {
  background: transparent;
  padding: var(--spacing-md);
  text-align: center;
}

.step__label {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--color-emerald);
  line-height: 1;
  letter-spacing: 0.2em;
  padding-left: 0.2em;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--color-emerald);
  margin-bottom: var(--spacing-sm);
}

.step__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--color-navy);
}

.step__image {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.step__text {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ----------------------------------------
   セミナーバナー
   ---------------------------------------- */
.seminar-banner {
  margin: 0 auto;
}

.seminar-banner__placeholder {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xxl) var(--spacing-lg);
  text-align: center;
  color: #fff;
}

.seminar-banner__text {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
}

.seminar-banner__subtext {
  font-size: 1rem;
  opacity: 0.9;
}

/* ----------------------------------------
   CTAセクション（全幅）
   ---------------------------------------- */
.section-cta-full {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.85) 100%),
              url('../assets/images/cta-bg.jpg') center center / cover no-repeat;
  padding: var(--spacing-xxl) var(--spacing-md);
}

.section-cta-full::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-cta-full::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-cta-full__inner {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  text-align: center;
}

.section-cta-full__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  color: #fff;
  margin: 0;
  letter-spacing: 0.02em;
}

.section-cta-full__lead {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

.section-cta-full__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: center;
  margin-top: var(--spacing-sm);
}

@media (min-width: 769px) {
  .section-cta-full__buttons {
    flex-direction: row;
    gap: var(--spacing-md);
  }
}

/* ----------------------------------------
   このセミナーでは（Learn ノートカード）
   ---------------------------------------- */
.learn-section__heading {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.learn-section__main {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
}

.learn-section__main-accent {
  color: var(--color-emerald-light);
  font-weight: 900;
  font-size: 1.15em;
}

.learn-section__count {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

.learn-section__count-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  padding: 0.25rem 0.75rem;
  background: var(--color-emerald);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: var(--radius-md);
}

/* ノートカードグリッド：モバイルは縦並び */
.learn-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin: 0 auto;
}

/* ノートカード（背景画像＋ベージュオーバーレイ） */
.learn-note-card {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 140px;
  background-image: url('../assets/images/back_memo.png');
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

/* 薄いベージュのオーバーレイ（真っ白画像に温かみを加える） */
.learn-note-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.learn-note-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.learn-note-card__badge {
  position: absolute;
  left: 24px;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #64B0B9;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.learn-note-card__content {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: var(--spacing-md) var(--spacing-lg) var(--spacing-md) 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
}

.learn-note-card__desc {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.learn-note-card__title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1.4;
}

/* ----------------------------------------
   選ばれる理由（画像+テキスト交互）
   ---------------------------------------- */
.reason-item {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xxl);
  align-items: center;
}

.reason-item:last-child {
  margin-bottom: 0;
}

.reason-item__image {
  width: 100%;
  max-width: 400px;
}

.reason-item__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.reason-item__content {
  text-align: center;
  position: relative;
}

.reason-item__number {
  position: absolute;
  top: -0.15em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  font-weight: 900;
  color: var(--color-emerald);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.reason-item__title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-navy);
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.reason-item__text {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

/* ----------------------------------------
   料金
   ---------------------------------------- */
.price-main {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.price-main__per {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-xs);
}

.price-main__amount {
  margin-bottom: var(--spacing-md);
}

.price-main__number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-main__unit {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-navy);
}

.price-main__tax {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-left: var(--spacing-xs);
}

.price-main__note {
  display: inline-block;
  background: var(--color-bg-gray);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light);
}

/* 助成金バナー */
.subsidy-banner {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.subsidy-banner__text {
  font-size: 1.25rem;
  color: var(--color-navy);
  font-weight: 700;
}

.subsidy-banner__highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-emerald-dark) 100%);
  color: #fff;
  font-size: 1.75rem;
  font-weight: 900;
  border-radius: 50%;
  margin: 0 var(--spacing-xs);
  box-shadow: var(--shadow-emerald);
}

/* 助成金ボックス */
.subsidy-box {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  box-shadow: var(--shadow-card);
}

.subsidy-box__title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.subsidy-flow {
  margin-bottom: var(--spacing-xl);
}

.subsidy-flow__img {
  width: 100%;
  height: auto;
  display: block;
}

.subsidy-box__content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.subsidy-box__desc {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.subsidy-box__desc p {
  margin-bottom: var(--spacing-sm);
}

.subsidy-box__note {
  color: var(--color-emerald-dark);
  font-weight: 700;
}

.subsidy-box__types {
  text-align: center;
}

.subsidy-box__types-note {
  display: inline-block;
  background: var(--color-emerald-pale);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-emerald-dark);
  margin-bottom: var(--spacing-md);
}

.subsidy-box__types-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.subsidy-box__type {
  background: var(--color-bg-gray);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  text-align: center;
  min-width: 140px;
  border: 1px solid var(--color-border-light);
}

.subsidy-box__type-name {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--spacing-xs);
}

.subsidy-box__type-desc {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.subsidy-box__plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-emerald);
}

/* 助成金テーブル */
.subsidy-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.subsidy-table th,
.subsidy-table td {
  padding: var(--spacing-sm) var(--spacing-md);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.subsidy-table th {
  background: var(--color-navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.subsidy-table td {
  background: #fff;
  color: var(--color-text);
  font-weight: 500;
}

.subsidy-table tbody tr:last-child td {
  border-bottom: none;
}

.subsidy-table__label {
  background: var(--color-bg-gray) !important;
  font-weight: 700 !important;
  color: var(--color-navy) !important;
}

/* スマホ：カードを無くし、テーブルに余白・縦線・文字縮小（PC版は変更なし） */
@media (max-width: 768px) {
  .subsidy-box {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: var(--spacing-md) 0;
  }

  .subsidy-box__types {
    text-align: center;
  }

  .subsidy-box__types-note {
    font-size: 0.75rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
  }

  .subsidy-box__types-row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
  }

  .subsidy-box__type {
    text-align: center;
    padding: var(--spacing-sm);
    min-width: auto;
  }

  .subsidy-box__type-name {
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
  }

  .subsidy-box__type-desc {
    font-size: 0.6875rem;
  }

  .subsidy-box__plus {
    margin: 0;
    font-size: 1.125rem;
  }

  .subsidy-table {
    width: 100%;
    max-width: calc(100% - 2 * var(--spacing-sm));
    margin: 0 auto;
    border-radius: 0;
  }

  .subsidy-table th,
  .subsidy-table td {
    padding: var(--spacing-xs) 0.25rem;
    font-size: 0.6875rem;
    border-right: 1px solid var(--color-border);
  }

  .subsidy-table th:last-child,
  .subsidy-table td:last-child {
    border-right: none;
  }

  /* 導入例：縦並び・矢印下向き */
  .price-example__calc {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
  }

  .price-example__item {
    text-align: center;
  }

  .price-example__arrow {
    transform: rotate(90deg);
  }
}

/* 導入例 */
.price-example {
  background: var(--color-bg-gray);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  color: var(--color-text);
  margin-bottom: var(--spacing-lg);
}

.price-example__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  text-align: center;
  background: var(--color-navy);
  color: #fff;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-md);
  display: inline-block;
  width: 100%;
}

.price-example__calc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.price-example__item {
  text-align: center;
}

.price-example__label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-xs);
}

.price-example__value {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-navy);
}

.price-example__plus,
.price-example__arrow {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-emerald);
}

.price-example__item--total {
  background: #fff;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-emerald);
}

.price-example__result {
  text-align: center;
  font-size: 1rem;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-border);
}

.price-example__final {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-emerald-dark);
}

.price-example__per-person {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-left: var(--spacing-sm);
}

.price__note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-xl);
}

.price__cta {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: center;
}

/* ----------------------------------------
   カリキュラム（シンプル版）
   ---------------------------------------- */
.curriculum-simple {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin: 0 auto;
}

.curriculum-day {
  background: var(--color-bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.curriculum-day:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.curriculum-day__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.curriculum-day__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.curriculum-day__header {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: #fff;
  padding: var(--spacing-md) var(--spacing-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.curriculum-day__label {
  display: inline-block;
  background: rgba(16, 185, 129, 0.25);
  color: var(--color-emerald-light);
  padding: 0.25rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 700;
  flex-shrink: 0;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.curriculum-day__title {
  font-size: 1.375rem;
  font-weight: 700;
}

.curriculum-day__list {
  padding: var(--spacing-lg);
}

.curriculum-day__list li {
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding-left: var(--spacing-lg);
  transition: color var(--transition-fast);
}

.curriculum-day__list li:last-child {
  border-bottom: none;
}

.curriculum-day__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-emerald);
  font-weight: 700;
}

/* ----------------------------------------
   受講者の声スライダー
   ---------------------------------------- */
.voice-slider {
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0 24px;
}

.voice-slider__track {
  display: flex;
  gap: var(--spacing-lg);
  will-change: transform;
  touch-action: pan-y;
  cursor: grab;
}

.voice-slider__track:active {
  cursor: grabbing;
}

.voice-slider__track .card--voice {
  flex-shrink: 0;
  user-select: none;
  -webkit-user-select: none;
}

/* ----------------------------------------
   声（Voice）カード
   ---------------------------------------- */
.card--voice {
  position: relative;
  padding: var(--spacing-lg) var(--spacing-md);
  border-left: 4px solid var(--color-emerald);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}

.card__voice-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.card__voice-meta {
  min-width: 0;
}

.card__role {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0;
}

.card__training-date {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  margin: 2px 0 0;
  min-height: 1em;
}

.card__quote-icon {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-md);
  width: 48px;
  height: 48px;
  opacity: 0.08;
  pointer-events: none;
}

.card__voice-text {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* ----------------------------------------
   FAQ
   ---------------------------------------- */
.faq {
  margin: 0 auto;
  max-width: 800px;
}

.faq__item {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition-base);
}

.faq__item:hover {
  box-shadow: var(--shadow-md);
}

.faq__item[open] {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-emerald);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  cursor: pointer;
  list-style: none;
  transition: color var(--transition-fast);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid var(--color-emerald);
  border-bottom: 2.5px solid var(--color-emerald);
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: var(--spacing-sm);
}

.faq__item[open] .faq__question::after {
  transform: rotate(-135deg);
}

.faq__answer {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  overflow: hidden;
}

.faq__answer p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ----------------------------------------
   お問い合わせフォーム
   ---------------------------------------- */
.section--contact-bg {
  position: relative;
  background: url('../assets/images/bg_3.jpg') center center / cover no-repeat;
}

.section--contact-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 41, 59, 0.82) 100%);
  z-index: 0;
}

.section--contact-bg > .container {
  position: relative;
  z-index: 1;
}

.contact__lead {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  margin-bottom: var(--spacing-xl);
  line-height: 1.8;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--color-bg-white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.form__row {
  margin-bottom: var(--spacing-md);
}

.form__row--2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

.form__group {
  margin-bottom: var(--spacing-md);
}

.form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--spacing-xs);
}

.form__required {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  margin-left: 0.25rem;
  vertical-align: middle;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg-gray);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23475569' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-emerald);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
  background: #fff;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-text-muted);
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__submit {
  text-align: center;
  margin-top: var(--spacing-lg);
}

/* アクセント: ピンク/ローズ（立体・光沢・ぷっくり） */
.btn--accent {
  background: linear-gradient(
    180deg,
    var(--color-accent-light) 0%,
    var(--color-accent) 35%,
    #E11D48 100%
  );
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    var(--shadow-btn-3d-accent);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 6px 0 0 rgba(190, 18, 60, 0.8),
    0 10px 28px rgba(244, 63, 94, 0.45);
  background: linear-gradient(
    180deg,
    #FB7185 0%,
    var(--color-accent) 40%,
    #E11D48 100%
  );
}

.btn--accent:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.2),
    0 2px 0 0 rgba(190, 18, 60, 0.8),
    0 4px 12px rgba(244, 63, 94, 0.3);
}

.btn--wide {
  min-width: 280px;
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

/* スマホでは送信ボタンをコンパクトに */
@media (max-width: 768px) {
  .btn--wide {
    min-width: 220px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

.form__privacy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: var(--spacing-md);
}

/* ----------------------------------------
   フッター
   ---------------------------------------- */
.footer {
  background: var(--color-bg-navy);
  color: #fff;
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  align-items: center;
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.footer__company {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.footer__address,
.footer__tel {
  font-size: 0.875rem;
  color: #94A3B8;
}

.footer__cta {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer__copyright {
  text-align: center;
  font-size: 0.8125rem;
  color: #64748B;
  padding-top: var(--spacing-lg);
  border-top: 1px solid #1E293B;
}

/* ----------------------------------------
   ハンバーガーメニュー（スマホ用）
   ---------------------------------------- */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  gap: 5px;
  z-index: 1010;
}

.hamburger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ハンバーガー → × アニメーション */
.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----------------------------------------
   モバイルナビゲーション
   ---------------------------------------- */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: var(--spacing-sm) 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s, transform 0.3s;
}

.mobile-nav.is-open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav__list {
  list-style: none;
}

.mobile-nav__list li {
  border-bottom: 1px solid var(--color-border-light);
}

.mobile-nav__list li:last-child {
  border-bottom: none;
}

.mobile-nav__list a {
  display: block;
  padding: 0.875rem var(--spacing-lg);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-navy);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.mobile-nav__list a:hover {
  background: var(--color-bg-gray);
  color: var(--color-emerald);
}

/* ----------------------------------------
   固定リボン（全デバイス共通）
   ---------------------------------------- */
.fixed-ribbon {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  flex-direction: row;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.fixed-ribbon__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  gap: 3px;
  line-height: 1.2;
  font-family: var(--font-body);
  transition: opacity var(--transition-fast), filter var(--transition-fast);
}

.fixed-ribbon__item:hover {
  filter: brightness(1.15);
}

.fixed-ribbon__item:active {
  opacity: 0.85;
}

.fixed-ribbon__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.fixed-ribbon__item--primary {
  background: linear-gradient(180deg, var(--color-emerald-light) 0%, var(--color-emerald) 50%, var(--color-emerald-dark) 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.fixed-ribbon__item--accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, #E11D48 100%);
  color: #fff;
}

.fixed-ribbon__item--download {
  background: linear-gradient(180deg, var(--color-download-light) 0%, var(--color-download) 50%, var(--color-download-dark) 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.fixed-ribbon__item--dark {
  background: linear-gradient(180deg, var(--color-navy-light) 0%, var(--color-navy) 50%, #0A0F1A 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* フッター下部に固定リボン分の余白 */
.footer {
  padding-bottom: calc(var(--spacing-lg) + 50px);
}

/* PC版: リボンを横長にスタイル調整 */
@media (min-width: 769px) {
  .fixed-ribbon__item {
    flex-direction: row;
    gap: 8px;
    padding: 12px 16px;
    font-size: 0.875rem;
  }

  .fixed-ribbon__icon {
    width: 22px;
    height: 22px;
  }
}

/* ----------------------------------------
   スマホヘッダー調整
   ---------------------------------------- */
@media (max-width: 768px) {
  .header {
    height: 56px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  }

  .header__logo img {
    height: 32px;
  }

  /* PC用ナビとCTAはスマホでは非表示 */
  .header__cta {
    display: none;
  }

  /* Heroのpadding-top調整（ヘッダー高さ変更に合わせて） */
  .hero {
    padding-top: calc(56px + var(--spacing-xl));
    min-height: 90vh;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero__title {
    font-size: 3rem;
    letter-spacing: 0.03em;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .hero__feature {
    width: 9rem;
    max-width: 9rem;
    padding: 0.4rem;
  }

  .hero__feature::before {
    width: 2.8rem;
    height: 0.75rem;
  }

  .hero__feature-icon {
    width: 2.2rem;
    height: 1.5rem;
    top: -0.45rem;
  }

  .hero__feature-icon img {
    width: 1.5rem;
    height: 1.5rem;
  }

  .hero__feature-txt {
    font-size: 1.15rem;
  }

  .hero__feature-txt--fz-sm {
    font-size: 1rem;
  }

  .hero__feature:nth-child(2) .hero__feature-txt {
    font-size: 1.1rem;
  }

  .hero__feature:nth-child(2) .hero__feature-txt--fz-sm {
    font-size: 1.05rem;
  }

  .hero__feature:nth-child(3) .hero__feature-txt {
    font-size: 1.15rem;
  }

  .hero__feature--subsidy .hero__feature-txt--grad {
    font-size: 1.25rem;
  }

  .hero__feature-note {
    font-size: 0.6rem;
    margin-top: 0.25rem;
  }

  .hero__features {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
  }

  /* セクションのpadding調整 */
  .section {
    padding: var(--section-padding-mobile) 0;
  }


  /* コンテナのpadding */
  .container {
    padding: 0 20px;
  }

  /* 課題セクション（モバイル: テキスト上・画像下） */
  .problem-cloud {
    min-height: auto;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
  }

  .problem-cloud__texts {
    flex-direction: column;
    align-items: center;
    padding-bottom: var(--spacing-lg);
    order: 1;
  }

  .problem-cloud__people {
    position: relative;
    left: auto;
    transform: none;
    order: 2;
    margin-top: var(--spacing-md);
  }

  .problem-cloud__bubble {
    min-width: 180px;
  }

  .problem-cloud__text {
    font-size: 0.875rem;
    text-align: center;
  }

  /* セミナー概要・こんな方におすすめ（モバイル） */
  .intro__lead {
    font-size: 1rem;
  }

  .intro__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }

  .intro__card {
    padding: var(--spacing-md) var(--spacing-sm);
  }

  .intro__card-text {
    font-size: 0.875rem;
  }

  /* Learn ノートカード（スマホ：min-height解除、コンテンツ縦幅をコンパクトに） */
  .learn-note-card {
    min-height: unset;
  }

  .learn-note-card__content {
    padding: var(--spacing-md) var(--spacing-lg) var(--spacing-md) 78px;
    gap: 0.25rem;
  }

  /* カリキュラムカード（モバイル） */
  .curriculum-day__header {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .curriculum-day__label {
    font-size: 0.8125rem;
    padding: 0.2rem 0.625rem;
  }

  .curriculum-day__title {
    font-size: 1.125rem;
  }

  .curriculum-day__list {
    padding: var(--spacing-md);
  }

  .curriculum-day__list li {
    font-size: 0.875rem;
    padding-left: var(--spacing-md);
  }

}

/* ========================================
   レスポンシブ（PC: 769px〜）
   ======================================== */
@media (min-width: 769px) {
  /* ヘッダー */
  .header__nav {
    display: block;
  }

  /* ハンバーガーとモバイルナビはPCで非表示 */
  .hamburger {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  /* Hero */
  .hero {
    min-height: 92vh;
    background-image: url('../assets/images/hero_pc.jpg');
  }

  .hero__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }

  .hero__left {
    flex: 0 0 auto;
    max-width: 420px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
  }

  .hero__visual {
    flex: 1 1 auto;
    max-width: 900px;
    margin: 0;
    min-width: 0;
    width: 100%;
    position: relative;
    z-index: 0;
  }

  .hero__text {
    text-align: left;
  }

  .hero__title {
    font-size: 4rem;
    margin-bottom: var(--spacing-lg);
  }

  .hero__inner {
    padding: 0;
    max-width: 100%;
  }

  .hero__cta {
    flex-direction: row;
    align-items: flex-start;
  }

  .hero__features {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0 1.5rem;
  }

  /* セクションタイトル */
  .section__title {
    font-size: 2.25rem;
  }

  /* セミナー概要・こんな方におすすめ（PC） */
  .intro__recommend-visual {
    max-width: 860px;
  }

  .intro__people {
    max-width: 520px;
    margin-bottom: -32px;
  }

  .intro__cards {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
  }

  .intro__card-text {
    font-size: 1rem;
  }

  /* 課題セクション（PC） */
  .problem-cloud {
    min-height: 500px;
  }

  .problem-cloud__texts {
    padding-bottom: 280px;
    gap: var(--spacing-lg) var(--spacing-xl);
  }

  .problem-cloud__bubble {
    min-width: 260px;
    padding: var(--spacing-lg) var(--spacing-xl) var(--spacing-xl);
  }

  .problem-cloud__text {
    font-size: 1.125rem;
  }

  /* カード */
  .cards--3col {
    grid-template-columns: repeat(3, 1fr);
  }

  /* ステップ */
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
  }

  /* リスク・課題 */
  .risks {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
  }

  .risk__image {
    width: 180px;
    height: 180px;
  }

  .step__title {
    font-size: 1.75rem;
  }

  .step__image {
    width: 140px;
    height: 140px;
  }

  /* セミナーバナー */
  .seminar-banner__text {
    font-size: 3rem;
  }

  .seminar-banner__subtext {
    font-size: 1.25rem;
  }

  /* CTAセクション（タイトル・補足・ボタンは縦並びのまま、ボタンのみ横並び） */

  /* Learn ノートカード：PC 2×3グリッド */
  .learn-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }

  .learn-section__main {
    font-size: 1.75rem;
  }

  .learn-section__count-num {
    font-size: 1.75rem;
    min-width: 4.5rem;
  }

  .learn-note-card {
    min-height: 160px;
  }

  .learn-note-card__title {
    font-size: 1.375rem;
  }

  /* 選ばれる理由 */
  .reason-item {
    flex-direction: row;
    gap: var(--spacing-xxl);
  }

  .reason-item__image {
    flex: 1;
    max-width: 420px;
  }

  .reason-item__content {
    flex: 1;
    text-align: left;
  }

  .reason-item__number {
    left: 0;
    transform: none;
    font-size: 10rem;
  }

  .reason-item--even {
    flex-direction: row-reverse;
  }

  /* 料金 */
  .price-main__number {
    font-size: 4.5rem;
  }

  /* 助成金ボックス：PC版はdescとtypesを横並び */
  .subsidy-box__content {
    flex-direction: row;
    align-items: flex-start;
  }

  .subsidy-box__desc {
    flex: 1;
  }

  .subsidy-box__types {
    flex: 1;
  }

  .price-example__calc {
    flex-wrap: nowrap;
  }

  .price-example__final {
    font-size: 3rem;
  }

  .price__cta {
    flex-direction: row;
    justify-content: center;
  }

  /* カリキュラム */
  .curriculum-simple {
    grid-template-columns: repeat(2, 1fr);
  }

  /* お問い合わせフォーム */
  .form__row--2col {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form {
    padding: var(--spacing-xxl);
  }

  /* フッター */
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer__cta {
    flex-direction: row;
  }
}

/* ========================================
   レスポンシブ（中画面: 1080px〜）
   ======================================== */
@media (min-width: 1080px) {
  .hero__title {
    font-size: 4.5rem;
  }

  .hero__inner {
    padding: 0 5%;
  }

  .learn-section__main {
    font-size: 2rem;
  }

  .learn-section__count-num {
    font-size: 2rem;
    min-width: 5rem;
  }

  .learn-note-card {
    min-height: 180px;
  }

  .learn-note-card__title {
    font-size: 1.5rem;
  }

  .learn-note-card__desc {
    font-size: 0.875rem;
  }

  /* セクションタイトルをさらに大きく */
  .section__title {
    font-size: 2.5rem;
  }

  .section__lead {
    font-size: 1.1875rem;
  }
}

/* ========================================
   レスポンシブ（大画面: 1280px〜）
   ======================================== */
@media (min-width: 1280px) {
  .hero__title {
    font-size: 5.5rem;
  }

  .hero__visual {
    max-width: 950px;
  }
}

/* ========================================
   アニメーション → animations.css に移管済み
   ======================================== */
