/* ==========================================
   CSS カスタムプロパティ（デザイントークン）
   Before / Bridge / After の色彩ストーリー
========================================== */
:root {
  /* ── BEFORE：重さ・停滞・歴史 ── */
  --color-before-1: #292B28;
  --color-before-2: #4B443E;
  --color-before-3: #6E655B;
  --color-before-4: #8B8176;

  /* ── BRIDGE：信頼・伴走・つなぐ ── */
  --color-bridge-1: #2F6F5E;
  --color-bridge-2: #6FAE9E;
  --color-bridge-3: #DAE7E2;
  --color-bridge-4: #F3F7F5;

  /* ── AFTER：明るさ・再生・未来 ── */
  --color-after-1:  #FAA261;
  --color-after-2:  #FFC28B;
  --color-after-4:  #FFF9EF;

  /* ── NEUTRAL ── */
  --color-neutral-1: #1C1C1B;
  --color-neutral-3: #767676;
  --color-neutral-4: #BBBBBB;

  /* ── SURFACE ── */
  --color-surface-1: #FAFAFB;
  --color-surface-2: #FFFFFF;
  --color-surface-3: #F6F3EF;
  --color-surface-4: #ECE7E1;

  /* ── セマンティック（用途別エイリアス）── */
  --color-primary:       #2F6F5E;  /* BRIDGE：メインCTA・強調 */
  --color-primary-dark:  #24584A;  /* BRIDGE暗め：ホバー */
  --color-primary-mid:   #6FAE9E;  /* BRIDGE中間：補助 */
  --color-primary-light: #F3F7F5;  /* BRIDGE薄い：背景 */
  --color-accent:        #FAA261;  /* AFTER：重要CTA・NEWバッジ */
  --color-accent-dark:   #E88E4F;  /* AFTER暗め：ホバー */
  --color-accent-light:  #FFF9EF;  /* AFTER薄い：背景 */
  --color-text:          #1C1C1B;  /* 本文 */
  --color-text-mid:      #767676;  /* サブテキスト */
  --color-text-light:    #888888;  /* 補足テキスト */
  --color-bg:            #FAFAFB;  /* メイン背景 */
  --color-bg-warm:       #F6F3EF;  /* 温かみ背景 */
  --color-bg-light:      #F6F3EF;  /* 後方互換エイリアス → bg-warm */
  --color-border:        #ECE7E1;  /* ボーダー */
  --color-footer:        #292B28;  /* BEFORE最暗：フッター */

  /* フォント */
  --font-display: 'Shippori Mincho', serif;  /* 游明朝代替：見出し */
  --font-body:    'Noto Sans JP', sans-serif; /* 本文・UI */
  --font-serif:   'Shippori Mincho', serif;   /* 後方互換エイリアス */
  --font-sans:    'Noto Sans JP', sans-serif; /* 後方互換エイリアス */

  --container-width:   1200px;
  --container-padding: 24px;
  --header-height:     72px;

  --radius-btn:  50px;
  --radius-card: 12px;

  --transition: 0.4s ease;
  --shadow-card: 0 2px 12px rgba(28, 28, 27, 0.06);
  --shadow-btn:  0 8px 24px rgba(47, 111, 94, 0.25);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

main.page-news {
  display: flex;
  flex-direction: column;
}
main.page-news .section--white {
  flex: 1;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol { list-style: none; }
strong  { font-weight: 700; }

.sp-br { display: none; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

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

/* ==========================================
   ボタン（ピル型）
========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  letter-spacing: 0.02em;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

/* Primary CTA（緑） */
.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: 0 8px 24px rgba(47, 111, 94, 0.3);
}

/* Accent CTA（オレンジ：最重要） */
.btn--accent {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn--accent:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  box-shadow: 0 8px 24px rgba(250, 162, 97, 0.35);
}

/* 緑背景上の白ボタン */
.btn--white {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
  font-weight: 700;
}
.btn--white:hover {
  background: var(--color-bridge-4);
  border-color: var(--color-bridge-4);
}

/* 緑背景上の白抜きボタン */
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.65);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* 通常の枠線ボタン */
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}

/* オレンジ枠線の白ボタン */
.btn--outline-accent {
  background: #fff;
  color: var(--color-accent-dark);
  border-color: var(--color-accent);
}
.btn--outline-accent:hover {
  background: #fff;
  border-color: var(--color-accent);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 14px;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 16px;
}

/* ==========================================
   ヘッダー（全ページ共通）
========================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: #fff;
  box-shadow: 0 2px 24px rgba(28, 28, 27, 0.08);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.is-scrolled {
  background: #fff;
  box-shadow: 0 2px 24px rgba(28, 28, 27, 0.08);
}

/* サブページはデフォルトで白背景 */
.header--solid {
  background: #fff;
  box-shadow: 0 2px 24px rgba(28, 28, 27, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 16px;
}

/* ロゴ */
.header__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  text-decoration: none;
}

.header__logo-img {
  height: 32px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.header__site-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
  transition: color var(--transition);
}

/* ナビゲーション */
.header__nav {
  margin-left: auto;
}

.header__nav-list {
  display: flex;
  gap: 2px;
  align-items: center;
}

.header__nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-mid);
  padding: 7px 12px;
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}

.header__nav-link:hover,
.header__nav-link.is-active {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.header__cta {
  flex-shrink: 0;
  margin-left: 8px;
}

/* ハンバーガーボタン */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: background var(--transition);
  margin-left: auto;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.header__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* コンテンツが収まらない場合にJSが付与するコンパクトモード */
.header--compact .header__nav,
.header--compact .header__cta {
  display: none;
}
.header--compact .header__hamburger {
  display: flex;
}

/* ==========================================
   ドロワーメニュー（SP）
========================================== */
.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100dvh;
  background: #fff;
  z-index: 999;
  padding: calc(var(--header-height) + 24px) 32px 40px;
  transition: right 0.4s ease;
  overflow-y: auto;
  box-shadow: -4px 0 40px rgba(28, 28, 27, 0.12);
}

.drawer.is-open { right: 0; }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 27, 0.45);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.drawer-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.drawer__list {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.drawer__link {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition);
}

.drawer__link:hover {
  color: var(--color-primary);
}

.drawer__cta {
  width: 100%;
}

/* ==========================================
   ヒーローセクション（左：画像 / 右：テキスト on #FBF8F3）
========================================== */
.hero {
  background: #f6f3ef;
  padding: 0 max(40px, calc((100vw - var(--container-width)) / 2));
}

.hero__container {
  display: flex;
  min-height: 68vh;
  width: 100%;
}

/* PC用：右側画像カラム（SP非表示） */
.hero__image-pc {
  flex: 1;
  overflow: hidden;
  background: #FCF9F5;
  position: relative;
}

.hero__image-pc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #f6f3ef 0%, transparent 10%, transparent 90%, #f6f3ef 100%);
  pointer-events: none;
}

.hero__img-pc {
  width: 100%;
  height: calc(100% + 120px);
  object-fit: contain;
  object-position: center center;
  display: block;
  position: relative;
  top: -5px;
}

/* テキストカラム（右側 PC / 全幅 SP） */
.hero__text-col {
  flex: 0 0 auto;
  width: min(52%, 820px);
  background: #f6f3ef;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-height) + 48px) 64px 56px 24px;
  position: relative;
  z-index: 1;
}



/* メインタイトル（Shippori Mincho） */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.2vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.55;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  animation: fadeInUp 0.8s ease 0.22s both;
}

.hero__title em {
  font-style: normal;
  color: var(--color-text);
}

/* リード文 */
.hero__lead {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

/* メタ・ボタン・期間を公募期間バーの幅で揃えるラッパー */
.hero__info-stack {
  display: grid;
  width: fit-content;
  min-width: 0;
}

/* メタ情報カード */
.hero__meta {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.3s both;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 16px 24px;
  overflow: hidden;
}

.hero__meta-item {
  padding-left: 20px;
  padding-right: 28px;
  border-left: 1px solid var(--color-border);
  text-align: left;
}

.hero__meta-item:first-child {
  border-left: none;
  padding-left: 0;
}

.hero__meta-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-mid);
  font-weight: 400;
  margin-bottom: 4px;
  letter-spacing: 0.06em;
}

.hero__meta-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.3;
}

.hero__meta-value strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  display: block;
  line-height: 1.1;
}

/* 2類型：独立カード横並び */
.hero__meta-cards {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero__meta-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 12px 14px;
}

.hero__meta-card--a {
  justify-content: flex-start;
}

.hero__meta-type-label {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  margin: -12px -14px 12px;
  padding: 11px 14px;
  border-radius: 10px 10px 0 0;
  text-align: center;
}

.hero__meta-card--a .hero__meta-type-label {
  background: var(--color-primary);
}

.hero__meta-card--b .hero__meta-type-label {
  background: var(--color-text);
}

.hero__meta-card .hero__meta-label {
  font-size: 11px;
  margin-bottom: 2px;
}

.hero__meta-card .hero__meta-item {
  padding: 8px 0 0;
  border-left: none;
}

.hero__meta-card .hero__meta-item:first-of-type {
  padding-top: 0;
}

.hero__meta-card .hero__meta-value strong {
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-text);
}

/* 類型B：上限額インライン表示 */
.hero__meta-value--cap-b {
  line-height: 1.6;
}

.hero__meta-value--cap-b strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  display: inline;
  line-height: inherit;
  white-space: nowrap;
}

.cap-b__note {
  font-size: 10px;
  color: var(--color-text-light);
  font-weight: 400;
}

/* 補助上限額 統合カード */
.hero__cap-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero__cap-heading {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 12px 16px 11px;
  background: var(--color-primary);
}

.hero__cap-cols {
  display: flex;
}

.hero__cap-col {
  flex: 1;
  padding: 20px 16px 24px;
}

.hero__cap-col--b {
  border-left: 1px solid var(--color-border);
}

.hero__cap-label-group {
  border-left: 3px solid;
  padding-left: 10px;
  margin-bottom: 12px;
}

.hero__cap-label-group--a {
  border-color: var(--color-primary);
}

.hero__cap-label-group--b {
  border-color: var(--color-text);
}

.hero__cap-badge {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.hero__cap-col--a .hero__cap-badge {
  color: var(--color-primary);
}

.hero__cap-col--b .hero__cap-badge {
  color: var(--color-text);
}

.hero__cap-type-name {
  font-size: 10px;
  color: var(--color-text-mid);
  line-height: 1.4;
  margin-bottom: 12px;
}

.hero__cap-amount {
}

.hero__cap-amount strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text);
  display: block;
  line-height: 1.2;
}

.hero__cap-note {
  font-size: 10px;
  color: var(--color-text-light);
  display: block;
  margin-top: 4px;
}

/* ボタン */
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero__actions .btn {
  flex: 1 1 0;
  min-width: 0;
  white-space: nowrap;
}

/* 公募ステータスバッジ */
.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--color-primary);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  width: fit-content;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.8); }
}

/* 公募期間 */
.hero__period {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 14px;
  border-left: 2px solid var(--color-primary);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease 0.17s both;
}

.hero__period-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.1em;
}

.hero__period-date {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.55;
}

/* SP用画像（PC非表示） */
.hero__image-sp {
  display: none;
  margin-bottom: 32px;
  position: relative;
  background: #f6f3ef;
}

.hero__image-sp::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, #f6f3ef 0%, transparent 25%),
    linear-gradient(to top,    #f6f3ef 0%, transparent 25%),
    linear-gradient(to right,  #f6f3ef 0%, transparent 8%),
    linear-gradient(to left,   #f6f3ef 0%, transparent 8%);
  pointer-events: none;
}

.hero__img-sp {
  width: 100%;
  object-fit: cover;
  display: block;
}

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

.hero__scroll-label {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.25em;
}

.hero__scroll-line {
  width: 1px;
  height: 52px;
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.7), transparent);
  animation: scrollDrop 2s ease-out infinite;
}

@keyframes scrollDrop {
  0%   { top: -100%; }
  100% { top: 200%; }
}

/* ==========================================
   横流れテキストアニメーション（マーキー）
========================================== */
.marquee {
  background: var(--color-primary-dark);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  animation: marqueeScroll 40s linear infinite;
  will-change: transform;
}

.marquee__text {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================
   波形ディバイダー（セクション間）
========================================== */
.wave-divider {
  display: block;
  line-height: 0;
  font-size: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ==========================================
   セクション共通
========================================== */
.section {
  padding: 160px 40px;
  position: relative;
}

.section--white { background: #FFFFFF; }
.section--light { background: var(--color-bg-warm); }
.section--faq   { background: var(--color-primary-light); }  /* #F3F7F5 ミント */

/* BRIDGEカラーセクション（FLOW・CONTACT） */
.section--primary {
  background: var(--color-primary);
  overflow: hidden;
}

/* 背景テキスト（FLOW / CONTACT） */
.section--primary .section__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-body);
  font-size: clamp(80px, 15vw, 200px);
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  letter-spacing: 0.15em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.section--primary > .container {
  position: relative;
  z-index: 1;
}

/* セクションヘッダー */
.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__en {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--color-primary-mid);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.section__en--white {
  color: rgba(255,255,255,0.5);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  color: var(--color-text);
  display: inline-block;
  padding-bottom: 20px;
  position: relative;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}

.section__title--white {
  color: #fff;
}

.section__title--white::after {
  background: rgba(255,255,255,0.5);
}

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

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

.no-fade .fade-in {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ページ全体のふわっとフェードイン（サブページ用） */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.page-fade > main {
  animation: pageFadeIn 0.6s ease both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* prefers-reduced-motion 対応（必須） */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__title,
  .hero__lead,
  .hero__meta,
  .hero__meta-cards,
  .hero__status,
  .hero__actions,
  .hero__period,
  .hero__info-stack {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero__status-dot {
    animation: none;
  }

  .marquee__track,
  .hero__scroll-line::after {
    animation: none;
  }

  .btn:hover {
    transform: none;
  }
}

/* ==========================================
   事業概要セクション
========================================== */
.overview__grid {
  display: block;
  max-width: 800px;
}

.overview__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 4px 16px;
  border: 1px solid var(--color-bridge-3);
  border-radius: var(--radius-btn);
  background: var(--color-primary-light);
}

.overview__lead {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 24px;
}

.overview__lead strong {
  font-weight: 400;
  color: var(--color-primary);
}

.overview__body {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.9;
  margin-bottom: 16px;
}

.overview__text .btn {
  margin-top: 16px;
}

/* 数値カード（2×2グリッド）*/
.overview__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.overview__card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  border-left: 4px solid var(--color-primary);
  padding: 28px 16px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.overview__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(47, 111, 94, 0.12);
}

.overview__card-num {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1;
  margin-bottom: 10px;
}

.overview__card-num strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 2px;
}

.overview__card-num small {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}

.overview__card-label {
  font-size: 12px;
  color: var(--color-text-light);
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* ==========================================
   補助内容セクション
========================================== */
.details__subtitle {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 16px;
}

.details__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.tag {
  background: #FFFFFF;
  color: var(--color-primary);
  border: 1.5px solid var(--color-bridge-3);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 20px;
  border-radius: var(--radius-btn);
  letter-spacing: 0.03em;
  transition: all var(--transition);
}

.tag:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* テーブル */
.details__table-wrap {
  background: #FFFFFF;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(47, 111, 94, 0.08);
  margin-bottom: 20px;
}

.details__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.details__table thead tr {
  background: var(--color-primary);
}

.details__table thead th {
  color: #fff;
  font-weight: 700;
  padding: 16px 24px;
  text-align: left;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.details__table tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

.details__table tbody tr:last-child { border-bottom: none; }

.details__table tbody tr:hover { background: none; }

.details__table tbody th {
  width: 220px;
  padding: 20px 24px;
  font-weight: 700;
  color: var(--color-text);
  background: var(--color-primary-light);
  vertical-align: middle;
  border-right: 1px solid var(--color-border);
  white-space: nowrap;
}

.details__table tbody td {
  padding: 20px 24px;
  color: var(--color-text);
  line-height: 1.8;
}

.details__table tbody td strong {
  color: var(--color-primary);
}

.details__note {
  font-size: 14px;
  color: var(--color-text-light);
  text-align: right;
}

/* 3列テーブル（類型A / 類型B 比較） */
.details__table--three-col {
  table-layout: fixed;
}

.details__table--three-col .th--item {
  width: 180px;
}

.details__table--three-col .th--type-a,
.details__table--three-col .th--type-b {
  width: calc((100% - 180px) / 2);
  text-align: center;
  background: var(--color-bridge-1);
}

.details__table--three-col .th--type-b {
  background: var(--color-before-2);
}

.details__table--three-col tbody td {
  border-right: 1px solid var(--color-border);
}

.details__table--three-col tbody td:last-child {
  border-right: none;
}

/* ==========================================
   1次・2次支援フェーズ カード
========================================== */
/* 対象とする「廃屋」等 */
.target-card {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 20px rgba(28, 28, 27, 0.07);
  overflow: hidden;
}

.target-reqs {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.target-req {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.target-req__heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.target-req__num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 20px;
  line-height: 1;
}

.target-req__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0;
  line-height: 1.5;
}

.target-req__desc {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.9;
  padding-left: 34px;
}

.target-req__dl {
  display: flex;
  gap: 16px;
  padding-left: 34px;
}

.target-req__dl-row {
  display: flex;
  gap: 8px;
  font-size: 14px;
  align-items: baseline;
}

.target-req__dl-row dt {
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}

.target-req__dl-row dd {
  color: var(--color-text);
}

.target-req__dl-row dd strong {
  color: var(--color-primary);
}

.target-note {
  font-size: 12px;
  color: var(--color-text);
  line-height: 1.8;
  padding: 10px 14px;
  background: var(--color-primary-light);
  border-radius: 4px;
  margin-top: 6px;
  margin-left: 34px;
}
.target-footnote {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.8;
  padding: 0 28px 16px;
}

/* 支援概要セクション */
.support-overview__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 40px;
  margin-bottom: 24px;
  padding-left: 14px;
  border-left: 4px solid var(--color-primary);
}

/* 補助上限・周辺事業（フラット） */
.support-stats {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

.support-stat {
  flex: 1;
  padding: 0 32px;
}

.support-stat:first-child {
  padding-left: 0;
}

.support-stat + .support-stat {
  border-left: 1px solid var(--color-border);
}

.support-stat__label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
  line-height: 1.4;
}

.support-stat__value {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 4px;
}

.support-stat__value strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-right: 2px;
}

.support-stat__note {
  font-size: 11px;
  color: var(--color-text-mid);
  line-height: 1.9;
  margin-top: 4px;
}

/* 支援概要 左カラム（phase-package 内） */
.support-stat-col {
  display: flex;
  flex-direction: column;
  padding-right: 28px;
  margin-right: 4px;
  align-self: stretch;
  justify-content: center;
  min-width: 200px;
}

.support-stat-col__item {
  flex: 1;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.support-stat-col__item + .support-stat-col__item {
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

/* 公募期間 サブテキスト */
.support-phase__dl-sub {
  display: block;
  font-size: 11px;
  color: var(--color-text-light);
  margin-top: 2px;
}

/* 補助の概要カード（独立） */
.overview-summary-card {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 20px rgba(28, 28, 27, 0.07);
  margin-top: 32px;
  margin-bottom: 16px;
  overflow: hidden;
  padding-bottom: 20px;
}

.overview-summary-head {
  padding: 20px 20px 12px;
}

.overview-summary-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-mid);
  letter-spacing: 0.08em;
}

/* フェーズカード（独立） */
.phase-package {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 20px rgba(28, 28, 27, 0.07);
  margin-top: 0;
  margin-bottom: 8px;
}

.phase-package > .support-phases {
  padding: 20px;
  margin: 0;
}

.support-phases {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  align-items: stretch;
  margin-top: 32px;
  margin-bottom: 8px;
}

.support-phase__overview-panel {
  background: var(--color-primary-light);
  border: 1.5px solid var(--color-bridge-3);
  border-radius: var(--radius-card);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-width: 160px;
}

.support-phase {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1.5px solid var(--color-primary);
  padding: 28px;
  box-shadow: 0 3px 16px rgba(47, 111, 94, 0.12);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.support-phase--next {
  border-color: var(--color-bridge-3);
  box-shadow: none;
}

.support-phase__step-label {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--color-primary);
  border-radius: 0 0 6px 0;
  padding: 5px 14px;
  margin: -28px 0 14px -28px;
}

.support-phase--next .support-phase__step-label {
  background: var(--color-bridge-2);
}

.support-phase__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.support-phase__step {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
}

.support-phase--next .support-phase__step {
  color: var(--color-text-mid);
}

.support-phase__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-btn);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.support-phase__badge--open {
  background: var(--color-accent);
  color: #fff;
}

.support-phase__badge--pending {
  background: var(--color-bridge-3);
  color: var(--color-primary-dark);
}

.support-phase__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
  line-height: 1.4;
}

.support-phase--next .support-phase__title {
  color: var(--color-text-mid);
}

.support-phase__title-sep {
  color: var(--color-text-light);
  font-weight: 400;
}

.support-phase__desc {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.85;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.support-phase__dl {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  flex: 1;
}

.support-phase__dl-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 8px;
  font-size: 14px;
  line-height: 1.8;
}

.support-phase__dl-row dt {
  font-weight: 700;
  color: var(--color-text);
  font-size: 12px;
  padding-top: 2px;
}

.support-phase__dl-row dd {
  color: var(--color-text);
}

.support-phase__dl-row dd strong {
  color: var(--color-primary);
}

.support-phase__dd-item {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  margin-top: 6px;
}
.support-phase__dd-item:first-child {
  margin-top: 0;
}
.support-phase__dd-sub {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  margin-top: 2px;
}

.support-phase--next .support-phase__desc {
  color: var(--color-text-light);
}

.support-phase--next .support-phase__dl-row dt {
  color: var(--color-text-light);
  font-weight: 500;
}

.support-phase--next .support-phase__dl-row dd {
  color: var(--color-text-light);
}

.support-phase--next .support-phase__dl-row dd strong {
  color: var(--color-text-mid);
}

.support-phase__btn {
  display: block;
  text-align: center;
  margin-top: auto;
}

.support-phase__col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text-mid);
  margin-bottom: 12px;
}

.support-phase__summary-dl {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.support-phase__summary-row dt {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-mid);
  margin-bottom: 3px;
}

.support-phase__summary-row dd {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.5;
}

.support-phase__summary-row dd strong {
  color: var(--color-primary);
  font-size: 16px;
}

.support-phase__summary-row dd small {
  display: block;
  font-size: 11px;
  color: var(--color-text-light);
  margin-top: 2px;
  line-height: 1.5;
}

.support-phase__note {
  font-size: 12px;
  color: var(--color-text-mid);
  line-height: 1.7;
  margin-top: auto;
}

/* STEP2 2カラムレイアウト */
.support-phase__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 16px;
  flex: 1;
}

.support-phase__col {
  padding: 12px 14px 12px 0;
}

.support-phase__col--right {
  padding: 12px 0 12px 14px;
  border-left: 1px solid var(--color-border);
}

.support-phase__col-heading {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.support-phase--next .support-phase__col-heading {
  color: var(--color-text-light);
}

.support-phase__col-item {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 8px;
}

.support-phase--next .support-phase__col-item {
  color: var(--color-text-light);
}

.support-phase__col-rate {
  font-size: 12px;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 6px;
}

.support-phase__col-rate strong {
  color: var(--color-text);
}

.support-phase--next .support-phase__col-rate {
  color: var(--color-text-light);
}

.support-phase--next .support-phase__col-rate strong {
  color: var(--color-text-mid);
}

.support-phase__col-cap {
  font-size: 11px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-top: 6px;
}

/* フェーズ間矢印 */
.support-phases__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  color: var(--color-text-light);
  flex-shrink: 0;
  align-self: center;
}

/* 共通情報サマリー */
.overview__summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 0;
}

.overview__summary-item {
  padding: 16px 20px;
  border-right: 1px solid var(--color-border);
}

.overview__summary-item:last-child {
  border-right: none;
}

.overview__summary-item dt {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-mid);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.overview__summary-item dd {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.5;
}

.overview__summary-item dd strong {
  color: var(--color-primary);
  font-size: 16px;
}

.overview__summary-item dd small {
  display: block;
  font-size: 11px;
  color: var(--color-text-light);
  margin-top: 3px;
  line-height: 1.5;
}

.section__cta {
  margin-top: 32px;
  text-align: center;
}

/* ==========================================
   申請の流れセクション
========================================== */
.flow__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 56px;
  position: relative;
}

/* STEPを結ぶ線 */
.flow__steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(10% + 28px);
  right: calc(10% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-bridge-2), var(--color-bridge-3));
  opacity: 0.5;
  z-index: 0;
}

.flow__step {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.flow__step-circle {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.flow__step-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.flow__step-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4;
}

.flow__step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
}

.flow__cta {
  text-align: center;
}

/* ==========================================
   お知らせセクション（トップ）
========================================== */
.news__list {
  max-width: 840px;
  margin: 0 auto 40px;
}

.news__item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.news__item:first-child {
  border-top: none;
}

.news__date {
  font-size: 14px;
  color: var(--color-text-light);
  font-weight: 500;
  white-space: nowrap;
  min-width: 84px;
  font-variant-numeric: tabular-nums;
}

.news__tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  flex-shrink: 0;
}

.news__tag--new       { background: var(--color-accent);   color: #fff; }
.news__tag--important { background: var(--color-accent);   color: #fff; }
.news__tag--koubo     { background: var(--color-primary);  color: #fff; }
.news__tag--event     { background: var(--color-before-2); color: #fff; }
.news__tag--info      { background: var(--color-bridge-3); color: var(--color-primary); border: 1px solid var(--color-bridge-3); }
.news__tag--pickup    { background: transparent; color: var(--color-primary); border: 1px solid var(--color-primary); letter-spacing: 0.06em; }

.news__title {
  font-size: 15px;
  color: var(--color-text);
  font-weight: 500;
  flex: 1;
  transition: color var(--transition);
}

.news__title:hover {
  color: var(--color-primary);
}

.news__more {
  text-align: center;
}

/* ==========================================
   FAQセクション（トップ）
========================================== */
.faq__list {
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq__item {
  background: #FFFFFF;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(47, 111, 94, 0.07);
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background var(--transition);
}

.faq__question::-webkit-details-marker { display: none; }
.faq__question::marker { display: none; }

.faq__question:hover {
  background: var(--color-primary-light);
}

details[open] > .faq__question {
  background: var(--color-primary-light);
  border-bottom: 1px solid var(--color-bridge-3);
}

.faq__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-display);
  border-radius: 50%;
  flex-shrink: 0;
}

.faq__question > span:nth-child(2) {
  flex: 1;
  line-height: 1.6;
}

.faq__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--color-primary);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transition: transform var(--transition), opacity var(--transition);
}

.faq__icon::before { width: 16px; height: 2px; transform: translate(-50%, -50%); }
.faq__icon::after  { width: 2px; height: 16px; transform: translate(-50%, -50%); }

details[open] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq__answer {
  padding: 20px 24px 24px calc(24px + 36px + 14px);
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.9;
  animation: faqOpen 0.4s ease;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq__more {
  text-align: center;
}

/* ==========================================
   お問い合わせセクション
========================================== */
.contact__inner {
  text-align: center;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  display: inline-block;
  padding-bottom: 20px;
  position: relative;
}

.contact__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: rgba(255,255,255,0.45);
  border-radius: 2px;
}

.contact__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.85;
  margin-bottom: 36px;
}

.contact__tel {
  margin-top: 32px;
  margin-bottom: 0;
}

.contact__tel-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-bottom: 8px;
  transition: opacity var(--transition);
}

.contact__tel-number:hover { opacity: 0.75; }

.contact__tel-hours {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.03em;
}

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

/* ==========================================
   申請CTAセクション
========================================== */
.apply__inner {
  text-align: center;
}

.apply__inner--card {
  background: #ffffff;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-card);
  padding: 48px 56px;
  max-width: 720px;
  margin: 0 auto;
}

.apply__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--color-accent);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.apply__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 24px;
  display: inline-block;
  padding-bottom: 20px;
  position: relative;
}

.apply__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--color-accent-dark);
  border-radius: 2px;
}

.apply__desc {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.85;
  margin-bottom: 40px;
}

/* ==========================================
   フッター（全ページ共通・BEFOREカラー）
========================================== */
.footer {
  background: var(--color-footer);
  padding: 56px 0 32px;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer__program {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.6;
}

.footer__agency {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
}

.footer__nav-link {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer__nav-link:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

.footer__legal-link {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.footer__legal-link:hover {
  color: rgba(255,255,255,0.65);
}

/* ==========================================
   パンくずリスト（サブページ共通）
========================================== */
.breadcrumb {
  padding: 16px 0;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb__item {
  font-size: 14px;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb__item:not(:last-child)::after {
  content: '/';
  color: var(--color-border);
}

.breadcrumb__item a {
  color: var(--color-primary);
  transition: opacity var(--transition);
}

.breadcrumb__item a:hover {
  opacity: 0.75;
}

/* ==========================================
   サブページヒーロー（ページタイトル部）
========================================== */
.page-hero {
  background: var(--color-bg-warm);
  padding-top: var(--header-height);
  border-bottom: 1px solid var(--color-border);
}

.page-hero__inner {
  padding: 0 0 40px;
}

.page-hero__en {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--color-primary-mid);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

/* ==========================================
   フィルターボタン（お知らせ）
========================================== */
.filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid var(--color-border);
  background: #fff;
  color: var(--color-text-mid);
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* ==========================================
   お知らせカード（一覧・詳細）
========================================== */
.news-list__item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  transition: background var(--transition);
}

.news-list__item:first-child {
  border-top: none;
}

.news-list__item:hover .news-list__title {
  color: var(--color-primary);
}

.news-list__date {
  font-size: 14px;
  color: var(--color-text-light);
  white-space: nowrap;
  min-width: 84px;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.news-list__title {
  font-size: 15px;
  color: var(--color-text);
  font-weight: 500;
  flex: 1;
  transition: color var(--transition);
  line-height: 1.6;
}

/* お知らせ詳細 */
.article__header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

.article__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.article__date {
  font-size: 14px;
  color: var(--color-text-light);
  font-variant-numeric: tabular-nums;
}

.article__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}

.article__body {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.9;
}

.article__body p { margin-bottom: 20px; }
.article__body h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  margin: 36px 0 16px;
  padding-left: 14px;
  border-left: 4px solid var(--color-primary);
}
.article__body ul { margin: 0 0 20px 24px; list-style: disc; }
.article__body li { margin-bottom: 8px; }

/* 前後ナビゲーション */
.article__nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.article__nav-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity var(--transition);
}

.article__nav-link:hover { opacity: 0.75; }

.article__back {
  text-align: center;
  margin-top: 32px;
}

/* ==========================================
   FAQカテゴリタブ
========================================== */
.faq-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.faq-tab {
  padding: 10px 24px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid var(--color-border);
  background: #fff;
  color: var(--color-text-mid);
  transition: all var(--transition);
}

.faq-tab:hover,
.faq-tab.is-active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.cat-dropdown {
  display: none;
  position: relative;
  margin-bottom: 32px;
}

.cat-dropdown__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}

.cat-dropdown__trigger[aria-expanded="true"] {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.cat-dropdown__arrow {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.cat-dropdown__trigger[aria-expanded="true"] .cat-dropdown__arrow {
  transform: rotate(180deg);
}

.cat-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid var(--color-primary);
  border-radius: 20px;
  padding: 8px;
  list-style: none;
  box-shadow: 0 8px 32px rgba(47, 111, 94, 0.15);
  z-index: 200;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cat-dropdown.is-open .cat-dropdown__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cat-dropdown__option {
  padding: 12px 18px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-mid);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.cat-dropdown__option:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.cat-dropdown__option.is-selected {
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .cat-dropdown__menu { transition: none; }
  .cat-dropdown__arrow { transition: none; }
}

.faq-group {
  margin-bottom: 48px;
}

.faq-group__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 8px 0;
  border-bottom: 2px solid var(--color-bridge-3);
}

/* ==========================================
   説明会セクション
========================================== */
.seminar__content {
  max-width: 720px;
  margin: 0 auto;
}

.seminar__meta {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-mid);
  text-align: center;
  margin-bottom: 20px;
}

.seminar__video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-card);
}

.seminar__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.seminar__faq-notice {
  text-align: center;
}

.seminar__faq-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.seminar__faq-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}

.seminar__faq-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}

.seminar__faq-link:hover {
  color: var(--color-primary-dark);
}

/* ==========================================
   申請様式ページ
========================================== */
.download__steps {
  display: flex;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.download__step {
  flex: 1;
  min-width: 180px;
  background: var(--color-primary-light);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  text-align: center;
  border-top: 3px solid var(--color-primary);
}

.download__step-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-primary);
  display: block;
  margin-bottom: 8px;
}

.download__step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}

.download__table-wrap {
  background: #FFFFFF;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
}

.download__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.download__table thead tr {
  background: var(--color-primary);
}

.download__table thead th {
  color: #fff;
  font-weight: 700;
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
}

.download__table tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

.download__table tbody tr:last-child { border-bottom: none; }
.download__table tbody tr:nth-child(even) { background: var(--color-primary-light); }

.download__table tbody td {
  padding: 18px 20px;
  color: var(--color-text);
  vertical-align: middle;
}

.download__table tbody td:first-child {
  font-weight: 700;
  color: var(--color-text);
}

.download__file-type {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border: 1px solid var(--color-bridge-3);
  letter-spacing: 0.05em;
}

.download__note {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 40px;
}

.download__note p {
  margin-bottom: 4px;
}

/* 事前相談バナー */
.consult-notice {
  display: flex;
  gap: 32px;
  align-items: center;
  background: #ffffff;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  margin-bottom: 48px;
}

.consult-notice__content {
  flex: 1;
}

.consult-notice__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.consult-notice__lead {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.5;
}

.consult-notice__text {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.7;
}

.consult-notice__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.consult-notice__tel {
  font-size: 12px;
  color: var(--color-text-mid);
  text-align: center;
  line-height: 1.6;
}

.consult-notice__tel a {
  color: var(--color-text);
  font-weight: 600;
  text-decoration: none;
}

.consult-notice__tel a:hover { text-decoration: underline; }

/* トップページApplyセクション用：縦積みレイアウト */
.consult-notice--column {
  flex-direction: column;
  text-align: left;
  max-width: 720px;
  margin: 48px auto 0;
}

.consult-notice--column .consult-notice__label,
.consult-notice--column .consult-notice__lead {
  text-align: center;
}

.consult-notice--column .consult-notice__actions {
  flex-direction: row;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.consult-notice--column .consult-notice__tel {
  display: none;
}

/* 提出書類一覧 形式列の折り返し禁止 */
.download__table tbody td[data-label="形式"] {
  white-space: nowrap;
}

/* 提出書類一覧 類型B区切り行 */
.download__table-section td {
  background: var(--color-primary) !important;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 16px;
}

/* ==========================================
   PCフォントサイズ調整（768px以上）
   SPはこのままにするため min-width で分離
========================================== */
@media (min-width: 768px) {
  body { line-height: 1.95; }

  /* 事業概要 */
  .overview__lead              { font-size: 16px; }
  .overview__body              { font-size: 16px; }
  .overview__summary-item dd   { font-size: 15px; }
  .support-stat__note          { font-size: 12px; }

  /* 対象とする廃屋 */
  .target-req__title           { font-size: 18px; }
  .target-req__desc            { font-size: 15px; }
  .target-req__dl-row          { font-size: 15px; }

  /* 補助上限・統計 */
  .support-stat__label         { font-size: 14px; }
  .support-stat__value         { font-size: 15px; }

  /* 支援フェーズカード */
  .support-phase__step-label   { font-size: 12px; }
  .support-phase__badge        { font-size: 12px; }
  .support-phase__desc         { font-size: 15px; }
  .support-phase__dl-row       { font-size: 15px; }
  .support-phase__dd-item      { font-size: 15px; }
  .support-phase__dd-sub       { font-size: 15px; }
  .support-phase__col-item     { font-size: 15px; }
  .support-phase__summary-row dd { font-size: 16px; }

  /* 申請の流れ */
  .flow__step-desc             { font-size: 15px; }

  /* 説明会 */
  .seminar__meta                { font-size: 16px; }

  /* FAQ */
  .faq__question               { font-size: 17px; }
  .faq__answer                 { font-size: 16px; }

  /* お知らせ */
  .news__date                  { font-size: 14px; }
  .news-list__date             { font-size: 14px; }

  /* サブページ共通バランス調整 */
  .details__note               { font-size: 14px; }
  .tag                         { font-size: 14px; }
  .faq-group__title            { font-size: 14px; }
  .download__step-title        { font-size: 16px; }
}

/* ==========================================
   レスポンシブ：タブレット（768〜1023px）
========================================== */
@media (max-width: 1023px) {
  :root {
    --container-padding: 20px;
  }

  .section { padding: 128px 40px; }
  .section__header { margin-bottom: 48px; }

  .overview__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .flow__steps::before { display: none; }

  .flow__steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }

  .flow__step {
    flex: 0 0 calc(33.333% - 24px);
    min-width: 160px;
  }

  .download__steps {
    gap: 16px;
  }
}

/* ==========================================
   レスポンシブ：スマートフォン（〜767px）
========================================== */
@media (max-width: 767px) {
  :root {
    --header-height:     60px;
    --container-padding: 16px;
  }

  /* ヘッダー：ナビとCTA非表示 */
  .header__nav,
  .header__cta {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  /* TOPページのみ：初期状態は背景なし・スクロール後に白 */
  .header:not(.header--solid) {
    background: transparent;
    box-shadow: none;
  }
  .header:not(.header--solid).is-scrolled,
  .header:not(.header--solid).is-drawer-open {
    background: #fff;
    box-shadow: 0 2px 24px rgba(28, 28, 27, 0.08);
  }

  .header__inner {
    padding-left: 16px;
    padding-right: 20px;
  }

  .header__logo {
    flex-wrap: wrap;
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
  }

  .header__logo-img {
    height: 24px;
  }

  .header__site-name {
    font-size: clamp(7px, 2.2vw, 10px);
  }

  /* セクション */
  .section        { padding: 80px 0; }
  .section__header { margin-bottom: 36px; }

  /* ヒーロー */
  .hero {
    padding: 0;
  }

  .hero__container {
    flex-direction: column;
  }

  .hero__image-pc {
    display: none;
  }

  .hero__text-col {
    width: 100%;
    padding: calc(var(--header-height) + 32px) 16px 40px;
  }

  .hero__title,
  .hero__lead {
    position: relative;
    z-index: 1;
  }

  .hero__image-sp {
    display: block;
    margin-left: -16px;
    margin-right: -16px;
    margin-top: -60px;
    margin-bottom: 56px;
    z-index: 0;
  }

  .hero__img-sp {
    height: 400px;
    object-position: center 35%;
  }

  .hero__info-stack {
    width: 100%;
  }

  .hero__meta,
  .hero__meta-cards {
    display: none;
  }

  .hero__actions {
    margin-bottom: 16px;
    flex-direction: column;
    align-items: stretch;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions .btn {
    flex: none;
    width: 100%;
    justify-content: center;
  }

  /* 事業概要カード：2列維持 */
  .overview__cards {
    grid-template-columns: 1fr 1fr;
  }

  /* 対象とする廃屋：SP */
  .target-req__desc,
  .target-req__dl {
    padding-left: 0;
  }

  .target-note {
    margin-left: 0;
  }

  .target-req__dl {
    flex-direction: column;
    gap: 8px;
  }

  /* 支援概要 左カラム：SP縦積み */
  .support-stat-col {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 8px;
    min-width: unset;
  }

  .support-stat-col__item {
    text-align: left;
  }

  /* フェーズカード dl：SP縦積み */
  .support-phase__dl-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .support-phase__dl-row dd {
    text-align: left;
  }

  /* STEP2 2カラム：SP縦積み */
  .support-phase__cols {
    grid-template-columns: 1fr;
  }

  .support-phase__col--right {
    padding: 12px 0 12px 0;
    border-left: none;
    border-top: none;
  }

  /* 親カード SP */
  .phase-package > .support-phases {
    padding: 16px;
  }

  /* 1次・2次支援フェーズ：縦積み */
  .support-phases {
    grid-template-columns: 1fr;
    gap: 12px 0;
  }

  .support-phases__arrow {
    transform: rotate(90deg);
    width: 100%;
    padding: 4px 0;
    text-align: center;
  }

  /* 補助の概要：SP縦積み */
  .overview__summary {
    grid-template-columns: 1fr;
  }

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

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

  /* テーブル縦積み */
  .details__table thead { display: none; }

  .details__table tbody tr {
    display: block;
    border-bottom: 2px solid var(--color-border);
    padding: 12px 0;
  }

  .details__table tbody th,
  .details__table tbody td {
    display: block;
    width: 100%;
    padding: 4px 20px;
    border: none;
    background: none !important;
    white-space: normal;
  }

  .details__table tbody th {
    font-size: 12px;
    color: var(--color-primary);
    padding-bottom: 2px;
  }

  /* 3列テーブルSP：類型A/B の視覚的区別 */
  .details__table--three-col tbody td[data-type-label] {
    margin-left: 8px;
    padding: 6px 16px 6px 12px;
    border-left: 3px solid !important;
  }

  .details__table--three-col tbody td[data-type-label="類型A"] {
    border-left-color: var(--color-primary) !important;
  }

  .details__table--three-col tbody td[data-type-label="類型B"] {
    border-left-color: var(--color-before-2) !important;
    margin-top: 12px;
  }

  .details__table--three-col tbody td[data-type-label]::before {
    content: attr(data-type-label);
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 1px 6px;
    border-radius: 3px;
    margin-bottom: 8px;
    color: var(--color-primary);
    background: var(--color-primary-light);
    width: fit-content;
  }

  .details__table--three-col tbody td[data-type-label="類型B"]::before {
    color: var(--color-before-2);
    background: rgba(75, 68, 62, 0.07);
  }

  /* FLOW：縦並び */
  .flow__steps {
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
  }

  .flow__step {
    display: flex;
    gap: 20px;
    text-align: left;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    flex: none;
    width: 100%;
    min-width: unset;
  }

  .flow__step:last-child { border-bottom: none; }

  .flow__step-circle {
    flex-shrink: 0;
    margin: 0;
    width: 60px;
    height: 60px;
  }

  .flow__step-body { flex: 1; padding-top: 4px; }

  /* お知らせ（TOP・一覧共通） */
  .news__item,
  .news-list__item { flex-wrap: wrap; gap: 6px; }
  .news__title,
  .news-list__title { flex: 0 0 100%; }

  /* FAQ */
  .faq__question { padding-left: 12px; padding-right: 12px; }
  .faq__answer { padding-left: 24px; }

  /* お問い合わせ */
  .contact__actions { flex-direction: column; align-items: center; }


  /* フッター */
  .footer__inner { flex-direction: column; gap: 24px; }
  .footer__nav-list { flex-direction: column; gap: 8px; }

  /* サブページ */
  .article__nav { flex-direction: column; }
  .download__steps { flex-direction: column; }
  /* テーブル → カード型レイアウト */
  .download__table-wrap { overflow-x: visible; }
  .download__table thead { display: none; }
  .download__table,
  .download__table tbody,
  .download__table tr,
  .download__table td { display: block; width: 100%; box-sizing: border-box; }
  .download__table tbody tr {
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border);
  }
  .download__table tbody tr:last-child { border-bottom: none; }
  .download__table tbody td {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    font-size: 14px;
    border: none;
  }
  .download__table tbody td::before {
    content: attr(data-label);
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary);
    min-width: 60px;
    flex-shrink: 0;
    letter-spacing: 0.04em;
  }
  .download__table tbody td[data-label="ダウンロード"] {
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px dashed var(--color-border);
    justify-content: center;
  }
  .download__table tbody td[data-label="ダウンロード"]::before { display: none; }
  .download__table tbody td[data-label="ダウンロード"] .btn { width: 100%; text-align: center; }

  /* フィルター・タブ → SP はカスタムドロップダウン */
  .filter-bar   { display: none; }
  .faq-tabs     { display: none; }
  .cat-dropdown { display: block; }

  /* 説明会 */
  .seminar__faq-links { flex-direction: column; gap: 12px; }

  /* 申請カード */
  .apply__inner--card { padding: 36px 24px; }

  /* ウェーブ */
  .wave-divider svg { height: 40px; }

  /* 類型B区切り行 */
  .download__table-section { padding: 0 !important; border: none !important; }
  .download__table-section td { display: block !important; text-align: left; padding: 16px 20px !important; }
  .download__table-section td::before { display: none; }
  .sp-br { display: inline; }

  /* 事前相談バナー */
  .consult-notice {
    flex-direction: column;
    gap: 20px;
    padding: 24px 20px;
  }

  .consult-notice__actions {
    width: auto;
  }

  .consult-notice__actions .btn {
    width: auto;
  }

  .consult-notice__tel {
    white-space: normal;
    text-align: center;
  }

  .consult-notice--column .consult-notice__actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ==========================================
   プライバシーポリシー
========================================== */
.policy {
  max-width: 800px;
  margin: 0 auto;
}

.policy__header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

.policy__subtitle {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 20px;
}

.policy__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}

.policy__meta-date {
  font-size: 14px;
  color: var(--color-text-mid);
}

.policy__meta-org {
  font-size: 14px;
  color: var(--color-text-mid);
}

.policy__lead {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 48px;
  line-height: 1.8;
}

.policy__section {
  margin-bottom: 44px;
}

.policy__section:last-child {
  margin-bottom: 0;
}

.policy__heading {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-primary);
}

.policy__text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 12px;
}

.policy__text:last-child {
  margin-bottom: 0;
}

.policy__text a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-all;
}

.policy__text a:hover {
  color: var(--color-primary-dark);
}

.policy__highlight {
  padding: 16px 20px;
  background: var(--color-primary-light);
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text);
}

.policy__list--ol {
  margin: 0 0 0 4px;
  padding: 0;
  list-style: none;
  counter-reset: policy-ol;
}

.policy__list--ol li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 8px;
  counter-increment: policy-ol;
}

.policy__list--ol li::before {
  content: "(" counter(policy-ol) ")";
  position: absolute;
  left: 0;
  font-weight: 500;
  color: var(--color-primary);
}

.policy__contact-box {
  padding: 20px 24px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  margin-top: 12px;
}

.policy__contact-item {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 8px;
}

.policy__contact-item:last-child {
  margin-bottom: 0;
}

.policy__contact-item a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy__contact-item a:hover {
  color: var(--color-primary-dark);
}

@media (max-width: 767px) {
  .policy__lead { font-size: 15px; margin-bottom: 36px; }
  .policy__heading { font-size: 15px; }
  .policy__text,
  .policy__list--ol li,
  .policy__contact-item { font-size: 14px; }
  .footer__bottom { gap: 12px; }
}
