/* ==========================================================================
   SSSTalk サイト用CSS
   対象: / (ホーム) / overview/ / contact/ / privacy/
   アプリシェル用の /app/styles.css とは別物。:root のトークンだけを共有する。
   ここでは html, body に overflow:hidden / height:100% を絶対に書かない。
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. デザイントークン（/app/styles.css の :root から流用）
   -------------------------------------------------------------------------- */
:root {
  --header: #175e54;   /* 濃緑・ヘッダ地色 */
  --header-text: #ffffff;
  --bg: #e9eef1;
  --card: #ffffff;
  --text: #1c2430;
  --muted: #7a8694;
  --line: #d7dee4;
  --green: #1faa59;
  --blue: #3742fa;
  --orange: #e67e22;
  --pink: #e91e8c;
  --red: #e74c3c;

  /* サイト側で追加するトークン
     --muted は #e9eef1 上でコントラスト比 3.2:1 しかなく本文には使えないため、
     読ませる副次テキストには --muted-strong（4.5:1 以上）を使う。
     --muted は区切り線・アイコンなど装飾用途に限定する。 */
  --muted-strong: #5a6675;
  --accent: var(--header);          /* 主ボタン地色（白文字で 7.6:1） */
  --accent-hover: #12463f;
  --link: var(--blue);
  --focus: #3742fa;
  --focus-on-header: #ffd166;
  --shadow: 0 1px 2px rgba(28, 36, 48, .06), 0 6px 18px rgba(28, 36, 48, .07);
  --radius: 14px;
  --wrap: 880px;

  /* ブランドカラー（ロゴ「三本指のS」＋ 10_経営 デザインシステム由来）
     3つのS = Sign / Sync / Speak をこの3色で一貫して表す。 */
  --brand-navy: #1f2a44;   /* ロゴのワードマーク */
  --brand-coral: #f9616a;  /* Sign  */
  --brand-teal: #1fb8a6;   /* Sync  */
  --brand-purple: #8b5cf6; /* Speak */
  --brand-blue: #2d7dd2;
  --brand-orange: #f79a3e;
}

body[data-theme="dark"] {
  --bg: #1a1f36;
  --card: #232a47;
  --text: #ffffff;
  --muted: #8fa0c4;
  --line: #333c5e;

  --muted-strong: #a9b7d6;
  --accent: #1faa59;
  --accent-hover: #189a4e;
  --link: #9fb0ff;
  --focus: #9fb0ff;
  --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 6px 18px rgba(0, 0, 0, .28);
}

/* OS のダークモード。data-theme が明示されていないときだけ効かせる
   （アプリ側のテーマ切替と競合させない）。 */
@media (prefers-color-scheme: dark) {
  body:not([data-theme="light"]) {
    --bg: #1a1f36;
    --card: #232a47;
    --text: #ffffff;
    --muted: #8fa0c4;
    --line: #333c5e;

    --muted-strong: #a9b7d6;
    --accent: #1faa59;
    --accent-hover: #189a4e;
    --link: #9fb0ff;
    --focus: #9fb0ff;
    --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 6px 18px rgba(0, 0, 0, .28);
  }
}

/* --------------------------------------------------------------------------
   2. ベース
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  /* スクロールさせる。overflow:hidden は書かない */
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  /* 横スクロールを絶対に出さない */
  overflow-x: hidden;
  min-height: 100vh;
}

img,
svg { max-width: 100%; }

img { height: auto; }

h1, h2, h3 {
  line-height: 1.45;
  margin: 0 0 .6em;
  font-weight: 700;
  letter-spacing: .01em;
}

h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
h2 { font-size: clamp(1.25rem, 3.6vw, 1.5rem); }
h3 { font-size: 1.05rem; }

p { margin: 0 0 1em; }

ul, ol { margin: 0 0 1em; padding-left: 1.4em; }
li { margin-bottom: .35em; }

a { color: var(--link); }
a:hover { text-decoration-thickness: 2px; }

strong { font-weight: 700; }

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .92em;
  background: color-mix(in srgb, var(--muted) 18%, transparent);
  padding: .1em .35em;
  border-radius: 5px;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 32px 0;
}

/* フォーカスリングは消さない */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

.sitebar :focus-visible {
  outline-color: var(--focus-on-header);
}

/* 本文へスキップ */
.skiplink {
  position: absolute;
  left: 8px;
  top: -60px;
  z-index: 20;
  background: var(--card);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: top .15s ease;
}
.skiplink:focus { top: 8px; }

/* --------------------------------------------------------------------------
   3. 共通ヘッダ（.sitebar）
   -------------------------------------------------------------------------- */
.sitebar {
  background: var(--header);
  color: var(--header-text);
  /* セーフエリア（既存 .appbar と同じ方式） */
  padding-top: calc(env(safe-area-inset-top) + 10px);
  padding-bottom: 10px;
  padding-left: calc(env(safe-area-inset-left) + 16px);
  padding-right: calc(env(safe-area-inset-right) + 16px);
  display: flex;
  align-items: center;
  gap: 12px 20px;
  flex-wrap: wrap;
}

.sitebar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--header-text);
  text-decoration: none;
  min-height: 44px;
  padding: 2px 4px;
}
.sitebar-brand img {
  display: block;
  flex: none;
}
.sitebar-brand .brand-name {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .02em;
  line-height: 1.2;
}

/* タグライン SIGN · SYNC · SPEAK（ロゴ併記時は英大文字） */
.sitebar-brand .brand-tagline {
  display: block;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1.4;
  color: rgba(255, 255, 255, .82);
}

.sitenav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 4px;
  margin-left: auto;
}

.sitenav a {
  display: inline-flex;
  align-items: center;
  /* タップ領域 44x44 以上 */
  min-height: 44px;
  padding: 0 12px;
  border-radius: 10px;
  color: var(--header-text);
  text-decoration: none;
  font-size: .95rem;
  white-space: nowrap;
}

.sitenav a:hover { background: rgba(255, 255, 255, .14); }

.sitenav a[aria-current="page"] {
  background: rgba(255, 255, 255, .18);
  font-weight: 700;
  box-shadow: inset 0 -3px 0 rgba(255, 255, 255, .85);
}

/* --------------------------------------------------------------------------
   4. レイアウト
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 max(16px, env(safe-area-inset-left)) 0 max(16px, env(safe-area-inset-right));
}

main { display: block; }

.section {
  padding: 40px 0;
  border-top: 1px solid var(--line);
}
.section:first-of-type { border-top: 0; }

.section-lead {
  color: var(--muted-strong);
  max-width: 62ch;
}

/* --------------------------------------------------------------------------
   5. ヒーロー（ホーム）
   -------------------------------------------------------------------------- */
.hero {
  padding: 56px 0 44px;
  text-align: center;
}

.hero-mark {
  width: 92px;
  height: 92px;
  display: block;
  margin: 0 auto 18px;
}

.hero h1 {
  margin-bottom: .25em;
  letter-spacing: .015em;
}

.hero-tagline {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--muted-strong);
  margin: 0 0 22px;
}

.hero-lead {
  font-size: clamp(1rem, 2.6vw, 1.12rem);
  color: var(--muted-strong);
  max-width: 34em;
  margin: 0 auto 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* 本文中に置く導線は左寄せ */
.hero-actions.is-left { justify-content: flex-start; }

.hero-note {
  margin-top: 20px;
  font-size: .9rem;
  color: var(--muted-strong);
}

/* --------------------------------------------------------------------------
   6. ボタン
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  min-width: 44px;
  padding: 12px 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, transform .05s ease;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}
.btn-primary:hover { background: var(--accent-hover); }

.btn-secondary {
  background: var(--card);
  color: var(--text);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--muted-strong); }

.btn[disabled],
.btn[aria-disabled="true"] {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}

/* --------------------------------------------------------------------------
   7. カード
   -------------------------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cards-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
}

.card h3 { margin-bottom: .4em; }

.card p {
  margin: 0;
  color: var(--muted-strong);
  font-size: .95rem;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  margin-bottom: 14px;
  color: #ffffff;
}
.card-icon svg { width: 22px; height: 22px; display: block; }

.icon-green  { background: var(--green); }
.icon-blue   { background: var(--blue); }
.icon-orange { background: var(--orange); }
.icon-pink   { background: var(--pink); }

/* リンクカード（副導線） */
.linkcard {
  display: block;
  text-decoration: none;
  color: inherit;
}
.linkcard:hover { border-color: var(--accent); }
.linkcard .linkcard-title {
  display: block;
  font-weight: 700;
  margin-bottom: .3em;
  color: var(--link);
}

/* --------------------------------------------------------------------------
   7-b. 3つのS（Sign / Sync / Speak）
   -------------------------------------------------------------------------- */
.scards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.scard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
}

.scard-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 14px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}
.scard-1 .scard-mark { background: var(--brand-coral); }
.scard-2 .scard-mark { background: var(--brand-teal); }
.scard-3 .scard-mark { background: var(--brand-purple); }

.scard h3 {
  margin-bottom: .15em;
  font-size: 1.15rem;
  letter-spacing: .04em;
}
.scard .scard-ja {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .6em;
}
/* ラベルはブランド3色の「濃い版」。--brand-coral / --brand-teal そのままだと
   白カード上で 4.5:1 を割るため、可読性を優先して暗く振っている。 */
.scard-1 .scard-ja { color: #cf3e4d; }
.scard-2 .scard-ja { color: #0f7a6e; }
.scard-3 .scard-ja { color: #6d3ee0; }
.scard p {
  margin: 0;
  color: var(--muted-strong);
  font-size: .95rem;
}

body[data-theme="dark"] .scard-1 .scard-ja { color: #ff8a92; }
body[data-theme="dark"] .scard-2 .scard-ja { color: #4fd8c6; }
body[data-theme="dark"] .scard-3 .scard-ja { color: #b394ff; }
@media (prefers-color-scheme: dark) {
  body:not([data-theme="light"]) .scard-1 .scard-ja { color: #ff8a92; }
  body:not([data-theme="light"]) .scard-2 .scard-ja { color: #4fd8c6; }
  body:not([data-theme="light"]) .scard-3 .scard-ja { color: #b394ff; }
}

/* --------------------------------------------------------------------------
   7-c. 数値の見せ場（対応語数・お手本データ数）
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.stat-num {
  display: block;
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .01em;
  color: var(--accent);
}
.stat-unit {
  font-size: .95rem;
  font-weight: 700;
  margin-left: .2em;
}
.stat-label {
  display: block;
  margin-top: 4px;
  font-size: .88rem;
  color: var(--muted-strong);
}

/* --------------------------------------------------------------------------
   7-d. 2列の対比（いまできること / これから）
   -------------------------------------------------------------------------- */
.twocol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.twocol .card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex: none;
  color: #ffffff;
  font-size: .85rem;
  font-weight: 700;
}
.badge-now { background: var(--green); }
.badge-next { background: var(--brand-blue); }

.twocol ul {
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted-strong);
  font-size: .95rem;
}

/* --------------------------------------------------------------------------
   8. 手順リスト（使い方の流れ）
   -------------------------------------------------------------------------- */
.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.steps li {
  counter-increment: step;
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px 16px 60px;
  margin: 0;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps li strong { display: block; }
.steps li p {
  margin: .2em 0 0;
  color: var(--muted-strong);
  font-size: .95rem;
}

/* --------------------------------------------------------------------------
   9. 表（対応環境）
   -------------------------------------------------------------------------- */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}

caption {
  text-align: left;
  padding: 12px 16px 0;
  color: var(--muted-strong);
  font-size: .9rem;
}

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

thead th {
  font-weight: 700;
  white-space: nowrap;
  background: color-mix(in srgb, var(--muted) 12%, transparent);
}

tbody tr:last-child th,
tbody tr:last-child td { border-bottom: 0; }

/* --------------------------------------------------------------------------
   9-b. figure（ロゴ・スクリーンショット）
   -------------------------------------------------------------------------- */
.figure {
  margin: 24px 0 0;
}
.figure img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.figure figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: .88rem;
  color: var(--muted-strong);
}

/* ロゴは白地が焼き込まれた画像なので、ダークテーマでも常に白の台紙に載せる
   （地色に直接置くと明るい長方形が浮いて見える）。 */
.figure-logo img {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 18px 20px;
  max-width: 560px;
  width: 100%;
}

/* --------------------------------------------------------------------------
   9-c. スクリーンショットの切替（/overview/ アプリの画面）
   ラジオボタンで3モードのうち1枚だけを表示する。切替は CSS の :has() だけで
   成立するので JS は不要。:has() 非対応のブラウザでは既定のまま3枚が並び、
   内容は失われない（下の @supports がその場合だけ効かない）。
   -------------------------------------------------------------------------- */
.shots {
  margin: 24px 0 0;
}
.shots-stage {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.shot {
  margin: 0;
  text-align: center;
}
.shot img {
  display: block;
  width: 360px;
  /* 端末幅を超えさせない。これが無いと横幅 360px 級のスマホで本文からはみ出し、
     ページ全体が横スクロールする。 */
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.shot figcaption {
  margin: 10px auto 0;
  max-width: 360px;
  font-size: .88rem;
  color: var(--muted-strong);
}

@supports selector(:has(*)) {
  .shots-stage .shot { display: none; }
  .shots:has(#mode-normal:checked) .shot-normal,
  .shots:has(#mode-practice:checked) .shot-practice,
  .shots:has(#mode-learn:checked) .shot-learn { display: block; }
}

.shots-radios {
  border: 0;
  margin: 18px 0 0;
  padding: 0;
}
.shots-legend {
  width: 100%;
  padding: 0;
  text-align: center;
  font-size: .9rem;
  color: var(--muted-strong);
}
.shots-radios-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}
.shots-radios label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* タップ領域 44px 以上 */
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  cursor: pointer;
}
.shots-radios input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--accent);
}
.shots-radios label:has(input:checked) {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   10. 注記・注意ブロック
   -------------------------------------------------------------------------- */
.note {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.note :last-child { margin-bottom: 0; }
.note-title {
  font-weight: 700;
  margin-bottom: .3em;
}

/* --------------------------------------------------------------------------
   11. フォーム（/contact/）
   -------------------------------------------------------------------------- */
.formcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
}

.field { margin-bottom: 20px; }

.field label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: .95rem;
}

.field .hint {
  display: block;
  font-weight: 400;
  color: var(--muted-strong);
  font-size: .85rem;
  margin-top: 2px;
}

.req {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--red);
  color: #ffffff;
  font-size: .72rem;
  font-weight: 700;
  vertical-align: middle;
  letter-spacing: .04em;
}

input[type="text"],
input[type="email"],
textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  font: inherit;
  font-size: 16px; /* iOS の自動ズーム防止 */
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

input::placeholder,
textarea::placeholder { color: var(--muted-strong); opacity: 1; }

input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 1px;
  border-color: var(--focus);
}

/* honeypot: display:none は使わない（ボットに検知されるため）。
   視覚的にだけ隠し、DOM 上には残す。 */
.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.consent {
  color: var(--muted-strong);
  font-size: .9rem;
  margin: 0 0 18px;
}

#cSubmit { width: 100%; }

.formstatus {
  margin: 14px 0 0;
  min-height: 1.6em;
  font-size: .95rem;
  font-weight: 700;
}
.formstatus.is-ok    { color: var(--green); }
.formstatus.is-error { color: var(--red); }
.formstatus.is-busy  { color: var(--muted-strong); font-weight: 400; }

/* --------------------------------------------------------------------------
   11-b. 余白ユーティリティ（インラインstyleを書かないため）
   -------------------------------------------------------------------------- */
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* --------------------------------------------------------------------------
   12. フッタ
   -------------------------------------------------------------------------- */
.sitefoot {
  margin-top: 48px;
  padding: 24px 16px calc(env(safe-area-inset-bottom) + 24px);
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted-strong);
  font-size: .9rem;
}

/* --------------------------------------------------------------------------
   13. レスポンシブ（640px 以下は1カラム）
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .sitebar-brand .brand-tagline { display: none; }
}

@media (max-width: 860px) {
  .cards,
  .scards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .sitebar {
    align-items: flex-start;
    gap: 4px;
  }

  .scards,
  .twocol { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats .stat:only-child,
  .stats .stat:nth-child(3):last-child { grid-column: 1 / -1; }
  .sitenav {
    margin-left: 0;
    width: 100%;
  }
  .sitenav a {
    padding: 0 10px;
    font-size: .9rem;
  }

  .hero { padding: 40px 0 32px; }
  .hero-actions .btn { width: 100%; }

  .cards,
  .cards-2 { grid-template-columns: 1fr; }

  .section { padding: 32px 0; }

  .formcard { padding: 20px 16px; }
}

/* --------------------------------------------------------------------------
   14. モーション低減
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
