/* 配色・書体・モチーフは提案スライド (docs/widget/deck/figma-proposal.md) に合わせる。
   ロゴの実色を主役にし、墨 (#101014) と紙 (#FBF8F5) の帯を交互に置く。
   ヘッダー/フッターの構成だけは Vコレぷりんと (print-web/app/app.vue) と揃えたまま。 */
:root {
  /* ロゴ色 */
  --momo: #ec85a6;
  --sora: #28a8e0;
  --wakakusa: #88c018;
  --yamabuki: #f8b028;
  --fuji: #b098c8;
  /* 小さい文字に使う 0.72 倍の暗い版（淡い地でも読める） */
  --momo-d: #aa6078;
  --sora-d: #2086b3;
  --wakakusa-d: #628a11;
  --yamabuki-d: #b37f1d;
  --fuji-d: #7e6d90;
  /* 地色と文字色 */
  --ink: #17171c;
  --ink-deep: #101014;
  --panel: #1f1f25;
  --paper: #fbf8f5;
  --line: #ece7e2;
  --muted: #6c6873;
  --muted-dark: #a5a2ac;

  --brand: var(--momo-d);
  --text: var(--ink);
  --hairline: var(--line);
  --font-jp: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP", sans-serif;
  --font-num: "Inter", var(--font-jp);
}
* { box-sizing: border-box; }
body {
  margin: 0; padding: 0;
  font-family: var(--font-jp);
  color: var(--text); line-height: 1.9; background: var(--paper);
}
main { max-width: 720px; margin: 0 auto; padding: 32px 20px 64px; }

/* ヘッダー */
.app-bar {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.brand-side { align-items: center; display: flex; min-width: 0; }
/* 4点ボタンの寸法・色は print-web (.station-switcher / .station-button / .station-dots) と同値。 */
.station-switcher {
  align-items: center;
  align-self: stretch;
  display: flex;
  position: relative;
}
.station-button {
  align-items: center;
  background: #fff;
  border: 0;
  color: #777;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  min-height: 44px;
  transition: background-color 0.15s ease, color 0.15s ease;
  width: 80px;
}
.station-button:hover,
.station-button:focus-visible { background: var(--paper); color: var(--text); }
.station-dots {
  align-content: center;
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(2, 7px);
  grid-template-rows: repeat(2, 7px);
  height: 20px;
  justify-content: center;
  width: 20px;
}
.station-dots span {
  background: currentColor;
  border-radius: 2px;
  display: block;
  height: 100%;
  width: 100%;
}
/* 4点はウィジェットの並びに見立てて、ロゴ色を1つずつ当てる。 */
.station-button:hover .station-dots span:nth-child(1) { background: var(--momo); }
.station-button:hover .station-dots span:nth-child(2) { background: var(--sora); }
.station-button:hover .station-dots span:nth-child(3) { background: var(--wakakusa); }
.station-button:hover .station-dots span:nth-child(4) { background: var(--yamabuki); }
.station-menu {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(23, 23, 28, 0.12);
  display: none;
  left: 0;
  min-width: 240px;
  padding: 8px;
  position: absolute;
  top: 100%;
}
.station-switcher:hover .station-menu,
.station-switcher:focus-within .station-menu { display: block; }
.station-menu-link {
  border-radius: 10px;
  color: var(--text);
  display: block;
  font-size: 14px;
  padding: 10px 12px;
  text-decoration: none;
}
.station-menu-link:hover { background: var(--paper); }
/* ロゴの高さ・ヘッダー余白は print-web (.logo / .app-bar) と同値にする。 */
.logo-wrapper { align-items: center; display: flex; min-width: 0; padding-left: 10px; }
/* print のヘッダーで実際に描画されるロゴ（約18px高）に見た目を合わせる。
   max-height だけだと画像の実寸差でサイズが揃わないため、高さを固定する。 */
.logo { display: block; height: 21px; max-width: 100%; width: auto; }
@media (max-width: 600px) {
  .logo { height: 17px; }
  .logo-wrapper { padding-left: 8px; }
}

/* フッター */
.app-footer {
  background: var(--ink-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 36px 16px 32px;
  text-align: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-links a { color: #fff; font-size: 14px; text-decoration: none; }
.footer-links a:hover { color: var(--momo); text-decoration: underline; }
.copyright { color: var(--muted-dark); font-size: 13px; }
.copyright strong { color: #fff; }
h1 { font-size: 28px; font-weight: 700; margin: 0 0 8px; }
h2 { font-size: 18px; font-weight: 700; margin: 36px 0 8px; padding-top: 8px; border-top: 1px solid var(--line); }
p, li { font-size: 15px; }
ul { padding-left: 22px; }
.updated { color: var(--muted); font-size: 13px; margin: 0 0 24px; }

a { color: var(--brand); }
.redemption-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  margin-top: 24px;
  padding: 28px;
}
.redemption-kicker {
  color: var(--momo-d); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; margin: 0 0 8px;
}
.store-links { display: grid; gap: 12px; margin-top: 28px; }
.store-link {
  background: var(--momo); border-radius: 14px; color: var(--ink); font-weight: 700;
  padding: 12px 16px; text-align: center; text-decoration: none;
}
.store-link-secondary { background: var(--ink-deep); color: #fff; }
.reset-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-top: 24px;
  padding: 24px;
}
.reset-card h2 { margin-top: 0; }
.reset-form { display: grid; gap: 12px; }
.reset-form p { margin: 0 0 8px; }
.reset-form label { font-size: 14px; font-weight: 700; }
.reset-form input {
  border: 1px solid #d9d3cc;
  border-radius: 12px;
  font: inherit;
  font-size: 16px;
  padding: 10px 12px;
}
.reset-form input:focus-visible { border-color: var(--sora); outline: 2px solid rgba(40, 168, 224, 0.3); }
.reset-form button {
  background: var(--ink-deep);
  border: 0;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  margin-top: 8px;
  padding: 12px 16px;
}
.reset-form button:disabled { cursor: wait; opacity: 0.65; }
.form-error { color: #b42318; font-size: 13px; }
.inquiry-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  margin-top: 24px;
  padding: 28px;
}
.inquiry-form { display: grid; gap: 22px; }
.inquiry-field { display: grid; gap: 8px; }
.inquiry-field label { font-size: 15px; font-weight: 700; }
.inquiry-field input,
.inquiry-field select,
.inquiry-field textarea {
  background: #fff;
  border: 1px solid #d9d3cc;
  border-radius: 12px;
  color: var(--text);
  font: inherit;
  font-size: 16px;
  padding: 10px 12px;
  width: 100%;
}
.inquiry-field textarea { line-height: 1.7; resize: vertical; }
.inquiry-field input:focus-visible,
.inquiry-field select:focus-visible,
.inquiry-field textarea:focus-visible {
  border-color: var(--sora);
  outline: 2px solid rgba(40, 168, 224, 0.3);
}
.inquiry-label-row { align-items: center; display: flex; justify-content: space-between; }
.required-label {
  background: var(--momo);
  border-radius: 5px;
  color: var(--ink);
  font-size: 11px;
  margin-left: 5px;
  padding: 1px 5px;
}
.field-note, .recaptcha-note, .character-counter { color: var(--muted); font-size: 12px; margin: 0; }
.character-counter { font-family: var(--font-num); }
.inquiry-submit {
  background: var(--ink-deep);
  border: 0;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 13px 16px;
}
.inquiry-submit:hover { background: var(--momo-d); }
.inquiry-submit:disabled { cursor: wait; opacity: 0.65; }
.inquiry-completed { padding: 20px 0; text-align: center; }
.inquiry-completed h2 { border: 0; margin-top: 0; }
@media (max-width: 600px) { .inquiry-card { padding: 20px; } }

/* ------- 帯の共通ルール（墨と紙を交互に置く） ------- */
.hero-band, .feature, .price-band, .section-band, .talents-band, .cta-band, .notice-band {
  position: relative;
}
.section { border-top: 1px solid var(--line); margin-top: 48px; padding-top: 32px; }
.section-title { border: 0; font-size: 20px; margin: 0 0 20px; padding: 0; }
/* LP は帯を全幅で使う。規約などの読み物ページは 720px の main のまま。 */
.lp { max-width: none; padding: 0; }

/* 見出しの上に置く小さいラベル。色は帯ごとに変える。 */
.hero-kicker, .band-kicker {
  color: var(--momo-d); font-size: 13px; font-weight: 700; letter-spacing: 0.12em;
  margin: 0 0 12px;
}

/* ------- ヒーロー（墨地・角丸スクエアのモチーフ） ------- */
.hero-band { background: var(--ink-deep); color: #fff; overflow: hidden; }
/* 断ち落としの角丸スクエア。スライド表紙と同じ置き方。 */
.hero-band::before, .hero-band::after {
  content: ''; position: absolute; z-index: 0;
}
.hero-band::before {
  background: var(--momo); border-radius: 22%; height: 420px; right: -140px; top: -160px; width: 420px;
}
.hero-band::after {
  background: var(--sora); border-radius: 26%; bottom: -60px; height: 150px; left: -50px; width: 150px;
}
.hero-inner {
  align-items: center; display: grid; gap: 44px; grid-template-columns: 1.05fr 0.95fr;
  margin: 0 auto; max-width: 1040px; padding: 72px 20px 64px;
  position: relative; z-index: 1;
}
.hero-text { min-width: 0; }
.hero-band .hero-kicker { color: var(--momo); }
.hero-title { font-size: 46px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; margin: 0 0 20px; }
.hero-lead { color: var(--muted-dark); font-size: 16px; margin: 0; }
/* 見出しの下の短い色バー（スライドの 72×6 と同じ役割）。 */
.hero-text .hero-lead::before {
  background: var(--sora); content: ''; display: block; height: 6px; margin: 0 0 20px; width: 72px;
}
.hero-art svg { display: block; margin: 0 auto; max-height: 520px; width: 100%; }
.hero-copy { font-size: 22px; font-weight: 700; margin: 24px 0 8px; }
.hero-logo { max-width: 420px; width: 100%; }
.hero { padding: 48px 0 8px; text-align: center; }

/* ストアバッジ */
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 0; }
.hero-band .store-badges, .cta-band .store-badges { justify-content: flex-start; }
.cta-band .store-badges { justify-content: center; }
.store-badge {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; color: var(--muted);
  display: inline-block; font-size: 14px; font-weight: 700; padding: 12px 20px;
}
.store-badge-light { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4); color: #fff; }
.store-badge-img { display: inline-block; line-height: 0; }
.store-badge-img img { height: 52px; width: auto; }

/* お知らせ */
.notice-band { background: var(--yamabuki); }
.notice-inner {
  align-items: center; display: flex; gap: 14px; margin: 0 auto; max-width: 1040px;
  padding: 16px 20px;
}
.notice-tag {
  background: var(--ink-deep); border-radius: 8px; color: #fff; flex-shrink: 0;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; padding: 4px 12px;
}
.notice-text { color: var(--ink); font-size: 14px; margin: 0; }

/* ------- 交互に並ぶ説明の帯 ------- */
.feature { background: var(--paper); }
.feature-alt { background: var(--ink-deep); color: #fff; }
.feature-inner {
  align-items: center; display: grid; gap: 48px; grid-template-columns: 0.9fr 1.1fr;
  margin: 0 auto; max-width: 1040px; padding: 72px 20px;
}
.feature-reverse .feature-art { order: 2; }
.feature-art svg { display: block; width: 100%; }
.feature-text h2 {
  border: 0; font-size: 30px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.4;
  margin: 0 0 14px; padding: 0;
}
.feature-text p { color: var(--muted); font-size: 15px; margin: 0; }
.feature-alt .feature-text p { color: var(--muted-dark); }
/* 見出しの上の色バーは帯ごとに色を変えて、ガチャガチャさせる。 */
.feature-text h2::before {
  background: var(--sora); border-radius: 0; content: ''; display: block; height: 6px;
  margin-bottom: 16px; width: 56px;
}
.feature-lime .feature-text h2::before { background: var(--wakakusa); }
.feature-alt .feature-text h2::before { background: var(--momo); }
.fig-caption { color: var(--muted); font-size: 13px; margin: 14px 0 0; text-align: center; }
.feature-alt .fig-caption { color: var(--muted-dark); }

/* ------- 料金（山吹ベタ。スライド中盤の山と同じ扱い） ------- */
.price-band { background: var(--yamabuki); padding: 72px 20px; }
.price-card {
  background: transparent; border-radius: 0; color: var(--ink);
  margin: 0 auto; max-width: 720px; padding: 0; text-align: center;
}
.price-label {
  color: var(--ink); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; margin: 0 0 12px; opacity: 0.8;
}
.price { color: var(--ink); font-size: 64px; font-weight: 700; line-height: 1.2; margin: 0; }
.price .num { font-family: var(--font-num); font-size: 88px; letter-spacing: -0.02em; }
.price span { font-size: 18px; font-weight: 400; }
.price-note { color: var(--ink); font-size: 14px; margin: 16px auto 0; max-width: 560px; opacity: 0.8; }

/* ------- 紙地のセクション ------- */
.section-band { background: var(--paper); padding: 72px 20px; }
.band-inner { margin: 0 auto; max-width: 720px; }
.band-wide { max-width: 1040px; }
.band-title { border: 0; padding-top: 0; font-size: 34px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 12px; text-align: center; }
.band-note { color: var(--muted); font-size: 14px; margin: 0 0 32px; text-align: center; }

/* カード */
.cards { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 24px; }
.card h3 { font-size: 17px; margin: 0 0 10px; }
/* 見出しの前に置く角丸スクエア。1枚ずつ色を変える。 */
.card h3::before {
  background: var(--momo); border-radius: 4px; content: ''; display: block; height: 14px;
  margin-bottom: 12px; width: 14px;
}
.card:nth-child(2) h3::before { background: var(--sora); }
.card:nth-child(3) h3::before { background: var(--wakakusa); }
.card:nth-child(4) h3::before { background: var(--yamabuki); }
.card:nth-child(5) h3::before { background: var(--fuji); }
.card p { color: var(--muted); font-size: 14px; margin: 0; }

/* 番号つきの手順（丸ではなく Inter の数字を大きく置く） */
.steps { counter-reset: step; list-style: none; display: grid; gap: 14px; margin: 0; padding: 0; }
.steps li {
  align-items: baseline; background: #fff; border: 1px solid var(--line); border-radius: 18px;
  display: grid; gap: 4px; padding: 20px 24px 20px 68px; position: relative;
}
.steps li::before {
  color: var(--momo); content: counter(step, decimal-leading-zero); counter-increment: step;
  font-family: var(--font-num); font-size: 24px; font-weight: 700; left: 22px; line-height: 1;
  position: absolute; top: 22px;
}
.steps li:nth-child(2)::before { color: var(--sora); }
.steps li:nth-child(3)::before { color: var(--wakakusa); }
.steps li:nth-child(4)::before { color: var(--yamabuki); }
.steps strong { font-size: 16px; }
.steps span { color: var(--muted); font-size: 14px; }
.plain-list { list-style: none; margin: 0; padding: 0; }
.plain-list li { border-bottom: 1px solid var(--line); font-size: 15px; padding: 12px 0; }
.plain-list li strong { font-size: 15px; }
.note { color: var(--muted); font-size: 14px; margin-top: 16px; }

/* ------- 応援できる推し ------- */
.talents-band { background: var(--ink-deep); color: #fff; padding: 72px 20px; }
.talents-band .band-note { color: var(--muted-dark); }
.talent-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.talent-card { background: var(--panel); border-radius: 22px; overflow: hidden; }
/* 推しごとに色が変わる、というウィジェットの性格をカードの縁で見せる。 */
.talent-card { border: 2px solid var(--momo); }
.talent-card:nth-child(2) { border-color: var(--sora); }
.talent-card:nth-child(3) { border-color: var(--wakakusa); }
.talent-card:nth-child(4) { border-color: var(--yamabuki); }
.talent-card:nth-child(5) { border-color: var(--fuji); }
.talent-card img { aspect-ratio: 1; display: block; object-fit: cover; width: 100%; }
.talent-placeholder {
  align-items: center; aspect-ratio: 1; background: var(--panel); color: var(--muted-dark); display: flex;
  font-size: 14px; justify-content: center;
}
.talent-body { padding: 14px 16px 18px; }
.talent-name { color: #fff; font-size: 16px; font-weight: 700; margin: 0; }
.talent-price { color: var(--muted-dark); font-size: 13px; margin: 4px 0 0; }
.is-coming { opacity: 0.6; }

/* ------- 締めの帯 ------- */
.cta-band { background: var(--ink-deep); color: #fff; overflow: hidden; padding: 80px 20px; text-align: center; }
.cta-band::before, .cta-band::after { content: ''; position: absolute; z-index: 0; }
.cta-band::before {
  background: var(--wakakusa); border-radius: 24%; bottom: -80px; height: 220px; left: -60px; width: 220px;
}
.cta-band::after {
  background: var(--yamabuki); border-radius: 28%; height: 110px; right: -30px; top: -30px; width: 110px;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-title { font-size: 36px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 28px; }
.cta-note { color: var(--muted-dark); font-size: 13px; margin: 24px 0 0; }
/* 墨地の帯に置く導線。紙色を背負わせて、帯の中で一番強い要素にする。 */
.cta-link-button {
  background: var(--paper);
  border-radius: 12px;
  color: var(--ink-deep);
  display: inline-block;
  font-weight: 700;
  padding: 14px 28px;
  text-decoration: none;
}
.cta-link-button:hover { background: #fff; }

/* ------- はじめかた（1ステップ1行のカード） ------- */
.step-grid { display: grid; gap: 16px; grid-template-columns: minmax(0, 1fr); }
.step-card {
  align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 22px;
  display: grid; gap: 24px; grid-template-columns: 180px minmax(0, 1fr); min-width: 0;
  padding: 20px 28px 20px 20px; position: relative;
}
.step-body { min-width: 0; }
.step-visual {
  align-items: center; aspect-ratio: 16 / 10; background: var(--line); border-radius: 16px;
  display: flex; gap: 8px; justify-content: center; margin: 0; overflow: hidden;
  padding: 12px; width: 100%;
}
.step-card:nth-child(1) .step-visual { background: #fbe6ee; }
.step-card:nth-child(2) .step-visual { background: #ddf1fa; }
.step-card:nth-child(3) .step-visual { background: #ecf5da; }
.step-card:nth-child(4) .step-visual { background: #fde3b4; }
.step-visual > * { max-width: 100%; }
.step-visual svg { height: 100%; width: auto; }
.step-visual-store { flex-direction: column; gap: 10px; }
.step-visual-store img { height: auto; max-height: 28px; width: 82%; object-fit: contain; }
.step-visual-talents img {
  border-radius: 12px; flex: 1 1 0; height: 100%; min-width: 0; object-fit: cover;
}
.step-visual-widget, .step-visual-shot { padding: 0; }
.step-visual-widget img, .step-visual-shot img {
  height: 100%; object-fit: cover; object-position: top; width: 100%;
}
/* 番号は Inter の 2 桁。色はステップごとに変える。 */
.step-card .step-no {
  background: none; color: var(--momo); font-family: var(--font-num); font-size: 26px; font-weight: 700;
  height: auto; line-height: 1; margin: 0 0 10px; text-align: left; width: auto;
}
.step-card:nth-child(2) .step-no { color: var(--sora); }
.step-card:nth-child(3) .step-no { color: var(--wakakusa); }
.step-card:nth-child(4) .step-no { color: var(--yamabuki); }
.step-card h3 { font-size: 19px; margin: 0 0 8px; }
.step-card p { color: var(--muted); font-size: 14px; line-height: 1.8; margin: 0; }
@media (max-width: 620px) {
  .step-card { grid-template-columns: minmax(0, 1fr); gap: 14px; padding: 18px; }
}

/* ------- よくあるご質問 ------- */
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; margin-bottom: 12px;
  padding: 0 22px;
}
.faq summary {
  cursor: pointer; font-size: 16px; font-weight: 700; list-style: none; padding: 18px 0;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  color: var(--sora-d); content: '+'; font-size: 22px; position: absolute; right: 0; top: 12px;
}
.faq details[open] summary::after { content: '−'; }
.faq p { color: var(--muted); font-size: 14px; margin: 0 0 18px; }

/* 実機ショット */
.shot-widget { border-radius: 24px; display: block; width: 100%; }
.shot-caption { color: var(--muted-dark); font-size: 13px; margin: 14px 0 0; text-align: center; }
.shot-phone { border-radius: 26px; display: block; margin: 0 auto; max-width: 300px; width: 100%; }

/* サブナビ（print の 2 行目ナビに合わせる） */
.sub-nav { background: #fff; border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); }
.sub-nav-inner {
  align-items: center; display: flex; gap: 24px; justify-content: flex-start; margin: 0;
  overflow-x: auto; padding: 6px 16px 6px 96px;
}
.sub-nav-link {
  align-items: center; color: var(--ink); display: inline-flex; font-size: 15px; font-weight: 700;
  gap: 8px; padding: 4px 8px; text-decoration: none; transition: color 0.15s ease; white-space: nowrap;
}
.sub-nav-link:hover, .sub-nav-link.is-current { color: var(--momo-d); }
.sub-nav-icon { flex-shrink: 0; height: 24px; width: 24px; }
@media (max-width: 600px) { .sub-nav-inner { gap: 6px; padding: 6px 8px; } .sub-nav-link { font-size: 13px; } }

@media (max-width: 860px) {
  .hero-inner, .feature-inner { grid-template-columns: 1fr; }
  .hero-art svg { max-height: 420px; }
  .feature-reverse .feature-art { order: 0; }
  .hero-title { font-size: 34px; }
  .feature-text h2 { font-size: 24px; }
  .band-title { font-size: 26px; }
  .cta-title { font-size: 26px; }
  .price { font-size: 44px; }
  .price .num { font-size: 60px; }
  .hero-band::before { height: 260px; right: -110px; top: -110px; width: 260px; }
  .hero-band::after { display: none; }
}
@media (max-width: 600px) {
  .hero-inner { padding: 48px 20px 44px; }
  .hero-title { font-size: 28px; }
  .hero-copy { font-size: 19px; }
  .feature-inner { padding: 48px 20px; }
  .section-band, .talents-band, .price-band { padding: 48px 20px; }
  .cta-band { padding: 56px 20px; }
  .band-title { font-size: 24px; }
  .cta-title { font-size: 24px; }
  /* 幅が狭いと飾りの角丸スクエアが文字と重なるので、狭い画面では出さない。 */
  .cta-band::before, .cta-band::after { display: none; }
}

/* ------- 特定商取引法に基づく表記（定義リストの表） ------- */
.legal-list {
  background: #fff;
  border: 1px solid var(--line, #ece7e2);
  border-radius: 12px;
  margin: 0 0 40px;
  overflow: hidden;
}
.legal-row {
  border-bottom: 1px solid var(--line, #ece7e2);
  display: grid;
  grid-template-columns: 220px 1fr;
}
.legal-row:last-child { border-bottom: 0; }
.legal-row dt { background: var(--paper); font-weight: 700; }
.legal-row dt, .legal-row dd { margin: 0; padding: 18px 20px; }
.legal-link { color: var(--momo-d, #a81206); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 600px) {
  .legal-row { grid-template-columns: 1fr; }
  .legal-row dt { padding-bottom: 8px; }
  .legal-row dd { padding-top: 8px; }
}
/* 表を組む固定ページは既定の720pxだと折り返しが増えるので広げる。 */
main.wide { max-width: 880px; }
