/* 和文タイポ根治(LP-PLAN §2 / §4.7-6): Noto Sans JP を LP 使用文字だけに
   サブセット化して自前ホスト。可変 wght 軸で本文(400)〜見出し(700)を賄う。
   生成: scripts/build-fonts.mjs。CDN リンクは使わない。 */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/NotoSansJP-subset.woff2") format("woff2");
}

:root {
  --white: #ffffff;
  --aqua: #00c2d1;
  --pink: #ff3d77;
  --gold: #ffc736;
  --ink: #23253a;
  --ink-soft: #656778;
  --line: rgba(35, 37, 58, 0.14);
  --page: min(1140px, calc(100% - 40px));
  --reading: min(760px, calc(100% - 40px));
  --radius-sm: 10px;
  --radius-md: 18px;
  --shadow-soft: 0 20px 58px rgba(35, 37, 58, 0.1);
  /* 縦リズムのスケール(v5.1-3): 全セクション共通トークン。40 / 64 / 96 */
  --section-y: 56px;
  --gap-sm: 40px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "YuGothic", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.01em;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.005em;
}

:focus-visible {
  outline: 3px solid rgba(0, 194, 209, 0.32);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 8px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* ── ヘッダー / フッター(全ページ共通・v4トーン) ── */
.site-header {
  height: 72px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
}

.site-header__inner {
  width: var(--page);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
}

.brand__coin {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid rgba(35, 37, 58, 0.16);
  border-radius: 50%;
  font-size: 15px;
}

.header-link {
  color: var(--ink-soft);
  font-size: 14px;
  text-decoration: none;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 12px 26px rgba(255, 61, 119, 0.24);
}

.button--text {
  min-height: auto;
  padding: 8px 0;
  color: var(--aqua);
  border-radius: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--aqua);
  font-size: 13px;
  font-weight: 700;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

/* ══════════════════════════════════════════════════════════
   統一フォンフレーム(このLPの背骨・§4.7-1)
   全ページ全箇所でこの1コンポーネントだけを使う。生スクショは置かない。
   ══════════════════════════════════════════════════════════ */
.phoneFrame {
  --phone-w: 264px;
  position: relative;
  width: var(--phone-w);
  margin: 0;
  padding: 9px;
  background: linear-gradient(155deg, #2f3247, #16182600 60%), linear-gradient(155deg, #2c2f45, #14161f);
  border-radius: 40px;
  box-shadow:
    0 26px 54px rgba(35, 37, 58, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phoneFrame__island {
  position: absolute;
  z-index: 4;
  top: 17px;
  left: 50%;
  width: 32%;
  height: 11px;
  transform: translateX(-50%);
  background: #05060a;
  border-radius: 999px;
}

.phoneFrame__screen {
  position: relative;
  aspect-ratio: 390 / 844;
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
}

/* スクリーン画像だけを枠にぴったり敷く(ブランケット指定を避け、コイン等の装飾が肥大する事故を防ぐ)。 */
.phoneFrame__screen > img,
.phoneFrame__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phoneFrame__shot {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

/* ── ヒーロー ── */
.hero {
  overflow: clip;
  border-bottom: 1px solid var(--line);
}

.hero__inner {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  gap: 26px;
  align-items: center;
  padding: 34px 0 46px;
}

.hero__copy {
  max-width: 620px;
}

.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(38px, 9.4vw, 72px);
  line-height: 1.05;
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: clamp(17px, 4.6vw, 21px);
  line-height: 1.78;
}

.hero__note {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.hero__stage {
  position: relative;
  justify-self: center;
  padding-left: 26px;
}

.hero__stage .phoneFrame {
  --phone-w: min(78vw, 288px);
}

.hero__ririri {
  position: absolute;
  z-index: 5;
  left: -6px;
  bottom: 4%;
  width: 34%;
  filter: drop-shadow(0 12px 20px rgba(35, 37, 58, 0.22));
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════
   3幕ストーリー(§4.9-1): sticky 廃止。各幕はコピー + 自前フォンフレーム1台。
   デスクトップは左右交互配置。縦リズムは一定・間延びを排除。
   ══════════════════════════════════════════════════════════ */
.story {
  position: relative;
  width: var(--page);
  margin: 0 auto;
}

.act {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 28px;
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--line);
}

.act__copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.act__copy h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 8.4vw, 52px);
  line-height: 1.14;
}

.act--reverse .act__copy h2 {
  font-size: clamp(20px, 6.2vw, 38px);
}

.no-break {
  white-space: nowrap;
}

.act__copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 4.3vw, 18px);
}

/* フォンフレーム置き場。装飾円はここ(電話の背後)だけに置く(§4.9-3)。 */
.act__frame {
  position: relative;
  justify-self: center;
  --phone-w: min(72vw, 264px);
}

/* 1幕1個・電話の背後のみ・小さめ。見出しや本文には決して重ならない。 */
.act__frame::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 132%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0.14;
  pointer-events: none;
}

.act--gold .act__frame::before {
  background: var(--gold);
}

.act--aqua .act__frame::before {
  background: var(--aqua);
}

.act--pink .act__frame::before {
  background: var(--pink);
}

.act__frame .phoneFrame {
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════
   お悩み専用セクション(§4.9 v5.2)。ヒーロー直後。
   悩みの声=吹き出し(静かなグレー地・話し言葉)→ 答え=白カード
   (ヘアライン・傾け方チップはaqua)。旧・事例セクションを統合。
   モバイル縦積み / PC左右交互。装飾円は使わない(電話の背後のみのルール)。
   実額は DESIGN §4.2 の検算値のみ(創作数値なし)。
   ══════════════════════════════════════════════════════════ */
.worries {
  border-bottom: 1px solid var(--line);
}

.worries__inner {
  width: var(--page);
  margin: 0 auto;
  padding: var(--section-y) 0;
}

.worries__title {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: clamp(26px, 7.2vw, 40px);
  line-height: 1.18;
}

.worryList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 28px;
}

.worryCase {
  display: grid;
  gap: 14px;
  align-items: start;
}

/* 悩みの声: 静かなグレー地の吹き出し・話し言葉 */
.worryVoice {
  position: relative;
}

.worryVoice p {
  position: relative;
  margin: 0;
  padding: 20px 22px;
  background: #f1f2f4;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  font-size: clamp(15px, 4.2vw, 17px);
  line-height: 1.85;
}

/* 吹き出しの尻尾(モバイル: 下向き。答えカードへ向ける) */
.worryVoice p::after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: -8px;
  width: 15px;
  height: 15px;
  background: #f1f2f4;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: rotate(45deg);
}

/* 答え: 白カード + ヘアライン */
.answerCard {
  display: grid;
  gap: 13px;
  align-content: start;
  padding: 24px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(20, 24, 40, 0.05);
}

.answerCard__lead {
  margin: 0;
  font-weight: 700;
  font-size: clamp(17px, 4.6vw, 20px);
  line-height: 1.5;
}

.answerCard__chip {
  margin: 0;
}

.chip {
  display: inline-block;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

/* 傾け方チップ = aqua(§4.9 v5.2) */
.chip--aqua {
  background: rgba(0, 194, 209, 0.12);
  border: 1px solid rgba(0, 194, 209, 0.34);
  color: #0a7a84;
}

.answerCard__amount {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

.answerCard__amount b {
  color: var(--ink);
  font-size: 17px;
}

.answerCard__amount small {
  display: block;
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 12px;
}

.answerCard__note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.answerCard__link {
  justify-self: start;
  color: var(--pink);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.answerCard__link:hover {
  text-decoration: underline;
}

/* 締め = ブランド結論(§4.9 v5.2b)。de-bold: 全文太字にせず、
   ソフトなaquaカラウト+一句だけ強調でセクションの結論として立てる。 */
.worries__closing {
  max-width: none;
  margin: 36px 0 0;
  padding: 22px 24px;
  background: rgba(0, 194, 209, 0.06);
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--ink);
  font-size: clamp(16px, 4.4vw, 20px);
  line-height: 1.85;
}

.worries__closing b {
  font-weight: 700;
  color: var(--aqua);
}

/* ── 共有の瞬間: LINE風トークUI(CSSのみ)をフォンフレームの中へ(§4.9-5) ── */
.share {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  gap: 34px;
  align-items: center;
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--line);
}

.share__copy {
  max-width: 560px;
}

.share__copy h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 7.6vw, 48px);
}

.share__copy p {
  margin: 0;
  color: var(--ink-soft);
}

.share__stage {
  justify-self: center;
}

.share__stage .phoneFrame {
  --phone-w: min(74vw, 272px);
}

/* トーク画面はフレーム内寸いっぱいに敷く。上端はダイナミックアイランドを避ける。 */
.phoneFrame__screen--chat {
  background: #8fb0a2;
}

.chat {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 44px 12px 12px;
  background: #8fb0a2;
}

.chat__topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 2px 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.chat__thread {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}

.chat__input {
  display: flex;
  padding-top: 4px;
}

.chat__input-pill {
  flex: 1;
  height: 30px;
  background: #fff;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(35, 37, 58, 0.08);
}

.chat__day {
  align-self: center;
}

.chat__day span {
  padding: 3px 12px;
  background: rgba(35, 37, 58, 0.24);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
}

.chat__row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.chat__row--out {
  justify-content: flex-end;
}

.chat__avatar {
  flex: none;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  background: #fff;
  border-radius: 50%;
  font-size: 17px;
}

.chat__bubble {
  max-width: 74%;
  padding: 10px 14px;
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.6;
  box-shadow: 0 1px 2px rgba(35, 37, 58, 0.12);
}

.chat__bubble--out {
  background: #8de055;
  color: #143307;
}

.chat__card {
  max-width: 80%;
  display: grid;
  gap: 6px;
  padding: 13px 14px;
  background: #fff;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(35, 37, 58, 0.16);
}

.chat__card-head {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.chat__card-coin {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  background: var(--gold);
  border-radius: 50%;
  font-size: 12px;
}

.chat__card-body {
  font-size: 13px;
  color: var(--ink-soft);
}

.chat__card-body b {
  color: var(--ink);
}

.chat__card-url {
  color: var(--aqua);
  font-size: 12px;
  word-break: break-all;
}

.chat__read {
  align-self: flex-end;
  color: rgba(255, 255, 255, 0.85);
  font-size: 10px;
}

/* ── FAQ / ガイド / 最終CTA(セクション共通) ── */
.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 42px 24px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 23px;
  right: 4px;
  color: var(--aqua);
  content: "+";
  font-size: 24px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  max-width: 760px;
  padding: 0 0 24px;
  margin: 0;
  color: var(--ink-soft);
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--line);
}

.section__inner {
  width: 100%;
}

.section__heading {
  max-width: 690px;
  margin-bottom: 30px;
}

.section h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 8vw, 50px);
}

.guide-links {
  display: grid;
  border-top: 1px solid var(--line);
}

.guide-link {
  display: grid;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.guide-link:hover {
  color: var(--aqua);
}

.guide-link small {
  color: var(--ink-soft);
}

.final-cta {
  text-align: left;
}

.final-cta h2 {
  margin-bottom: var(--gap-sm);
}

.final-cta p {
  max-width: 560px;
  margin: 14px 0 24px;
  color: var(--ink-soft);
}

.site-footer {
  padding: 42px 0;
  background: var(--white);
}

.site-footer__inner {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--ink-soft);
  font-size: 13px;
}

.copyright {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

/* ── ガイド記事(サブページ・本文は不変更) ── */
.article-header {
  padding: 58px 0 46px;
  border-bottom: 1px solid var(--line);
}

.article-header__inner {
  width: var(--reading);
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 12px;
}

.article-header h1 {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: clamp(34px, 9vw, 58px);
}

.article-lead {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.article-meta {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 12px;
}

.article-body {
  width: var(--reading);
  margin: 0 auto;
  padding: 54px 0 86px;
}

.article-body h2 {
  margin: 54px 0 16px;
  padding-top: 6px;
  font-size: clamp(26px, 7vw, 36px);
}

.article-body h3 {
  margin: 32px 0 10px;
  font-size: 21px;
}

.article-body p,
.article-body li {
  line-height: 2;
}

.article-body ul,
.article-body ol {
  padding-left: 1.35em;
}

.article-body li + li {
  margin-top: 8px;
}

.article-cta {
  margin: 34px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-cta h2,
.article-cta h3 {
  margin: 0 0 8px;
  padding: 0;
  font-size: 24px;
}

.article-cta p {
  margin-bottom: 18px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.example-table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  font-size: 14px;
}

.example-table caption {
  margin-bottom: 10px;
  text-align: left;
  font-weight: 700;
}

.example-table th,
.example-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.example-table th {
  font-weight: 700;
}

.callout {
  margin: 30px 0;
  padding: 18px 0 18px 18px;
  border-left: 3px solid var(--aqua);
}

.callout p:last-child {
  margin-bottom: 0;
}

.related-guides {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.related-guides h2 {
  margin-top: 0;
}

.related-guides__list {
  display: grid;
  gap: 12px;
}

.related-guides__list a {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--aqua);
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════════
   レスポンシブ
   ══════════════════════════════════════════════════════════ */
@media (min-width: 720px) {
  :root {
    --page: min(1140px, calc(100% - 72px));
    --reading: min(760px, calc(100% - 72px));
    --section-y: 64px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    padding: 48px 0;
  }

  .share {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 48px;
  }

  /* お悩みセクション: PCは悩みの声 / 答えを左右交互に(モバイルは縦積み) */
  .worryList {
    gap: 44px;
  }

  .worryCase {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 40px;
  }

  .worryCase--reverse .worryVoice {
    order: 2;
  }

  .worryCase--reverse .answerCard {
    order: 1;
  }

  /* 尻尾は隣の答えカードへ向ける(通常=右向き / reverse=左向き) */
  .worryVoice p::after {
    top: 50%;
    right: -8px;
    bottom: auto;
    left: auto;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-bottom: none;
    transform: translateY(-50%) rotate(45deg);
  }

  .worryCase--reverse .worryVoice p::after {
    right: auto;
    left: -8px;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .related-guides__list {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .guide-links {
    grid-template-columns: 1fr 1fr;
    column-gap: 42px;
  }

  .site-footer__inner {
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

/* デスクトップ: 各幕を2カラム(コピー / 電話)で左右交互に(§4.9-1)。 */
@media (min-width: 1024px) {
  :root {
    --section-y: 96px;
  }

  .act {
    grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
    align-items: center;
    gap: 72px;
  }

  .act__copy {
    justify-self: start;
  }

  /* 偶数幕(幕2)は電話を左・コピーを右に反転して縦リズムに変化をつける。 */
  .act--reverse {
    grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  }

  .act--reverse .act__frame {
    order: 0;
  }

  .act--reverse .act__copy {
    order: 1;
  }

  .hero__stage .phoneFrame {
    --phone-w: 300px;
  }
}

@media (max-width: 560px) {
  :root {
    --page: calc(100% - 28px);
    --reading: calc(100% - 28px);
  }

  .site-header {
    height: 64px;
  }

  .header-link {
    display: none;
  }

  .hero__inner {
    padding-top: 26px;
  }

  .hero__stage {
    padding-left: 20px;
  }

  .button {
    width: 100%;
  }

  .article-header {
    padding-top: 42px;
  }

  .article-body {
    padding-top: 42px;
  }

  .example-table {
    font-size: 12px;
  }

  .example-table th,
  .example-table td {
    padding: 10px 7px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
