/*
WHOOPS! ドローンスクール沖縄 LP 専用スタイル
template-school-lp.php から読み込むスタンドアロンCSS。

デザインシステム:
- 配色: 沖縄ドローンロゴの紺 #083860 系（--blue / --blue-dark）× WHOOPSロゴの黄 #F2CE3D（--yellow）
        CTAのみLINEグリーン。淡い空色 --sky-bg と白い波形でセクションを区切る
- 書体: 本文 = Noto Sans JP 15-16px/行間1.9、見出し = Noto Serif JP 600（本部サイト踏襲の明朝）
- ヘッダー: 黒（本部サイト踏襲）
- 動き: ヒーローKen Burns・ドローン横断・実績バッジ浮遊・流れの点灯など
        （すべて prefers-reduced-motion で停止）
- スマホ: 600px以下でサイズ最適化。比較表は横スクロール＋ヒント＋固定列
*/

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
  /* WHOOPSロゴ準拠: 黒をアクセントに（旧ブルー系変数を黒へ再割当て） */
  --blue: #2E2E2E;
  --blue-dark: #262626;
  --blue-tab: #262626;
  --sky-bg: #FAF7EE;           /* 温かいクリーム */
  --sky-line: #EBE3CC;
  --ink: #2F393D;              /* 本文色 */
  --ink-soft: #5C6A70;
  --ink-faint: #8C9AA0;
  --border: #DFE8ED;

  /* WHOOPSロゴイエロー */
  --yellow: #FFD338;
  --yellow-soft: #FFE375;      /* マーカー・淡い面用 */
  --orange: #F5B81C;
  --grad-sun: linear-gradient(135deg, #FFDF5E 0%, #FFC81A 100%);
  --line-green: #06C755;
  --line-green-dark: #05B34C;

  --font-body: 'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;  /* 本部サイト踏襲の見出し明朝 */

  --max-w: 1100px;
  --radius: 10px;
  --shadow: 0 3px 14px rgba(47, 57, 61, 0.08);
}

/* ==========================================================================
   Reset / Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(78px + env(safe-area-inset-top, 0px));
}
@media (max-width: 600px) {
  html { scroll-padding-top: calc(62px + env(safe-area-inset-top, 0px)); }
}

body.school-lp-body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
  background: #fff;
  font-size: 15px;
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  word-break: normal;
  line-break: strict;
  /* 日本語は文字単位で自然に折り返しつつ、英数字の語（WHOOPS!・KDDI・¥174,700 等）は
     途中で割らない。anywhere だと単語の途中で改行されるため normal にする。 */
  overflow-wrap: normal;
}

/* URL・メールアドレスなど区切りのない長い文字列だけは、はみ出し防止のため途中改行を許可 */
.access-table a,
.contact-noscript a,
.footer-hq a { overflow-wrap: anywhere; }
@media (min-width: 600px) {
  body.school-lp-body { font-size: 16px; }
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { line-height: 1.7; font-weight: 700; color: var(--ink); text-wrap: pretty; }

.pc-only { display: inline; }
.sp-only { display: none; }
@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: inline; }
}

/* 途中で折り返したくない語句（複合語の分断防止）。
   inline-block だと後続の句読点が禁則処理から外れ行頭に落ちるため white-space で指定する。 */
.nowrap { white-space: nowrap; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

::selection { background: var(--yellow); color: var(--ink); }

.hl { background: linear-gradient(transparent 62%, var(--yellow-soft) 62%); }

/* ==========================================================================
   セクション共通・波区切り
   ========================================================================== */
.section { padding: 5.5rem 0; position: relative; }
@media (max-width: 768px) { .section { padding: 3.5rem 0; } }

/* 淡グレーセクション（本部の明るい面） */
.section--gray { background: var(--sky-bg); }

/* クリームセクション（ロゴイエローの淡い地） */
.section--mint {
  background: var(--sky-bg);
}

.sec-head { text-align: center; margin-bottom: 3.2rem; }
@media (max-width: 768px) { .sec-head { margin-bottom: 2.4rem; } }

/* 大見出し: 参考サイトの38px/700/行間1.75に準拠（可変） */
.sec-title {
  font-family: var(--font-serif);
  font-size: clamp(23px, 3.2vw, 34px);
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0 auto;
  max-width: 27em;
  text-wrap: balance;
}
.sec-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: var(--grad-sun);
  margin: 1.2rem auto 0;
}
.sec-title em {
  font-style: normal;
  color: inherit;
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
}

.sec-lead {
  margin: 1.4rem auto 0;
  color: var(--ink);
  max-width: 40em;
  font-size: 15px;
  line-height: 2;
}

/* ==========================================================================
   ボタン（参考サイト準拠: 角丸・太字・矢印）
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  padding: 1.1em 2.6em;
  border: none;
  border-radius: 5px; /* 本部準拠の角丸 */
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

/* カード内CTA（このコースをLINEで相談／LINEで無料確認）は幅が狭く、
   狭い画面で「相談」「確認」が途中改行しやすい。keep-allで語中改行を抑止。
   ラベルは短く1行に収まるため、はみ出しの心配はない。 */
.btn-card { word-break: keep-all; }

.btn-line {
  background: var(--line-green);
  color: #fff;
  box-shadow: 0 3px 10px rgba(6, 199, 85, 0.28);
}
.btn-line:hover { background: var(--line-green-dark); transform: translateY(-1px); }
.btn-line .btn-icon { width: 1.35em; height: 1.35em; flex-shrink: 0; }
/* 本部準拠の矢印 */
.btn-dark {
  background: #2E2E2E;
  color: #fff;
}
.btn-dark:hover { background: #262626; color: var(--yellow); }

.btn-line::after, .btn-ghost::after, .btn-dark::after {
  content: '→';
  font-weight: 700;
  margin-left: 0.2em;
}

.btn-lg { font-size: 17px; padding: 1.1em 3em; }
@media (max-width: 480px) {
  .btn-lg { width: 100%; padding: 1.1em 1.2em; font-size: 16px; }
}

.cta-note {
  margin-top: 1rem;
  font-size: 13px;
  color: var(--ink-soft);
}
.cta-note strong { color: var(--blue); font-weight: 700; }

/* ==========================================================================
   ヘッダー
   ========================================================================== */
.lp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(46, 47, 49, 0.96); /* 本部サイト踏襲の黒ヘッダー */
  backdrop-filter: blur(8px);
  box-shadow: none;
}
.lp-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 1rem;
}
@media (max-width: 600px) { .lp-header .header-inner { height: 62px; } }

.lp-header .logo { display: flex; align-items: center; gap: 0.8rem; min-width: 0; }
.lp-header .logo img { height: 42px; width: auto; }
.lp-header .logo-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: #fff;
  white-space: nowrap;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 0.8rem;
}
@media (max-width: 480px) {
  .lp-header .logo img { height: 32px; }
  .lp-header .logo-text { font-size: 10px; white-space: normal; }
}

.header-nav { display: flex; gap: 1.6rem; }
.header-nav a {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--yellow); }
@media (max-width: 1000px) { .header-nav { display: none; } }

.lp-header .btn { padding: 0.65em 1.5em; font-size: 13px; }
@media (max-width: 480px) {
  /* タップしやすい高さを確保しつつヘッダー内に収める */
  .lp-header .btn { padding: 0.85em 1.1em; font-size: 12px; }
}

/* ==========================================================================
   ヒーロー（明るい空色・大きな文字）
   ========================================================================== */
.hero {
  position: relative;
  margin-top: 78px;
  min-height: min(84vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-dark);
  color: #fff;
}
@media (max-width: 600px) { .hero { margin-top: 62px; min-height: auto; } }

.hero-inner {
  position: static;
  display: block;
  padding: 5rem 0 7rem;
  width: 100%;
}
@media (max-width: 900px) {
  .hero-inner { padding: 3.2rem 0 5.5rem; }
}

.hero-text { position: relative; z-index: 2; max-width: 640px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.hero-badges .hero-badge { margin-bottom: 0; white-space: nowrap; }
.hero-badges .hero-badge--lineage {
  background: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: none;
}

.hero-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: var(--yellow);
  border: none;
  padding: 0.45em 1.4em;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  transform: none;
  box-shadow: 0 2px 10px rgba(22, 22, 22, 0.3);
}

.hero h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(28px, 4.6vw, 44px);
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 2px 18px rgba(22, 22, 22, 0.45);
  margin-bottom: 1.3rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--yellow);
  background: none;
  padding: 0 0 0.06em;
  border-bottom: 2px solid rgba(242, 206, 61, 0.55);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-copy {
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 500;
  max-width: 30em;
  color: rgba(255, 255, 255, 0.95);
  line-height: 2;
  text-shadow: 0 1px 10px rgba(22, 22, 22, 0.4);
  margin-bottom: 1.7rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.4rem;
}
.hero-tags li {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.94);
  padding: 0.45em 1.2em;
  border-radius: 999px;
  border: none;
  box-shadow: 0 2px 8px rgba(22, 22, 22, 0.25);
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-tags li::before { content: none; }
.hero-tags li:first-child { padding-left: 1.2em; }

/* 数字チップ（最短2日間・最大75%・¥174,700〜） */
.hero-nums li {
  display: flex;
  align-items: baseline;
  gap: 0.25em;
  padding: 0.5em 1.3em;
}
.hero-nums .t, .hero-nums .s {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
}
.hero-nums strong {
  font-size: 21px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--blue-dark);
  font-variant-numeric: tabular-nums;
}

/* CTA行（メイン＋ゴースト） */
.hero-cta {
  display: flex;
  align-items: flex-end;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-bottom: 0.4rem;
}
.hero-cta-main { text-align: center; }
.cta-micro {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.45rem;
  text-shadow: 0 1px 8px rgba(22, 22, 22, 0.5);
}

/* ゴーストボタン（検討層向けの第2CTA） */
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
  padding: 0.95em 2em;
}
.btn-ghost:hover {
  background: #fff;
  color: var(--blue-dark);
}

/* LINEボタンのパルス（波紋） */
.btn-pulse { position: relative; }
.btn-pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: pulseRing 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(6, 199, 85, 0.55); }
  70%  { box-shadow: 0 0 0 16px rgba(6, 199, 85, 0); }
  100% { box-shadow: 0 0 0 0 rgba(6, 199, 85, 0); }
}

.hero .cta-note { color: rgba(255, 255, 255, 0.85); }

/* 法人導線（控えめなテキストリンク） */
.hero-biz-link { margin-top: 0.7rem; }
.hero-biz-link a {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}
.hero-biz-link a:hover { color: var(--yellow); }
.hero .cta-note strong { color: var(--yellow); }

/* 写真を全面背景に */
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 72% center;
  /* Ken Burns: ゆっくりズームして静止画に動きを */
  transform-origin: 62% 42%;
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.09); }
}
/* 左側を紺で落としてテキストの可読性を確保 */
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 14, 14, 0.85) 0%, rgba(14, 14, 14, 0.58) 48%, rgba(14, 14, 14, 0.14) 100%),
    linear-gradient(0deg, rgba(14, 14, 14, 0.42) 0%, rgba(14, 14, 14, 0) 35%);
}
@media (max-width: 900px) {
  .hero-photo::after {
    background:
      linear-gradient(90deg, rgba(14, 14, 14, 0.82) 0%, rgba(14, 14, 14, 0.65) 60%, rgba(14, 14, 14, 0.42) 100%);
  }
}

/* 波の上をゆっくり横切るドローン（フラットイラスト調） */
.hero-drone {
  position: absolute;
  bottom: 62px;
  left: 0;
  width: 68px;
  height: 42px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.95;
  filter: drop-shadow(0 3px 6px rgba(22, 22, 22, 0.3));
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 74'%3E%3Crect x='6' y='10' width='44' height='3.5' rx='1.75' fill='%23B7C0C2'/%3E%3Crect x='70' y='10' width='44' height='3.5' rx='1.75' fill='%23B7C0C2'/%3E%3Crect x='24' y='13' width='8' height='7' rx='2' fill='%238F999B'/%3E%3Crect x='88' y='13' width='8' height='7' rx='2' fill='%238F999B'/%3E%3Cpath d='M14,28 C36,16 84,16 106,28 L94,40 C72,48 48,48 26,40 Z' fill='%23EAEEEE'/%3E%3Cpath d='M30,40 C28,50 26,58 24,66' stroke='%23C7CFD1' stroke-width='5' fill='none' stroke-linecap='round'/%3E%3Cpath d='M90,40 C92,50 94,58 96,66' stroke='%23C7CFD1' stroke-width='5' fill='none' stroke-linecap='round'/%3E%3Crect x='44' y='39' width='32' height='8' rx='4' fill='%235E686B'/%3E%3Crect x='53' y='46' width='14' height='7' fill='%2398A2A4'/%3E%3Crect x='49' y='52' width='22' height='17' rx='3' fill='%2398A2A4'/%3E%3Ccircle cx='60' cy='60.5' r='6.5' fill='%23454F52'/%3E%3Ccircle cx='58' cy='58.5' r='2' fill='%23616D70'/%3E%3C/svg%3E") center / contain no-repeat;
  animation: droneFly 34s linear infinite;
}
@keyframes droneFly {
  0%   { transform: translateX(-80px) translateY(0); }
  25%  { transform: translateX(28vw) translateY(-14px); }
  50%  { transform: translateX(55vw) translateY(4px); }
  75%  { transform: translateX(80vw) translateY(-10px); }
  100% { transform: translateX(110vw) translateY(0); }
}
@media (max-width: 600px) {
  .hero-drone { bottom: 44px; width: 40px; animation-duration: 26s; }
}

/* 波は本部トンマナに合わせ廃止 */
.hero-wave { display: none; }

@keyframes heroRise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-text > * {
  opacity: 0;
  animation: heroRise 0.7s ease forwards;
}
.hero-text > *:nth-child(1) { animation-delay: 0.05s; }
.hero-text > *:nth-child(2) { animation-delay: 0.13s; }
.hero-text > *:nth-child(3) { animation-delay: 0.21s; }
.hero-text > *:nth-child(4) { animation-delay: 0.29s; }
.hero-text > *:nth-child(5) { animation-delay: 0.37s; }
.hero-text > *:nth-child(6) { animation-delay: 0.45s; }
.hero-text > *:nth-child(7) { animation-delay: 0.52s; }
@keyframes heroFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero-photo {
  opacity: 0;
  animation: heroFade 0.9s ease forwards;
}

/* ==========================================================================
   実績（白い丸バッジ・参考サイトの吹き出し風）
   ========================================================================== */
.record-strip { background: #fff; padding: 0 0 0.5rem; border-bottom: none; }
.record-items {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  flex-wrap: wrap;
  margin-top: -4.2rem;
  position: relative;
  z-index: 3;
}
@media (max-width: 700px) { .record-items { gap: 1rem; margin-top: -2.6rem; } }

.record-item {
  position: relative;
  width: 172px;
  height: 172px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--blue-dark);
  box-shadow: 0 12px 28px rgba(22, 22, 22, 0.18);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.8rem;
  gap: 0.1rem;
  animation: floatBob 4.5s ease-in-out infinite alternate;
}
.record-item:nth-child(2) { animation-delay: 0.9s; }
.record-item:nth-child(3) { animation-delay: 1.8s; }
@keyframes floatBob {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}
@media (max-width: 700px) {
  .record-item { width: 126px; height: 126px; }
}

/* 金の内周リング（メダル風の二重リング） */
.record-item::after {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  pointer-events: none;
}

/* 金の★★★ */
.record-item::before {
  content: '★★★';
  font-size: 11px;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.record-item .desc { font-size: 13px; font-weight: 500; color: var(--ink-soft); line-height: 1.5; }
.record-item .num {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--blue-dark);
  font-variant-numeric: tabular-nums;
}
.record-item .num.num--text { font-size: 21px; }
.record-item .unit { font-size: 14px; font-weight: 700; line-height: 1.5; }
@media (max-width: 700px) {
  .record-item .num { font-size: 30px; }
  .record-item .num.num--text { font-size: 15px; }
  .record-item .desc { font-size: 10px; }
  .record-item .unit { font-size: 11px; }
}

/* ==========================================================================
   WHOOPS!とは（本部ブランドの権威性）
   ========================================================================== */
.brand-band {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 260 260'%3E%3Cg stroke='%23ffffff' stroke-opacity='0.045' stroke-width='1'%3E%3Cpath d='M30 40L120 90M120 90L210 30M120 90L80 200M80 200L220 170M210 30L220 170'/%3E%3C/g%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Ccircle cx='30' cy='40' r='2'/%3E%3Ccircle cx='120' cy='90' r='2.5'/%3E%3Ccircle cx='210' cy='30' r='2'/%3E%3Ccircle cx='80' cy='200' r='2'/%3E%3Ccircle cx='220' cy='170' r='2.5'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(160deg, #2B2B2B 0%, #343434 60%, #3D3D3D 100%);
  color: #fff;
  padding: 4rem 0;
}
@media (max-width: 768px) { .brand-band { padding: 2.8rem 0; } }

.brand-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 860px) {
  .brand-inner { grid-template-columns: 1fr; gap: 1.6rem; text-align: center; }
  .brand-text p { text-align: left; }
  .brand-text .brand-link { text-align: center; }
}

.brand-logo { text-align: center; }
.brand-logo img {
  width: min(220px, 60%);
  height: auto;
  margin: 0 auto 0.9rem;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
}

.brand-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(21px, 3vw, 28px);
  font-weight: 600;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 0.9rem;
}
.brand-text h2 em {
  font-style: normal;
  color: var(--yellow);
}
.brand-text p {
  font-size: 15px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.88);
}

.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  margin-top: 1.1rem;
}
@media (max-width: 860px) { .brand-chips { justify-content: center; } }
.brand-chips li {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 0.35em 1em;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.brand-chips li::before {
  content: '✓';
  color: var(--yellow);
  font-weight: 900;
}

.brand-link { margin-top: 1.2rem; }
.brand-link a {
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.brand-link a:hover { color: #fff; }

/* ==========================================================================
   LINE CTA セクション
   ========================================================================== */
.line-cta { padding: 3.5rem 0 4.5rem; background: #fff; border-bottom: none; }
.line-cta-inner {
  display: block;
  text-align: center;
  background: var(--yellow);
  border-radius: 8px;
  padding: 2.8rem 2.5rem 2.7rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) { .line-cta-inner { padding: 1.9rem 1.4rem; } }

.line-cta-text { max-width: 40em; margin: 0 auto; position: relative; }
.line-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(21px, 2.9vw, 27px);
  font-weight: 600;
  color: #2E2E2E;
  margin-bottom: 0.8rem;
}
.line-cta h2::before {
  content: '無料相談 受付中';
  display: block;
  width: fit-content;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--yellow);
  background: #2E2E2E;
  border-radius: 999px;
  padding: 0.25em 1.1em;
  margin: 0 auto 1rem;
}
.line-cta p { color: rgba(46, 46, 46, 0.85); font-size: 15px; line-height: 2; }
.line-cta-action { text-align: center; margin-top: 1.6rem; position: relative; }
.line-cta-action .btn-line { border: 2px solid #fff; }
.line-cta-action .cta-note { color: rgba(46, 46, 46, 0.7); margin-top: 0.8rem; }
.line-cta-action .cta-note strong { color: #2E2E2E; font-weight: 700; }

/* ==========================================================================
   はじめての方へ（3カード）
   ========================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

.feature-card {
  background: #fff;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.feature-card .feature-img { aspect-ratio: 3 / 2; overflow: hidden; }
.feature-card .feature-img img { width: 100%; height: 100%; object-fit: cover; }

.feature-card .feature-body { padding: 1.6rem 1.6rem 1.8rem; text-align: center; }
.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.6rem;
  padding-bottom: 0;
  border-bottom: none;
}
.feature-card p { font-size: 15px; color: var(--ink); line-height: 2; text-align: left; }

/* ==========================================================================
   選ばれる理由
   ========================================================================== */
.point-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}
@media (max-width: 800px) { .point-grid { grid-template-columns: 1fr; } }

.point-cell {
  background: #fff;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 2.1rem 2.1rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.point-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(22, 22, 22, 0.16);
}
@media (max-width: 800px) { .point-cell { padding: 1.6rem 1.4rem 1.8rem; } }

/* アイコン（淡青の角丸タイルに紺の線画） */
.point-cell::before {
  content: '';
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background-color: var(--sky-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px;
  margin-bottom: 1rem;
}
/* 01 実績: トロフィー */
.point-grid .point-cell:nth-child(1)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303030' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 4h10v4a5 5 0 0 1-10 0z'/%3E%3Cpath d='M7 5H4a3 3 0 0 0 3.2 4M17 5h3a3 3 0 0 1-3.2 4'/%3E%3Cpath d='M12 13v4M8 20h8'/%3E%3C/svg%3E"); }
/* 02 現役プロ: プロポ（送信機） */
.point-grid .point-cell:nth-child(2)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303030' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='10' width='16' height='9' rx='2'/%3E%3Cpath d='M8 10V5M16 10V5'/%3E%3Ccircle cx='9' cy='14.5' r='1.4'/%3E%3Ccircle cx='15' cy='14.5' r='1.4'/%3E%3C/svg%3E"); }
/* 03 短期集中: 時計 */
.point-grid .point-cell:nth-child(3)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303030' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='13' r='8'/%3E%3Cpath d='M12 9v4l3 2M9 2h6'/%3E%3C/svg%3E"); }
/* 04 サポート: 吹き出し */
.point-grid .point-cell:nth-child(4)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303030' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5h16v11H10l-6 4z'/%3E%3Cpath d='M8 9h8M8 12.5h5'/%3E%3C/svg%3E"); }
/* 05 No.1評価: 王冠 */
.point-grid .point-cell:nth-child(5)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303030' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 17L3 7l5 4 4-6 4 6 5-4-1 10z'/%3E%3Cpath d='M4 20h16'/%3E%3C/svg%3E"); }
/* 06 監査: 盾＋チェック */
.point-grid .point-cell:nth-child(6)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303030' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v5c0 5-3.5 8-7 9-3.5-1-7-4-7-9V6z'/%3E%3Cpath d='M9 12l2 2 4-4.5'/%3E%3C/svg%3E"); }

/* 透かしの大きな明朝数字（右上） */
.point-cell::after {
  position: absolute;
  top: -0.12em;
  right: 0.12em;
  font-family: var(--font-serif);
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  color: rgba(22, 22, 22, 0.07);
  pointer-events: none;
  font-variant-numeric: tabular-nums;
}
.point-grid .point-cell:nth-child(1)::after { content: '01'; }
.point-grid .point-cell:nth-child(2)::after { content: '02'; }
.point-grid .point-cell:nth-child(3)::after { content: '03'; }
.point-grid .point-cell:nth-child(4)::after { content: '04'; }
.point-grid .point-cell:nth-child(5)::after { content: '05'; }
.point-grid .point-cell:nth-child(6)::after { content: '06'; }

/* 「POINT 01」の小ラベル */
.point-cell .point-num {
  display: inline-block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.22em;
  margin-bottom: 0.55rem;
  border-bottom: none;
  padding-bottom: 0;
  font-variant-numeric: tabular-nums;
  position: relative;
}
.point-cell .point-num::before { content: 'POINT '; }
.point-cell .point-num::after {
  content: '';
  display: block;
  width: 2.2em;
  height: 2px;
  background: var(--yellow);
  margin-top: 0.5em;
}

.point-cell h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.7rem;
  line-height: 1.7;
  position: relative;
}
.point-cell p { font-size: 15px; color: var(--ink); line-height: 2; position: relative; }
.point-cell ul { margin-top: 0.5rem; position: relative; }
.point-cell ul li {
  font-size: 15px;
  color: var(--ink);
  padding-left: 1.4em;
  position: relative;
  margin-bottom: 0.4em;
  line-height: 1.9;
}
.point-cell ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ==========================================================================
   コース・料金（青タブ付き白カード）
   ========================================================================== */
.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
}
@media (max-width: 880px) {
  .course-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
}

.course-card {
  background: #fff;
  border: none;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: visible;
  position: relative;
  margin-top: 1.4rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(22, 22, 22, 0.16);
}

/* 「未経験の方に人気」リボン */
.course-ribbon {
  position: absolute;
  top: -12px;
  left: -10px;
  z-index: 3;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 0.45em 1.3em;
  border-radius: 999px;
  transform: rotate(-4deg);
  box-shadow: 0 4px 12px rgba(22, 22, 22, 0.2);
}
/* スマホ：中央寄せのバンドと横幅が重なるため、リボンを画像の左上角へ退避 */
@media (max-width: 600px) {
  .course-ribbon { top: 70px; left: 8px; }
}

/* 吹き出しタブ（参考サイトのカードヘッダー） */
.course-card .course-band {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
  background: var(--blue-tab);
  color: #fff;
  text-align: center;
  margin: -1.4rem auto 0;
  padding: 0.7rem 2.4rem 0.8rem;
  border-radius: 10px;
  width: fit-content;
  max-width: 92%;
  box-shadow: none;
  z-index: 2;
}
.course-card .course-band::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid var(--blue-tab);
}
.course-card--exp .course-band { background: #2E2E2E; }
.course-card--exp .course-band::after { border-top-color: #2E2E2E; }

.course-card .course-band .mono-cap {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.9;
}
.course-card .course-band .band-target { font-size: 15px; font-weight: 700; }

.course-card .course-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 1.3rem 1.3rem 0;
  border-radius: var(--radius);
}
.course-card .course-img img { width: 100%; height: 100%; object-fit: cover; }

.course-card .course-body {
  padding: 1.5rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}
@media (max-width: 480px) { .course-card .course-body { padding: 1.3rem 1.2rem 1.6rem; } }

.course-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 0.9rem;
}

.course-card .price-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  margin-bottom: 0.15rem;
}
.course-card .course-price {
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  color: var(--blue);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1em;
  font-variant-numeric: tabular-nums;
}
.course-card .course-price .yen { font-size: 0.5em; font-weight: 700; }
.course-card .price-note {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 0.5rem 0 1.3rem;
}

.course-card .course-specs {
  background: var(--sky-bg);
  border-top: none;
  border-radius: var(--radius);
  padding: 0.5rem 1.4rem;
  text-align: left;
}
.course-card .course-specs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7em 0;
  border-bottom: 1px dashed rgba(20, 83, 140, 0.28);
  font-size: 15px;
}
.course-card .course-specs li:last-child { border-bottom: none; }
.course-card .course-specs .label {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.45em;
}
.course-card .course-specs .label::before {
  content: '';
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  background: center / contain no-repeat;
}
/* 受講期間: カレンダー */
.course-card .course-specs li:nth-child(1) .label::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303030' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M8 3v4M16 3v4M3 10h18'/%3E%3C/svg%3E"); }
/* 学科: 本 */
.course-card .course-specs li:nth-child(2) .label::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303030' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h7a2 2 0 0 1 2 2v14a2 2 0 0 0-2-2H4z'/%3E%3Cpath d='M20 4h-7a2 2 0 0 0-2 2v14a2 2 0 0 1 2-2h7z'/%3E%3C/svg%3E"); }
/* 実技: プロポ */
.course-card .course-specs li:nth-child(3) .label::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303030' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='10' width='16' height='9' rx='2'/%3E%3Cpath d='M8 10V5M16 10V5'/%3E%3Ccircle cx='9' cy='14.5' r='1.3'/%3E%3Ccircle cx='15' cy='14.5' r='1.3'/%3E%3C/svg%3E"); }
/* 修了審査: チェックバッジ */
.course-card .course-specs li:nth-child(4) .label::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303030' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M8.5 12.5l2.5 2.5 4.5-5'/%3E%3C/svg%3E"); }
.course-card .course-specs .value { font-weight: 700; text-align: right; }

.course-card .course-note {
  margin-top: 1.1rem;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.9;
  text-align: left;
}
.course-card .btn-card {
  margin-top: auto;
  width: 100%;
  font-size: 15px;
  padding: 1em 1em;
}
.course-card .course-note + .btn-card { margin-top: 1.3rem; }

/* 助成金 */
.subsidy-box {
  margin-top: 2.6rem;
  background: #fff;
  border: 3px solid var(--yellow);
  border-left: 3px solid var(--yellow);
  border-radius: 14px;
  padding: 2rem 2.4rem;
  box-shadow: var(--shadow);
}
@media (max-width: 600px) { .subsidy-box { padding: 1.5rem 1.3rem; } }

.subsidy-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.9rem;
}
.subsidy-box ul { display: grid; gap: 0.6rem; }
.subsidy-box li {
  font-size: 15px;
  line-height: 2;
  padding-left: 1.4em;
  position: relative;
}
.subsidy-box li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--blue);
  font-size: 0.65em;
}
.subsidy-box li .pct {
  display: inline-block;
  font-weight: 900;
  font-size: 1.35em;
  color: var(--blue);
  padding: 0 0.08em;
  line-height: 1;
}
.subsidy-box .subsidy-note {
  margin-top: 0.9rem;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ==========================================================================
   比較表
   ========================================================================== */
.compare-outer { position: relative; }
.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
}

/* スクロールヒント（スマホのみ表示・黄橙グラデバッジ） */
.compare-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  width: fit-content;
  margin: 0 auto 1rem;
  padding: 0.55em 1.5em;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #2E2E2E;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: opacity 0.4s ease;
}
.compare-hint .hand {
  display: inline-block;
  width: 24px;
  height: 14px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 14' fill='none' stroke='%232E2E2E' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h18'/%3E%3Cpath d='M7 3L3 7l4 4'/%3E%3Cpath d='M19 3l4 4-4 4'/%3E%3C/svg%3E") center / contain no-repeat;
  animation: swipeHint 1.6s ease-in-out infinite;
}
@keyframes swipeHint {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(10px); }
}
.compare-hint.is-done { opacity: 0.35; }
.compare-hint.is-done .hand { animation: none; }

/* 右端のフェード（まだ続きがあるサイン） */
.compare-outer::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 48px;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(235, 243, 249, 0.95) 90%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.compare-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  font-size: 15px;
}
.compare-table th, .compare-table td {
  padding: 0.95em 1em;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.compare-table tbody tr:last-child > * { border-bottom: none; }

.compare-table thead th {
  background: var(--blue-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.compare-table thead th.col-whoops {
  background: var(--yellow);
  color: #2E2E2E;
  font-size: 15px;
  font-weight: 900;
  box-shadow: inset 0 -3px 0 #2E2E2E;
  border-left: 2px solid #2E2E2E;
  border-right: 2px solid #2E2E2E;
}
.compare-table tbody th {
  background: var(--sky-bg);
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.compare-table td.col-whoops {
  background: #FDF7DF;
  font-weight: 700;
  border-left: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
}
.compare-table tbody tr:last-child td.col-whoops { border-bottom: 2px solid var(--blue); }

/* 評価マークを丸バッジに */
.compare-table .mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin: 0 auto 0.3em;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}
.compare-table .mark--good { background: #2E2E2E; color: var(--yellow); }
.compare-table td.col-whoops .mark--good { width: 30px; height: 30px; font-size: 16px; }
.compare-table .mark--soso { background: #E9EFF3; color: var(--ink-faint); }
.compare-table .mark--bad { background: #F2F5F7; color: #BCC9D2; }
.compare-note {
  margin-top: 0.8rem;
  font-size: 12px;
  color: var(--ink-faint);
}

/* ==========================================================================
   資格取得までの流れ
   ========================================================================== */
.flow-highlight {
  max-width: 740px;
  margin: 0 auto 3rem;
  background: #fff;
  border: 3px solid var(--yellow);
  border-radius: 14px;
  padding: 1.15rem 1.7rem;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.flow-highlight strong { color: var(--blue); background: none; }

.flow-list {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
}
.flow-list::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 2px;
  background: repeating-linear-gradient(180deg, var(--sky-line) 0 7px, transparent 7px 14px);
}
@media (max-width: 600px) { .flow-list::before { left: 18px; } }

.flow-step {
  display: flex;
  gap: 1.6rem;
  position: relative;
  padding-bottom: 2.1rem;
}
.flow-step:last-child { padding-bottom: 0; }
@media (max-width: 600px) { .flow-step { gap: 1rem; padding-bottom: 1.7rem; } }

.flow-step .wp {
  flex-shrink: 0;
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 1;
}
@media (max-width: 600px) { .flow-step .wp { width: 38px; } }

.flow-step .wp .wp-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #C6D6E4;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(22, 22, 22, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.88);
  transition: background-color 0.45s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (max-width: 600px) { .flow-step .wp .wp-dot { width: 38px; height: 38px; } }

/* スクロールで到達すると点灯（ふわっと拡大） */
.flow-step.is-inview .wp-dot { background: var(--blue); transform: scale(1); }

/* 明朝の白い番号 */
.flow-step .wp .wp-dot::after {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
@media (max-width: 600px) { .flow-step .wp .wp-dot::after { font-size: 16px; } }
.flow-list .flow-step:nth-child(1) .wp-dot::after { content: '1'; }
.flow-list .flow-step:nth-child(2) .wp-dot::after { content: '2'; }
.flow-list .flow-step:nth-child(3) .wp-dot::after { content: '3'; }
.flow-list .flow-step:nth-child(4) .wp-dot::after { content: '4'; }
.flow-list .flow-step:nth-child(5) .wp-dot::after { content: '5'; }

/* GOAL: 黄色の円に旗アイコン */
.flow-step.flow-goal .wp-dot,
.flow-step.flow-goal.is-inview .wp-dot { background: var(--yellow); }
.flow-list .flow-step.flow-goal .wp-dot::after {
  content: '';
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303030' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 21V4'/%3E%3Cpath d='M5 4h13l-2.5 4L18 12H5'/%3E%3C/svg%3E") center / contain no-repeat;
}


.flow-step .step-body {
  flex: 1;
  background: #fff;
  border: none;
  border-left: 3px solid var(--sky-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem 1.6rem 1.3rem;
  transition: border-color 0.45s ease;
}
.flow-step.is-inview .step-body { border-left-color: var(--blue); }
@media (max-width: 600px) { .flow-step .step-body { padding: 1rem 1.1rem; } }
.flow-step.flow-goal .step-body,
.flow-step.flow-goal.is-inview .step-body {
  background: #FFFBEA;
  border: 3px solid var(--yellow);
  padding: 1.5rem 1.7rem 1.6rem;
}

.flow-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7em;
}
.flow-step.flow-goal h3 {
  color: var(--blue-dark);
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
}
.flow-step.flow-goal h3::before {
  content: '';
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A98A45' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='14' rx='2'/%3E%3Cpath d='M7 8h7M7 11.5h4'/%3E%3Ccircle cx='16.5' cy='13' r='2.4'/%3E%3Cpath d='M15.5 15l-1 5 2-1.4L18.5 20l-1-5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.flow-step p { font-size: 15px; color: var(--ink); line-height: 1.95; }
.flow-step .step-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--blue-tab);
  border: none;
  padding: 0.25em 1em;
  border-radius: 999px;
  white-space: nowrap;
}

/* ==========================================================================
   アクセス
   ========================================================================== */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.6rem;
  align-items: start;
}
@media (max-width: 860px) { .access-grid { grid-template-columns: 1fr; } }

.access-fig {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  border: none;
}
.access-fig img { width: 100%; border-radius: 0; }

.access-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.access-table tr { border-bottom: 1px solid var(--border); }
.access-table tr:last-child { border-bottom: none; }
.access-table th, .access-table td {
  padding: 1.05em 1.2em;
  text-align: left;
  vertical-align: top;
}
.access-table th {
  width: 7.5em;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue);
  background: var(--sky-bg);
  white-space: nowrap;
}
.access-table td { font-weight: 500; color: var(--ink); }
.access-table a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  border-top: none;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-bottom: none;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.2rem 3.2rem 1.2rem 1.3rem;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.2s, background-color 0.2s;
}
.faq-item summary:hover { color: var(--blue); background: rgba(235, 243, 249, 0.5); }
.faq-item[open] summary { color: var(--blue); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background: var(--sky-bg);
  color: var(--blue);
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: var(--blue);
  color: #fff;
}

/* Q/Aバッジ（Qは紺・AはWHOOPSイエロー） */
.faq-item .q-id,
.faq-item .a-id {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 28px;
  padding: 0 0.5em;
  border-radius: 8px;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-top: 0.1em;
}
.faq-item .q-id { background: var(--blue); color: #fff; }
.faq-item .a-id { background: var(--yellow); color: var(--ink); min-width: 28px; }

/* 回答は淡青のボックスで区切る */
.faq-item .faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin: 0 1.3rem 1.3rem;
  padding: 0.95rem 1.15rem;
  background: var(--sky-bg);
  border-radius: 8px;
  font-size: 15px;
  color: var(--ink);
  line-height: 2;
}
.faq-item[open] .faq-answer { animation: faqOpen 0.35s ease; }
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .faq-item summary { padding: 1rem 2.7rem 1rem 1rem; gap: 0.7rem; font-size: 14px; }
  .faq-item .q-id, .faq-item .a-id { min-width: 32px; height: 24px; font-size: 12px; }
  .faq-item .a-id { min-width: 24px; }
  .faq-item .faq-answer { margin: 0 1rem 1.1rem; padding: 0.8rem 0.9rem; gap: 0.7rem; font-size: 13.5px; }
}

/* ==========================================================================
   クロージング
   ========================================================================== */
.closing {
  position: relative;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background: var(--blue-dark);
}
.closing-bg { position: absolute; inset: 0; }
.closing-bg img { width: 100%; height: 100%; object-fit: cover; }
.closing-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(22, 22, 22, 0.68);
}
.closing .container {
  position: relative;
  z-index: 1;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}
@media (max-width: 600px) {
  .closing .container { padding-top: 4rem; padding-bottom: 4.5rem; }
}

/* 受付中バッジ（ヒーローと同じ黄） */
.closing-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: var(--yellow);
  padding: 0.45em 1.4em;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(22, 22, 22, 0.3);
}

.closing h2 {
  font-family: var(--font-serif);
  font-size: clamp(23px, 3.6vw, 32px);
  font-weight: 600;
  color: #fff;
  line-height: 1.75;
  margin-bottom: 1.3rem;
  text-shadow: none;
}
.closing h2 em {
  font-style: normal;
  color: var(--yellow);
  background: none;
  padding: 0 0 0.06em;
  border-bottom: 2px solid rgba(242, 206, 61, 0.55);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.closing h2::after { content: none; }
.closing p {
  max-width: 34em;
  margin: 0 auto 2.3rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  line-height: 2;
}
.closing .cta-micro { margin-bottom: 0.5rem; }

/* 安心材料チップ */
.closing-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
  margin-top: 1.5rem;
}
.closing-trust li {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.closing-trust li::before {
  content: '✓';
  color: var(--yellow);
  font-weight: 900;
}

/* クロージングにもドローンを飛ばす（ヒーローの回収） */
.closing-drone {
  bottom: auto;
  top: 14%;
  animation-duration: 42s;
}
@media (max-width: 600px) {
  .closing-trust { gap: 0.4rem 1.1rem; }
  .closing-trust li { font-size: 11px; }
  .closing-drone { top: 8%; }
}

/* ==========================================================================
   助成金・給付金シミュレーション
   ========================================================================== */
.sim-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .sim-grid { grid-template-columns: 1fr; max-width: 520px; }
}

.sim-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 1.8rem 1.9rem 1.9rem;
  text-align: center;
}
.sim-band {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--yellow);
  background: #2E2E2E;
  border-radius: 999px;
  padding: 0.3em 1.2em;
  margin-bottom: 0.9rem;
}
.sim-band--personal { color: #fff; background: #6B6B6B; }
.sim-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.sim-rate { font-size: 14px; color: var(--ink-soft); margin-bottom: 1.1rem; }
.sim-rate strong { color: var(--ink); font-weight: 900; font-size: 17px; white-space: nowrap; }

.sim-calc {
  background: var(--sky-bg);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem 1.2rem;
}
.sim-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  color: var(--ink-soft);
}
.sim-was { text-decoration: line-through; font-weight: 700; color: var(--ink-faint); font-size: 17px; }
.sim-arrow { font-size: 12px; font-weight: 700; color: var(--ink-soft); margin: 0.4rem 0; }
.sim-net {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.sim-net strong {
  font-size: 34px;
  font-weight: 900;
  background: linear-gradient(transparent 62%, var(--yellow) 62%);
  padding: 0 0.06em;
  font-variant-numeric: tabular-nums;
}
.sim-sub { margin-top: 0.8rem; font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.sim-caution {
  max-width: 880px;
  margin: 1.4rem auto 0;
  font-size: 12px;
  color: var(--ink-faint);
  text-align: center;
}

/* ==========================================================================
   法人研修セクション
   ========================================================================== */
.biz-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 800px) { .biz-grid { grid-template-columns: 1fr; } }
/* アイコン差し替え: 円マーク／時計／ビル */
.biz-grid .point-cell:nth-child(1)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303030' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M9 8l3 4 3-4M9 12.5h6M9 15h6M12 12v6'/%3E%3C/svg%3E"); }
.biz-grid .point-cell:nth-child(2)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303030' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='13' r='8'/%3E%3Cpath d='M12 9v4l3 2M9 2h6'/%3E%3C/svg%3E"); }
.biz-grid .point-cell:nth-child(3)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303030' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 21V5a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v16M14 9h5a1 1 0 0 1 1 1v11M4 21h16'/%3E%3Cpath d='M7 8h2M7 12h2M7 16h2M17 13h1M17 17h1'/%3E%3C/svg%3E"); }

.biz-cta { text-align: center; margin-top: 2.4rem; }

/* ==========================================================================
   ご相談フォーム
   ========================================================================== */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 2.2rem 2.4rem 2.4rem;
}
@media (max-width: 600px) { .contact-form { padding: 1.5rem 1.2rem 1.7rem; } }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.contact-form .req,
.contact-form .opt {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  border-radius: 3px;
  padding: 0.15em 0.6em;
  margin-left: 0.4em;
  vertical-align: 1px;
}
.contact-form .req { color: #fff; background: #C0392B; }
.contact-form .opt { color: var(--ink-soft); background: var(--sky-bg); }

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.45rem;
  font: inherit;
  /* 16px以上でiOSのフォーカス時自動ズームを防止 */
  font-size: 16px;
  color: var(--ink);
  background: #FCFCFA;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.7em 0.9em;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 211, 56, 0.35);
}
.contact-form .form-full { margin-bottom: 1.4rem; }
.contact-form textarea { resize: vertical; }

.form-submit { text-align: center; }
.form-submit .btn { min-width: 260px; }
.form-submit .btn[disabled] { opacity: 0.6; cursor: wait; }
.form-status { margin-top: 0.9rem; font-size: 14px; font-weight: 700; min-height: 1.5em; }
.form-status.is-ok { color: #1E8E3E; }
.form-status.is-error { color: #C0392B; }

/* フォールバック（CF7未設定時） */
.contact-fallback {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 2rem 2.2rem;
  text-align: center;
}
.contact-fallback p { font-size: 15px; color: var(--ink); }
.fallback-mail { margin: 0.8rem 0 1.2rem; }
.fallback-mail a {
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
}

/* CF7埋め込みiframe */
.contact-embed { max-width: 720px; margin: 0 auto; }
.cf7-frame {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  background: #fff;
  min-height: 420px;
  height: 480px;
  display: block;
  overflow: hidden;
}
.contact-noscript { text-align: center; font-size: 15px; }


/* ==========================================================================
   フッター
   ========================================================================== */
/* ヘッダーと同じ黒で上下を締める（本部サイト踏襲） */
.lp-footer {
  background: #2E2F31;
  color: rgba(255, 255, 255, 0.72);
  padding: 3.5rem 0 7rem;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
@media (max-width: 800px) { .footer-logo { justify-content: center; } }
.footer-logo img { height: 40px; width: auto; }
.footer-logo span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 0.8rem;
}

.footer-desc {
  font-size: 13px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.6);
}

.footer-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--yellow);
  margin-bottom: 0.8rem;
}

.footer-nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
}
@media (max-width: 800px) { .footer-nav ul { max-width: 300px; margin: 0 auto; } }
.footer-nav a {
  display: inline-block;
  padding: 0.35em 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--yellow); }

.footer-hq { margin-top: 0.7rem; }
.footer-hq a {
  font-size: 13px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.footer-hq a:hover { color: var(--yellow); }

.footer-bottom { padding-top: 1.5rem; text-align: center; }
.lp-footer .copyright {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   フローティングCTA（PC・右下）
   ========================================================================== */
.float-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 90;
  background: #fff;
  border: none;
  border-top: none;
  border-radius: 12px;
  box-shadow: 0 8px 26px rgba(22, 22, 22, 0.22);
  padding: 1rem 1.1rem;
  text-align: center;
  width: 236px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.float-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 1000px) { .float-cta { display: none; } }

.float-cta .float-badge {
  display: block;
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 0.55rem;
}
.float-cta .btn {
  width: 100%;
  font-size: 14px;
  padding: 0.85em 1em;
}
.float-cta .float-note {
  margin-top: 0.5rem;
  font-size: 11px;
  color: var(--ink-faint);
}

/* ==========================================================================
   モバイル固定CTA
   ========================================================================== */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 -4px 16px rgba(47, 57, 61, 0.12);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
}
@media (min-width: 1001px) { .sticky-cta { display: none; } }

/* ==========================================================================
   スクロールリビール（控えめ）
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-inview { opacity: 1; transform: translateY(0); }

.feature-grid > .fade-in:nth-child(2),
.point-grid > .fade-in:nth-child(2),
.course-grid > .fade-in:nth-child(2) { transition-delay: 0.1s; }
.feature-grid > .fade-in:nth-child(3),
.point-grid > .fade-in:nth-child(3) { transition-delay: 0.2s; }
.point-grid > .fade-in:nth-child(4) { transition-delay: 0.1s; }
.point-grid > .fade-in:nth-child(5) { transition-delay: 0.2s; }
.point-grid > .fade-in:nth-child(6) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .hero-text > *, .hero-photo { animation: none; opacity: 1; }
  .hero-photo img { animation: none; }
  .hero-drone { display: none; }
  .btn-pulse::before { animation: none; }
  .record-item { animation: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   スマホ最適化（600px以下）
   ========================================================================== */
@media (max-width: 600px) {
  .container { padding-left: 1.25rem; padding-right: 1.25rem; }

  /* 見出し・本文のサイズ最適化 */
  .sec-title { font-size: 21px; line-height: 1.8; }
  .sec-title::after { width: 40px; height: 3px; margin-top: 1rem; }
  .sec-lead { font-size: 14px; text-align: left; line-height: 2; }
  .sec-head { margin-bottom: 2rem; }

  /* ヒーロー */
  .hero h1 { font-size: clamp(27px, 7.6vw, 32px); line-height: 1.5; margin-bottom: 1.1rem; }
  .hero-badge { font-size: 12px; padding: 0.4em 1.2em; margin-bottom: 1.2rem; }
  .hero-copy { font-size: 14px; line-height: 2; margin-bottom: 1.4rem; }
  .hero-tags { gap: 0.5rem; margin-bottom: 1.8rem; }
  .hero-tags li { font-size: 11px; padding: 0.4em 1em; }
  .hero-nums li { padding: 0.45em 0.9em; gap: 0.2em; }
  .hero-nums .t, .hero-nums .s { font-size: 10px; }
  .hero-nums strong { font-size: 17px; }
  .hero-cta { gap: 0.7rem; }
  .hero-cta-main { width: 100%; }
  .btn-ghost { width: 100%; padding: 0.9em 1.2em; font-size: 14px; }
  .cta-micro { font-size: 12px; }
  .hero .cta-note { font-size: 12px; }

  /* 実績バッジ（3つ横並びに収める） */
  .record-items { gap: 0.6rem; margin-top: -2.2rem; }
  .record-item { width: 104px; height: 104px; padding: 0.5rem; }
  .record-item::after { inset: 4px; }
  .record-item::before { font-size: 8px; margin-bottom: 0.15rem; }
  .record-item .num { font-size: 25px; }
  .record-item .num.num--text { font-size: 12.5px; }
  .record-item .desc { font-size: 9.5px; }
  .record-item .unit { font-size: 10.5px; }

  /* LINE CTA */
  .line-cta { padding: 2.6rem 0 3.2rem; }
  .line-cta h2 { font-size: 18px; }
  .line-cta p { font-size: 14px; }

  /* カード群 */
  .feature-card .feature-body { padding: 1.2rem 1.2rem 1.4rem; }
  .feature-card h3 { font-size: 17px; }
  .feature-card p { font-size: 14px; }

  .point-cell .point-num { font-size: 28px; }
  .point-cell h3 { font-size: 17px; }
  .point-cell p, .point-cell ul li { font-size: 14px; }

  /* コース */
  .course-card .course-band { padding: 0.6rem 1.6rem 0.7rem; }
  .course-card .course-band .band-target { font-size: 13px; }
  .course-card .course-img { margin: 1.1rem 1.1rem 0; }
  .course-card h3 { font-size: 18px; }
  .course-card .course-price { font-size: 32px; }
  .course-card .course-specs { padding: 0.4rem 1.1rem; }
  .course-card .course-specs li { font-size: 14px; }
  .course-card .course-note { font-size: 13px; }

  .subsidy-box h3 { font-size: 17px; }
  .subsidy-box li { font-size: 14px; }
  .subsidy-box .subsidy-note { font-size: 13px; }

  /* 比較表: 横スクロール＋スクロール補助 */
  .compare-hint { display: flex; }
  .compare-outer::after { opacity: 1; }
  .compare-outer.is-end::after { opacity: 0; }
  .compare-table { font-size: 13px; min-width: 640px; }

  /* 項目列（1列目）を固定して迷子を防ぐ */
  .compare-table tbody th {
    position: sticky;
    left: 0;
    z-index: 2;
    box-shadow: 4px 0 8px rgba(22, 22, 22, 0.08);
  }
  .compare-table thead th:first-child {
    position: sticky;
    left: 0;
    z-index: 3;
  }

  /* スクロールバーを見えやすく */
  .compare-wrap::-webkit-scrollbar { height: 8px; }
  .compare-wrap::-webkit-scrollbar-track { background: var(--sky-bg); border-radius: 4px; }
  .compare-wrap::-webkit-scrollbar-thumb { background: var(--blue-tab); border-radius: 4px; }

  .compare-note { font-size: 11px; }

  /* 流れ */
  .flow-highlight { font-size: 14px; padding: 1rem 1.2rem; margin-bottom: 2.2rem; }
  .flow-step h3 { font-size: 16px; }
  .flow-step p { font-size: 14px; }
  .flow-step .step-tag { font-size: 10px; }

  /* アクセス */
  .access-grid { gap: 1.6rem; }
  .access-table { font-size: 14px; }
  .access-table th { width: 5.5em; font-size: 12px; padding: 0.95em 0.9em; }
  .access-table td { padding: 0.95em 0.9em; }

  /* FAQ */
  .faq-item summary { font-size: 14px; line-height: 1.8; }
  .faq-item .faq-answer { font-size: 13.5px; }
  .faq-item .q-id, .faq-item .a-id { font-size: 14px; }

  /* クロージング */
  .closing h2 { font-size: 21px; line-height: 1.8; }
  .closing p { font-size: 14px; text-align: left; }

  /* フッター */
  .lp-footer { font-size: 12.5px; padding: 2.4rem 0 6.5rem; }
  .footer-desc { font-size: 12px; }
  .footer-nav a { font-size: 12px; }
}

/* 極小画面 */
@media (max-width: 360px) {
  .hero h1 { font-size: 24px; }
  .record-item { width: 92px; height: 92px; }
  .record-item .num { font-size: 22px; }
  .record-item .num.num--text { font-size: 11px; }
}

/* =========================================================
   キャンペーン価格の訴求（ヒーロー・コースカード）／フッター法的リンク
   ========================================================= */

/* ヒーロー：期間限定キャンペーン訴求ライン */
.hero-campaign {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55em;
  margin: 0 0 1.5rem;
  padding: 0.55em 1.1em 0.55em 0.6em;
  background: var(--grad-sun);
  border-radius: 999px;
  box-shadow: 0 3px 12px rgba(245, 184, 28, 0.4);
}
.hero-campaign-tag {
  font-size: 12px;
  font-weight: 900;
  color: #7a4a00;
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.78);
  padding: 0.28em 0.75em;
  border-radius: 999px;
  white-space: nowrap;
}
.hero-campaign-body {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3em;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-dark);
}
.hero-campaign .hc-was {
  text-decoration: line-through;
  color: var(--ink-soft);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.hero-campaign .hc-arrow { font-weight: 900; color: var(--blue-dark); }
.hero-campaign .hc-now {
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  color: var(--blue-dark);
  font-variant-numeric: tabular-nums;
}
.hero-campaign .hc-tax { font-size: 12px; font-weight: 700; color: var(--ink-soft); }

/* コースカード：通常価格（取消線）＋キャンペーン価格 */
.course-card .price-was {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4em;
  margin-bottom: 0.1rem;
}
.course-card .price-was .was-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-faint);
}
.course-card .price-was .was-amount {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink-faint);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}
.course-card .course-price .campaign-tag {
  align-self: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #fff;
  background: var(--orange);
  padding: 0.28em 0.7em;
  border-radius: 999px;
  white-space: nowrap;
}

/* フッター：法的リンク（沖縄ドローンHP・プライバシーポリシー） */
.footer-legal {
  list-style: none;
  margin: 0 0 0.7rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.4rem;
}
.footer-legal li { margin: 0; }
.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--yellow); }

@media (max-width: 600px) {
  /* 幅で折り返しが変わるピル型をやめ、タグ上・価格下の安定したクーポン型に */
  .hero-campaign {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45em;
    border-radius: 16px;
    padding: 0.7em 1em 0.75em;
    margin-bottom: 1.3rem;
  }
  .hero-campaign-tag { font-size: 11px; padding: 0.28em 0.7em; }
  .hero-campaign-body { font-size: 14px; flex-wrap: wrap; }
  .hero-campaign .hc-now { font-size: 23px; }
  .course-card .price-was .was-amount { font-size: 17px; }
}
