/* ==========================================================================
   VERION JAPAN — 戦略的事業提携パートナー募集サイト
   読み手: 説明会に来て、個別面談を受け、家でゆっくり読み返す新規の方。
   ブランド: 名刺と同じ 白 / オレンジ / 黒 の三色だけで組む。
   本体 VERION（漆黒・シネマ）とは別物として設計している。
   ========================================================================== */

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/geist-latin.woff2") format("woff2");
}

:root {
  --white:  #ffffff;
  --paper:  #f4f2ef;
  --paper-2:#ebe8e4;
  --black:  #121110;
  --black-2:#3c3a37;
  --ink-2:  #55524e;
  --ink-3:  #8d8983;
  --line:   rgba(18, 17, 16, .13);
  --line-2: rgba(18, 17, 16, .28);
  --orange:      #e85c24;  /* 名刺のオレンジ */
  --orange-dark: #c2481a;  /* 白地の小さな文字用（コントラスト確保） */
  --orange-soft: rgba(232, 92, 36, .09);
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Hiragino Sans",
          "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "Meiryo", sans-serif;
  --nav-h: 64px;
  --ease: cubic-bezier(.22, .1, .22, 1);
  /* 版面（ヘッダー・本文・フッターで共通の左右余白） */
  --page-max: 1120px;   /* 最大幅 */
  --page-vw:  90vw;     /* 画面が狭いときの幅 = 左右 5vw ずつ空ける */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: .02em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: rgba(232, 92, 36, .22); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

/* Layout ------------------------------------------------------------------ */
.wrap    { width: min(var(--page-max), var(--page-vw)); margin-inline: auto; }
.wrap-sm { width: min(780px, var(--page-vw));  margin-inline: auto; }
.sec { padding: clamp(64px, 8vw, 112px) 0; }
.sec--tight { padding: clamp(44px, 5.5vw, 72px) 0; }
.sec--paper { background: var(--paper); }
.sec--black { background: var(--black); color: var(--white); }
.sec--black p, .sec--black .lede { color: rgba(255,255,255,.72); }
.sec--black .label { color: var(--orange); }
.sec--orange { background: var(--orange); color: #fff; }
.sec--orange p, .sec--orange .lede { color: rgba(255,255,255,.92); }
.mt1 { margin-top: 14px; } .mt2 { margin-top: 28px; } .mt3 { margin-top: 48px; } .mt4 { margin-top: 76px; }
.center { text-align: center; }

/* Type -------------------------------------------------------------------- */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: .01em; line-height: 1.42; }
.display { font-size: clamp(27px, 3.9vw, 45px); line-height: 1.38; font-weight: 700; letter-spacing: 0; }
.h-lg    { font-size: clamp(23px, 3.1vw, 36px); line-height: 1.44; }
.h-md    { font-size: clamp(18px, 2.1vw, 24px); line-height: 1.55; }
.h-sm    { font-size: clamp(15.5px, 1.7vw, 18px); line-height: 1.7; }
.lede { font-size: clamp(14.5px, 1.6vw, 16.5px); color: var(--ink-2); line-height: 2.05; }
p { color: var(--ink-2); }
p b, .lede b, li b { color: var(--black); font-weight: 700; }
.small { font-size: 12.5px; line-height: 1.9; color: var(--ink-3); }
.mark { background: linear-gradient(transparent 62%, rgba(232,92,36,.28) 62%); }

/* 地が黒／オレンジのときは、強調も見出しも白へ返す（黒文字のまま沈ませない） */
.sec--black b, .sec--black h1, .sec--black h2, .sec--black h3, .sec--black h4,
.sec--orange b, .sec--orange h1, .sec--orange h2, .sec--orange h3, .sec--orange h4 { color: #fff; }
.sec--black .small, .sec--orange .small { color: rgba(255,255,255,.55); }
.sec--black .checks li, .sec--orange .checks li { color: rgba(255,255,255,.75); }

/* 見出しの札 */
.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange-dark); margin-bottom: 16px;
}
.label::before { content: ""; width: 22px; height: 3px; background: var(--orange); display: block; }
.label .n { font-size: 11px; letter-spacing: .12em; color: var(--ink-3); }
.sec--black .label .n { color: rgba(255,255,255,.5); }

/* Nav --------------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100; height: var(--nav-h);
  background: rgba(255, 255, 255, .96);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
/* 本文（.wrap）と同じ版面。ロゴの左端と本文の左端を必ず揃える */
.nav-in { width: min(var(--page-max), var(--page-vw)); margin-inline: auto; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 32px; height: 32px; }
.brand .b-mark { font-size: 16px; font-weight: 700; letter-spacing: .15em; line-height: 1; }
.brand .b-sub { font-size: 9px; letter-spacing: .22em; color: var(--ink-3); }
.nav-list { display: flex; align-items: center; gap: clamp(10px, 1.2vw, 16px); }
.nav-list a { font-size: 12px; font-weight: 600; letter-spacing: .05em; color: var(--black-2); padding: 5px 0; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
.nav-list a:hover, .nav-list a[aria-current="page"] { color: var(--orange-dark); border-bottom-color: var(--orange); }
.nav-cta {
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em;
  padding: 11px 18px; background: var(--orange); color: #fff !important;
  border-bottom: 0 !important; border-radius: 3px; transition: background .2s;
}
.nav-cta:hover { background: var(--orange-dark); }
.burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--black); }
.burger span { display: block; width: 20px; height: 2px; background: currentColor; margin: 5px 0; transition: .3s var(--ease); }
/* 横並びメニューは項目が多く、この幅を下回ると版面に収まらず2段に折れるため、
   ここから下は「≡」のメニューに切り替える */
@media (max-width: 1240px) {
  .burger { display: block; }
  .nav-list {
    position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; padding: 12px 5vw 28px; background: var(--white);
    border-bottom: 1px solid var(--line); transform: translateY(-130%);
    transition: transform .4s var(--ease); box-shadow: 0 18px 40px rgba(0,0,0,.08);
  }
  .nav-list.open { transform: translateY(0); }
  .nav-list a { font-size: 15px; padding: 15px 0; border-bottom: 1px solid var(--line); }
  .nav-list .nav-cta { margin-top: 16px; text-align: center; }
  body.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .burger span:nth-child(2) { opacity: 0; }
  body.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}


/* パートナー専用（鍵付き）への入口 — ナビ内で少しだけ立たせる */
.nav-lock {
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
  padding: 8px 12px; border: 1px solid var(--line-2); border-radius: 3px;
  color: var(--black-2) !important; border-bottom: 1px solid var(--line-2) !important;
  transition: border-color .2s, color .2s, background .2s;
}
.nav-lock:hover { border-color: var(--orange) !important; color: var(--orange-dark) !important; background: var(--orange-soft); }
@media (max-width: 1240px) {
  .nav-lock { text-align: center; margin-top: 12px; border: 1px solid var(--line-2) !important; }
}

/* Hero -------------------------------------------------------------------- */
.hero { background: var(--white); padding: clamp(48px, 6vw, 84px) 0 0; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 4.5vw, 64px); align-items: center; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .12em;
  background: var(--orange); color: #fff; padding: 7px 15px; border-radius: 3px; margin-bottom: 22px;
}
.hero h1 { margin-bottom: 22px; }
.hero .lede { max-width: 34em; }
.hero .plate img { aspect-ratio: 4 / 3; object-fit: cover; }
.hero--slim { padding: clamp(40px, 5vw, 68px) 0 clamp(34px, 4vw, 52px); border-bottom: 1px solid var(--line); }
.hero--slim .hero-grid { grid-template-columns: 1fr; }
.hero--slim .lede { max-width: 48em; }

/* 事実の帯（契約形態・募集枠 など） */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); border-top: 1px solid var(--line); }
.facts .f { padding: 20px 22px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.facts .f:last-child { border-right: 0; }
.facts .f dt { font-size: 11px; letter-spacing: .1em; color: var(--ink-3); font-weight: 600; }
.facts .f dd { font-size: clamp(15px, 1.8vw, 18px); font-weight: 700; margin-top: 6px; line-height: 1.6; }
.facts .f dd small { display: block; font-size: 11.5px; font-weight: 400; color: var(--ink-3); margin-top: 3px; letter-spacing: .02em; }

/* Buttons ------------------------------------------------------------------ */
.btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  display: inline-flex; align-items: center; gap: 9px; padding: 15px 28px; border-radius: 3px;
  font-size: 14px; font-weight: 700; letter-spacing: .04em;
  transition: background .2s, color .2s, border-color .2s, transform .2s var(--ease);
}
.btn::after { content: "→"; font-size: .95em; }
.btn:hover { transform: translateY(-1px); }
.btn--orange { background: var(--orange); color: #fff; }
.btn--orange:hover { background: var(--orange-dark); }
.btn--black { background: var(--black); color: #fff; }
.btn--black:hover { background: var(--black-2); }
.btn--line { border: 1.5px solid var(--line-2); color: var(--black); }
.btn--line:hover { border-color: var(--black); }
.sec--black .btn--line, .sec--orange .btn--line { border-color: rgba(255,255,255,.45); color: #fff; }
.sec--black .btn--line:hover, .sec--orange .btn--line:hover { border-color: #fff; }
.sec--orange .btn--black:hover { background: #000; }
.arrow-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--orange-dark); }
.arrow-link::after { content: "→"; transition: transform .2s var(--ease); }
.arrow-link:hover::after { transform: translateX(4px); }
.sec--black .arrow-link, .sec--orange .arrow-link { color: #fff; }

/* 図版 ---------------------------------------------------------------------- */
.plate { border: 1px solid var(--line); background: var(--white); }
.plate img { width: 100%; }
.plate figcaption { padding: 12px 14px 14px; font-size: 11.5px; line-height: 1.8; color: var(--ink-3); }

/* 列 ---------------------------------------------------------------------- */
.cols { display: grid; gap: clamp(20px, 2.6vw, 34px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

/* カード（本部サポート等） */
.card { background: var(--white); border: 1px solid var(--line); padding: clamp(24px, 3vw, 32px); display: flex; flex-direction: column; gap: 10px; transition: border-color .25s, transform .25s var(--ease); }
.card:hover { border-color: var(--orange); transform: translateY(-2px); }
.card .c-num { font-size: 11px; font-weight: 700; letter-spacing: .16em; color: var(--orange-dark); }
.card p { font-size: 13.5px; line-height: 1.95; }
.sec--black .card { background: #1b1a18; border-color: rgba(255,255,255,.14); }
.sec--black .card:hover { border-color: var(--orange); }
.sec--black .card h3 { color: #fff; }
.sec--black .card .c-num { color: var(--orange); }

/* 二段組 -------------------------------------------------------------------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4.5vw, 68px); align-items: center; }
.duo--reverse .duo-text { order: 2; }
.duo--top { align-items: start; }
@media (max-width: 880px) { .duo { grid-template-columns: 1fr; } .duo--reverse .duo-text { order: 0; } }
.duo-text h2 { margin-bottom: 18px; }
.duo-text p { margin-bottom: 14px; font-size: 14.5px; }

/* 数字 --------------------------------------------------------------------- */
.figs { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: clamp(20px, 2.6vw, 36px); }
.fig { border-top: 3px solid var(--orange); padding-top: 16px; }
.fig .f-num { font-size: clamp(28px, 3.6vw, 42px); font-weight: 700; line-height: 1.2; }
.fig .f-num small { font-size: .42em; margin-left: 3px; color: var(--ink-2); }
.fig .f-label { margin-top: 8px; font-size: 12.5px; line-height: 1.85; color: var(--ink-2); }
.fig .f-src { display: block; margin-top: 5px; font-size: 10.5px; color: var(--ink-3); }
.sec--black .fig .f-label { color: rgba(255,255,255,.66); }
.sec--black .fig .f-src { color: rgba(255,255,255,.42); }

/* チェックリスト ------------------------------------------------------------- */
.checks li { position: relative; padding-left: 30px; margin-bottom: 14px; font-size: 14.5px; color: var(--ink-2); line-height: 1.95; }
.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--orange); color: #fff; font-size: 11px; font-weight: 700;
  font-family: "Hiragino Sans", sans-serif;
  display: flex; align-items: center; justify-content: center;
}
.checks li b { color: var(--black); }
/* 「向いていない方」— 同じ体裁で、印だけ返す */
.checks--no li::before { content: "×"; background: transparent; color: var(--ink-3); border: 1.5px solid var(--line-2); font-size: 11px; }
.checks--no li { color: var(--ink-2); }

/* パートナー特別枠 ----------------------------------------------------------- */
.kuchi { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2.2vw, 24px); }
@media (max-width: 760px) { .kuchi { grid-template-columns: 1fr; } }
.k-card { border: 1px solid var(--line); background: var(--white); padding: clamp(24px, 3vw, 34px); }
.k-card .k-tag { font-size: 11px; font-weight: 700; letter-spacing: .16em; color: var(--ink-3); }
.k-card .k-num { font-size: clamp(30px, 3.8vw, 44px); font-weight: 700; line-height: 1.3; margin: 10px 0 6px; }
.k-card .k-num small { font-size: .4em; margin-left: 4px; color: var(--ink-2); }
.k-card p { font-size: 13.5px; }
.k-card--partner { border: 2px solid var(--orange); background: linear-gradient(180deg, var(--orange-soft), transparent 58%), var(--white); }
.k-card--partner .k-tag { color: var(--orange-dark); }
.badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .1em; padding: 5px 12px; background: var(--orange); color: #fff; border-radius: 3px; }

/* 手順（加盟までの流れ） ------------------------------------------------------- */
.steps { counter-reset: s; }
.steps li { counter-increment: s; display: grid; grid-template-columns: 78px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.steps li:first-child { border-top: 1px solid var(--line); }
.steps li::before {
  content: "STEP " counter(s); align-self: start; margin-top: 3px;
  font-size: 10px; font-weight: 700; letter-spacing: .08em; color: #fff;
  background: var(--black); padding: 5px 8px; border-radius: 3px; text-align: center; white-space: nowrap;
}
.steps li.is-now::before { background: var(--orange); }
.steps h3 { margin-bottom: 5px; }
.steps p { font-size: 13.5px; }
@media (max-width: 620px) { .steps li { grid-template-columns: 1fr; gap: 8px; } .steps li::before { justify-self: start; } }

/* 表 ---------------------------------------------------------------------- */
/* 段組みの子は既定だと中身の最小幅より縮まない。表（min-width 560px）が入ると
   スマホで画面ごと横に広がってしまうため、縮めるようにしておく */
.hero-grid > *, .duo > *, .cols > *, .kuchi > *, .figs > * { min-width: 0; }
.tbl-wrap { overflow-x: auto; max-width: 100%; border: 1px solid var(--line); }
table.tbl { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 560px; background: var(--white); }
table.tbl th, table.tbl td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; line-height: 1.85; }
table.tbl thead th { background: var(--black); color: #fff; font-size: 11.5px; letter-spacing: .08em; font-weight: 700; white-space: nowrap; }
table.tbl td { color: var(--ink-2); }
table.tbl td:first-child { color: var(--black); font-weight: 700; white-space: nowrap; }
table.tbl tr:last-child td { border-bottom: 0; }
.sec--black .tbl-wrap { border-color: rgba(255,255,255,.16); }
.sec--black table.tbl { background: #1b1a18; }
.sec--black table.tbl td { color: rgba(255,255,255,.72); border-bottom-color: rgba(255,255,255,.12); }
.sec--black table.tbl td:first-child { color: #fff; }
.sec--black table.tbl thead th { background: #000; }

/* 定義リスト ---------------------------------------------------------------- */
.deflist { border-top: 2px solid var(--black); }
.deflist .row { display: grid; grid-template-columns: 180px 1fr; gap: 20px; padding: 18px 2px; border-bottom: 1px solid var(--line); }
@media (max-width: 700px) { .deflist .row { grid-template-columns: 1fr; gap: 4px; } }
.deflist dt { font-size: 12px; font-weight: 700; letter-spacing: .06em; color: var(--ink-3); line-height: 2.1; }
.deflist dd { font-size: 14px; line-height: 1.95; }
.deflist dd small { display: block; font-size: 12px; color: var(--ink-3); margin-top: 3px; }
.deflist a { color: var(--orange-dark); font-weight: 600; }
.sec--black .deflist { border-top-color: rgba(255,255,255,.4); }
.sec--black .deflist .row { border-bottom-color: rgba(255,255,255,.14); }
.sec--black .deflist dd { color: rgba(255,255,255,.8); }

/* FAQ --------------------------------------------------------------------- */
.faq { border-top: 2px solid var(--black); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; position: relative; padding: 20px 44px 20px 34px; font-size: 15.5px; font-weight: 700; line-height: 1.7; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "Q"; position: absolute; left: 2px; top: 19px; color: var(--orange); font-weight: 700; font-size: 15px; }
.faq summary::after { content: "＋"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); color: var(--orange); font-size: 13px; }
.faq details[open] summary::after { content: "－"; }
.faq details p { padding: 0 44px 22px 34px; font-size: 13.5px; line-height: 2; position: relative; }
.faq details p::before { content: "A"; position: absolute; left: 2px; top: 0; color: var(--ink-3); font-weight: 700; }

/* 注記・囲み ---------------------------------------------------------------- */
.note { border-left: 3px solid var(--orange); background: var(--paper); padding: 20px 24px; font-size: 13px; line-height: 1.95; color: var(--ink-2); }
.note b { color: var(--black); }
.sec--black .note { background: #1b1a18; color: rgba(255,255,255,.72); }
.fineprint { font-size: 11.5px; line-height: 1.95; color: var(--ink-3); }
.fineprint li { padding-left: 14px; position: relative; margin-bottom: 5px; }
.fineprint li::before { content: "・"; position: absolute; left: 0; }

/* CTA 帯 ------------------------------------------------------------------- */
.cta { text-align: center; }
.cta h2 { margin-bottom: 14px; }
.cta .btns { justify-content: center; }

/* スマホの固定CTA ----------------------------------------------------------- */
.mobile-cta { display: none; }
@media (max-width: 720px) {
  .mobile-cta {
    /* 左右は本文と同じ余白（5vw）に合わせる */
    display: block; position: fixed; left: 5vw; right: 5vw; bottom: 12px; z-index: 90;
    background: var(--orange); color: #fff; text-align: center;
    font-size: 15px; font-weight: 700; letter-spacing: .04em;
    padding: 15px 16px; border-radius: 4px; box-shadow: 0 8px 24px rgba(18,17,16,.22);
  }
  .mobile-cta::after { content: " →"; }
  .foot { padding-bottom: 96px; }
}

/* フォーム ------------------------------------------------------------------ */
.form { display: grid; gap: 16px; }
.form label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .05em; color: var(--black-2); margin-bottom: 6px; }
.form input, .form select, .form textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line-2); border-radius: 3px;
  background: var(--white); color: var(--black); font-family: inherit; font-size: 14.5px;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--orange); outline-offset: 0; border-color: var(--orange); }
.form textarea { min-height: 150px; resize: vertical; line-height: 1.85; }
.form button { border: 0; cursor: pointer; font-family: inherit; }
.req { color: var(--orange-dark); font-size: 11px; font-weight: 700; }

/* フッター ------------------------------------------------------------------ */
.foot { background: var(--black); color: rgba(255,255,255,.62); padding: 56px 0 40px; font-size: 12.5px; }
.foot a { color: rgba(255,255,255,.62); transition: color .2s; }
.foot a:hover { color: #fff; }
.foot-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 32px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.14); }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.foot-brand img { width: 30px; height: 30px; }
.foot-brand span { font-size: 15px; font-weight: 700; letter-spacing: .13em; color: #fff; }
.foot h4 { font-size: 10.5px; letter-spacing: .18em; color: var(--orange); margin-bottom: 12px; font-weight: 700; }
.foot li { margin-bottom: 8px; }
.foot-bottom { padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 11.5px; color: rgba(255,255,255,.45); }

/* 出現 --------------------------------------------------------------------- */
.rise { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rise.in { opacity: 1; transform: none; }
.rise.d1 { transition-delay: .07s; } .rise.d2 { transition-delay: .14s; } .rise.d3 { transition-delay: .21s; }
@media (prefers-reduced-motion: reduce) { .rise { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* 文書ページ ---------------------------------------------------------------- */
.doc { width: min(740px, var(--page-vw)); margin-inline: auto; }
.doc h2 { font-size: clamp(17px, 2.1vw, 22px); margin: 40px 0 16px; }
.doc p { margin-bottom: 18px; font-size: 14px; line-height: 2.05; }
.doc ul { margin: 0 0 22px; }
.doc ul li { position: relative; padding-left: 18px; margin-bottom: 9px; font-size: 14px; color: var(--ink-2); line-height: 1.95; }
.doc ul li::before { content: "—"; position: absolute; left: 0; color: var(--orange); }
.doc a { color: var(--orange-dark); }

/* 印刷（持ち帰って読む人が刷ることがある） ------------------------------------- */
@media print {
  .nav, .mobile-cta, .foot { display: none; }
  .rise { opacity: 1; transform: none; }
  .sec { padding: 24px 0; }
  a { color: inherit; }
}
