/* HAILA — 0期生募集 LP
   RIZAP-inspired: Black × Gold / 本気で覚醒する
   ──────────────────────────────────────────────────── */

:root {
  /* Core palette */
  --c-ink:     #0a0a0a;       /* near-black */
  --c-ink-2:   #141414;       /* deep matte */
  --c-ink-3:   #1f1f1f;       /* card depth */
  --c-text:    #f5f0e6;       /* warm ivory on dark */
  --c-text-2:  #c8c0b1;       /* muted ivory */
  --c-mute:    #8a8275;       /* gold-grey muted */

  /* Light panels */
  --c-paper:   #f7f3ea;       /* warm cream paper */
  --c-paper-2: #efe9dc;
  --c-paper-3: #e6dec9;
  --c-on-paper: #0a0a0a;
  --c-on-paper-2: #4a4434;

  /* Accents */
  --c-gold:     #c9a227;
  --c-gold-2:   #e3c065;
  --c-gold-3:   #8b6f17;       /* dark gold for borders/under-tones */
  --c-red:      #b91c1c;       /* warning / urgency */

  /* Borders / shadows */
  --c-line:     rgba(245, 240, 230, 0.12);
  --c-line-2:   rgba(245, 240, 230, 0.06);
  --c-line-paper: rgba(10, 10, 10, 0.12);

  --maxw:       960px;
  --maxw-wide:  1120px;

  --r-card: 0;            /* sharp corners */
  --r-input: 0;
  --r-cta: 0;

  --shadow-card: 0 0 0 1px rgba(201, 162, 39, 0.18);
  --shadow-pop:  0 8px 30px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--c-gold);

  font-family:
    "Noto Serif JP",
    "Yu Mincho", "YuMincho",
    "Hiragino Mincho ProN", "Hiragino Mincho Pro",
    -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", "Helvetica", "Arial",
    "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "Yu Gothic", "Meiryo", "Noto Sans JP",
    system-ui, sans-serif;
}

/* ──── reset ──── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--c-ink); }
body {
  color: var(--c-text);
  font-size: 17px;
  line-height: 1.85;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ──── typography ──── */
.font-display {
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "Yu Gothic", "Meiryo", system-ui, sans-serif;
}

h1, h2, h3, h4 {
  margin: 0 0 0.6em;
  letter-spacing: 0;
  line-height: 1.3;
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "Yu Gothic", "Meiryo", system-ui, sans-serif;
  color: inherit;
}
h1 { font-size: clamp(2rem, 5.6vw, 3.4rem); font-weight: 900; line-height: 1.18; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.55rem, 3.4vw, 2.4rem); font-weight: 900; letter-spacing: -0.005em; }
h3 { font-size: clamp(1.05rem, 1vw + 0.85rem, 1.2rem); font-weight: 800; letter-spacing: 0; }

p { margin: 0 0 1em; }
strong { font-weight: 900; color: inherit; }
small { font-size: 0.85em; color: var(--c-mute); }

ul, ol { margin: 0 0 1em; padding-left: 1.4rem; }
li { margin-bottom: 0.4em; }

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

.text-gold { color: var(--c-gold); }
.text-paper-dim { color: var(--c-text-2); }

/* ──── container ──── */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide { max-width: var(--maxw-wide); }
@media (max-width: 640px) {
  .container { padding: 0 18px; }
}

/* ──── header (sticky, dark glass) ──── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border-bottom: 1px solid var(--c-line);
}
.site-header__inner {
  max-width: var(--maxw-wide); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
}
.brand {
  display: inline-flex; flex-direction: column; gap: 1px;
  color: var(--c-text);
  line-height: 1.1;
}
.brand__name {
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  color: var(--c-gold);
}
.brand__sub {
  font-size: 0.62rem;
  color: var(--c-text-2);
  letter-spacing: 0.28em;
  font-weight: 700;
}
.site-nav {
  display: flex; align-items: center; gap: 4px;
}
.site-nav a {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--c-text-2);
  padding: 8px 12px;
  letter-spacing: 0.04em;
  transition: color .15s, background .15s;
}
.site-nav a:hover { color: var(--c-gold); }
.site-nav a.is-cta {
  background: var(--c-gold);
  color: var(--c-ink) !important;
  padding: 10px 18px;
  font-weight: 900;
  letter-spacing: 0.06em;
  border: 1px solid var(--c-gold);
}
.site-nav a.is-cta:hover {
  background: transparent;
  color: var(--c-gold) !important;
}
@media (max-width: 720px) {
  .site-header__inner { padding: 12px 18px; }
  .site-nav a:not(.is-cta) { display: none; }
}

/* ──── hero (full bg image, dark overlay, centered text) ──── */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background: var(--c-ink);
  border-bottom: 2px solid var(--c-gold);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/hero.png");
  background-size: cover;
  background-position: 70% center;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(10, 10, 10, 0.96) 0%,
      rgba(10, 10, 10, 0.78) 38%,
      rgba(10, 10, 10, 0.42) 70%,
      rgba(10, 10, 10, 0.20) 100%),
    radial-gradient(900px 480px at 12% 50%, rgba(201, 162, 39, 0.10), transparent 60%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 96px;
  padding-bottom: 96px;
}
.hero__main {
  max-width: 32rem;
  min-width: 0;
}
@media (max-width: 880px) {
  .hero { min-height: 78vh; }
  .hero__bg { background-position: 60% center; }
  .hero__overlay {
    background:
      linear-gradient(180deg,
        rgba(10, 10, 10, 0.90) 0%,
        rgba(10, 10, 10, 0.78) 60%,
        rgba(10, 10, 10, 0.62) 100%);
  }
  .hero .container { padding-top: 72px; padding-bottom: 72px; }
}

/* Hero typography: kicker → 0期生募集 (max) → 開講日 → サブコピー */
.hero__kicker {
  display: inline-flex; align-items: center; gap: 14px;
  margin: 0 0 22px;
  font-size: clamp(1.25rem, 3.4vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--c-gold);
  text-transform: none;
}
.hero__kicker::before {
  content: "";
  width: 44px; height: 2px;
  background: var(--c-gold);
  flex-shrink: 0;
}

.hero__title {
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero__title-main {
  font-size: clamp(3.2rem, 11vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--c-text);
  display: block;
}
.hero__title-date {
  font-size: clamp(1.2rem, 3.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--c-text-2);
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid rgba(245, 240, 230, 0.28);
  align-self: flex-start;
}
.hero__title-date b { color: var(--c-gold); font-weight: 900; }

.hero__sub {
  margin: 0 0 36px;
  font-size: clamp(1.35rem, 3.6vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--c-text);
}

.hero__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 540px;
}
.hero__actions .btn {
  width: 100%;
  min-width: 0;
  justify-content: space-between;
  padding-left: 22px;
  padding-right: 22px;
}
/* hero 内の ghost ボタンにも primary と同じ段差を付けて高さを揃える */
.hero .btn--ghost {
  box-shadow: 0 4px 0 rgba(245, 240, 230, 0.18);
}
.hero .btn--ghost:hover {
  box-shadow: 0 6px 0 rgba(245, 240, 230, 0.26);
}
@media (max-width: 480px) {
  .hero__actions { grid-template-columns: 1fr; }
}

/* ──── buttons ──── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.06em;
  border-radius: var(--r-cta);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s, background .15s, color .15s, border-color .15s, box-shadow .15s;
  white-space: nowrap;
  font-family: inherit;
  text-transform: none;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--c-gold);
  color: var(--c-ink);
  border-color: var(--c-gold);
  box-shadow: 0 4px 0 var(--c-gold-3);
}
.btn--primary:hover {
  background: var(--c-gold-2);
  box-shadow: 0 6px 0 var(--c-gold-3);
}
.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border-color: rgba(245, 240, 230, 0.35);
}
.btn--ghost:hover { border-color: var(--c-gold); color: var(--c-gold); }
.btn--lg { padding: 18px 32px; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }
.btn .arrow { font-size: 1.05em; }

/* btn on light section */
.section--paper .btn--ghost {
  color: var(--c-on-paper);
  border-color: rgba(10, 10, 10, 0.3);
}
.section--paper .btn--ghost:hover { border-color: var(--c-ink); color: var(--c-ink); background: rgba(10,10,10,0.04); }

/* ──── section base ──── */
.section { padding: 80px 0; position: relative; }
.section--ink   { background: var(--c-ink); color: var(--c-text); }
.section--ink-2 { background: var(--c-ink-2); color: var(--c-text); }
.section--paper { background: var(--c-paper); color: var(--c-on-paper); }
.section--paper-2 { background: var(--c-paper-2); color: var(--c-on-paper); }

.section__head { margin-bottom: 44px; text-align: left; }
.section__head--center { text-align: center; }
.section__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--c-gold);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.section__eyebrow::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--c-gold);
  display: inline-block;
}
.section--paper .section__eyebrow { color: var(--c-gold-3); }
.section--paper .section__eyebrow::before { background: var(--c-gold-3); }

.section__title {
  margin: 0;
  font-size: clamp(1.55rem, 3.4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.section__title em {
  font-style: normal;
  font-weight: 900;
  color: var(--c-gold);
}
.section--paper .section__title em,
.section--faq .section__title em,
.section--apply .section__title em { color: var(--c-on-paper); }

.section__lead {
  max-width: 38rem;
  margin: 14px 0 0;
  color: var(--c-text-2);
  font-size: 1rem;
  line-height: 1.95;
}
.section__lead strong { color: var(--c-text); }
.section--paper .section__lead { color: var(--c-on-paper-2); }
.section--paper .section__lead strong { color: var(--c-on-paper); }
.section .note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--c-mute);
}

/* ──── About: facts grid (dark) ──── */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.facts-grid__item {
  background: var(--c-ink-3);
  border: 1px solid var(--c-line);
  padding: 22px 22px 20px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  transition: border-color .15s, background .15s;
}
.facts-grid__item:hover {
  border-color: var(--c-gold);
  background: rgba(201, 162, 39, 0.05);
}
.facts-grid__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--c-gold);
  border: 1.5px solid var(--c-gold);
  border-radius: 0;
  flex-shrink: 0;
}
.facts-grid__icon svg { width: 22px; height: 22px; }
.facts-grid__icon img { width: 22px; height: 22px; filter: brightness(0) saturate(100%) invert(70%) sepia(48%) saturate(610%) hue-rotate(8deg) brightness(95%) contrast(90%); }
.facts-grid__body { min-width: 0; }
.facts-grid__item dt {
  font-size: 0.74rem;
  color: var(--c-text-2);
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.facts-grid__item dd {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.4;
}

/* ──── Target banner (dark, dramatic) ──── */
.target-banner {
  margin: 0 0 36px;
  padding: 0;
  border: 1px solid rgba(245, 240, 230, 0.14);
  background: var(--c-ink);
  position: relative;
}
.target-banner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: contrast(1.05);
}
@media (max-width: 640px) {
  .target-banner { margin-bottom: 26px; }
}

/* ──── Target list (dark cards with gold accents) ──── */
.target-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.target-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 20px;
  background: var(--c-ink-3);
  border: 1px solid var(--c-line);
  padding: 24px 28px;
  margin: 0;
  transition: border-color .15s, background .15s, transform .15s;
}
.target-list li:hover {
  border-color: var(--c-gold);
  transform: translateX(4px);
}
.target-list__icon {
  position: relative;
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--c-gold);
  border: 1.5px solid var(--c-gold);
  border-radius: 0;
}
.target-list__icon svg { width: 28px; height: 28px; }
.target-list__icon img { width: 28px; height: 28px; filter: brightness(0) saturate(100%) invert(70%) sepia(48%) saturate(610%) hue-rotate(8deg) brightness(95%) contrast(90%); }
.target-list__num {
  position: absolute;
  top: -10px; right: -10px;
  font-size: 0.66rem;
  font-weight: 900;
  color: var(--c-ink);
  background: var(--c-gold);
  padding: 3px 8px;
  letter-spacing: 0.06em;
  border: 2px solid var(--c-ink);
}
.target-list h3 {
  margin: 0;
  font-size: clamp(1rem, 0.4vw + 0.95rem, 1.18rem);
  font-weight: 700;
  line-height: 1.55;
  color: var(--c-text);
}
@media (max-width: 480px) {
  .target-list li { grid-template-columns: 48px 1fr; gap: 16px; padding: 20px 22px; }
  .target-list__icon { width: 48px; height: 48px; }
  .target-list__icon svg, .target-list__icon img { width: 24px; height: 24px; }
}

/* ──── Syllabus: dark cards with gold day badge ──── */
.syllabus {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.syllabus li {
  background: var(--c-ink-3);
  border: 1px solid var(--c-line);
  padding: 20px 22px;
  margin: 0;
  display: flex; flex-direction: column;
  transition: border-color .15s, background .15s;
}
.syllabus li:hover {
  border-color: var(--c-gold);
  background: rgba(201, 162, 39, 0.05);
}
.syllabus__day {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  color: var(--c-text-2);
  margin-bottom: 10px;
}
.syllabus__day b {
  background: var(--c-ink);
  color: var(--c-text);
  border: 1px solid var(--c-line);
  padding: 3px 9px;
  font-weight: 900;
  letter-spacing: 0.10em;
}
.syllabus h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--c-text);
}

/* ──── Pricing (dramatic black card, gold accent) ──── */
.section--pricing {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(201, 162, 39, 0.10), transparent 60%),
    var(--c-ink);
  color: var(--c-text);
  position: relative;
}
.section--pricing::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--c-gold);
}
.pricing-card {
  position: relative;
  background: var(--c-ink-2);
  border: 1px solid rgba(245, 240, 230, 0.16);
  padding: 44px 36px 36px;
  max-width: 540px;
  margin: 24px auto 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.pricing-card__badge {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--c-gold);
  color: var(--c-ink);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 8px 18px;
  letter-spacing: 0.14em;
  border: 2px solid var(--c-ink);
}
.pricing-card__title {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 900;
  text-align: center;
  color: var(--c-text);
  letter-spacing: 0.02em;
}
.pricing-card__sub {
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-gold);
  margin: 0 auto 28px;
  padding: 6px 16px;
  display: inline-block;
  border: 1px solid var(--c-gold);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.04em;
}
.pricing-card__price {
  text-align: center;
  margin: 0 0 22px;
}
.pricing-card__old {
  display: block;
  color: var(--c-text-2);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-color: var(--c-red);
  margin-bottom: 6px;
}
.pricing-card__num {
  display: inline-flex; align-items: baseline; gap: 4px;
  font-size: clamp(2.4rem, 5.5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--c-gold);
  line-height: 1;
}
.pricing-card__num small {
  font-size: 0.36em;
  font-weight: 800;
  color: var(--c-text-2);
}
.pricing-card__off {
  display: inline-block;
  margin-top: 12px;
  background: var(--c-red);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  padding: 5px 14px;
  letter-spacing: 0.06em;
}
.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  border-top: 1px solid var(--c-line);
}
.pricing-card__features li {
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid var(--c-line);
  margin: 0;
  font-size: 0.95rem;
  position: relative;
  color: var(--c-text);
}
.pricing-card__features li::before {
  content: "";
  position: absolute; left: 4px; top: 18px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--c-gold);
  border-bottom: 2px solid var(--c-gold);
  transform: rotate(-45deg);
}
.pricing-card__features strong { color: var(--c-gold); }
.pricing-card__note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--c-mute);
  margin: 16px 0 0;
}

/* ──── FAQ ──── */
.section--faq { background: var(--c-paper); color: var(--c-on-paper); }
.section--faq .section__title em { color: var(--c-on-paper); border-bottom-color: var(--c-gold); }

.faq {
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
}
.faq__item {
  background: var(--c-paper);
  border: 1px solid var(--c-line-paper);
  border-left: 3px solid var(--c-gold-3);
  transition: border-color .15s, background .15s;
}
.faq__item[open] {
  border-left-color: var(--c-gold);
  background: var(--c-paper-2);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--c-on-paper);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__q::before {
  content: "Q.";
  font-weight: 900;
  color: var(--c-gold-3);
  margin-right: 0.4em;
}
.faq__icon {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--c-on-paper);
  border: 1.5px solid var(--c-on-paper-2);
  font-size: 1.1rem; font-weight: 800;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.faq__item[open] .faq__icon {
  transform: rotate(45deg);
  background: var(--c-ink);
  color: var(--c-gold);
  border-color: var(--c-ink);
}
.faq__a {
  padding: 0 22px 18px;
  color: var(--c-on-paper-2);
  font-size: 0.96rem;
  line-height: 1.85;
  border-top: 1px solid var(--c-line-paper);
  margin-top: 0;
}
.faq__a > *:first-child { margin-top: 14px; }
.faq__a p { margin: 0 0 8px; }
.faq__a p:last-child { margin: 0; }
.faq__a strong { color: var(--c-on-paper); font-weight: 800; }
.faq__link {
  color: var(--c-gold-3);
  font-weight: 800;
  border-bottom: 2px solid var(--c-gold-3);
  padding-bottom: 1px;
}
.faq__a .note { color: var(--c-mute); font-size: 0.85rem; }

/* ──── Apply form (light, intense CTA) ──── */
.section--apply { background: var(--c-paper-2); color: var(--c-on-paper); }
.section--apply .section__title { color: var(--c-on-paper); }
.section--apply .section__lead { color: var(--c-on-paper-2); }
.section--apply .section__lead strong { color: var(--c-on-paper); }
.section--apply .section__eyebrow { color: var(--c-gold-3); }
.section--apply .section__eyebrow::before { background: var(--c-gold-3); }
/* FAQ も同様に paper */
.section--faq .section__lead { color: var(--c-on-paper-2); }
.section--faq .section__lead strong { color: var(--c-on-paper); }
.apply-line {
  max-width: 560px;
  margin: 0 auto;
  background: var(--c-paper);
  border: 1px solid var(--c-line-paper);
  border-top: 4px solid var(--c-gold);
  padding: 36px 32px;
  display: grid;
  gap: 22px;
  text-align: center;
}
.apply-line__intro {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--c-on-paper-2);
  line-height: 1.7;
}
.apply-line__intro strong { color: var(--c-on-paper); }
.apply-line__note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--c-mute);
}

.btn--line {
  background: #06C755;
  color: #fff;
  border-color: #06C755;
  box-shadow: 0 4px 0 #04913e;
}
.btn--line:hover {
  background: #05b34c;
  color: #fff;
  border-color: #05b34c;
  box-shadow: 0 6px 0 #04913e;
}
.btn__icon {
  width: 1.25em;
  height: 1.25em;
  display: inline-block;
  flex-shrink: 0;
}

/* ──── footer ──── */
.site-footer {
  padding: 36px 0 30px;
  border-top: 2px solid var(--c-gold);
  background: var(--c-ink);
  color: var(--c-text);
}
.site-footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.site-footer .brand__name { font-size: 1.05rem; }
.site-footer__copy {
  font-size: 0.78rem;
  color: var(--c-text-2);
  margin: 0;
  letter-spacing: 0.04em;
}

/* ──── manifesto strap (between sections, optional dramatic line) ──── */
.manifesto-strap {
  background: var(--c-ink);
  color: var(--c-text);
  padding: 48px 0;
  border-top: 1px solid var(--c-gold-3);
  border-bottom: 1px solid var(--c-gold-3);
  text-align: center;
}
.manifesto-strap p {
  margin: 0;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
.manifesto-strap em {
  font-style: normal;
  color: var(--c-gold);
  font-weight: 900;
}

/* ──── Legal pages (privacy / terms): paper-toned long-form ──── */
.legal-body { background: var(--c-paper); color: var(--c-on-paper); }
.legal-page {
  background: var(--c-paper);
  color: var(--c-on-paper);
  padding: 64px 0 96px;
}
.legal-page__inner { max-width: 760px; }
.legal-page__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin: 0 0 14px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--c-gold-3);
  text-transform: uppercase;
}
.legal-page__eyebrow::before {
  content: ""; width: 36px; height: 2px; background: var(--c-gold-3);
}
.legal-page__title {
  font-size: clamp(1.8rem, 4.2vw, 2.6rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.22;
  margin: 0 0 28px;
  padding-bottom: 22px;
  border-bottom: 4px solid var(--c-ink);
  color: var(--c-on-paper);
}
.legal-page__intro {
  background: var(--c-paper-2);
  border-left: 4px solid var(--c-gold-3);
  padding: 18px 22px;
  margin: 0 0 36px;
  font-size: 1rem;
  line-height: 1.95;
  color: var(--c-on-paper-2);
}
.legal-page__sec {
  margin: 36px 0;
}
.legal-page__sec h2 {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin: 0 0 14px;
  padding: 12px 0 8px;
  border-top: 2px solid var(--c-ink);
  color: var(--c-on-paper);
}
.legal-page__sec p {
  font-size: 0.96rem;
  line-height: 1.95;
  color: var(--c-on-paper-2);
  margin: 0 0 12px;
}
.legal-page__sec p:last-child { margin: 0; }
.legal-page__sec p strong { color: var(--c-on-paper); font-weight: 900; background: rgba(201, 162, 39, 0.18); padding: 0 4px; }
.legal-page__sec ul {
  margin: 12px 0;
  padding-left: 1.4rem;
  color: var(--c-on-paper-2);
}
.legal-page__sec ul li {
  font-size: 0.96rem;
  line-height: 1.85;
  margin-bottom: 6px;
}
.legal-page__sec a {
  color: var(--c-gold-3);
  font-weight: 800;
  border-bottom: 1.5px solid var(--c-gold-3);
}
.legal-page__address {
  font-style: normal;
  background: var(--c-paper-2);
  border: 1px solid rgba(10, 10, 10, 0.14);
  padding: 18px 22px;
  font-size: 0.96rem;
  line-height: 1.95;
  color: var(--c-on-paper-2);
}
.legal-page__address strong { color: var(--c-on-paper); }
.legal-page__address a {
  color: var(--c-on-paper);
  font-weight: 800;
  border-bottom: 1.5px solid var(--c-on-paper);
}
.legal-page__updated {
  margin-top: 48px;
  padding-top: 18px;
  border-top: 4px solid var(--c-ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-on-paper-2);
  display: grid;
  gap: 6px;
}
.legal-page__updated span {
  display: inline-block;
  background: var(--c-ink);
  color: var(--c-text);
  padding: 2px 8px;
  margin-right: 10px;
  font-weight: 900;
}

/* legal-table (特商法表記用 dl) */
.legal-table {
  margin: 28px 0 0;
  border-top: 2px solid var(--c-ink);
  border-left: 1px solid rgba(10, 10, 10, 0.16);
}
.legal-table > div {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-right: 1px solid rgba(10, 10, 10, 0.16);
  border-bottom: 1px solid rgba(10, 10, 10, 0.16);
}
.legal-table dt {
  margin: 0;
  padding: 16px 18px;
  font-weight: 900;
  background: var(--c-paper-2);
  border-right: 1px solid rgba(10, 10, 10, 0.16);
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  color: var(--c-on-paper);
  line-height: 1.55;
}
.legal-table dd {
  margin: 0;
  padding: 16px 18px;
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1.85;
  color: var(--c-on-paper-2);
}
.legal-table dd p { margin: 0 0 8px; }
.legal-table dd p:last-child { margin: 0; }
.legal-table dd strong {
  color: var(--c-on-paper);
  font-weight: 900;
  background: rgba(201, 162, 39, 0.18);
  padding: 0 4px;
}
.legal-table dd a {
  color: var(--c-on-paper);
  font-weight: 800;
  border-bottom: 1.5px solid var(--c-on-paper);
}
@media (max-width: 720px) {
  .legal-table > div { grid-template-columns: 1fr; }
  .legal-table dt {
    border-right: 0;
    border-bottom: 1px solid rgba(10, 10, 10, 0.16);
    padding: 12px 16px 8px;
  }
  .legal-table dd { padding: 12px 16px 16px; }
}

/* footer nav (legal pages も使う) */
.site-footer__nav {
  display: flex; flex-wrap: wrap; gap: 12px 22px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.site-footer__nav a { color: var(--c-text-2); transition: color .15s; }
.site-footer__nav a:hover { color: var(--c-gold); }
.site-footer__nav a[aria-current="page"] {
  color: var(--c-gold);
  border-bottom: 1.5px solid var(--c-gold);
  padding-bottom: 1px;
}

/* ──── Hero entrance animations ──── */
@media (prefers-reduced-motion: no-preference) {

  /* Background: slow Ken Burns zoom (subtle, 28s) */
  .hero__bg {
    animation: hero-bg-zoom 28s ease-out forwards;
    transform-origin: 65% center;
    will-change: transform;
  }

  /* Text stagger entrance */
  .hero__kicker,
  .hero__title-main,
  .hero__title-date,
  .hero__sub,
  .hero__actions {
    animation: hero-fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    will-change: opacity, transform;
  }
  .hero__kicker     { animation-delay: 0.10s; }
  .hero__title-main { animation-delay: 0.32s; animation-name: hero-pop; animation-duration: 1.1s; }
  .hero__title-date { animation-delay: 0.62s; }
  .hero__sub        { animation-delay: 0.84s; }
  .hero__actions    { animation-delay: 1.02s; }

  /* Gold dash before kicker draws in horizontally */
  .hero__kicker::before {
    animation: gold-dash-grow 0.9s 0.30s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  }

  /* CTA gold halo pulse — fires once after actions appear */
  .hero .btn--primary {
    animation: cta-halo 2.6s 1.7s ease-in-out 1;
  }
}

@keyframes hero-bg-zoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.07); }
}

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

@keyframes hero-pop {
  from { opacity: 0; transform: translateY(28px) scale(0.96); filter: blur(6px); }
  to   { opacity: 1; transform: none; filter: none; }
}

@keyframes gold-dash-grow {
  from { width: 0; opacity: 0; }
  to   { width: 44px; opacity: 1; }
}

@keyframes cta-halo {
  0%, 100% { box-shadow: 0 4px 0 var(--c-gold-3); }
  40%      { box-shadow: 0 4px 0 var(--c-gold-3), 0 0 32px rgba(201, 162, 39, 0.55); }
  60%      { box-shadow: 0 4px 0 var(--c-gold-3), 0 0 28px rgba(201, 162, 39, 0.45); }
}

/* ──── a11y ──── */
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto !important; }
}
