/* ============================================================
   fujita.css  ─  みんなの相談員・藤田英明 ショートLP
   ============================================================ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --pink:    #E91E8C;
  --pink-d:  #C4156F;
  --orange:  #FF6B35;
  --yellow:  #FFD700;
  --green:   #00C853;
  --cyan:    #00BCD4;
  --purple:  #9C27B0;
  --navy:    #0D1B2A;
  --navy2:   #1a2d45;
  --dark:    #1a1a1a;
  --gray:    #666;
  --border:  #e0e0e0;
  --cream:   #f8f7f4;
  --white:   #ffffff;

  --rainbow: linear-gradient(90deg,
    #E91E8C 0%, #FF6B35 20%, #FFD700 40%,
    #00C853 60%, #00BCD4 80%, #9C27B0 100%);

  --font: "Noto Sans JP", "Zen Kaku Gothic New", sans-serif;
  --font-en: "Zen Kaku Gothic New", sans-serif;
}

/* ── Reset / Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media (max-width: 768px) { html { font-size: 50%; } }

body {
  font-family: var(--font);
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  font-weight: 400;
}

.fj-inner {
  max-width: 860px;
  margin: 0 auto;
  width: 94%;
}

img { width: 100%; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; transition: opacity .2s; }
a:hover { opacity: .8; }

/* ── Rainbow stripe ─────────────────────────────────────── */
.fj-rainbow {
  height: 5px;
  background: var(--rainbow);
}

/* ── Section helpers ────────────────────────────────────── */
.fj-section { padding: clamp(56px, 6vw, 88px) 16px; }

.fj-section-title {
  font-family: var(--font-en);
  font-size: clamp(26px, 4.5vw, 36px);
  font-weight: 900;
  text-align: center;
  margin: 0 0 10px;
  letter-spacing: .02em;
}

.fj-section-sub {
  font-size: clamp(13px, 2vw, 15px);
  font-weight: 500;
  text-align: center;
  margin: 0 0 48px;
  line-height: 1.6;
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.fj-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  background: rgba(13, 27, 42, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 12px 16px;
}
.fj-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}
.fj-header__name {
  font-family: var(--font-en);
  font-size: clamp(13px, 2.2vw, 17px);
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin: 0;
  white-space: nowrap;
}
.fj-header__name strong { color: var(--white); font-weight: 900; }

.fj-header__btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 9px 22px;
  border-radius: 999px;
  background: #06C755;
  color: var(--white);
  font-family: var(--font-en);
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 700;
  white-space: nowrap;
  transition: background .2s;
}
.fj-header__btn:hover { background: #04a648; opacity: 1; }

/* ============================================================
   MV  (画像型 / SP縦型・PC中央寄せ)
   ============================================================ */
.fj-mv {
  background: #fff;
  padding-top: 58px; /* fixed header offset */
}

/* PC: 全幅 / SP: 640px中央 */
.fj-mv__img-wrap {
  max-width: 100%;
  margin: 0 auto;
  line-height: 0;
}
/* picture要素はinlineなので明示的にblock化 */
.fj-mv__img-wrap picture {
  display: block;
  width: 100%;
}
.fj-mv__img {
  width: 100%;
  height: auto;
  display: block;
}

/* CTA ラップ */
.fj-mv__cta-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 24px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: #fff;
}

/* SP: 画像幅を640pxに制限・中央揃え */
@media (max-width: 767px) {
  .fj-mv__img-wrap {
    max-width: 640px;
    margin: 0 auto;
  }
}

/* --- CTA button --- */
.fj-cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  cursor: pointer;
  text-decoration: none;
  max-width: 440px;
  width: 100%;
}
.fj-cta-btn__catch {
  position: relative;
  display: inline-block;
  background: #fff;
  color: #06C755;
  font-size: clamp(13px, 2.2vw, 15px);
  font-weight: 900;
  padding: 9px 22px;
  border-radius: 999px;
  margin-bottom: 10px;
  letter-spacing: .04em;
  white-space: nowrap;
  box-shadow: 0 3px 14px rgba(0,0,0,.18);
  animation: fj-catch-bounce .9s ease-in-out infinite alternate;
}
/* 下向き三角（吹き出しのしっぽ）*/
.fj-cta-btn__catch::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
}
/* ふわふわアニメ */
@keyframes fj-catch-bounce {
  from { transform: translateY(0); }
  to   { transform: translateY(-4px); }
}
.fj-cta-btn__main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 36px;
  border-radius: 999px;
  background: #06C755;
  color: var(--white);
  font-family: var(--font-en);
  font-size: clamp(18px, 3.2vw, 22px);
  font-weight: 900;
  letter-spacing: .06em;
  box-shadow: 0 4px 28px rgba(6,199,85,.45), 0 2px 10px rgba(0,0,0,.25);
  transition: background .2s, box-shadow .2s, transform .15s;
}
.fj-cta-btn:hover { opacity: 1; }
.fj-cta-btn:hover .fj-cta-btn__main {
  background: #04a648;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(6,199,85,.5);
}

@media (max-width: 480px) {
  .fj-cta-btn__catch { font-size: 12px; padding: 8px 18px; }
}

/* ============================================================
   ABOUT  (経歴・数字)
   ============================================================ */
.fj-about {
  position: relative;
  overflow: hidden;
  background: #fdfcfb;
}

/* ── カラフルblobグラデーション背景 ── */
.fj-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 35% at  4% 12%,  rgba(233, 30,140,.22) 0%, transparent 100%),
    radial-gradient(ellipse 50% 32% at 96%  8%,  rgba(  0,188,212,.20) 0%, transparent 100%),
    radial-gradient(ellipse 48% 30% at 80% 45%,  rgba(  0,200, 83,.16) 0%, transparent 100%),
    radial-gradient(ellipse 52% 36% at 20% 65%,  rgba(156, 39,176,.18) 0%, transparent 100%),
    radial-gradient(ellipse 42% 28% at 60% 90%,  rgba(255,107, 53,.18) 0%, transparent 100%),
    radial-gradient(ellipse 40% 26% at 45% 30%,  rgba(255,215,  0,.14) 0%, transparent 100%),
    radial-gradient(ellipse 35% 24% at 10% 90%,  rgba(  0,200, 83,.13) 0%, transparent 100%),
    radial-gradient(ellipse 38% 25% at 90% 80%,  rgba(233, 30,140,.14) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* コンテンツをblob前面に */
.fj-about > .fj-inner {
  position: relative;
  z-index: 1;
}

/* ── About ヘッダーバッジ行（装飾ライン付き）── */
.fj-about__badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.fj-about__badge-row::before,
.fj-about__badge-row::after {
  content: '';
  flex: 0 0 36px;
  height: 1.5px;
  background: rgba(0,0,0,.22);
  border-radius: 999px;
}

.fj-about__badge {
  display: inline-block;
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 7px 22px;
  border-radius: 999px;
  margin-bottom: 0;
}
.fj-about__badge--tl {
  background: linear-gradient(90deg, #E91E8C, #FF6B35, #FFD700, #00C853, #00BCD4, #9C27B0);
  color: #fff;
  letter-spacing: .18em;
}

/* ── タイトル：文字ごと個別カラー ── */
.fj-about__title {
  font-size: clamp(34px, 7vw, 54px) !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  color: var(--navy) !important;
  margin-bottom: 16px !important;
}
/* 文字カラーヘルパー */
.c-pk { color: #E91E8C; }
.c-or { color: #FF6B35; }
.c-yw { color: #F5C800; }
.c-gn { color: #00C853; }
.c-nv { color: var(--navy); }

/* ── サブテキスト：ホワイトカプセル ── */
.fj-about__sub {
  display: block;
  width: fit-content;
  margin: 0 0 52px;
  background: rgba(255,255,255,.88);
  color: var(--navy);
  border: 1.5px solid rgba(0,0,0,.12);
  padding: 10px 28px;
  border-radius: 999px;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 600;
  line-height: 1.6;
}
.fj-about__sub strong { color: var(--navy); font-weight: 900; }

/* ── About ヘッダー：テキスト＋プロフィール動画 横並び・中央揃え ── */
.fj-about__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  max-width: 720px;
  margin: 0 auto;
}
.fj-about__head-text {
  flex: 0 1 auto;
  min-width: 0;
  text-align: center;
}
/* バッジ行・タイトルは中央揃えを維持 */
.fj-about__head-text .fj-about__badge-row {
  justify-content: center;
}
.fj-about__head-text .fj-about__title {
  text-align: center !important;
}
/* ── About リード文 ── */
.fj-about__lead {
  text-align: center;
  font-size: clamp(13px, 1.8vw, 15px);
  color: #444;
  line-height: 2;
  margin: 0 auto 40px;
  max-width: 640px;
}
.fj-about__lead strong {
  color: #0D1B2A;
  font-weight: 900;
}

.fj-about__head-text .fj-about__sub {
  margin: 0 auto 52px;
}

/* ── プロフィール動画ラッパー ── */
.fj-about__profile-video-wrap {
  flex: 0 0 clamp(90px, 11vw, 130px);
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0,0,0,.14),
    0 0 0 4px rgba(255,255,255,.8),
    0 0 0 7px rgba(6,199,85,.22);
  position: relative;
}
.fj-about__profile-video {
  position: absolute;
  top: 0;
  left: 50%;
  width: 150%;
  height: 150%;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── タイムライン見出しエリア ── */
.fj-timeline-head {
  text-align: center;
  margin-bottom: 8px;
}

/* バッジ行（カラードット＋ライン）*/
.fj-tl-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
/* 左：ライン + 赤ドット */
.fj-tl-badge-row::before {
  content: '';
  flex: 0 0 52px;
  height: 8px;
  background:
    radial-gradient(circle 3.5px at right center, #E91E8C 100%, transparent 100%) right center / 8px 8px no-repeat,
    linear-gradient(#E91E8C, #E91E8C) left center / calc(100% - 10px) 1.5px no-repeat;
  opacity: .65;
}
/* 右：青ドット + ライン */
.fj-tl-badge-row::after {
  content: '';
  flex: 0 0 52px;
  height: 8px;
  background:
    radial-gradient(circle 3.5px at left center, #0288D1 100%, transparent 100%) left center / 8px 8px no-repeat,
    linear-gradient(#0288D1, #0288D1) right center / calc(100% - 10px) 1.5px no-repeat;
  opacity: .65;
}

/* タイトル：超大・虹グラデーション */
.fj-tl__title {
  font-size: clamp(48px, 10vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .02em;
  background: linear-gradient(90deg,
    #FF6B35 0%, #FFD700 30%, #00C853 60%, #0288D1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 16px;
}

/* タイトル下：レインボーライン */
.fj-tl__underline {
  width: 55%;
  max-width: 300px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    #E91E8C 0%, #FF6B35 25%, #FFD700 50%, #00C853 75%, #0288D1 100%);
  margin: 0 auto 28px;
}

/* サブテキスト：ダークネイビーカプセル */
.fj-tl__sub {
  display: block;
  width: fit-content;
  margin: 0 auto 20px;
  background: rgba(13,27,42,.90);
  color: rgba(255,255,255,.90);
  border-radius: 999px;
  padding: 13px 36px;
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
}
.fj-tl__hl {
  color: #FFD700;
  font-weight: 900;
}

/* スワイプヒント */
.st-wrap-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 4px;
  letter-spacing: .04em;
}
.st-wrap-hint__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
  color: #0288D1;
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
}

/* ── key stats grid ── */
.fj-keystats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 72px;
}
@media (max-width: 700px) {
  .fj-keystats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ── Keystat カード（ホワイトデザイン）── */
.fj-keystat {
  border-radius: 16px;
  padding: 22px 18px 52px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
}
/* 薄いtint背景 */
.fj-keystat::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
}
.fj-keystat:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,0,0,.13);
}

/* ─ ピンク ─ */
.fj-keystat--pk { border-bottom: 3px solid #E91E8C; }
.fj-keystat--pk::before { background: linear-gradient(135deg, rgba(233,30,140,.07) 0%, transparent 65%); }
.fj-keystat--pk .fj-keystat__num   { color: #E91E8C; }
.fj-keystat--pk .fj-keystat__line  { background: #E91E8C; }
.fj-keystat--pk .fj-keystat__accent{ color: #E91E8C; }
.fj-keystat--pk .fj-keystat__wm    { color: rgba(233,30,140,.10); }

/* ─ オレンジ ─ */
.fj-keystat--or { border-bottom: 3px solid #FF6B35; }
.fj-keystat--or::before { background: linear-gradient(135deg, rgba(255,107,53,.07) 0%, transparent 65%); }
.fj-keystat--or .fj-keystat__num   { color: #FF6B35; }
.fj-keystat--or .fj-keystat__line  { background: #FF6B35; }
.fj-keystat--or .fj-keystat__accent{ color: #FF6B35; }
.fj-keystat--or .fj-keystat__wm    { color: rgba(255,107,53,.10); }

/* ─ レッド ─ */
.fj-keystat--rd { border-bottom: 3px solid #E53935; }
.fj-keystat--rd::before { background: linear-gradient(135deg, rgba(229,57,53,.07) 0%, transparent 65%); }
.fj-keystat--rd .fj-keystat__num   { color: #E53935; }
.fj-keystat--rd .fj-keystat__line  { background: #E53935; }
.fj-keystat--rd .fj-keystat__accent{ color: #E53935; }
.fj-keystat--rd .fj-keystat__wm    { color: rgba(229,57,53,.10); }

/* ─ グリーン ─ */
.fj-keystat--gn { border-bottom: 3px solid #00C853; }
.fj-keystat--gn::before { background: linear-gradient(135deg, rgba(0,200,83,.07) 0%, transparent 65%); }
.fj-keystat--gn .fj-keystat__num   { color: #00A844; }
.fj-keystat--gn .fj-keystat__line  { background: #00C853; }
.fj-keystat--gn .fj-keystat__accent{ color: #00A844; }
.fj-keystat--gn .fj-keystat__wm    { color: rgba(0,200,83,.10); }

/* ─ ブルー ─ */
.fj-keystat--cy { border-bottom: 3px solid #0288D1; }
.fj-keystat--cy::before { background: linear-gradient(135deg, rgba(2,136,209,.07) 0%, transparent 65%); }
.fj-keystat--cy .fj-keystat__num   { color: #0277BD; }
.fj-keystat--cy .fj-keystat__line  { background: #0288D1; }
.fj-keystat--cy .fj-keystat__accent{ color: #0277BD; }
.fj-keystat--cy .fj-keystat__wm    { color: rgba(2,136,209,.10); }

/* ─ パープル ─ */
.fj-keystat--pu { border-bottom: 3px solid #9C27B0; }
.fj-keystat--pu::before { background: linear-gradient(135deg, rgba(156,39,176,.07) 0%, transparent 65%); }
.fj-keystat--pu .fj-keystat__num   { color: #8E24AA; }
.fj-keystat--pu .fj-keystat__line  { background: #9C27B0; }
.fj-keystat--pu .fj-keystat__accent{ color: #8E24AA; }
.fj-keystat--pu .fj-keystat__wm    { color: rgba(156,39,176,.10); }

/* 数字 */
.fj-keystat__num {
  font-family: var(--font-en);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
}
.fj-keystat__num small {
  font-size: .52em;
  font-weight: 700;
}

/* セパレータライン */
.fj-keystat__line {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  margin-bottom: 10px;
  flex-shrink: 0;
}

/* ボディテキスト */
.fj-keystat__body {
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 600;
  color: #555;
  line-height: 1.8;
  margin: 0;
}
.fj-keystat__accent {
  font-weight: 700;
}

/* ウォーターマーク番号 */
.fj-keystat__wm {
  position: absolute;
  bottom: 4px;
  right: 12px;
  font-size: clamp(52px, 7vw, 68px);
  font-weight: 900;
  font-family: var(--font-en);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   STAIRCASE TIMELINE  (階段デザイン)
   ============================================================ */

/* Scrollable outer wrapper */
.st-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -16px;
  padding: 0 16px 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,.15) transparent;
  /* 左右にフェードアウト演出 */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}
.st-wrap::-webkit-scrollbar       { height: 4px; }
.st-wrap::-webkit-scrollbar-track { background: transparent; }
.st-wrap::-webkit-scrollbar-thumb { background: rgba(0,0,0,.15); border-radius: 2px; }

/* Flex row — all steps align at the BOTTOM */
.st-stairs {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  min-width: max-content;
  padding-top: 56px;    /* room for character illustrations above tallest block */
  padding-bottom: 64px; /* room for absolutely-positioned .st-desc below ground line */
}

/* ── Individual step ──────────────────────────────────────── */
.st-step {
  flex: 0 0 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Diagonal arrow to the next step
   bottom = block height + some offset to sit near the character */
.st-step:not(:last-child)::after {
  content: '↗';
  position: absolute;
  right: -10px;
  bottom: calc(var(--sh, 60px) + 30px);
  font-size: 16px;
  color: rgba(100,100,100,.35);
  z-index: 5;
  line-height: 1;
}

/* Character illustration (img or emoji) */
.st-char {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 4px;
  object-fit: contain;
  font-size: 28px;   /* fallback for emoji */
  line-height: 40px;
  text-align: center;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,.14));
}

/* Colored step block — height controlled via --sh CSS variable */
.st-block {
  width: 100%;
  height: var(--sh, 65px);
  background: var(--sc, #6BAED6);
  border-radius: 5px 5px 0 0;
  position: relative;           /* anchor for absolutely-positioned .st-num */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;    /* age + title always pinned to bottom */
  padding: 6px 5px 10px;
  box-sizing: border-box;
  box-shadow: 2px 0 0 rgba(0,0,0,.08), 0 6px 16px rgba(0,0,0,.18);
}

/* Step number — always pinned to TOP of block */
.st-num {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 900;
  color: rgba(255,255,255,.40);
  letter-spacing: .12em;
  line-height: 1;
  white-space: nowrap;
}

/* Age label — pinned to bottom via parent flex-end */
.st-age {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1.2;
  margin-bottom: 2px;
}

/* Milestone title — pinned to bottom below age */
.st-title {
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  display: block;
  text-align: center;
  line-height: 1.4;
}

/* Description text — absolutely positioned so all colored-block BOTTOMS align */
.st-desc {
  position: absolute;
  top: 100%;          /* sits just below the bottom of .st-step = ground line */
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  margin: 0;
  padding: 7px 3px 0;
  font-size: 10px;
  font-weight: 500;
  color: var(--gray);
  text-align: center;
  line-height: 1.55;
  border-top: 3px solid var(--sc, #6BAED6);
  white-space: normal;
}

/* ── Mobile: 横スクロール維持・サイズ縮小 ────────────── */
@media (max-width: 580px) {
  /* ラッパーはそのまま横スクロール */
  .st-wrap {
    margin: 0 -16px;
    padding: 0 16px 8px;
  }

  /* 横並びを維持しつつコンパクト化 */
  .st-stairs {
    gap: 4px;
    padding-top: 6px;
    padding-bottom: 62px;
  }

  .st-step { flex: 0 0 76px; }

  .st-step:not(:last-child)::after {
    right: -8px;
    font-size: 12px;
    bottom: calc(var(--sh, 60px) + 22px);
  }

  .st-char {
    width: 34px;
    height: 34px;
    font-size: 22px;
    line-height: 34px;
    margin: 0 auto 3px;
  }

  .st-block { padding: 5px 3px 8px; }

  .st-num   { font-size: 7.5px; top: 4px; }
  .st-age   { font-size: 12px; margin-bottom: 1px; }
  .st-title { font-size: 7.5px; }

  .st-desc {
    width: 76px;
    font-size: 9px;
    padding: 5px 2px 0;
  }
}

/* ============================================================
   BRIDGE  資料ダウンロード誘導
   ============================================================ */
.fj-bridge {
  background: linear-gradient(180deg, #fdfcfb 0%, #e8f4ff 100%);
  padding: 0 16px 0;
  position: relative;
  overflow: hidden;
}
.fj-bridge::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 10% 60%, rgba(6,199,85,.12) 0%, transparent 100%),
    radial-gradient(ellipse 45% 40% at 90% 40%, rgba(2,136,209,.12) 0%, transparent 100%),
    radial-gradient(ellipse 40% 35% at 50% 90%, rgba(233,30,140,.08) 0%, transparent 100%);
  pointer-events: none;
}

/* ── カード ── */
.fj-bridge__card {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: clamp(40px, 5vw, 60px) clamp(24px, 5vw, 60px) clamp(36px, 4vw, 52px);
  text-align: center;
  box-shadow: 0 16px 64px rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.05);
  overflow: hidden;
  transform: translateY(-44px);
}
/* レインボートップボーダー */
.fj-bridge__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg,
    #E91E8C 0%, #FF6B35 20%, #FFD700 40%, #00C853 60%, #0288D1 80%, #9C27B0 100%);
}

/* アイブロウ */
.fj-bridge__eyebrow {
  font-size: clamp(11px, 1.5vw, 12px);
  color: #aaa;
  letter-spacing: .14em;
  margin-bottom: 18px;
}

/* タイトル */
.fj-bridge__title {
  font-size: clamp(24px, 4.5vw, 42px);
  font-weight: 900;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 12px;
}
.fj-bridge__title em {
  font-style: normal;
  background: linear-gradient(90deg, #06C755 0%, #00A844 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ボディ */
.fj-bridge__body {
  font-size: clamp(13px, 1.8vw, 15px);
  color: #777;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ── 資料のなかみ ── */
.fj-bridge__contents {
  background: #f7fbff;
  border: 1.5px solid rgba(2,136,209,.18);
  border-radius: 18px;
  padding: 20px 20px 16px;
  margin-bottom: 24px;
  text-align: left;
}
.fj-bridge__contents-ttl {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.fj-bridge__contents-icon { font-size: 16px; }

.fj-bridge__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fj-bridge__item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  border-left: 4px solid;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  transition: transform .2s;
}
.fj-bridge__item:hover { transform: translateX(4px); }
.fj-bridge__item--pk { border-color: #E91E8C; }
.fj-bridge__item--or { border-color: #FF6B35; }
.fj-bridge__item--gn { border-color: #06C755; }
.fj-bridge__item--cy { border-color: #0288D1; }

.fj-bridge__item-no {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 900;
  color: #ccc;
  flex-shrink: 0;
  letter-spacing: .05em;
  min-width: 20px;
}
.fj-bridge__item--pk .fj-bridge__item-no { color: rgba(233,30,140,.4); }
.fj-bridge__item--or .fj-bridge__item-no { color: rgba(255,107,53,.4); }
.fj-bridge__item--gn .fj-bridge__item-no { color: rgba(6,199,85,.4); }
.fj-bridge__item--cy .fj-bridge__item-no { color: rgba(2,136,209,.4); }

.fj-bridge__item-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fj-bridge__item-body b {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 700;
  color: #222;
}
.fj-bridge__item-body span {
  font-size: clamp(10px, 1.4vw, 12px);
  color: #888;
  line-height: 1.5;
}

/* ── 安心バッジ ── */
.fj-bridge__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}
.fj-bridge__badge {
  display: inline-block;
  background: rgba(6,199,85,.08);
  color: #04a648;
  border: 1.5px solid rgba(6,199,85,.28);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: clamp(11px, 1.4vw, 12px);
  font-weight: 700;
  letter-spacing: .02em;
}

/* ── 矢印 ── */
.fj-bridge__arrow-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.fj-bridge__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #06C755;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 6px 22px rgba(6,199,85,.50);
  animation: fj-bridge-bounce .85s ease-in-out infinite alternate;
}
@keyframes fj-bridge-bounce {
  from { transform: translateY(0);   box-shadow: 0 6px 22px rgba(6,199,85,.50); }
  to   { transform: translateY(8px); box-shadow: 0 14px 30px rgba(6,199,85,.30); }
}
.fj-bridge__arrow-label {
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .04em;
}

/* SP */
@media (max-width: 580px) {
  .fj-bridge__card { transform: translateY(-28px); padding: 32px 18px 36px; }
  .fj-bridge__item { padding: 10px 12px; gap: 10px; }
  .fj-bridge__badges { gap: 6px; }
  .fj-bridge__badge { padding: 5px 12px; font-size: 11px; }
  .fj-bridge__arrow { width: 48px; height: 48px; font-size: 22px; }
}

/* ============================================================
   DOC  資料ダウンロード導線
   ============================================================ */
.fj-doc {
  background: #1565C0;
  padding: clamp(20px, 3vw, 36px) 16px clamp(48px, 7vw, 72px);
  text-align: center;
}

.fj-doc .fj-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fj-doc__title {
  font-family: var(--font);
  font-size: clamp(22px, 4.5vw, 32px);
  font-weight: 900;
  color: var(--white);
  margin: 0 0 28px;
  line-height: 1.3;
}

/* ── ダウンロードフォームカード ──────────────────── */
.fj-dl {
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: 16px;
  padding: clamp(24px, 5vw, 40px) clamp(20px, 5vw, 36px);
  box-shadow: 0 8px 40px rgba(0,0,0,.22);
  text-align: left;
}

/* 各フィールド */
.fj-dl__field {
  margin-bottom: 14px;
}

/* ラベル行 */
.fj-dl__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

/* 必須・任意バッジ */
.fj-dl__badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 4px;
  background: #E53935;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.fj-dl__badge--opt {
  background: #9E9E9E;
}

/* 入力フィールド共通 */
.fj-dl__input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: none;
  border-radius: 6px;
  background: #F0F0F0;
  font-family: var(--font);
  font-size: 15px;
  color: var(--dark);
  outline: none;
  box-sizing: border-box;
  transition: box-shadow .2s;
}
.fj-dl__input:focus {
  box-shadow: 0 0 0 3px rgba(21,101,192,.28);
}

/* テキストエリア */
.fj-dl__textarea {
  height: auto;
  min-height: 100px;
  padding: 12px 14px;
  resize: vertical;
}

/* プライバシーポリシー */
.fj-dl__privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555;
  margin: 18px 0 20px;
  cursor: pointer;
}
.fj-dl__privacy input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #1565C0;
  flex-shrink: 0;
}

/* 送信ボタン */
.fj-dl__btn {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 999px;
  background: #06C755;
  color: #fff;
  font-family: var(--font);
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 900;
  cursor: pointer;
  letter-spacing: .04em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(6,199,85,.45);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.fj-dl__btn:hover {
  background: #04a648;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(6,199,85,.50);
}

/* メールフォーム（Responsive Mailform）— fj-dl 見た目を維持 */
.fj-dl form#mail_form {
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  line-height: inherit;
}

.fj-dl form#mail_form > dl {
  width: 100%;
  margin: 0 0 14px;
  padding: 0;
  border: none;
  display: block;
}

.fj-dl form#mail_form dl dt {
  width: auto;
  padding: 0;
  margin-bottom: 6px;
  float: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.fj-dl form#mail_form dl dt i {
  position: static;
  top: auto;
  font-style: normal;
  order: -1;
}

.fj-dl form#mail_form dl dt span.required,
.fj-dl form#mail_form dl dt span.optional {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  border: none;
  line-height: 1.4;
}

.fj-dl form#mail_form dl dt span.required {
  background: #E53935;
  color: #fff;
}

.fj-dl form#mail_form dl dt span.optional {
  background: #9E9E9E;
  color: #fff;
}

.fj-dl form#mail_form dl dd {
  width: 100%;
  margin: 0;
  padding: 0;
  float: none;
}

.fj-dl form#mail_form dl dd span.error_blank,
.fj-dl form#mail_form dl dd span.error_format {
  font-size: 12px;
  color: #E53935;
  margin-top: 4px;
}

.fj-dl form#mail_form > #agreement {
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
}

.fj-dl form#mail_form #agree_check {
  margin: 18px 0 20px;
  padding: 0;
  text-align: left;
}

.fj-dl form#mail_form #agree_check label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: #555;
  cursor: pointer;
}

.fj-dl form#mail_form #agree_check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #1565C0;
  flex-shrink: 0;
}

.fj-dl form#mail_form #agree_check .error_check {
  display: none;
  font-size: 12px;
  color: #E53935;
  margin-top: 6px;
}

.fj-dl form#mail_form p#form_submit {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}

.fj-dl form#mail_form input#form_submit_button.fj-dl__btn {
  -webkit-appearance: none;
  appearance: none;
}

.fj-dl form#mail_form input#form_submit_button.fj-dl__btn:hover {
  background: #04a648;
  opacity: 1;
  box-shadow: 0 8px 26px rgba(6,199,85,.50);
}

.fj-dl form#mail_form .fj-dl__input,
.fj-dl form#mail_form .fj-dl__textarea {
  width: 100%;
  border: none;
  border-radius: 6px;
  background: #F0F0F0;
  font-family: var(--font);
  font-size: 15px;
  color: var(--dark);
}

.fj-dl form#mail_form .fj-dl__input {
  height: 46px;
  padding: 0 14px;
}

.fj-dl form#mail_form .fj-dl__textarea {
  height: auto;
  min-height: 100px;
  padding: 12px 14px;
}

.fj-dl form#mail_form .fj-dl__input:focus,
.fj-dl form#mail_form .fj-dl__textarea:focus {
  outline: none;
  border: none;
  background: #F0F0F0;
  box-shadow: 0 0 0 3px rgba(21,101,192,.28);
}

/* ── ZOOMセミナーCTA（ピンク上書き） ── */
.fj-cta-btn__catch--zoom {
  color: #E91E8C;
}
.fj-cta-btn__catch--zoom::after {
  border-top-color: #fff;
}
.fj-cta-btn__main--zoom {
  background: #E91E8C;
  box-shadow: 0 4px 28px rgba(233,30,140,.45), 0 2px 10px rgba(0,0,0,.25);
}
.fj-cta-btn--zoom:hover .fj-cta-btn__main--zoom {
  background: #C2185B;
  box-shadow: 0 8px 32px rgba(233,30,140,.55);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.fj-contact {
  background: var(--cream);
}

.fj-contact__title {
  font-family: var(--font-en);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  margin: 0 0 36px;
  line-height: 1.4;
}
.fj-contact__title small {
  display: block;
  font-size: .55em;
  font-weight: 500;
  color: var(--gray);
  margin-top: 8px;
  letter-spacing: .02em;
}

/* form box */
.fj-contact form#mail_form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 36px 32px 40px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 4px 36px rgba(0,0,0,.09);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 600px) {
  .fj-contact form#mail_form { padding: 28px 18px 32px; }
}

.fj-contact form#mail_form > dl {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0; padding: 0; border: none;
}

.fj-contact form#mail_form dl dt {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* required mark */
.fj-contact form#mail_form dl dt i {
  display: inline-block;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  background: var(--pink);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: .02em;
  line-height: 1.5;
}
.fj-contact form#mail_form dl dt i::before { content: '必須'; }

/* optional badge */
.fj-contact .optional {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: #9e9e9e;
  color: var(--white);
  letter-spacing: .02em;
  line-height: 1.5;
}

.fj-contact form#mail_form dl dd { margin: 0; padding: 0; }

.fj-contact form#mail_form input[type="text"],
.fj-contact form#mail_form input[type="email"],
.fj-contact form#mail_form input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  font-size: 16px;
  font-family: var(--font);
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
}
.fj-contact form#mail_form textarea {
  width: 100%;
  min-height: 140px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  font-size: 16px;
  font-family: var(--font);
  resize: vertical;
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
}
.fj-contact form#mail_form input:focus,
.fj-contact form#mail_form textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(233,30,140,.12);
}

.fj-contact form#mail_form dl dd span.error_blank,
.fj-contact form#mail_form dl dd span.error_format {
  font-size: 13px;
  color: #e53935;
  display: block;
  margin-top: 4px;
}

/* agreement */
.fj-contact form#mail_form > #agreement {
  margin: 0; padding: 0; background: transparent;
}
.fj-contact form#mail_form #agree_check {
  text-align: center; margin: 0; padding: 0;
}
.fj-contact form#mail_form #agree_check label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}
.fj-contact form#mail_form #agree_check input[type="checkbox"] {
  width: 20px; height: 20px; margin: 0; flex-shrink: 0;
  accent-color: var(--pink);
}
.fj-contact form#mail_form #agree_check .error_check {
  display: none;
  margin-top: 8px;
  font-size: 13px;
  color: #e53935;
  text-align: center;
}

/* submit */
.fj-contact form#mail_form p#form_submit {
  margin: 8px 0 0; padding: 0;
  display: flex; justify-content: center;
}
.fj-contact form#mail_form input#form_submit_button {
  width: 100%;
  max-width: 360px;
  padding: 18px 32px;
  border: none;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .06em;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(233,30,140,.38);
  transition: background .2s, box-shadow .2s, transform .15s;
}
.fj-contact form#mail_form input#form_submit_button:hover {
  background: var(--pink-d);
  box-shadow: 0 8px 32px rgba(233,30,140,.48);
  transform: translateY(-2px);
}

/* ============================================================
   PUBLICATION & MUSIC
   ============================================================ */
.fj-pub { background: #fff; }

.fj-pub__eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #aaa;
  margin-bottom: 10px;
}
.fj-pub__title {
  font-family: var(--font);
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 900;
  color: #0D1B2A;
  text-align: center;
  margin-bottom: 8px;
}
.fj-pub__pk { font-style: normal; color: #E91E8C; }
.fj-pub__cy { font-style: normal; color: #0288D1; }
.fj-pub__sub {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-bottom: 28px;
}
.fj-pub__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}
.fj-pub__card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1.5px solid rgba(0,0,0,.07);
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transition: transform .18s, box-shadow .18s;
}
.fj-pub__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  opacity: 1;
}
.fj-pub__card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px 10px;
  border-bottom: 1.5px solid rgba(0,0,0,.06);
}
.fj-pub__card--pk .fj-pub__card-head { background: rgba(233,30,140,.05); }
.fj-pub__card--cy .fj-pub__card-head { background: rgba(2,136,209,.05); }
.fj-pub__dot {
  width: 10px; height: 10px;
  border-radius: 50%; flex-shrink: 0;
}
.fj-pub__dot--pk { background: #E91E8C; }
.fj-pub__dot--cy { background: #0288D1; }
.fj-pub__label {
  font-size: 13px; font-weight: 900; color: #0D1B2A; flex: 1;
}
.fj-pub__type {
  font-size: 10px; font-weight: 700;
  letter-spacing: .08em; color: #bbb;
}
.fj-pub__card-imgs {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 14px 16px 0;
}
.fj-pub__thumb {
  flex: 1; min-width: 0;
  max-height: 160px;
  object-fit: contain;
  object-position: bottom;
  border-radius: 8px;
  display: block;
}
.fj-pub__qr {
  width: 64px; height: 64px; flex-shrink: 0;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.08);
  padding: 4px; background: #fff;
}
.fj-pub__card-body {
  flex: 1; display: flex;
  flex-direction: column;
  padding: 12px 16px 16px;
}
.fj-pub__desc {
  font-size: 13px; color: #555;
  line-height: 1.75; font-weight: 500;
  flex: 1; margin-bottom: 12px;
}
.fj-pub__link {
  display: block; text-align: center;
  font-size: 13px; font-weight: 900;
  padding: 10px 16px; border-radius: 999px;
  letter-spacing: .04em; margin-top: auto;
  color: #fff;
}
.fj-pub__link--pk {
  background: #E91E8C;
  box-shadow: 0 4px 14px rgba(233,30,140,.38);
}
.fj-pub__link--cy {
  background: #0288D1;
  box-shadow: 0 4px 14px rgba(2,136,209,.38);
}

@media (max-width: 768px) {
  .fj-pub__grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* ============================================================
   ZOOM SEMINAR CTA SECTION
   ============================================================ */
.fj-zoom-section {
  background: linear-gradient(135deg, rgba(6,199,85,.06) 0%, rgba(2,136,209,.06) 100%);
  padding: clamp(40px, 6vw, 64px) 16px;
}
.fj-zoom-section__inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 24px;
  padding: clamp(28px, 5vw, 44px) clamp(20px, 4vw, 40px);
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  border: 1.5px solid rgba(233,30,140,.15);
}
.fj-zoom-section__text {
  font-size: clamp(13px, 2vw, 15px);
  color: #444;
  line-height: 1.9;
  font-weight: 600;
  margin-bottom: 20px;
}
.fj-zoom-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  padding: 16px 28px;
  border-radius: 999px;
  background: #E91E8C;
  color: #fff;
  font-family: var(--font);
  font-size: clamp(14px, 2.2vw, 16px);
  font-weight: 900;
  text-decoration: none;
  letter-spacing: .04em;
  box-shadow: 0 6px 22px rgba(233,30,140,.42);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.fj-zoom-section__btn:hover {
  background: #C2185B;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(233,30,140,.50);
  opacity: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.fj-footer {
  background: var(--navy);
  padding: 28px 16px;
  text-align: center;
}
.fj-footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 0 0 10px;
  flex-wrap: wrap;
}
.fj-footer__links a {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}
.fj-footer__links a:hover { color: var(--white); opacity: 1; }
.fj-footer__copy {
  font-family: var(--font-en);
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin: 0;
}

/* ============================================================
   RESPONSIVE  スマホ全体調整
   ============================================================ */
@media (max-width: 768px) {

  /* ── ヘッダー ── */
  .fj-header { padding: 10px 12px; }
  .fj-header__name { font-size: 13px; }
  .fj-header__btn  { padding: 8px 14px; font-size: 12px; }

  /* ── MV ── */
  .fj-mv { padding-top: 52px; }
  .fj-mv__cta-wrap { padding: 20px 16px 32px; }

  /* ── セクション共通 ── */
  .fj-section { padding: 40px 16px; }
  .fj-section-sub { margin: 0 0 32px; }

  /* ── キースタット: 2列×3行 ── */
  .fj-keystats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .fj-keystat { padding: 18px 14px 48px; }
  .fj-keystat__num { font-size: clamp(22px, 6.5vw, 34px); }
  .fj-keystat__wm  { font-size: clamp(44px, 11vw, 58px); bottom: 2px; right: 8px; }
  .fj-keystat__body{ font-size: 12px; }
  .fj-about__badge-row::before,
  .fj-about__badge-row::after { flex: 0 0 24px; }

  /* ── About ヘッダー：SP時は縦並び ── */
  .fj-about__head {
    flex-direction: column-reverse; /* 動画を上、テキストを下 */
    align-items: center;
    gap: 20px;
  }
  .fj-about__head-text {
    width: 100%;
    text-align: center;
  }
  .fj-about__head-text .fj-about__badge-row {
    justify-content: center;
  }
  .fj-about__head-text .fj-about__title {
    text-align: center !important;
  }
  .fj-about__sub {
    margin: 0 auto 40px;
    white-space: nowrap;
    font-size: 11px;
    padding: 8px 16px;
  }
  .fj-about__profile-video-wrap {
    flex: 0 0 auto;
    width: clamp(240px, 72vw, 320px);
    aspect-ratio: unset;
    height: clamp(160px, 42vw, 220px);
  }
  .fj-about__profile-video {
    width: 160%;
    height: 160%;
    object-position: center top;
  }

  /* ── タイムライン見出し ── */
  .fj-section-title { font-size: clamp(20px, 5vw, 28px); }

  /* ── 横スクロールのヒント表示 ── */
  .st-wrap-hint { font-size: 12px; gap: 8px; }
  .st-wrap-hint__arrow { width: 30px; height: 30px; font-size: 14px; }
  .fj-tl__sub {
    white-space: normal;
    text-align: center;
    padding: 12px 24px;
    width: calc(100% - 0px);
    max-width: 100%;
  }
  .fj-tl__title { font-size: clamp(40px, 12vw, 64px); }
  .fj-tl-badge-row::before,
  .fj-tl-badge-row::after { flex: 0 0 36px; }

  /* ── ダウンロードフォーム ── */
  .fj-dl {
    border-radius: 12px;
    padding: 20px 16px;
  }
  .fj-dl__btn { font-size: 15px; height: 52px; }
}

@media (max-width: 480px) {
  /* ヘッダー名称を短縮 */
  .fj-header__name .sp-hide { display: none; }

  /* CTA ボタン */
  .fj-cta-btn__main { font-size: 16px; padding: 16px 24px; }
  .fj-cta-btn__catch { font-size: 12px; }
}
