/* yoisho 公開サイト
   意匠の正は DESIGN.md（ネオブルータリズム／ライト）。
   守っていること:
   - 角丸は 0（円はドットのみ）
   - 枠線・文字・影はすべてインク #12120F。グレーの罫線を作らない
   - 影はぼかしなしの単色オフセット（ヒーロー 7px ライム / 浮く要素 4px インク）
   - ライムは面だけ。ライムの上の文字はインク、ライム色の文字は使わない
   - グラデーション・半透明のガラス・内側の影は使わない
   - アプリが .preferredColorScheme(.light) 固定なので、サイトもライト1本に絞る
     （darkに寄せると紙とインクの世界観が崩れるため、意図的な選択）
*/

:root {
  --paper:       #F4F2EC;
  --card:        #FFFFFF;
  --surface2:    #EFEBE0;
  --surface3:    #E3DFD3;
  --ink:         #12120F;
  --text2:       #6C6A60;
  --text3:       #96938A;
  --accent:      #C9F65C;
  --accent-text: #3F5A00;

  /* 種目タイプ（DESIGN.md の部位カラーから。差し色はこの3つだけ） */
  --run:      #7CD4FF;
  --run-text: #0E6EA8;
  --body:     #C89BFF;
  --body-text:#6B3FBF;

  --stroke:      2px;
  --stroke-hero: 3px;

  --font-en: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-jp: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN",
             "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.9;
  font-feature-settings: "palt" 1;   /* 日本語の詰め */
}

/* 数字とラテン文字は必ず Space Grotesk（DESIGN.md 3章） */
.en, .num { font-family: var(--font-en); font-feature-settings: "tnum" 1; }

.wrap { max-width: 760px; margin: 0 auto; padding: 0 20px 96px; }
/* 読み物の測度。日本語は 34em 前後がいちばん追いやすい */
.prose { max-width: 34em; }

/* ---------- ロゴ ---------- */

.logo { display: inline-flex; flex-direction: column; align-items: center;
        gap: 6px; text-decoration: none; color: var(--ink); }
.logo .word {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -1px;
  line-height: 1;
}
/* よいしょブロック。字間 .5em が最後の字の後ろにも入るので右を詰める */
.logo .band {
  background: var(--accent);
  border: var(--stroke) solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5em;
  padding: 3px 6px 3px 11px;
  line-height: 1.5;
}
.logo.lg .word { font-size: 62px; letter-spacing: -1.5px; }
.logo.lg .band { font-size: 14px; padding: 4px 8px 4px 14px; }

header.site { padding: 44px 0 8px; }

/* ---------- 見出し ---------- */

h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .01em;
  margin: 32px 0 10px;
  text-wrap: balance;
}
h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 14px;
  text-wrap: balance;
}
h3 { font-size: 16px; font-weight: 700; margin: 26px 0 6px; }

/* 極小の大文字ラベル（DESIGN.md 3章） */
.eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text2);
  margin: 0 0 8px;
}

.lead { font-size: 17px; color: var(--text2); margin: 0 0 4px; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; }

a { color: var(--accent-text); text-decoration: underline;
    text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
a:hover { background: var(--accent); color: var(--ink); }
a:focus-visible { outline: 3px solid var(--accent-text); outline-offset: 2px; }

ul { padding-left: 0; list-style: none; margin: 0 0 1.1em; }
ul li { position: relative; padding-left: 20px; margin: 8px 0; }
/* 行頭記号はインクの小さな四角（角丸を使わないため） */
ul li::before {
  content: ""; position: absolute; left: 0; top: .72em;
  width: 7px; height: 7px; background: var(--ink);
}

/* ---------- 箱 ---------- */

section { margin: 40px 0; }

.card {
  background: var(--card);
  border: var(--stroke) solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 24px;
}

/* ヒーローだけ 3px 枠＋7px ライムの影（最上位の1枚） */
.hero {
  background: var(--card);
  border: var(--stroke-hero) solid var(--ink);
  box-shadow: 7px 7px 0 var(--accent);
  padding: 26px 24px;
}
.hero .stat {
  font-family: var(--font-en);
  font-size: 46px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.01em;
  display: flex; align-items: baseline; gap: 6px;
}
.hero .stat .unit { font-size: 20px; font-weight: 600; }
.hero .analogy {
  margin: 12px 0 0; padding-top: 12px;
  border-top: var(--stroke) solid var(--ink);
  font-size: 15px; color: var(--text2);
}
.hero .analogy b { color: var(--ink); font-weight: 700; }

.note {
  background: var(--surface2);
  border: var(--stroke) solid var(--ink);
  padding: 18px 20px;
}

/* インク枠の器に入れ子を置くときは 6px 空ける（DESIGN.md nestedGap） */
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.chip {
  background: var(--surface2);
  border: var(--stroke) solid var(--ink);
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.6;
}

/* ---------- 一覧（作らないもの / 3つの記録） ---------- */

.grid { display: grid; gap: 14px; }
@media (min-width: 620px) { .grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.tile {
  background: var(--card);
  border: var(--stroke) solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 18px;
}
.tile h3 { margin: 0 0 6px; font-size: 16px; }
.tile p { font-size: 14px; color: var(--text2); margin: 0; line-height: 1.8; }

/* 種目タイプの色見出し。面は淡色、文字は濃色（DESIGN.md 2章） */
.tag {
  display: inline-block;
  border: var(--stroke) solid var(--ink);
  padding: 2px 8px;
  font-size: 12px; font-weight: 700;
}
.tag.strength { background: var(--accent);                 color: var(--ink); }
.tag.run      { background: rgba(124, 212, 255, .30);      color: var(--run-text); }
.tag.body     { background: rgba(200, 155, 255, .30);      color: var(--body-text); }

/* 「作らないもの」は取り消し線の見出しで示す。
   線画アイコンに斜線を重ねる案は、この線の太さと表示サイズだと
   何の絵か読めなくなったので採らない（DESIGN.md 1章:
   整理は枠・余白・文字サイズで行う）。 */
/* セクション内の小見出し。h2 とカードの間の段 */
.subhead {
  font-size: 20px; font-weight: 700; margin: 44px 0 6px;
  padding-top: 30px; border-top: var(--stroke) solid var(--ink);
}

.struck {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--ink);
  text-underline-offset: 0;
}

/* ---------- ボタン ---------- */

.cta, .btn {
  display: inline-block;
  border: var(--stroke) solid var(--ink);
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  transition: transform .12s ease, box-shadow .12s ease;
}
.cta {
  background: var(--accent);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 14px 22px;
  font-size: 16px;
}
.btn {
  background: var(--card);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 10px 16px;
  font-size: 14px;
}
/* 押している間は影の位置まで沈む（DESIGN.md 6章） */
.cta:active { transform: translate(6px, 6px); box-shadow: 0 0 0 var(--ink); }
.btn:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--ink); }
.cta:hover, .btn:hover { background: var(--accent); }
@media (prefers-reduced-motion: reduce) {
  .cta, .btn { transition: none; }
}

/* ---------- 表 ---------- */

.table-scroll { overflow-x: auto; margin: 0 0 6px;
                border: var(--stroke) solid var(--ink); }
/* 表が切れていることを黙って隠さない。狭い画面でだけ出す */
.table-hint { display: none; font-size: 13px; color: var(--text2); margin: 0 0 1.1em; }
@media (max-width: 700px) { .table-hint { display: block; } }
table { border-collapse: collapse; width: 100%; min-width: 460px;
        background: var(--card); font-size: 14px; }
th, td { border: 1px solid var(--ink); padding: 11px 13px;
         text-align: left; vertical-align: top; line-height: 1.75; }
/* 外周は器の枠に任せる（二重線を出さない） */
tr:first-child th, tr:first-child td { border-top: 0; }
tr:last-child th, tr:last-child td { border-bottom: 0; }
th:first-child, td:first-child { border-left: 0; }
th:last-child, td:last-child { border-right: 0; }
th { background: var(--surface2); font-weight: 700; white-space: nowrap; }

/* ---------- 目次（ポリシー） ---------- */

.toc { background: var(--surface2); border: var(--stroke) solid var(--ink);
       padding: 20px 22px; margin: 20px 0 44px; }
/* 要点ボックスは目次と同じ幅・別の面にして、2枚が1枚に見えないようにする */
.summary { background: var(--card); border: var(--stroke) solid var(--ink);
           box-shadow: 4px 4px 0 var(--ink); padding: 20px 22px; margin: 28px 0 0; }
.toc ol { margin: 0; padding: 0; list-style: none; counter-reset: toc;
          display: grid; gap: 2px; }
@media (min-width: 620px) { .toc ol { grid-template-columns: 1fr 1fr; gap: 2px 24px; } }
.toc li { counter-increment: toc; }
.toc a {
  display: flex; gap: 10px; align-items: baseline;
  padding: 5px 4px; text-decoration: none; color: var(--ink); font-size: 15px;
}
.toc a::before {
  content: counter(toc);
  font-family: var(--font-en); font-weight: 600; font-size: 13px;
  color: var(--text2); min-width: 1.4em;
}
.toc a:hover { background: var(--accent); }

/* 章。番号を大きな数字で立てる（数字が主役・DESIGN.md 1章） */
.chapter { margin: 44px 0 0; scroll-margin-top: 20px; }
.chapter > .head { display: flex; gap: 14px; align-items: baseline;
                   border-bottom: var(--stroke) solid var(--ink);
                   padding-bottom: 10px; margin-bottom: 18px; }
.chapter > .head .n {
  font-family: var(--font-en); font-size: 26px; font-weight: 600;
  line-height: 1; color: var(--ink); min-width: 1.3em;
}
.chapter > .head h2 { margin: 0; }

/* ---------- ナビ・フッター ---------- */

nav.pages { display: flex; flex-wrap: wrap; gap: 10px; margin: 40px 0 0; }

footer.site {
  margin-top: 56px; padding-top: 20px;
  border-top: var(--stroke) solid var(--ink);
  display: flex; flex-wrap: wrap; gap: 6px 20px;
  justify-content: space-between;
  font-size: 13px; color: var(--text2);
}
footer.site a { color: var(--text2); }

/* ---------- 狭い画面 ---------- */

@media (max-width: 560px) {
  body { font-size: 15px; line-height: 1.85; }
  h1 { font-size: 26px; }
  h2 { font-size: 18px; }
  .logo.lg .word { font-size: 46px; }
  .hero { padding: 20px 18px; box-shadow: 5px 5px 0 var(--accent); }
  .hero .stat { font-size: 36px; }
  .card, .tile { padding: 18px; box-shadow: 4px 4px 0 var(--ink); }
  .chapter > .head .n { font-size: 21px; }
}

/* ================================================================
   LP（トップページ）専用
   Claude Design のLPから、構成と演出を取り入れた部分。
   色・書体・角丸・影の規則は DESIGN.md のまま（2色目のアクセントは足さない）。
   ================================================================ */

/* 画面幅いっぱいのセクションをインクの罫で積む。
   .wrap の内側ではなく body 直下に置く */
.lp { margin: 0; }
.band-sec { border-bottom: var(--stroke) solid var(--ink); }
.inner { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- ヘッダー ---------- */

.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 0;
}
.nav-logo { display: flex; align-items: center; gap: 10px;
            text-decoration: none; color: var(--ink); }
.nav-logo img { width: 38px; height: 38px; display: block;
                border: var(--stroke) solid var(--ink); }
.nav-logo .stack { display: flex; flex-direction: column; align-items: center;
                    gap: 3px; line-height: 1; }
.nav-logo .word { font-family: var(--font-en); font-weight: 700;
                  font-size: 23px; letter-spacing: -.5px; line-height: 1; }
.nav-logo .band { background: var(--accent); border: 1.5px solid var(--ink);
                  font-size: 8px; font-weight: 700; letter-spacing: .35em;
                  padding: 1px 1px 1px 5px; line-height: 1.4; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { font-size: 14px; font-weight: 700; text-decoration: none;
               color: var(--ink); }
.nav-links a:hover { background: var(--accent); }
@media (max-width: 800px) { .nav-links .hide-sp { display: none; } }

/* ---------- ヒーロー ---------- */

/* 下の余白は必ず持たせる。無いとボタンとキャラクターの台が
   黒帯に貼り付いて、区切りが読めなくなる */
.hero-lp { display: grid; grid-template-columns: 1fr; gap: 24px;
           align-items: center; padding: 48px 0 52px; }
@media (min-width: 900px) {
  .hero-lp { grid-template-columns: 1fr 420px; gap: 40px; padding: 60px 0 72px; }
}

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--card); border: var(--stroke) solid var(--ink);
  padding: 6px 13px; font-size: 12px; font-weight: 700; margin-bottom: 22px;
}
.pill .dot { width: 8px; height: 8px; background: var(--accent-text); }

.display {
  margin: 0; font-weight: 700; letter-spacing: -.02em; line-height: 1.12;
  font-size: clamp(38px, 7.2vw, 64px);
}
/* 見出しの中でライムのベタ塗りブロックにする語 */
.display .mark {
  display: inline-block; background: var(--accent);
  border: var(--stroke) solid var(--ink); box-shadow: 5px 5px 0 var(--ink);
  padding: 0 12px 4px; margin: 6px 4px 8px 0;
}
.hero-lp .sub { margin: 22px 0 0; font-size: 17px; line-height: 1.85;
                color: var(--text2); max-width: 30em; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center;
                gap: 14px; margin-top: 30px; }

/* 事実だけを並べる数値。計測していない指標は載せない */
.facts { display: flex; gap: 26px; margin-top: 36px; align-items: stretch; }
.facts .rule { width: 2px; background: var(--ink); }
.facts .v { font-family: var(--font-en); font-size: 30px; font-weight: 600;
            line-height: 1.1; }
.facts .v small { font-size: 15px; font-weight: 600; }
.facts .k { font-size: 12px; color: var(--text2); font-weight: 700; margin-top: 2px; }

/* キャラクターはライムのベタ面に立たせる（下端を基準線に揃える） */
.figure { position: relative; display: flex; align-items: flex-end;
          justify-content: center; height: 380px; }
.figure .plate { position: absolute; bottom: 0; width: 100%; max-width: 360px;
                 height: 150px; background: var(--accent);
                 border: var(--stroke) solid var(--ink); }
.figure img { position: relative; height: 360px; width: auto; }
@media (min-width: 900px) { .figure { height: 480px; } .figure img { height: 460px; } }

/* ---------- 黒帯 ---------- */

.marquee {
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; gap: 26px;
  padding: 14px 24px; overflow-x: auto; white-space: nowrap;
  scrollbar-width: none;
}
.marquee::-webkit-scrollbar { display: none; }
.marquee span { font-family: var(--font-en); font-size: 13px; font-weight: 600;
                letter-spacing: .2em; }
.marquee i { color: var(--accent); font-style: normal; }

/* ---------- セクション見出し ---------- */

/* 縦だけ指定する。ショートハンドにすると .inner の左右パディングを
   打ち消してしまい、狭い画面で文字が画面端に貼り付く */
.sec { padding-top: 64px; padding-bottom: 64px; }
.sec-eyebrow {
  font-family: var(--font-en); font-size: 12px; font-weight: 600;
  letter-spacing: .18em; color: var(--accent-text); margin: 0 0 12px;
}
.sec h2 { font-size: clamp(26px, 4.4vw, 40px); letter-spacing: -.01em;
          line-height: 1.25; margin: 0 0 12px; }
.sec .sec-note { color: var(--text2); font-size: 15px; max-width: 34em; margin: 0; }

/* ---------- 番号つきカード ---------- */

.cards { display: grid; gap: 18px; margin-top: 36px; }
@media (min-width: 760px) { .cards.two { grid-template-columns: 1fr 1fr; } }

.fcard {
  background: var(--card); border: var(--stroke) solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink); padding: 20px;
  display: flex; gap: 18px; align-items: flex-start;
}
.fcard img { height: 130px; width: auto; flex-shrink: 0; }
.fcard .no {
  display: inline-block; background: var(--accent);
  border: var(--stroke) solid var(--ink);
  font-family: var(--font-en); font-size: 12px; font-weight: 700;
  padding: 0 7px; margin-bottom: 8px;
}
.fcard h3 { margin: 0 0 8px; font-size: 19px; }
.fcard p { margin: 0; font-size: 14px; line-height: 1.8; color: var(--text2); }
@media (max-width: 480px) {
  .fcard { flex-direction: column; align-items: center; text-align: left; }
  .fcard img { height: 120px; }
}

/* ---------- よくある質問 ---------- */

.faq { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 900px) { .faq { grid-template-columns: 1fr 1fr; gap: 56px; } }
.faq-fig { height: 240px; width: auto; margin-top: 14px; display: block; }
@media (min-width: 900px) { .faq-fig { height: 280px; } }
/* 質問は上下の罫だけで区切る（箱にしない） */
.qa { display: flex; flex-direction: column;
      border-top: var(--stroke) solid var(--ink); }
.qa .q { padding: 20px 0; border-bottom: var(--stroke) solid var(--ink); }
.qa .q h3 { margin: 0 0 8px; font-size: 16px; }
.qa .q p { margin: 0; font-size: 14px; line-height: 1.85; color: var(--text2); }

/* 見出しの中で語を1つだけライム面にする小さい版。
   ヒーローの .mark と同じ物理（面＋インク枠＋ぼかしなしのずらし影）で、
   文字サイズに合わせて枠と影を細くしてある */
.mark-sm {
  display: inline-block;
  background: var(--accent);
  border: var(--stroke) solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  padding: 0 6px 1px;
  margin: 0 3px 4px 1px;
  line-height: 1.35;
}

/* ---------- 2分割 ---------- */

.split { display: grid; grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split > div { padding: 56px 24px; }
@media (min-width: 900px) {
  .split > div + div { border-left: var(--stroke) solid var(--ink); }
  .split > div { padding: 60px 40px; }
}
@media (max-width: 899px) {
  .split > div + div { border-top: var(--stroke) solid var(--ink); }
}
.split > div + div { background: var(--surface2); }

/* 経路を示す行 */
.route { display: flex; gap: 14px; align-items: center;
         background: var(--card); border: var(--stroke) solid var(--ink);
         padding: 13px 15px; margin-bottom: 12px; }
.route .mark { width: 34px; height: 34px; flex-shrink: 0;
               background: var(--ink); display: grid; place-items: center; }
.route .mark svg { width: 18px; height: 18px; }
.route .mark svg * { stroke: var(--accent); stroke-width: 2.2; fill: none;
                     stroke-linecap: round; stroke-linejoin: round; }
.route b { display: block; font-size: 15px; }
.route span { font-size: 13px; color: var(--text2); }

/* インクのベタ面で言い切る箱 */
.callout { background: var(--ink); color: var(--paper);
           padding: 18px 20px; font-size: 14px; line-height: 1.85; }

/* ---------- アプリ画面の再現 ---------- */

.mock { background: var(--card); border: var(--stroke) solid var(--ink);
        box-shadow: 6px 6px 0 var(--ink); padding: 18px; }
.mock-head { display: flex; align-items: center; gap: 11px;
             border-bottom: var(--stroke) solid var(--ink);
             padding-bottom: 13px; margin-bottom: 13px; }
.mock-head .av { width: 38px; height: 38px; border-radius: 50%;
                 background: var(--accent); border: var(--stroke) solid var(--ink);
                 display: grid; place-items: center;
                 font-weight: 700; font-size: 15px; color: var(--accent-text); }
.mock-head b { display: block; font-size: 15px; }
.mock-head span { font-size: 12px; color: var(--text2); }
/* サボり検知は「腕」の色（DESIGN.md 2章）。赤は破壊的操作専用なので使わない */
.mock-head .flag { margin-left: auto; background: rgba(255, 211, 78, .45);
                   border: var(--stroke) solid var(--ink); color: #8A6A00;
                   font-size: 11px; font-weight: 700; padding: 2px 7px; }
.mock-opt { border: var(--stroke) solid var(--ink); padding: 9px 12px;
            font-size: 14px; margin-bottom: 7px; background: var(--card); }
.mock-opt.on { background: var(--accent); }
.mock-send { background: var(--accent); border: var(--stroke) solid var(--ink);
             box-shadow: 4px 4px 0 var(--ink); text-align: center;
             font-weight: 700; padding: 11px; margin-top: 12px; font-size: 15px; }

/* ---------- 3つの記録 ---------- */

.models { display: grid; gap: 18px; margin-top: 32px; }
@media (min-width: 760px) { .models { grid-template-columns: repeat(3, 1fr); } }
.model { border: var(--stroke) solid var(--ink); box-shadow: 5px 5px 0 var(--ink);
         background: var(--card); }
.model .pic { height: 190px; display: grid; place-items: end center;
              border-bottom: var(--stroke) solid var(--ink); overflow: hidden; }
.model .pic img { height: 180px; width: auto; }
.model .pic.strength { background: var(--accent); }
.model .pic.run      { background: rgba(124, 212, 255, .30); }
.model .pic.body     { background: rgba(200, 155, 255, .30); }
.model .body-txt { padding: 18px; }
.model h3 { margin: 0 0 8px; font-size: 18px; }
.model p { margin: 0; font-size: 14px; color: var(--text2); line-height: 1.8; }

/* ---------- 締め ---------- */

/* 締め。design の実装に合わせて面ごとライムにする */
.closing-sec { background: var(--accent); }
.closing { display: grid; grid-template-columns: 1fr; gap: 28px;
           align-items: center; padding-top: 60px; padding-bottom: 60px; }
@media (min-width: 900px) {
  .closing { grid-template-columns: 1fr 320px; gap: 40px;
             padding-top: 64px; padding-bottom: 64px; }
}
.closing h2 { font-size: clamp(30px, 5.4vw, 52px); letter-spacing: -.02em;
              line-height: 1.1; margin: 0 0 14px; }
.closing .sec-note { color: var(--ink); max-width: 32em; margin: 0 0 30px; font-size: 16px; }
/* ライム地の上に立たせる図。台座は敷かない（面そのものが台座） */
.closing .stand { display: flex; justify-content: center; align-items: flex-end;
                  height: 300px; }
@media (min-width: 900px) { .closing .stand { justify-content: flex-end; } }
.closing .stand img { height: 300px; width: auto; }

/* ライム地の上の主ボタンは反転させる（インク地＋ライム文字＋白のずらし影）。
   DESIGN.md はライムを文字色に使わないと定めているが、それは紙地での
   可読性を守るための規則。インク地の上では逆に最も強く読める */
.cta-invert {
  display: inline-block; background: var(--ink); color: var(--accent);
  border: var(--stroke) solid var(--ink); box-shadow: 6px 6px 0 var(--card);
  padding: 16px 30px; font-size: 16px; font-weight: 700; text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
}
.cta-invert:hover { background: var(--ink); color: var(--accent); }
.cta-invert:active { transform: translate(6px, 6px); box-shadow: 0 0 0 var(--card); }

/* ---------- フッター ---------- */

footer.lp-footer { background: var(--ink); color: var(--paper); padding: 44px 0; }
footer.lp-footer .inner { display: flex; flex-wrap: wrap; gap: 32px;
                          align-items: flex-start; justify-content: space-between; }
footer.lp-footer a { color: var(--paper); font-size: 13px; text-decoration: none; }
footer.lp-footer a:hover { background: var(--accent); color: var(--ink); }
.foot-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.foot-brand .sq { width: 32px; height: 32px; background: var(--paper);
                  border: var(--stroke) solid var(--paper);
                  display: grid; place-items: center; flex-shrink: 0; }
.foot-brand .sq img { width: 26px; height: 26px; display: block; }
.foot-brand .en { font-family: var(--font-en); font-weight: 700; font-size: 20px;
                  letter-spacing: -.5px; }
.foot-tag { font-size: 13px; color: #8A8578; line-height: 1.9; }
.foot-cols { display: flex; flex-wrap: wrap; gap: 36px 56px; }
.foot-cols > div { display: flex; flex-direction: column; gap: 10px; }
.foot-cols .head { font-size: 12px; font-weight: 700; color: var(--accent);
                   letter-spacing: .1em; }
