@charset "UTF-8";

/* ============================================================
   JATTEA LP — design tokens
   色を変えたい場合はここだけ触れば全体に反映されます
   ============================================================ */
:root {
  --orange:       #cc461d;
  --orange-dark:  #a5330f;
  --orange-deep:  #8f2c0d;
  --cream:        #f9f6ef;
  --cream-2:      #f9f4ed;
  --ink:          #313131;
  --ink-2:        #4a4a4a;
  --gold:         #c2a560;
  --gold-light:   #e2d3a8;
  --dark:         #242424;
  --white:        #ffffff;

  --issue-v:      clamp(70px, 9.5vw, 140px); /* ISSUE下部V字の深さ（MISSIONと共有） */
  --content:      720px;   /* 本文カラム幅 */
  --wide:         1100px;  /* セクション最大幅 */
  --radius:       10px;
  /* 本文・見出しは Noto Sans JP に固定（Hiragino等へのフォールバックを外す） */
  --font: "Noto Sans JP", system-ui, sans-serif;
  /* 数字はFutura（Mac/iOSの標準搭載）。無い環境はJost（Futura系のWebフォント）へ */
  --font-num: Futura, "Jost", "Century Gothic", "Avenir Next", system-ui, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;          /* body に overflow を付けると sticky が壊れるため html 側で */
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  font-weight: 500;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, p, dl, dd, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4em;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  padding: .9em 1.8em;
  line-height: 1.3;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
}
.btn:hover  { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0, 0, 0, .18); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn--lg   { font-size: clamp(15px, 1.55vw, 20px); padding: 1.05em 2.2em; width: 100%; max-width: 400px; }
.btn--cream{ background: var(--cream); color: var(--orange-dark); }
.btn--pill { background: var(--white); color: var(--orange); font-size: 14px; padding: .7em 1.5em; white-space: nowrap; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--orange);
}
.site-header__inner {
  max-width: var(--wide);
  margin-inline: auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-header__logo img { width: 150px; height: auto; }
.site-header__nav {
  margin-left: auto;
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.site-header__nav a { text-decoration: none; opacity: .9; }
.site-header__nav a:hover { opacity: 1; text-decoration: underline; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: #2b1a12;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: center;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 0, 0, .62) 0%, rgba(0, 0, 0, .42) 45%, rgba(0, 0, 0, .1) 75%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--wide);
  width: 100%;
  margin-inline: auto;
  padding: 72px 20px 60px;
  color: var(--white);
}
.hero__title {
  font-size: clamp(30px, 5.2vw, 68px);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: .01em;
  text-shadow: 0 3px 20px rgba(0, 0, 0, .45);
}
.hero__lead {
  margin-top: 26px;
  font-size: clamp(12px, 1.15vw, 15px);
  font-weight: 700;
  line-height: 1.9;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
}
.hero__stats {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 56px);
}
.hero__stats li { display: grid; grid-template-columns: auto auto; align-items: baseline; }
.hero__stats strong {
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.01em;
}
.hero__stats .unit { font-size: clamp(14px, 1.5vw, 20px); font-weight: 700; }
.hero__stats em {
  grid-column: 1 / -1;
  font-style: normal;
  font-size: clamp(15px, 1.6vw, 22px);
  font-weight: 700;
  margin-top: 6px;
}

/* ============================================================
   CTA バンド（4箇所で共通利用）
   ============================================================ */
.cta { position: relative; overflow: hidden; padding: 46px 20px 52px; }
.cta--orange { background: var(--orange); color: var(--white); }
.cta--cream  { background: var(--cream-2); color: var(--orange-dark); }

/* 花の装飾（背景色ごと切り出した画像を左右に敷く） */
.cta__orn {
  position: absolute;
  top: 0;
  height: 100%;
  width: clamp(90px, 15%, 200px);
  max-width: none;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.cta__orn--l { left: 0;  object-position: left center; }
.cta__orn--r { right: 0; object-position: right center; }

.cta__inner { position: relative; z-index: 2; max-width: var(--wide); margin-inline: auto; }
.cta__head {
  text-align: center;
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 900;
  letter-spacing: .02em;
  margin-bottom: 26px;
}
.cta__head::before, .cta__head::after {
  display: inline-block;
  font-weight: 700;
  padding: 0 .35em;
}
.cta__head::before { content: "＼"; }
.cta__head::after  { content: "／"; }

.cta__body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 56px);
  flex-wrap: wrap;
}
/* 資料イメージ（重なり表現） */
.cta__docs { position: relative; width: min(300px, 62vw); height: 190px; flex: none; }
.cta__docs img {
  position: absolute;
  width: 74%;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .22);
}
.cta__docs img:nth-child(1) { left: 0;   top: 0; }
.cta__docs img:nth-child(2) { left: 8%;  top: 9%; }
.cta__docs img:nth-child(3) { left: 16%; top: 18%; }
.cta__docs img:nth-child(4) { left: 24%; top: 27%; }

.cta__action { text-align: center; }
.cta__note {
  margin-top: 16px;
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 700;
  line-height: 1.8;
  text-align: left;
}
.cta--orange .cta__note { color: rgba(255, 255, 255, .92); }
.cta__note .indent { display: inline-block; padding-left: 1.2em; }

/* ============================================================
   ISSUE
   ============================================================ */
/* 下辺がV字（シェブロン）に切り欠かれた、二重罫のクリーム枠。
   clip-path を同じ形で重ねて「クリーム→罫→クリーム→細罫→クリーム」を作る。
   --v = V字の深さ（デザイン実測 233 / 1440 ≒ 16.2vw） */
.issue {
  --v: var(--issue-v);              /* V字の深さ（:root で MISSION と共有） */
  --i: clamp(7px, 1.39vw, 20px);    /* 外罫の内側マージン（同 20/1440） */
  position: relative;
  z-index: 1;                       /* V字の抜けから下のMISSION画像を見せるため */
  background: transparent;
  isolation: isolate;
}
.issue__frame,
.issue__rule,
.issue__panel,
.issue__rule2,
.issue__panel2 {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--v)), 50% 100%, 0 calc(100% - var(--v)));
}
.issue__frame {
  position: relative;
  background: var(--cream);
  padding-bottom: var(--v);
}
.issue__rule,
.issue__panel,
.issue__rule2,
.issue__panel2 {
  position: absolute;
  pointer-events: none;
}
.issue__rule   { inset: var(--i);                background: var(--orange); }  /* 太い外罫 */
.issue__panel  { inset: calc(var(--i) * 1.3);    background: var(--cream); }
.issue__rule2  { inset: calc(var(--i) * 2.2);    background: var(--orange); }  /* 細い内罫 */
.issue__panel2 { inset: calc(var(--i) * 2.35);   background: var(--cream); }
.issue__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin-inline: auto;
  padding: 130px 20px 18px;
}
/* 見出しは広く、本文は狭く（デザインの版面比） */
.issue__inner > .bubble,
.issue__inner > .lead-xl,
.issue__inner > .sec-title { max-width: 100%; }
.issue .prose  { max-width: 610px; margin-inline: auto; padding-inline: 0; }
.issue .market { max-width: 770px; margin-inline: auto; }
.watermark {
  position: absolute;
  top: 84px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(56px, 9vw, 116px);
  font-weight: 900;
  color: rgba(49, 49, 49, .07);
  letter-spacing: .02em;
  pointer-events: none;
}
.sec-title {
  position: relative;
  text-align: center;
  font-size: clamp(19px, 2.5vw, 31px);
  font-weight: 900;
  line-height: 1.6;
}
.sec-title--sub { margin-top: 14px; }
.hl { color: var(--orange); }

.bubble {
  position: relative;
  margin: 62px auto 0;
  width: fit-content;
  max-width: 100%;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 999px;
  padding: .7em 1.8em;
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 900;
  color: var(--orange);
  text-align: center;
}
.bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 24px;
  height: 16px;
  transform: translateX(-30%);
  background: var(--white);
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.lead-xl {
  margin-top: 34px;
  text-align: center;
  font-size: clamp(20px, 2.7vw, 34px);
  font-weight: 900;
  line-height: 1.55;
}
.lead-xl .num {
  color: var(--orange);
  font-size: 1.75em;
  font-style: italic;
  letter-spacing: -.02em;
}
.lead-xl .num-unit { color: var(--orange); font-size: 1.05em; }

.issue__photo { margin: 34px auto 0; max-width: 480px; }
.issue__photo img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; border: 2px solid var(--orange); }

.prose { margin-top: 30px; padding-inline: clamp(0px, 3vw, 40px); }
.prose p { font-size: clamp(12px, 1.15vw, 14px); font-weight: 700; line-height: 2; }
.prose p + p { margin-top: 1.4em; }
.prose a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { text-decoration-thickness: 2px; }

.issue__turn { margin-top: 60px; }

/* 市場カード */
.market {
  margin-top: 40px;
  background: #5c5c5c;
  color: var(--white);
  padding: clamp(24px, 3vw, 40px) clamp(16px, 3vw, 36px);
}
.market__title {
  text-align: center;
  font-size: clamp(17px, 2.1vw, 26px);
  font-weight: 900;
  line-height: 1.6;
}
.market__grid {
  margin: 26px auto 0;
  max-width: 520px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.market__grid li { position: relative; }
.market__grid img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.market__grid span {
  position: absolute;
  left: 0; right: 0; bottom: 10%;
  text-align: center;
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .6);
}
.market__grid strong {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -.02em;
}
.market__note {
  margin-top: 22px;
  text-align: center;
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 700;
  line-height: 1.9;
}

/* ============================================================
   FC 0次募集
   ============================================================ */
.fc {
  position: relative;
  overflow: hidden;
  background: var(--orange);
  padding: 70px 20px 80px;
}
/* 左右の白花装飾（背景色ごと切り出した画像） */
.fc__orn {
  position: absolute;
  top: 0;
  width: clamp(120px, 27%, 400px);
  max-width: none;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.fc__orn--l { left: 0; }
.fc__orn--r { right: 0; }
.fc__inner { position: relative; z-index: 1; max-width: var(--wide); margin-inline: auto; }
.fc__emblem { width: min(230px, 46vw); margin: 0 auto; }
.fc__title {
  margin-top: 24px;
  text-align: center;
  color: var(--white);
  -webkit-text-stroke: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .25);
  font-size: clamp(24px, 4.4vw, 58px);
  font-weight: 900;
  letter-spacing: .02em;
}
.fc__grid {
  margin: 42px auto 0;
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.fc__grid li {
  position: relative;
  border: 2px solid var(--gold-light);
  aspect-ratio: 16 / 11;
  overflow: hidden;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  color: var(--white);
  text-align: center;
  padding: 10px;
}
.fc__grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(.72);
}
.fc__label, .fc__value { position: relative; z-index: 1; text-shadow: 0 2px 12px rgba(0, 0, 0, .6); }
.fc__label { font-size: clamp(14px, 1.9vw, 24px); font-weight: 900; }
.fc__value { font-size: clamp(30px, 4.6vw, 60px); font-weight: 900; line-height: 1.1; }
.fc__value small { font-size: .38em; }

/* ============================================================
   MISSION
   ============================================================ */
.mission {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: #1d1512;
  margin-top: calc(-1 * var(--issue-v));   /* ISSUEのV字の下に潜り込ませる */
  padding-top: var(--issue-v);             /* 潜り込んだ分だけ中身を下げる */
}
.mission__bg { position: absolute; inset: 0; }
.mission__bg img { width: 100%; height: 100%; object-fit: cover; }
.mission__bg::after { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, .38); }
.mission__inner {
  position: relative;
  z-index: 1;
  max-width: var(--wide);
  margin-inline: auto;
  padding: clamp(70px, 10vw, 130px) 20px;
  color: var(--white);
  text-align: center;
}
.mission__title {
  font-size: clamp(21px, 3.1vw, 40px);
  font-weight: 900;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .6);
}
.mission__title span {
  border-right: 2px solid currentColor;
  padding-right: .55em;
  margin-right: .55em;
  letter-spacing: .04em;
}
.mission__body {
  margin-top: 26px;
  font-size: clamp(11px, 1.15vw, 15px);
  font-weight: 700;
  line-height: 2.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .7);
}

/* ============================================================
   選ばれる4つの理由
   ============================================================ */
.reasons {
  position: relative;
  background: var(--orange);
  padding: 64px 20px 78px;
}
.reasons__inner { position: relative; max-width: var(--wide); margin-inline: auto; }

/* セクション見出しの背後に敷く JATTEA 透かしロゴ */
.mark-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: min(320px, 48vw);
  filter: brightness(0);        /* 地色より一段暗いトーンオントーンにする */
  opacity: .13;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.reasons__title > span { position: relative; z-index: 1; }
/* 見出しの下端にそろえて、カードに被らないようにする */
.reasons__title .mark-logo { top: auto; bottom: -26px; translate: -50% 0; }
.reasons__lead, .reasons__title { position: relative; z-index: 1; text-align: center; color: var(--white); font-weight: 900; }
.reasons__lead  { font-size: clamp(20px, 3vw, 38px); }
.reasons__title { font-size: clamp(24px, 3.8vw, 48px); margin-top: 4px; }
.reasons__title strong { font-size: 1.5em; font-weight: 900; }
.reasons__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.4vw, 30px);
  max-width: 900px;
  margin-inline: auto;
}
.card {
  background: var(--cream);
  border: 2px solid var(--gold);
  padding: clamp(14px, 1.6vw, 22px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
}
.card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.card h4 {
  margin-top: 16px;
  text-align: center;
  font-size: clamp(15px, 1.9vw, 23px);
  font-weight: 900;
}
.card p {
  margin-top: 10px;
  font-size: clamp(11px, 1.05vw, 13px);
  font-weight: 700;
  line-height: 1.85;
}

/* ============================================================
   Q&A
   ============================================================ */
.qa { background: var(--orange); padding: 70px 20px 80px; }
.qa__inner { max-width: 900px; margin-inline: auto; }
.qa__title { position: relative; display: grid; justify-items: center; color: var(--white); text-align: center; }
.qa__title .mark-logo { top: auto; bottom: -8px; translate: -50% 0; }
.qa__title-sub  { position: relative; z-index: 1; font-size: clamp(22px, 3.2vw, 42px); font-weight: 900; }
.qa__title-main { position: relative; z-index: 1; font-size: clamp(44px, 7vw, 92px); font-weight: 900; line-height: 1; }

.qa__item { margin-top: 34px; box-shadow: 0 8px 24px rgba(0, 0, 0, .14); }
.qa__q {
  background: var(--orange-deep);
  color: var(--white);
  padding: .85em clamp(14px, 2.5vw, 34px);
  font-size: clamp(16px, 2.2vw, 27px);
  font-weight: 900;
  line-height: 1.5;
}
.qa__q .q { margin-right: .35em; }
.qa__a { background: var(--cream-2); padding: clamp(20px, 3vw, 38px) clamp(16px, 3vw, 40px); }
.qa__a--center { text-align: center; }
.qa__answer { font-size: clamp(15px, 2vw, 25px); font-weight: 900; line-height: 1.85; }
.qa__text {
  margin-top: 24px;
  font-size: clamp(12px, 1.35vw, 17px);
  font-weight: 700;
  line-height: 1.95;
}

/* 収益構造チャート */
.chart {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .08);
}
.chart__col { padding: clamp(14px, 2vw, 26px); text-align: center; }
.chart__col--gray { background: #efefef; }
.chart__col--gold { background: #f4ecd9; }
.chart__head { font-size: clamp(15px, 2vw, 25px); font-weight: 900; }
.chart__col--gold .chart__head { color: var(--orange); }
.chart__bars {
  margin: 18px auto 0;
  height: 170px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(6px, 1vw, 14px);
  border-bottom: 3px solid #8a8a8a;
  max-width: 260px;
}
.chart__col--gold .chart__bars { border-bottom-color: var(--gold); }
.bar {
  position: relative;
  width: clamp(34px, 5vw, 56px);
  display: flex;
  justify-content: center;
  color: rgba(255, 255, 255, .85);
  font-size: 11px;
  font-weight: 700;
  writing-mode: vertical-rl;
  padding-top: 10px;
}
.chart__col--gray .bar--sales  { background: #bcbcbc; height: 100%; }
.chart__col--gray .bar--cost   { background: #6f6f6f; height: 82%; }
.chart__col--gold .bar--sales  { background: #d9c89a; height: 100%; }
.chart__col--gold .bar--cost   { background: #b99f5e; height: 55%; }
.bar--profit { background: var(--orange); writing-mode: horizontal-tb; padding-top: 0; align-items: flex-start; }
.bar--profit-sm { height: 14%; }
.bar--profit-lg { height: 42%; }
.bar .tag {
  position: absolute;
  top: -26px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  white-space: nowrap;
}
.chart__note {
  margin-top: 16px;
  font-size: clamp(10px, 1.05vw, 13px);
  font-weight: 700;
  line-height: 1.7;
  color: var(--orange);
}
.chart__col--gray .chart__note { color: var(--orange); }

/* サポート一覧 */
.support {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(8px, 1.2vw, 14px);
  max-width: 640px;
  margin-inline: auto;
}
.support li {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: grid;
  align-content: center;
  justify-items: center;
  color: var(--white);
  text-align: center;
  padding: 8px;
}
.support img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.62);
}
.support span {
  position: relative;
  z-index: 1;
  font-size: clamp(15px, 2.3vw, 26px);
  font-weight: 900;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .7);
}
.support span.sm { font-size: clamp(11px, 1.5vw, 17px); font-weight: 700; }

/* 比較表 */
.table-wrap { overflow-x: auto; }
.compare {
  border-collapse: separate;
  border-spacing: 4px;
  margin-inline: auto;
  min-width: 520px;
  font-weight: 700;
}
.compare th, .compare td {
  padding: .7em 1em;
  text-align: center;
  font-size: clamp(13px, 1.5vw, 19px);
  border: 2px solid var(--gold);
  background: var(--cream);
  white-space: nowrap;
}
.compare thead th { background: var(--orange-deep); color: var(--white); border-color: var(--orange-deep); }
.compare thead th.is-jattea { background: var(--orange-deep); border-color: var(--gold); box-shadow: 0 3px 10px rgba(0, 0, 0, .2); }
.compare thead td { border: none; background: transparent; }
.compare tbody th { background: var(--gold-light); color: var(--ink); }
.compare td.is-jattea { box-shadow: 0 3px 10px rgba(0, 0, 0, .12); }

/* ============================================================
   会社概要
   ============================================================ */
.company {
  position: relative;
  overflow: hidden;
  background: var(--orange);
  padding: 70px 20px 80px;
  color: var(--white);
}
/* 会社概要のトーンオントーン花柄（メンバーカードの背後） */
.company__orn {
  position: absolute;
  bottom: 30%;
  width: clamp(120px, 23%, 330px);
  max-width: none;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.company__orn--l { left: 0; }
.company__orn--r { right: 0; }
.company__inner { position: relative; z-index: 1; max-width: 800px; margin-inline: auto; }
.company__title { text-align: center; font-size: clamp(24px, 3.4vw, 40px); font-weight: 900; }
.company__list { margin-top: 32px; }
.company__list > div {
  display: grid;
  grid-template-columns: minmax(90px, 130px) 1fr;
  gap: clamp(12px, 2.5vw, 34px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .45);
}
.company__list > div:last-child { border-bottom: none; }
.company__list dt { text-align: right; font-size: clamp(13px, 1.4vw, 18px); font-weight: 700; letter-spacing: .2em; }
.company__list dd { font-size: clamp(13px, 1.4vw, 18px); font-weight: 700; line-height: 1.7; }

.member {
  position: relative;
  margin-top: 34px;
  background: var(--cream);
  color: var(--ink);
  border: 5px solid var(--gold);
  padding: clamp(18px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
}
/* 内側の細い金罫（デザインの二重枠） */
.member::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.member > * { position: relative; }
.member__photo img { border-radius: 50%; aspect-ratio: 1; object-fit: cover; border: 4px solid var(--gold); }
.member__media { display: grid; gap: 10px; }
.member__media img { width: 100%; box-shadow: 0 4px 14px rgba(0, 0, 0, .18); }
.member__role  { font-size: clamp(12px, 1.2vw, 15px); font-weight: 900; color: var(--gold); letter-spacing: .06em; }
.member__name  { font-size: clamp(20px, 2.6vw, 33px); font-weight: 900; color: var(--gold); line-height: 1.3; }
.member__points { margin-top: 14px; }
.member__points li {
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 700;
  line-height: 1.8;
  padding-left: 1.1em;
  text-indent: -1.1em;
}
.member__points li::before { content: "・"; }
.member__points .paren { display: inline-block; text-indent: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding: clamp(60px, 9vw, 120px) 20px;
  text-align: center;
}
/* フッターの花柄（暗色トーンオントーン） */
.site-footer__orn {
  position: absolute;
  top: 0;
  height: 100%;
  width: clamp(150px, 43%, 620px);
  max-width: none;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.site-footer__orn--l { left: 0;  object-position: left center; }
.site-footer__orn--r { right: 0; object-position: right center; }
.site-footer__inner { position: relative; z-index: 1; }
.site-footer__logo { width: min(120px, 30vw); margin: 0 auto; opacity: .55; }
.site-footer__copy { margin-top: 40px; font-size: 11px; font-weight: 700; color: rgba(255, 255, 255, .55); }

/* ============================================================
   モバイル固定CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(204, 70, 29, .95);
  backdrop-filter: blur(4px);
  display: none;
}
.sticky-cta .btn { max-width: 100%; background: var(--cream); color: var(--orange-dark); padding: .85em 1em; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .site-header__nav { display: none; }
  .hero__bg img { object-position: 70% center; }
  .hero__inner { padding-top: 56px; }
}

@media (max-width: 768px) {
  .cta__orn { height: 100%; opacity: .5; }
  .cta__body { flex-direction: column; }
  .cta__docs { height: 170px; }
  .cta__note { text-align: center; }
  .cta__note .indent { padding-left: 0; }
  .issue__frame { outline-width: 8px; }
  .reasons__grid { grid-template-columns: 1fr; max-width: 460px; }
  .fc__grid { grid-template-columns: 1fr; max-width: 420px; }
  .support { grid-template-columns: 1fr; max-width: 400px; }
  .member { grid-template-columns: 1fr; text-align: center; }
  .member__photo { max-width: 220px; margin-inline: auto; }
  .member__points li { text-align: left; }
  .company__list > div { grid-template-columns: 1fr; gap: 4px; text-align: center; }
  .company__list dt { text-align: center; }
  .sticky-cta { display: block; }
  body { padding-bottom: 76px; }
}

@media (max-width: 480px) {
  .hero__stats { gap: 18px; }
  .market__grid { grid-template-columns: 1fr; max-width: 300px; }
  .chart { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}

/* ============================================================
   v2 追加コンポーネント（2026-08-18 構成改訂）
   ============================================================ */

/* ---------- HERO 追加要素 ---------- */
.hero__tag {
  display: inline-block;
  background: rgba(0, 0, 0, .38);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: clamp(11px, 1.3vw, 15px);
  font-weight: 700;
  letter-spacing: .04em;
  padding: .45em 1.1em;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero__tag strong { color: var(--white); font-weight: 900; }

.hero__checks { margin-top: 22px; display: grid; gap: 8px; }
.hero__checks li {
  position: relative;
  padding-left: 1.6em;
  color: rgba(255, 255, 255, .95);
  font-size: clamp(12px, 1.35vw, 16px);
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .6);
}
.hero__checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}
.hero__checks strong { color: var(--gold-light); }

.hero__cta { margin-top: 30px; }
.hero__cta .btn { max-width: 420px; }
.hero__micro {
  margin-top: 10px;
  font-size: clamp(11px, 1.15vw, 14px);
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .6);
}
.hero__note {
  margin-top: 20px;
  max-width: 640px;
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 500;
  line-height: 1.8;
  color: rgba(255, 255, 255, .72);
}

/* ---------- ターゲット定義 ---------- */
.target { background: var(--cream); padding: clamp(48px, 6vw, 80px) 20px; }
.target__inner { max-width: 960px; margin-inline: auto; }
.target__title {
  text-align: center;
  font-size: clamp(22px, 3.2vw, 38px);
  font-weight: 900;
  line-height: 1.5;
}
.target__cols {
  margin-top: clamp(24px, 3vw, 40px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(16px, 2.2vw, 28px);
  align-items: start;
}
.target__col {
  background: var(--white);
  border: 3px solid var(--gold-light);
  padding: clamp(18px, 2.6vw, 32px);
}
.target__col h3 {
  font-size: clamp(15px, 1.8vw, 21px);
  font-weight: 900;
  padding-bottom: .6em;
  margin-bottom: .9em;
  border-bottom: 2px solid var(--gold-light);
}
.target__col--ok { border-color: var(--orange); }
.target__col--ok h3 { color: var(--orange); border-bottom-color: var(--orange); }
.target__col--ng { background: #f1efeb; }
.target__col--ng h3 { color: var(--ink-2); }
.target__col ul { display: grid; gap: .7em; }
.target__col li {
  position: relative;
  padding-left: 1.5em;
  font-size: clamp(13px, 1.35vw, 16px);
  font-weight: 700;
  line-height: 1.7;
}
.target__col--ok li::before { content: "○"; position: absolute; left: 0; color: var(--orange); font-weight: 900; }
.target__col--ng li::before { content: "×"; position: absolute; left: 0; color: var(--ink-2); font-weight: 900; }
.target__reason {
  margin-top: 1.2em;
  padding-top: 1em;
  border-top: 1px dashed rgba(0, 0, 0, .2);
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 700;
  color: var(--ink-2);
  line-height: 1.8;
}

/* ---------- 出典注記 ---------- */
.source {
  margin-top: 20px;
  font-size: clamp(9px, .95vw, 11px);
  font-weight: 500;
  line-height: 1.9;
  color: var(--ink-2);
  text-align: left;
}

/* ---------- 収益（数字3つ） ---------- */
.profit {
  position: relative;
  background: var(--cream-2);
  padding: clamp(56px, 7vw, 90px) 20px;
}
.profit__inner { position: relative; max-width: var(--wide); margin-inline: auto; }
.profit .watermark { position: static; transform: none; translate: none; text-align: center; margin-bottom: -.35em; }
.profit .sec-title { text-align: center; }
.profit__cards {
  margin-top: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 22px);
}
.profit__cards li {
  background: var(--white);
  border-top: 6px solid var(--orange);
  padding: clamp(20px, 2.6vw, 32px) clamp(14px, 2vw, 24px);
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}
.profit__label {
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 900;
  color: var(--ink-2);
  letter-spacing: .04em;
}
.profit__value {
  margin-top: .2em;
  font-size: clamp(38px, 5.4vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--orange);
}
.profit__value small { font-size: .3em; margin-left: .15em; }
.profit__desc {
  margin-top: .8em;
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 700;
  line-height: 1.8;
  color: var(--ink-2);
}
.profit__invest {
  margin-top: clamp(20px, 2.6vw, 32px);
  background: var(--orange);
  color: var(--white);
  padding: clamp(18px, 2.4vw, 30px);
  text-align: center;
}
.profit__invest-main { font-size: clamp(17px, 2.4vw, 30px); font-weight: 900; line-height: 1.5; }
.profit__invest-main strong { font-size: 1.35em; }
.profit__invest-main span { font-size: .6em; font-weight: 700; }
.profit__invest-sub { margin-top: .5em; font-size: clamp(12px, 1.3vw, 16px); font-weight: 700; }
.profit__notes {
  margin-top: clamp(18px, 2.2vw, 26px);
  display: grid;
  gap: .4em;
  max-width: 760px;
  margin-inline: auto;
}
.profit__notes li {
  position: relative;
  padding-left: 1.3em;
  font-size: clamp(10px, 1.1vw, 13px);
  font-weight: 500;
  line-height: 1.9;
  color: var(--ink-2);
}
.profit__notes li::before { content: "※"; position: absolute; left: 0; }
.profit__lead-doc {
  margin-top: clamp(20px, 2.6vw, 30px);
  text-align: center;
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 700;
  line-height: 1.8;
}
.profit__lead-doc strong { color: var(--orange); font-weight: 900; }

/* ---------- 比較セクション ---------- */
.compare-sec { background: var(--cream); padding: clamp(56px, 7vw, 90px) 20px; }
.compare-sec__inner { max-width: 860px; margin-inline: auto; }
.compare-sec .sec-title { text-align: center; margin-bottom: clamp(24px, 3vw, 38px); }
.compare td small { display: block; font-size: .72em; font-weight: 700; opacity: .85; }
.compare-sec__honest {
  margin-top: clamp(20px, 2.6vw, 30px);
  background: var(--white);
  border-left: 5px solid var(--gold);
  padding: clamp(16px, 2.2vw, 26px);
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 700;
  line-height: 2;
}
.compare-sec__honest strong { color: var(--orange); }

/* ---------- 加盟条件 ---------- */
.terms { background: var(--white); padding: clamp(56px, 7vw, 90px) 20px; }
.terms__inner { max-width: var(--wide); margin-inline: auto; }
.terms .sec-title { text-align: center; }
.terms__lead {
  margin-top: .8em;
  text-align: center;
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 700;
  color: var(--ink-2);
}
.terms__grid {
  margin-top: clamp(26px, 3.4vw, 44px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
}
.terms__grid li {
  border: 2px solid var(--gold-light);
  padding: clamp(16px, 2vw, 24px) 10px;
  text-align: center;
  display: grid;
  align-content: start;
  gap: .3em;
}
.terms__grid li.is-zero { border-color: var(--orange); background: #fdf3ef; }
.terms__label { font-size: clamp(11px, 1.2vw, 14px); font-weight: 900; color: var(--ink-2); }
.terms__value { font-size: clamp(26px, 3.4vw, 42px); font-weight: 900; line-height: 1.1; color: var(--orange); }
.terms__value small { font-size: .35em; margin-left: .1em; }
.terms__note { font-size: clamp(10px, 1.05vw, 12px); font-weight: 700; color: var(--ink-2); line-height: 1.7; }

/* ---------- サポート ---------- */
.support-sec { background: var(--dark); color: var(--white); padding: clamp(56px, 7vw, 90px) 20px; }
.support-sec__inner { max-width: var(--wide); margin-inline: auto; }
.support-sec .sec-title { text-align: center; color: var(--white); }
.support-sec .hl { color: var(--gold-light); }
.support-sec__lead {
  margin: 1em auto clamp(26px, 3.4vw, 42px);
  text-align: center;
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 700;
  line-height: 1.9;
  color: rgba(255, 255, 255, .85);
}
.support li.is-key { outline: 3px solid var(--gold); outline-offset: -3px; }
.support li.is-key img { filter: brightness(.5); }

/* ---------- 開業までの流れ ---------- */
.flow-sec { background: var(--cream); padding: clamp(56px, 7vw, 90px) 20px; }
.flow-sec__inner { max-width: var(--wide); margin-inline: auto; }
.flow-sec .sec-title { text-align: center; margin-bottom: clamp(26px, 3.4vw, 44px); }
.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 20px);
}
.flow li {
  background: var(--white);
  border: 2px solid var(--gold-light);
  padding: clamp(16px, 2.2vw, 26px);
  display: grid;
  align-content: start;
  gap: .35em;
}
.flow__no { font-size: clamp(22px, 2.6vw, 32px); font-weight: 900; color: var(--gold); line-height: 1; }
.flow__mo { font-size: clamp(10px, 1.1vw, 12px); font-weight: 900; color: var(--orange); letter-spacing: .06em; }
.flow li h3 { font-size: clamp(14px, 1.6vw, 19px); font-weight: 900; line-height: 1.5; }
.flow li p:last-child { font-size: clamp(11px, 1.2vw, 14px); font-weight: 700; line-height: 1.8; color: var(--ink-2); }

/* ---------- 0次加盟（FCセクション追加分） ---------- */
.fc__lead {
  margin: 1.2em auto 0;
  max-width: 760px;
  text-align: center;
  font-size: clamp(12px, 1.5vw, 17px);
  font-weight: 700;
  line-height: 1.9;
  color: var(--white);
}
.fc__lead strong { color: var(--gold-light); font-size: 1.2em; font-weight: 900; }
.fc__phase {
  margin: clamp(22px, 3vw, 34px) auto 0;
  max-width: 720px;
  text-align: center;
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 700;
  line-height: 1.9;
  color: rgba(255, 255, 255, .88);
  border-top: 1px solid rgba(255, 255, 255, .4);
  padding-top: clamp(16px, 2vw, 22px);
}

/* ---------- 創業チーム（写真なしCEOカード） ---------- */
.member--ceo { grid-template-columns: 1fr; }
.member__note {
  margin-top: 1.2em;
  padding-top: 1em;
  border-top: 1px dashed rgba(0, 0, 0, .2);
  font-size: clamp(10px, 1.1vw, 13px);
  font-weight: 700;
  line-height: 1.9;
  color: var(--ink-2);
  text-align: left;
}
.member__note strong { color: var(--orange); }

/* ---------- 資料の中身 ---------- */
.docs-sec { background: var(--cream-2); padding: clamp(56px, 7vw, 90px) 20px; }
.docs-sec__inner { max-width: var(--wide); margin-inline: auto; }
.docs-sec .sec-title { text-align: center; margin-bottom: clamp(26px, 3.4vw, 44px); }
.docs-sec__list { display: grid; gap: .55em; }
.docs-sec__list li {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  align-items: baseline;
  background: var(--white);
  padding: clamp(12px, 1.5vw, 16px);
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 700;
  line-height: 1.7;
}
.docs-sec__p {
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 900;
  color: var(--white);
  background: var(--orange);
  text-align: center;
  padding: .25em .3em;
  letter-spacing: .02em;
}

/* ---------- 最終CTA ---------- */
.cta--final { padding: clamp(56px, 7vw, 92px) 20px; }
.cta__title {
  text-align: center;
  font-size: clamp(20px, 3.2vw, 40px);
  font-weight: 900;
  line-height: 1.6;
}
.cta__sub {
  margin: 1em auto 0;
  max-width: 760px;
  text-align: center;
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 700;
  line-height: 1.9;
  color: rgba(255, 255, 255, .92);
}
.steps {
  margin: clamp(26px, 3.4vw, 40px) auto;
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.4vw, 16px);
}
.steps li {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .5);
  padding: clamp(14px, 1.8vw, 20px) 12px;
  text-align: center;
  font-size: clamp(11px, 1.25vw, 15px);
  font-weight: 700;
  line-height: 1.6;
  display: grid;
  gap: .5em;
  align-content: start;
}
.steps__no { font-size: clamp(18px, 2.2vw, 26px); font-weight: 900; color: var(--gold-light); line-height: 1; }
.cta--final .cta__action { text-align: center; }
.cta--final .cta__note { margin-top: 14px; text-align: center; }

/* ---------- 会社概要・法務 ---------- */
.outline { background: var(--cream); padding: clamp(56px, 7vw, 90px) 20px; }
.outline__inner { max-width: 800px; margin-inline: auto; }
.outline__title { text-align: center; font-size: clamp(24px, 3.4vw, 40px); font-weight: 900; }
.outline .company__list > div { border-bottom-color: rgba(0, 0, 0, .18); }
.legal {
  margin-top: clamp(32px, 4vw, 52px);
  background: var(--white);
  padding: clamp(20px, 2.8vw, 34px);
  font-size: clamp(11px, 1.15vw, 13px);
  font-weight: 500;
  line-height: 2;
  color: var(--ink-2);
}
.legal h3 {
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: .6em;
}
.legal h3 + p, .legal ul + p { margin-bottom: 1em; }
.legal p + h3, .legal ul + h3 { margin-top: 1.6em; }
.legal ul { margin: 0 0 1em; display: grid; gap: .2em; }
.legal li { position: relative; padding-left: 1.2em; }
.legal li::before { content: "・"; position: absolute; left: 0; }

/* ---------- フッターナビ ---------- */
.site-footer__nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 18px;
  font-size: clamp(11px, 1.15vw, 13px);
  font-weight: 700;
}
.site-footer__nav a { text-decoration: underline; text-underline-offset: 3px; opacity: .9; }

/* ---------- 追従CTA（2行表記） ---------- */
.sticky-cta .btn { flex-direction: column; gap: 2px; }
.sticky-cta .btn small { font-size: .68em; font-weight: 700; opacity: .85; }

/* ============================================================
   v2 レスポンシブ
   ============================================================ */
@media (max-width: 900px) {
  .target__cols { grid-template-columns: 1fr; }
  .terms__grid { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .profit__cards { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .steps { grid-template-columns: 1fr; max-width: 420px; }
  .hero__cta .btn { max-width: 100%; }
  .member--ceo { text-align: center; }
}

@media (max-width: 480px) {
  .flow { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
  .terms__grid { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; }
  .docs-sec__list li { grid-template-columns: 64px 1fr; gap: 8px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 25px; line-height: 1.35; }
  .hero__stats { gap: 12px 22px; margin-top: 26px; }
  .hero__stats strong { font-size: 30px; }
  .hero__stats .unit { font-size: 13px; }
  .hero__stats em { font-size: 13px; margin-top: 2px; }
  .hero__tag { font-size: 10px; padding: .4em .8em; }
  .hero__checks li { font-size: 12px; }
}

/* ---------- ISSUE 下部V字：オレンジ一色だった余白を商品写真で埋める ---------- */
/* 画像を差し替える場合は下の url() 1箇所を変更 */
.issue .market { margin-bottom: 6px; }

/* ---------- 資料の中身：実ページの自動スクロール ---------- */
.docs-sec { position: relative; overflow: hidden; }
.docs-sec__orn {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: clamp(90px, 15%, 240px);
  max-width: none;
  opacity: .5;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.docs-sec__orn--l { left: 0; }
.docs-sec__orn--r { right: 0; }
.docs-sec__inner { position: relative; z-index: 1; }
.docs-sec__lead {
  margin-top: -22px;
  margin-bottom: clamp(24px, 3vw, 36px);
  text-align: center;
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 700;
  color: var(--ink-2);
}

.docs-marquee {
  position: relative;
  overflow: hidden;
  padding: 6px 0 2px;
  /* 両端をフェードして「まだ続きがある」感を出す */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.docs-marquee__track {
  display: flex;
  gap: clamp(12px, 1.6vw, 22px);
  width: max-content;
  animation: docs-scroll 46s linear infinite;
}
.docs-marquee:hover .docs-marquee__track { animation-play-state: paused; }
@keyframes docs-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - clamp(12px, 1.6vw, 22px) / 2)); }
}
.docs-page {
  flex: none;
  width: clamp(240px, 26vw, 360px);
  background: var(--white);
  border: 2px solid var(--gold-light);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
}
.docs-page img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  filter: blur(2.5px) saturate(.9) contrast(.96);
  transform: scale(1.03);          /* blur の縁の抜けを隠す */
}
.docs-page figcaption {
  padding: .7em .9em;
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink-2);
  border-top: 1px solid var(--gold-light);
}
.docs-sec__blurnote {
  margin-top: 12px;
  text-align: center;
  font-size: clamp(10px, 1.05vw, 12px);
  font-weight: 500;
  color: var(--ink-2);
}
.docs-sec__list { margin-top: clamp(28px, 3.6vw, 46px); max-width: 820px; margin-inline: auto; }

@media (prefers-reduced-motion: reduce) {
  .docs-marquee__track { animation: none; }
}

/* ============================================================
   CTAボタン：立体感と動き
   ・下辺の濃いエッジで「押せる厚み」を出す
   ・押すと沈む（:active で translateY）
   ・光沢が一定間隔で流れる／矢印が小さく前後する
   ============================================================ */
.btn--lg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-inline: 1.6em 2.5em;
  border: 1px solid rgba(194, 165, 96, .55);
  box-shadow:
    0 6px 0 var(--orange-deep),
    0 16px 28px rgba(0, 0, 0, .30),
    inset 0 1px 0 rgba(255, 255, 255, .28);
  transition: transform .13s ease, box-shadow .13s ease, background-color .18s ease;
  animation: cta-glow 3.4s ease-in-out infinite;
}
.btn--lg:hover {
  transform: translateY(-3px);
  box-shadow:
    0 9px 0 var(--orange-deep),
    0 22px 38px rgba(0, 0, 0, .34),
    inset 0 1px 0 rgba(255, 255, 255, .32);
}
.btn--lg:active {
  transform: translateY(4px);
  box-shadow:
    0 1px 0 var(--orange-deep),
    0 5px 12px rgba(0, 0, 0, .3),
    inset 0 2px 7px rgba(0, 0, 0, .25);
}

/* 光沢のスイープ */
.btn--lg::before {
  content: "";
  position: absolute;
  inset: -40% -12%;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(105deg,
    transparent 42%,
    rgba(255, 255, 255, .40) 50%,
    transparent 58%);
  transform: translateX(-130%);
  animation: cta-sheen 4.8s ease-in-out infinite;
}

/* 右端の矢印 */
.btn--lg::after {
  content: "";
  position: absolute;
  right: 1.15em;
  top: 50%;
  width: .46em;
  height: .46em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(0, -50%) rotate(-45deg);
  opacity: .85;
  animation: cta-arrow 1.9s ease-in-out infinite;
}
.btn--lg:hover::after { opacity: 1; }

/* クリーム版（オレンジ帯の上）は影の色を変える */
.btn--lg.btn--cream {
  border-color: rgba(143, 44, 13, .22);
  box-shadow:
    0 6px 0 #c8b58c,
    0 16px 28px rgba(0, 0, 0, .32),
    inset 0 1px 0 rgba(255, 255, 255, .85);
}
.btn--lg.btn--cream:hover {
  box-shadow:
    0 9px 0 #c8b58c,
    0 22px 38px rgba(0, 0, 0, .36),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}
.btn--lg.btn--cream:active {
  box-shadow:
    0 1px 0 #c8b58c,
    0 5px 12px rgba(0, 0, 0, .3),
    inset 0 2px 7px rgba(0, 0, 0, .18);
}
.btn--lg.btn--cream::before {
  background: linear-gradient(105deg,
    transparent 42%,
    rgba(255, 255, 255, .75) 50%,
    transparent 58%);
}

/* ヘッダーの小さいボタンにも軽く厚みを */
.btn--pill {
  box-shadow: 0 3px 0 rgba(143, 44, 13, .38), 0 6px 14px rgba(0, 0, 0, .18);
  transition: transform .13s ease, box-shadow .13s ease;
}
.btn--pill:hover { transform: translateY(-2px); box-shadow: 0 5px 0 rgba(143, 44, 13, .38), 0 10px 20px rgba(0, 0, 0, .22); }
.btn--pill:active { transform: translateY(2px); box-shadow: 0 1px 0 rgba(143, 44, 13, .38), 0 3px 8px rgba(0, 0, 0, .2); }

/* 追従バーは沈み量を控えめに（バーからはみ出さないように） */
.sticky-cta .btn--lg { animation: none; box-shadow: 0 4px 0 #c8b58c, 0 8px 18px rgba(0, 0, 0, .3); }
.sticky-cta .btn--lg:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #c8b58c, 0 12px 24px rgba(0, 0, 0, .34); }
.sticky-cta .btn--lg:active { transform: translateY(3px); box-shadow: 0 1px 0 #c8b58c, 0 4px 10px rgba(0, 0, 0, .3); }

@keyframes cta-sheen {
  0%       { transform: translateX(-130%); }
  55%, 100% { transform: translateX(230%); }
}
@keyframes cta-arrow {
  0%, 100% { translate: 0 0; }
  50%      { translate: 4px 0; }
}
@keyframes cta-glow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(255, 176, 112, 0)); }
  50%      { filter: drop-shadow(0 0 16px rgba(255, 176, 112, .5)); }
}

@media (prefers-reduced-motion: reduce) {
  .btn--lg { animation: none; }
  .btn--lg::before, .btn--lg::after { animation: none; }
  .btn--lg::before { display: none; }
}

/* ============================================================
   モーション（motion.js と対で使う）
   ============================================================ */

/* ---------- スクロールでの段階表示 ---------- */
.rv {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22, .8, .3, 1);
  transition-delay: var(--rv-delay, 0ms);
  will-change: opacity, transform;
}
.rv-in { opacity: 1; transform: none; }

/* ---------- 投資回収バー ---------- */
.payback {
  margin-top: clamp(24px, 3vw, 36px);
  background: var(--white);
  border: 2px solid var(--gold-light);
  padding: clamp(18px, 2.4vw, 28px);
}
.payback__title {
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 900;
  letter-spacing: .04em;
  margin-bottom: 1em;
}
.payback__row {
  display: grid;
  grid-template-columns: minmax(96px, 150px) 1fr;
  gap: clamp(10px, 1.6vw, 20px);
  align-items: center;
}
.payback__row + .payback__row { margin-top: 12px; }
.payback__label {
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 700;
  color: var(--ink-2);
  text-align: right;
}
.payback__track {
  position: relative;
  height: clamp(30px, 3.6vw, 44px);
  background: #efe9dd;
}
.payback__bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-inline: .9em;
  color: var(--white);
  font-size: clamp(11px, 1.25vw, 15px);
  font-weight: 900;
  white-space: nowrap;
  transition: width 1.15s cubic-bezier(.22, .8, .3, 1) .1s;
}
.payback__bar.is-on { width: var(--w); }
.payback__bar--other  { background: #9a9086; }
.payback__bar--jattea { background: var(--orange); box-shadow: 0 3px 10px rgba(204, 70, 29, .35); }
.payback__note {
  margin-top: 12px;
  font-size: clamp(10px, 1.05vw, 12px);
  font-weight: 500;
  color: var(--ink-2);
}

/* ---------- FAQ 開閉 ---------- */
.qa__item.is-toggleable .qa__q {
  cursor: pointer;
  position: relative;
  padding-right: 3em;
  user-select: none;
}
.qa__item.is-toggleable .qa__q::after {
  content: "";
  position: absolute;
  right: 1.2em;
  top: 50%;
  width: .5em;
  height: .5em;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s ease;
}
.qa__item.is-open.is-toggleable .qa__q::after { transform: translateY(-20%) rotate(-135deg); }
.qa__item.is-toggleable .qa__a {
  display: grid;
  grid-template-rows: 0fr;
  padding-block: 0;
  transition: grid-template-rows .38s ease, padding-block .38s ease;
}
.qa__item.is-toggleable .qa__a > * { overflow: hidden; min-height: 0; }
.qa__item.is-open.is-toggleable .qa__a {
  grid-template-rows: 1fr;
  padding-block: clamp(20px, 3vw, 38px);
}

/* ---------- 追従CTA：FV通過後に出す ---------- */
.sticky-cta {
  transform: translateY(0);
  transition: transform .35s cubic-bezier(.22, .8, .3, 1), opacity .3s ease;
}
.sticky-cta.is-hidden { transform: translateY(120%); opacity: 0; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  .rv, .rv-in { opacity: 1; transform: none; transition: none; }
  .payback__bar { transition: none; width: var(--w); }
  .sticky-cta { transition: none; }
}

/* ---------- 市場データ：数値に項目名と補足を追加 ---------- */
.market__grid li {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 2px;
  padding: clamp(12px, 2vw, 20px) clamp(8px, 1.4vw, 14px);
  min-height: clamp(150px, 20vw, 200px);
  text-align: center;
}
.market__grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  filter: brightness(.55);
}
.market__grid span { position: relative; z-index: 1; }
.market__label {
  font-size: clamp(10px, 1.15vw, 13px);
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--gold-light);
  text-shadow: 0 2px 8px rgba(0, 0, 0, .8);
}
.market__num {
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .7);
}
.market__desc {
  margin-top: 4px;
  font-size: clamp(9.5px, 1.05vw, 12px);
  font-weight: 700;
  line-height: 1.6;
  color: rgba(255, 255, 255, .9);
  text-shadow: 0 2px 8px rgba(0, 0, 0, .85);
}
.market__grid { max-width: 640px; }

/* ---------- ヘッダーロゴ（v2） ---------- */
.site-header__logo img { width: clamp(120px, 14vw, 172px); }

/* ---------- CTA帯の資料イメージ：1枚の重ね画像に差し替え ---------- */
.cta__docs {
  position: relative;
  width: min(360px, 68vw);
  height: auto;
  flex: none;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .28));
}
.cta__docs img {
  position: static;
  width: 100%;
  height: auto;
  left: auto;
  top: auto;
  box-shadow: none;
  border: none;
}

/* ---------- CTA帯：花柄込みの1枚背景に統一（左右のimg装飾は廃止） ---------- */
.cta,
.cta--orange,
.cta--cream {
  background: var(--orange) url("../img/cta-bg.png") center / cover no-repeat;
  color: var(--white);
}
.cta .cta__note { color: rgba(255, 255, 255, .92); }

/* ---------- CTA帯：背景画像を見切れさせない（帯の高さを画像比に合わせる） ---------- */
/* 画像の地色 #c3461f に合わせる（--orange とは僅かに違うため継ぎ目が出ないように） */
.cta,
.cta--orange,
.cta--cream {
  background: #c3461f url("../img/cta-bg.png") center / 100% auto no-repeat;
  color: var(--white);
}
.cta {
  aspect-ratio: 2160 / 678;   /* 背景画像と同じ縦横比 */
  display: flex;
  align-items: center;
  padding: 24px 20px;
}
.cta__inner { width: 100%; }
.cta__head { margin-bottom: 18px; }
.cta__docs { width: min(300px, 60vw); }

/* 最終CTAは中身が多く比率に収まらないので、上下に花柄を配置して中央は地色 */
.cta--final {
  aspect-ratio: auto;
  padding: 56px 20px 60px;
  background:
    url("../img/cta-bg.png") center top / 100% auto no-repeat,
    url("../img/cta-bg.png") center bottom / 100% auto no-repeat,
    #c3461f;
}

/* 幅が狭いと比率に収まらないので解除（花柄は上部に出る） */
@media (max-width: 900px) {
  .cta {
    aspect-ratio: auto;
    padding: 40px 20px 44px;
    background-position: center top;
  }
}

/* ============================================================
   スマホ最適化（メイン導線はスマホ）
   ・vw基準の clamp が最小値に張り付いて文字が小さくなる問題を個別に上書き
   ・CTA帯とグラフを親指で読める大きさに作り直す
   ============================================================ */
.payback__val { display: none; }

@media (max-width: 768px) {

  /* ---------- CTA帯 ---------- */
  .cta {
    padding: 34px 18px 38px;
    /* 花柄を上下に配置して帯を額装する（横に潰れて消えるのを防ぐ） */
    background:
      url("../img/cta-bg.png") center top    / 150% auto no-repeat,
      url("../img/cta-bg.png") center bottom / 150% auto no-repeat,
      #c3461f;
  }
  .cta--final {
    padding: 44px 18px 48px;
    background:
      url("../img/cta-bg.png") center top    / 150% auto no-repeat,
      url("../img/cta-bg.png") center bottom / 150% auto no-repeat,
      #c3461f;
  }
  .cta__head {
    font-size: 21px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .cta__head::before, .cta__head::after { padding: 0 .25em; }
  .cta__body { gap: 22px; }
  .cta__docs { width: min(340px, 86vw); }
  .cta__action { width: 100%; }
  .cta .btn--lg {
    max-width: 100%;
    font-size: 17px;
    padding: 1.15em 1.4em 1.15em 1.2em;
  }
  .cta .btn--lg::after { right: .9em; }
  .cta__note {
    font-size: 12px;
    line-height: 1.8;
    text-align: center;
    margin-top: 14px;
  }
  .cta__title { font-size: 22px; line-height: 1.55; }
  .cta__sub   { font-size: 13px; }
  .steps li   { font-size: 13px; padding: 14px 12px; }
  .steps__no  { font-size: 20px; }

  /* ---------- 投資回収バー ---------- */
  .payback { padding: 18px 16px 20px; }
  .payback__title { font-size: 15px; margin-bottom: .9em; }
  .payback__row {
    grid-template-columns: 1fr;   /* ラベルを上、バーを下に積む */
    gap: 6px;
  }
  .payback__row + .payback__row { margin-top: 16px; }
  .payback__label {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    text-align: left;
    font-size: 13px;
  }
  .payback__val {
    display: inline;
    font-size: 17px;
    font-weight: 900;
    color: var(--ink);
  }
  .payback__row:last-of-type .payback__val { color: var(--orange); }
  .payback__track { height: 26px; }
  .payback__bar span { display: none; }   /* 数値はラベル側に出したので中は色だけ */
  .payback__note { font-size: 11px; line-height: 1.7; }

  /* ---------- 収益カード ---------- */
  .profit__cards { gap: 14px; }
  .profit__label { font-size: 13px; }
  .profit__value { font-size: 46px; }
  .profit__desc  { font-size: 13px; }
  .profit__invest-main { font-size: 19px; }
  .profit__invest-sub  { font-size: 13px; }
  .profit__notes li { font-size: 12px; }
  .profit__lead-doc { font-size: 14px; }

  /* ---------- 比較表：横スクロールを浅くする ---------- */
  .compare { min-width: 420px; font-size: 13px; }
  .compare th, .compare td { padding: .6em .5em; }
  .compare td small { font-size: .7em; }
  .table-wrap { -webkit-overflow-scrolling: touch; }

  /* ---------- 市場データ ---------- */
  .market__label { font-size: 12px; }
  .market__num   { font-size: 16px; }
  .market__grid strong { font-size: 34px; }
  .market__desc  { font-size: 12px; }

  /* ---------- 資料マーキー ---------- */
  .docs-page { width: 78vw; }
  .docs-page figcaption { font-size: 12px; }
  .docs-sec__list li { font-size: 13px; }

  /* ---------- 追従CTA ---------- */
  .sticky-cta .btn { font-size: 15px; padding: .9em 1em; }
  .sticky-cta .btn small { font-size: 11px; }
}

@media (max-width: 420px) {
  .cta__head { font-size: 19px; }
  .cta .btn--lg { font-size: 16px; }
  .profit__value { font-size: 40px; }
  .payback__val { font-size: 16px; }
  .docs-page { width: 84vw; }
}

/* ---------- 書体：本文はNoto Sans JP、数字だけ --font-num で切り替え可能 ---------- */
.hero__stats strong,
.hero__stats .unit,
.profit__value,
.payback__val,
.terms__value,
.fc__value,
.market__grid strong,
.market__num,
.lead-xl .num,
.steps__no,
.flow__no,
.compare td,
.compare th {
  font-family: var(--font-num);
}

/* ---------- 余白の多い画像タイルはスマホでも2列を維持 ---------- */
@media (max-width: 768px) {
  .fc__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    gap: 10px;
    margin-top: 28px;
  }
  .fc__grid li { aspect-ratio: 4 / 3; padding: 8px 6px; gap: 2px; }
  .fc__label { font-size: 12px; }
  .fc__value { font-size: 26px; }
  .fc__value small { font-size: .42em; }
  .fc__lead  { font-size: 13px; line-height: 1.85; }
  .fc__phase { font-size: 11px; }
  .fc__title { font-size: 26px; }
  .fc__emblem { width: min(150px, 40vw); }

  .support {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    gap: 8px;
  }
  .support li { aspect-ratio: 4 / 3; padding: 6px; }
  .support span { font-size: 14px; }
  .support span.sm { font-size: 10px; }
}

@media (max-width: 380px) {
  .fc__value { font-size: 22px; }
  .support span { font-size: 13px; }
}

/* ---------- スマホ：フッター装飾を外し、会社概要は表組みのまま ---------- */
@media (max-width: 768px) {
  .site-footer__orn { display: none; }
  .site-footer__inner { padding-inline: 20px; }

  /* 2列 × 4行の表に統一（行ごとに列幅がバラつかないよう1つのgridにまとめる） */
  .company__list {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 14px;
    margin-top: 24px;
  }
  .company__list > div {
    display: contents;   /* ラッパーを透過させ、dt/dd を直接gridに乗せる */
  }
  .company__list dt,
  .company__list dd {
    padding: 11px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .18);
  }
  .company__list > div:last-child dt,
  .company__list > div:last-child dd { border-bottom: none; }
  .company__list dt {
    text-align: left;
    font-size: 11px;
    letter-spacing: .06em;
    line-height: 1.9;
    white-space: nowrap;
  }
  .company__list dd {
    font-size: 13px;
    line-height: 1.8;
  }
  .outline__title { font-size: 22px; }
  .legal { padding: 18px 16px; font-size: 12px; }
  .legal h3 { font-size: 14px; }
}

@media (max-width: 380px) {
  .company__list { column-gap: 10px; }
  .company__list dt { font-size: 10px; }
  .company__list dd { font-size: 12px; }
}

/* ---------- 数字はFutura系＋斜体（単位の日本語は正体のまま） ---------- */
.hero__stats strong,
.profit__value > span,
.terms__value,
.fc__value,
.market__grid strong,
.lead-xl .num,
.steps__no,
.flow__no {
  font-style: italic;
  letter-spacing: .01em;
}
/* 単位（万円・か月・％など）は日本語なので正体に戻す */
.hero__stats .unit,
.profit__value small,
.terms__value small,
.fc__value small,
.market__num,
.lead-xl .num-unit {
  font-style: normal;
}
/* Futuraは字面が小さめなので、日本語見出しと並ぶ数字を僅かに持ち上げる */
.hero__stats strong,
.profit__value > span,
.terms__value,
.fc__value { font-size: 1.06em; }

/* ---------- スマホFV：3指標を幅いっぱい＋ゴールドの輝き ---------- */
@media (max-width: 768px) {
  .hero__stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 6px;
    margin-top: 26px;
  }
  .hero__stats li {
    justify-items: start;
    align-content: start;
  }
  .hero__stats strong { font-size: 34px; line-height: 1.05; }
  .hero__stats .unit  { font-size: 13px; margin-left: 1px; }
  .hero__stats em     { font-size: 11px; margin-top: 4px; color: rgba(255, 255, 255, .95); }

  /* 数字と単位をゴールドのグラデーションで塗り、ハイライトを流す */
  .hero__stats strong,
  .hero__stats .unit {
    background-image: linear-gradient(100deg,
      #b8974e 0%, #d8c489 18%, #fff6d9 34%, #f3e3b2 46%,
      #d8c489 62%, #b8974e 100%);
    background-size: 260% 100%;
    background-position: 0% 50%;
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 7px rgba(0, 0, 0, .6));
    animation: gold-shine 5s linear infinite;
  }

  /* CTA下のマイクロコピーは中央揃え */
  .hero__micro { text-align: center; }
}

@media (max-width: 420px) {
  .hero__stats { gap: 8px 4px; }
  .hero__stats strong { font-size: 29px; }
  .hero__stats .unit  { font-size: 11px; }
  .hero__stats em     { font-size: 10px; }
}

@keyframes gold-shine {
  from { background-position: 0% 50%; }
  to   { background-position: 260% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__stats strong, .hero__stats .unit { animation: none; }
}

/* ---------- スマホFV：数字をさらに拡大（列幅を内容に合わせて余白を数字に回す） ---------- */
@media (max-width: 768px) {
  .hero__stats {
    grid-template-columns: repeat(3, auto);
    justify-content: space-between;
    gap: 10px 4px;
  }
  .hero__stats strong { font-size: 42px; letter-spacing: -.01em; }
  .hero__stats .unit  { font-size: 12px; }
  .hero__stats em     { font-size: 10px; letter-spacing: -.02em; }
}

@media (max-width: 430px) {
  .hero__stats strong { font-size: 36px; }
  .hero__stats .unit  { font-size: 11px; }
}

@media (max-width: 380px) {
  .hero__stats strong { font-size: 31px; }
  .hero__stats em     { font-size: 9.5px; }
}

/* ---------- PC：FVの3指標もスマホと同じ仕様（拡大＋ゴールドの輝き） ---------- */
@media (min-width: 769px) {
  .hero__stats {
    margin-top: 38px;
    gap: clamp(28px, 3.4vw, 56px);
  }
  .hero__stats strong {
    font-size: clamp(52px, 5.6vw, 84px);
    line-height: 1;
    letter-spacing: -.015em;
  }
  .hero__stats .unit { font-size: clamp(16px, 1.5vw, 24px); }
  .hero__stats em {
    font-size: clamp(14px, 1.3vw, 20px);
    margin-top: 8px;
    color: rgba(255, 255, 255, .95);
  }

  .hero__stats strong,
  .hero__stats .unit {
    background-image: linear-gradient(100deg,
      #b8974e 0%, #d8c489 18%, #fff6d9 34%, #f3e3b2 46%,
      #d8c489 62%, #b8974e 100%);
    background-size: 260% 100%;
    background-position: 0% 50%;
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, .6));
    animation: gold-shine 5s linear infinite;
  }
}

/* ---------- スマホ：ヘッダーのボタンを右端へ寄せて幅を広げる ---------- */
@media (max-width: 900px) {
  .site-header__inner { gap: 10px; }
  .site-header__logo { flex: none; }
  .site-header .btn--pill {
    margin-left: auto;      /* ロゴの隣ではなく右端に寄せる */
    min-width: 164px;       /* 従来比 約1.3倍 */
    padding-inline: 1.1em;
  }
}

@media (max-width: 380px) {
  .site-header__logo img { width: 108px; }
  .site-header .btn--pill { min-width: 150px; font-size: 13px; }
}

/* ---------- FV見出し：900だと重いので少しだけ落とす ---------- */
.hero__title { font-weight: 800; }

/* ---------- スマホ：中国茶ブーム写真の枠を外す ---------- */
@media (max-width: 768px) {
  .issue__photo { margin-top: 26px; }
  .issue__photo img {
    border: none;
    aspect-ratio: 16 / 10;   /* 2:1 は横長すぎて被写体が切れるため */
  }
}

/* ---------- 「日本茶」だから狙える市場。 をゴールドの輝きに ---------- */
.market__title {
  background-image: linear-gradient(100deg,
    #b8974e 0%, #d8c489 18%, #fff6d9 34%, #f3e3b2 46%,
    #d8c489 62%, #b8974e 100%);
  background-size: 260% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .45));
  animation: gold-shine 5s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .market__title { animation: none; }
}

/* ---------- 出典表記：グレー地の上なので白 ---------- */
.source { color: rgba(255, 255, 255, .9); }

/* ---------- 0次加盟タイルの数値：ゴールドの輝き＋拡大 ---------- */
.fc__value {
  font-size: clamp(34px, 5.8vw, 76px);
  text-shadow: none;                /* グラデーション塗りでは効かないため drop-shadow に置換 */
  background-image: linear-gradient(100deg,
    #b8974e 0%, #d8c489 18%, #fff6d9 34%, #f3e3b2 46%,
    #d8c489 62%, #b8974e 100%);
  background-size: 260% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, .65));
  animation: gold-shine 5s linear infinite;
}
.fc__value small { font-size: .36em; }

@media (max-width: 768px) {
  .fc__value { font-size: 32px; }
}
@media (max-width: 380px) {
  .fc__value { font-size: 27px; }
}
@media (prefers-reduced-motion: reduce) {
  .fc__value { animation: none; }
}

/* ---------- Q&Aの設問：900は重いので少し落とす（Qの記号は太いまま） ---------- */
.qa__q { font-weight: 700; }
.qa__q .q { font-weight: 900; }

/* ---------- 会社概要の表：項目名と内容の文字サイズを統一 ---------- */
@media (max-width: 768px) {
  .company__list dt,
  .company__list dd { font-size: 13px; line-height: 1.8; }
}
@media (max-width: 380px) {
  .company__list dt,
  .company__list dd { font-size: 12px; }
}

/* ---------- サポート見出し：太さを落として拡大＋ゴールドの輝き ---------- */
.support-sec .sec-title {
  font-weight: 700;
  font-size: clamp(23px, 3.2vw, 42px);
  line-height: 1.5;
  background-image: linear-gradient(100deg,
    #b8974e 0%, #d8c489 18%, #fff6d9 34%, #f3e3b2 46%,
    #d8c489 62%, #b8974e 100%);
  background-size: 260% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .5));
  animation: gold-shine 5s linear infinite;
}
/* 見出し内の強調は色指定を外してグラデーションを通す */
.support-sec .sec-title .hl {
  color: inherit;
  -webkit-text-fill-color: inherit;
  font-weight: 900;
}

@media (max-width: 768px) {
  .support-sec .sec-title { font-size: 21px; }
}
@media (prefers-reduced-motion: reduce) {
  .support-sec .sec-title { animation: none; }
}

/* ---------- CTA帯の見出し：900は重いので700に ---------- */
.cta__head { font-weight: 700; }

/* ---------- 「初期投資 2,000万円」：太さを落として拡大＋ゴールドの輝き ---------- */
.profit__invest-main {
  font-weight: 700;
  font-size: clamp(20px, 3vw, 38px);
  background-image: linear-gradient(100deg,
    #b8974e 0%, #d8c489 18%, #fff6d9 34%, #f3e3b2 46%,
    #d8c489 62%, #b8974e 100%);
  background-size: 260% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .45));
  animation: gold-shine 5s linear infinite;
}
.profit__invest-main strong { font-weight: 900; }
/* 補足の括弧書きは階層を分けて白のまま */
.profit__invest-main span {
  color: rgba(255, 255, 255, .92);
  -webkit-text-fill-color: rgba(255, 255, 255, .92);
  font-weight: 700;
}

@media (max-width: 768px) {
  .profit__invest-main { font-size: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .profit__invest-main { animation: none; }
}

/* ============================================================
   CTA帯：全体を大きく／ボタンをゴールドの輝きに
   ============================================================ */
/* 中身を大きくしても切れないよう、固定比率から最小高さに変更
   （背景は 100% auto のままなので、余った上下は画像と同じ地色で埋まる） */
.cta {
  aspect-ratio: auto;
  min-height: 31.3vw;          /* 2160:678 と同じ比率 */
}
.cta--final { min-height: 0; }

.cta__head { font-size: clamp(20px, 3vw, 46px); margin-bottom: clamp(20px, 2.4vw, 32px); }
.cta__docs { width: min(420px, 34vw); }
.cta__body { gap: clamp(20px, 4vw, 64px); }

/* ボタン：ゴールドのグラデーション＋輝きを流し続ける */
.cta .btn--lg {
  max-width: 540px;
  font-size: clamp(17px, 1.9vw, 27px);
  padding: 1.15em 2.6em 1.15em 1.8em;
  color: #7a2609;
  border-color: rgba(122, 38, 9, .28);
  background-color: #e8d49a;
  background-image: linear-gradient(100deg,
    #b8974e 0%, #d8c489 16%, #fff6d9 32%, #f7ead0 44%,
    #e0cd96 60%, #b8974e 100%);
  background-size: 260% 100%;
  background-position: 0% 50%;
  box-shadow:
    0 7px 0 #8f7434,
    0 18px 30px rgba(0, 0, 0, .34),
    inset 0 1px 0 rgba(255, 255, 255, .8);
  animation: gold-shine 4s linear infinite, cta-glow 3.4s ease-in-out infinite;
}
.cta .btn--lg:hover {
  box-shadow:
    0 10px 0 #8f7434,
    0 24px 40px rgba(0, 0, 0, .38),
    inset 0 1px 0 rgba(255, 255, 255, .85);
}
.cta .btn--lg:active {
  box-shadow:
    0 1px 0 #8f7434,
    0 5px 12px rgba(0, 0, 0, .3),
    inset 0 2px 7px rgba(0, 0, 0, .2);
}
.cta .btn--lg::before { display: none; }   /* 白い光沢はグラデーションと干渉するため停止 */

.cta__note { font-size: clamp(11px, 1.15vw, 15px); }

@media (max-width: 768px) {
  .cta { min-height: 0; }
  .cta__head { font-size: 22px; }
  .cta__docs { width: min(340px, 86vw); }
  .cta .btn--lg {
    max-width: 100%;
    font-size: 18px;
    padding: 1.2em 2.2em 1.2em 1.4em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta .btn--lg { animation: none; }
}

/* ---------- ヘッダーCTA：ゴールドグラデーション＋輝きを流し続ける ---------- */
.site-header .btn--pill {
  color: #7a2609;
  background-color: #e8d49a;
  background-image: linear-gradient(100deg,
    #b8974e 0%, #d8c489 16%, #fff6d9 32%, #f7ead0 44%,
    #e0cd96 60%, #b8974e 100%);
  background-size: 260% 100%;
  background-position: 0% 50%;
  box-shadow: 0 3px 0 #8f7434, 0 6px 14px rgba(0, 0, 0, .22);
  animation: gold-shine 4s linear infinite;
}
.site-header .btn--pill:hover {
  box-shadow: 0 5px 0 #8f7434, 0 10px 20px rgba(0, 0, 0, .26);
}
.site-header .btn--pill:active {
  box-shadow: 0 1px 0 #8f7434, 0 3px 8px rgba(0, 0, 0, .24);
}

@media (prefers-reduced-motion: reduce) {
  .site-header .btn--pill { animation: none; }
}

/* ---------- FVのマイクロコピーをボタン幅に合わせて中央寄せ ---------- */
.hero__micro {
  max-width: 420px;      /* .hero__cta .btn と同じ幅に揃える */
  text-align: center;
}
@media (max-width: 768px) {
  .hero__micro { max-width: 100%; }   /* スマホはボタンが全幅 */
}

/* ---------- FVの3指標：ラベルを各ブロックの中央に、少し大きく ---------- */
.hero__stats li { justify-items: center; }
.hero__stats em {
  text-align: center;
  justify-self: center;
  font-size: clamp(15px, 1.5vw, 23px);
}

@media (max-width: 768px) {
  .hero__stats li { justify-items: center; }
  .hero__stats em { font-size: 12px; }
}
@media (max-width: 380px) {
  .hero__stats em { font-size: 10.5px; }
}

/* ---------- FVの3指標：ラベルを数字の上に置き、ゴールドの輝きに ---------- */
.hero__stats em {
  grid-row: 1;
  grid-column: 1 / -1;
  margin-top: 0;
  margin-bottom: 6px;
  background-image: linear-gradient(100deg,
    #b8974e 0%, #d8c489 18%, #fff6d9 34%, #f3e3b2 46%,
    #d8c489 62%, #b8974e 100%);
  background-size: 260% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .6));
  animation: gold-shine 5s linear infinite;
}
.hero__stats strong,
.hero__stats .unit { grid-row: 2; }

@media (max-width: 768px) {
  .hero__stats em { margin-bottom: 4px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__stats em { animation: none; }
}

/* ---------- FV見出しの「日本茶」だけ太明朝＋拡大 ---------- */
/* 「日本茶」は玉ねぎ楷書「激」のアウトラインをSVG化して埋め込み
   （フォントファイル自体は配信しない＝ライセンスの再配布禁止に抵触しない） */
.hero__title .mincho__svg {
  display: block;
  height: 1.5em;
  width: auto;
  fill: #fff;
}

/* ---------- 「日本茶」を斜体に（明朝に真の斜体が無いため角度を指定して傾ける） ---------- */
.hero__title .mincho {
  display: inline-block;
  vertical-align: -.22em;
  transform: skewX(-5deg);   /* 筆の勢いがあるため傾きは浅めに */
  transform-origin: 0 100%;
  padding-right: .1em;
}

/* ---------- 「日本茶」：真っ白な文字＋白い光の明滅、筆で書かれるように登場 ----------
   外側 .mincho は登場アニメ（clip-path）、内側のSVGは塗りと発光を担当         */
.hero__title .mincho__svg {
  animation: white-glow 6s ease-in-out infinite;
}

/* 筆で一気に書き上げるように、左から現れる */
.hero__title .mincho {
  animation: brush-write 1.05s cubic-bezier(.32, .72, .28, 1) .3s both;
}

@keyframes brush-write {
  0%   { clip-path: inset(0 100% -25% -5%); filter: blur(2.5px); }
  55%  { filter: blur(.7px); }
  100% { clip-path: inset(0 -8% -25% -5%); filter: blur(0); }
}
@keyframes white-glow {
  0%, 100% {
    filter:
      drop-shadow(0 0 2px rgba(255, 255, 255, .22))
      drop-shadow(0 2px 5px rgba(0, 0, 0, .55));
  }
  50% {
    filter:
      drop-shadow(0 0 6px rgba(255, 255, 255, .65))
      drop-shadow(0 0 13px rgba(255, 255, 255, .22))
      drop-shadow(0 2px 5px rgba(0, 0, 0, .55));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__title .mincho { animation: none; clip-path: none; }
  .hero__title .mincho__svg {
    animation: none;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .55));
  }
}

/* ---------- FV見出し：3行目が長すぎて中途半端に折り返るのを防ぐ ---------- */
.hero__title { font-size: clamp(25px, 4.6vw, 60px); }

/* ---------- Q&Aの回答：自然に折り返す本文なので左揃え・行間を確保 ---------- */
.qa__a--center .qa__answer {
  max-width: 46em;
  margin-inline: auto;
  text-align: left;
  line-height: 1.95;
}
@media (max-width: 768px) {
  .qa__a--center .qa__answer { font-size: 15px; line-height: 1.9; }
}

/* ---------- サポート「オープンから2WEEK / SVが常駐」だけゴールドの輝き ---------- */
.support li.is-key span {
  text-shadow: none;                /* グラデーション塗りでは描画されないため */
  background-image: linear-gradient(100deg,
    #b8974e 0%, #d8c489 18%, #fff6d9 34%, #f3e3b2 46%,
    #d8c489 62%, #b8974e 100%);
  background-size: 260% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .7));
  animation: gold-shine 4.5s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .support li.is-key span { animation: none; }
}

/* ---------- SVタイルの文字をボヨンボヨンさせる ---------- */
.support li.is-key span {
  display: inline-block;            /* インラインのままだと transform が効かない */
  transform-origin: 50% 50%;
  animation:
    gold-shine 4.5s linear infinite,
    boyon 1.7s ease-in-out infinite;
}
/* 上下の行が同時に動くと機械的なので、少しずらす */
.support li.is-key span.sm {
  animation-delay: 0s, .16s;
}

@keyframes boyon {
  0%, 100% { transform: scale(1); }
  22%      { transform: scale(1.16); }
  42%      { transform: scale(.93); }
  62%      { transform: scale(1.07); }
  80%      { transform: scale(.98); }
}

@media (prefers-reduced-motion: reduce) {
  .support li.is-key span { animation: none; transform: none; }
}

/* 2枚のキータイルが同じ拍で動くとうるさいので、位相をずらす */
.support li.is-key:nth-of-type(7) span     { animation-delay: .55s, .85s; }
.support li.is-key:nth-of-type(7) span.sm  { animation-delay: .55s, 1.0s; }

/* ---------- 加盟条件：スマホでも必ず2列（1列に落とさない） ---------- */
@media (max-width: 768px) {
  .terms__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    margin-inline: 0;
    gap: 8px;
  }
  .terms__grid li { padding: 14px 8px; }
  .terms__label { font-size: 11px; }
  .terms__value { font-size: 27px; }
  .terms__value small { font-size: .34em; }
  .terms__note  { font-size: 10px; line-height: 1.6; }
}

@media (max-width: 380px) {
  .terms__grid { gap: 6px; }
  .terms__value { font-size: 23px; }
  .terms__label { font-size: 10px; }
  .terms__note  { font-size: 9.5px; }
}
