/* ============================================================
   MEMORY JAPAN — Design System
   和の編集美 × 日之丸的一点红
   ============================================================ */

:root {
  /* color */
  --ink: #111111;
  --ink-soft: #3d3d3a;
  /* 小さい字にも使う淡色。旧値 #8a8a85 は白地で 3.47:1 しかなく WCAG AA に
     届いていなかった。現在は白地 5.13:1 / --paper-dim の上で 4.75:1。 */
  --ink-mute: #6e6e69;
  --paper: #ffffff;
  --paper-dim: #f7f7f6;
  --red: #e60012;
  --red-deep: #b3000e;
  --indigo: #1d2e4a;
  --line: #ececE7;
  /* 明細行・一覧の区切りだけ一段濃い。--paper-dim の上で --line は消えてしまう。 */
  --line-strong: #e2e2dd;
  --white: #ffffff;

  /* type */
  /* 明朝は Shippori Mincho を先頭に。OS 依存の Hiragino / Yu 任せだと
     Windows と Mac で字面が変わり、詰めた字送りが崩れる。 */
  --f-serif: "Shippori Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  --f-sans: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  --f-latin: "Montserrat", "Hiragino Sans", "Noto Sans JP", sans-serif;

  /* rhythm */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --sec-pad: clamp(96px, 14vw, 180px);

  /* motion — one easing for the whole site */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --header-h: 76px;
}

/* 電話では clamp がぜんぶ下限に張りついてしまう（390px 幅だと 14vw = 55px、
   5vw = 20px）。その下限は机の上で気持ちのよい値として決めたもので、
   手のひらの画面のために測り直したことは一度もなかった。ここで測り直す。
   64px より下げないこと——この版は「余白」で立っている。 */
@media (max-width: 640px) {
  :root {
    --sec-pad: 64px;
    /* 76px は 390px 幅の画面で高さの 9% を占める。滑らせたあとに縮む先が
       60px なのだから、手のひらでは最初から縮んだ姿でいい。 */
    --header-h: 60px;
  }
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* キーボードで辿っている人には、どこにいるかが常に見えていること。
   マウス操作では出ない（:focus ではなく :focus-visible）。 */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
/* 濃色地の上では赤い枠が沈むので白に */
.site-footer :focus-visible,
.drawer :focus-visible,
.section--dark :focus-visible {
  outline-color: var(--paper);
}

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--sec-pad); position: relative; }
/* section が続くと余白が上下で二重になり、画面ひとつ分の空白になっていた。
   地色が変わる区画（--dim / --dark）は自前の内側余白が要るので対象外にし、
   その手前の区画の下余白だけ半分に落とす。 */
.section + .section:not(.section--dim):not(.section--dark) { padding-top: 0; }
.section:has(+ .section--dim),
.section:has(+ .section--dark) { padding-bottom: calc(var(--sec-pad) * 0.5); }
.page-hero + .section { padding-top: 0; }
.section--dark { background: var(--ink); color: var(--paper); }
.section--dim { background: var(--paper-dim); }

/* ---------- typography ---------- */
.t-hero {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.t-title {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.t-sub {
  font-family: var(--f-sans);
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 2.2;
  color: var(--ink-soft);
  max-width: 640px;
}
.section--dark .t-sub { color: rgba(255, 255, 255, 0.72); }

.t-label {
  font-family: var(--f-latin);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 14px;
}
.t-label::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex: none;
}
.section--dark .t-label { color: rgba(255, 255, 255, 0.5); }
.t-num {
  font-family: var(--f-latin);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.sec-head { margin-bottom: clamp(48px, 7vw, 88px); }
.sec-head .t-label { margin-bottom: 22px; }
.sec-head .t-sub { margin-top: 26px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  border: 1px solid var(--ink);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition: color 0.5s var(--ease);
  z-index: 0;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
  z-index: -1;
}
.btn .arr { transition: transform 0.5s var(--ease); }

.btn--red { border-color: var(--red); background: var(--red); color: var(--white); }
.btn--red::before { background: var(--red-deep); }

/* 囲みの中に置く小さい版 */
.btn--sm { padding: 14px 30px; font-size: 12.5px; gap: 10px; }

.btn--ghost-light { border-color: rgba(255,255,255,.5); color: var(--paper); }
.btn--ghost-light::before { background: var(--paper); }

/* 指で触る画面には hover という状態がない。押したあとも「触れている」ことに
   なって、地が塗られたまま・矢印がずれたまま残る。形と位置を動かす反応は
   マウスのある画面だけに預け、指には押した瞬間だけの手ごたえを返す
   （位置を動かす反応は指そのものに隠れて見えないので、濃さで返す）。 */
@media (hover: hover) and (pointer: fine) {
  .btn:hover { color: var(--paper); }
  .btn:hover::before { transform: scaleX(1); }
  .btn:hover .arr { transform: translateX(6px); }
  .btn--red:hover { color: var(--white); }
  .btn--ghost-light:hover { color: var(--ink); }
  .link-line:hover::after { transform: scaleX(1); }
}
.btn:active, .link-line:active { opacity: 0.62; }
/* 字の丈のままだと当たり判定が 24px ほどしかない。下線（::after）は
   bottom:0 に置いてあるので、padding で背を伸ばすと線だけ離れてしまう。
   見えない ::before を敷いて、的だけ上下に広げる。 */
@media (max-width: 640px) {
  .link-line::before { content: ""; position: absolute; inset: -11px -4px; }
}

.link-line {
  position: relative;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-bottom: 4px;
}
.link-line::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

/* ---------- header ---------- */
/* ヘッダーは最初から地色を持たせる。以前は最上部だけ透過で、巻紙やページ
   ヒーローの図がナビの字に重なって読めない瞬間があった。 */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--line);
  transition: background 0.6s var(--ease), box-shadow 0.6s var(--ease), height 0.6s var(--ease);
}
.site-header.is-scrolled {
  height: 60px;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
/* ヘッダーだけは 1200 のコンテナから外し、画面端に寄せる。
   広いディスプレイで両端が離れすぎないよう 1600 で頭打ちにしている。
   本文側の .container は 1200 のまま触らないこと。 */
.site-header .container {
  max-width: 1600px;
  padding-inline: clamp(20px, 3vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3.5vw, 52px);
}
/* 銘は縮んでよい唯一の要素。狭い画面では釦とハンバーガーが先に場所を取る。
   高さを auto にして max- で抑えるのが要点——height を決め打ちしたまま
   max-width を掛けると、字面が横に潰れる。 */
.brand { display: flex; align-items: center; gap: 12px; flex: 0 1 auto; min-width: 0; transition: opacity .4s var(--ease); }
.brand img { height: auto; max-height: 26px; max-width: 100%; transition: max-height .6s var(--ease); }
.site-header.is-scrolled .brand img { max-height: 22px; }
/* 60px の帯には 26px の銘は詰まって見える */
@media (max-width: 640px) { .brand img { max-height: 22px; } }

.gnav { display: flex; align-items: center; gap: clamp(14px, 1.6vw, 26px); }
.gnav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: var(--ink-soft);
  padding: 6px 2px;
  position: relative;
  transition: color 0.4s var(--ease);
}
.gnav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.gnav a:hover, .gnav a.is-active { color: var(--ink); }
.gnav a:hover::after, .gnav a.is-active::after { transform: scaleX(1); }
.gnav .gnav-cta {
  padding: 10px 22px;
  background: var(--red);
  color: var(--white) !important;
  letter-spacing: 0.14em;
  transition: background 0.4s var(--ease);
}
.gnav .gnav-cta::after { display: none; }
.gnav .gnav-cta:hover { background: var(--red-deep); }

/* シミュレーターだけ赤い点を添える。動くものがある、という合図 */
.gnav .gnav-dot { display: inline-flex; align-items: center; gap: 7px; }
.gnav .gnav-dot::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex: none;
}

/* お知らせ（ベル）。ヘッダーだけアイコン、ドロワーとフッターは文字のまま */
.gnav .gnav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  padding: 0;
  margin-inline: -4px;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color 0.4s var(--ease), background 0.4s var(--ease);
}
.gnav .gnav-icon::after { display: none; }
.gnav .gnav-icon:hover { color: var(--red); background: rgba(230, 0, 18, 0.06); }
.gnav .gnav-icon.is-active { color: var(--red); }
.gnav .gnav-icon:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* 1340 でナビが畳まれると、1024〜1340 の窓——ノートパソコンのふつうの幅——では
   いちばん行ってほしい先がハンバーガーの中に隠れる。その幅から下は、
   問い合わせだけ外に出しておく。ドロワーの中にも同じ行はあるが、重ねておく。 */
.gnav-cta-sm { display: none; transition: opacity .4s var(--ease); }
@media (max-width: 1340px) {
  .gnav-cta-sm {
    display: inline-flex; align-items: center;
    margin-left: auto;
    flex: none;
    padding: 9px 16px;
    background: var(--red);
    color: var(--white);
    font-size: 11.5px; font-weight: 600; letter-spacing: .1em;
    white-space: nowrap;
  }
}
/* 390px では銘・釦・ハンバーガーの三つで幅を使いきる。実測で
   端から 62px はみ出したので、電話では帯の間合いと釦を詰める。 */
@media (max-width: 640px) {
  .site-header .container { gap: 12px; }
  .gnav-cta-sm { padding: 8px 13px; font-size: 11px; letter-spacing: .06em; }
}
.gnav-cta-sm:active { opacity: .62; }
body.nav-open .gnav-cta-sm { opacity: 0; pointer-events: none; }

/* burger */
/* 44px は指の的の下限。40px だと閉じるつもりが外れる */
/* flex: none がないと、幅の足りない画面で押しつぶされる。実測 390px で
   13px まで縮み、線は 0 幅になって × が消えていた。 */
.burger { display: none; width: 44px; height: 44px; flex: none; position: relative; z-index: 210; }
.burger span {
  /* 1.5px は画素密度 3 の画面で半画素に落ちて、線がぼやける */
  position: absolute; left: 9px; right: 9px; height: 2px;
  background: var(--ink);
  transition: transform .5s var(--ease), opacity .4s;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
body.nav-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ドロワーは z-index:200 の、画面を覆いきる真っ黒な板。
   ヘッダーは z-index:100 で重なりの文脈を作るので、その中に居る burger の
   z-index:210 はヘッダーの内側でしか効かない。つまり開いたあと、閉じるための
   × はドロワーの下に沈んでいた。しかも線の色は --ink——出ていても黒地に黒。
   電話には Esc がないので、いちど開いたら「どれかの行き先を選んで離れる」
   以外に出口がなかった。開いているあいだだけヘッダーを上に出し、線を白くする。 */
body.nav-open .site-header {
  z-index: 210;
  background: transparent;
  box-shadow: none;
  /* ぼかしを残すとドロワーの黒がヘッダーの帯だけ濁って見える */
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
/* 銘は黒地の上では読めない。白版に差し替えるより、開いているあいだ引っ込める */
body.nav-open .brand { opacity: 0; pointer-events: none; }
body.nav-open .burger span { background: var(--paper); }

.drawer {
  position: fixed; inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 200;
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  opacity: 0; visibility: hidden;
  transition: opacity .6s var(--ease), visibility 0s .6s;
}
body.nav-open .drawer { opacity: 1; visibility: visible; transition: opacity .6s var(--ease); }
.drawer a {
  font-family: var(--f-serif);
  /* 「デザインへのこだわり」「Magnet Simulator」が 390px 幅で折り返さない上限 */
  font-size: clamp(21px, 5.2vw, 40px);
  letter-spacing: 0.1em;
  padding: 12px 0;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; align-items: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.drawer a small {
  font-family: var(--f-latin);
  font-size: 10px;
  letter-spacing: .12em;
  /* .4 は黒地で約 3:1 しかない。小さい字なので .55 まで起こす */
  color: rgba(255,255,255,.55);
  flex: none;
  white-space: nowrap;
}
body.nav-open .drawer a { opacity: 1; transform: none; }
/* 順ぐりに出る間合い。以前は nth-child(1)〜(8) を並べて書いていたので、
   行き先が九つめになった日から最後の一行だけ遅れずに出ていた。
   番号は js/common.js が --i として書き入れる。 */
body.nav-open .drawer a { transition-delay: calc(0.08s + var(--i, 0) * 0.06s); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
  padding: clamp(50px, 7vw, 80px) 0 40px;
  position: relative;
  z-index: 2;
}
.site-footer .f-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  margin-bottom: clamp(48px, 6vw, 80px);
}
/* 白抜きは watermark-white.png 側で作ってある（tools/build_brand_assets.py の
   wordmark_white）。CSS の invert だと日の丸まで水色に転ぶので使わないこと。 */
.site-footer .f-brand img { height: 30px; margin-bottom: 24px; }
.site-footer h4 {
  font-family: var(--f-latin);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  /* .4 は黒地で約 3:1 しかない。小さい字なので .55 まで起こす */
  color: rgba(255,255,255,.55);
  margin-bottom: 18px;
}
.site-footer li { margin-bottom: 10px; font-size: 12.5px; letter-spacing: .08em; }
.site-footer a:hover { color: var(--white); }
.site-footer a:active { opacity: 0.62; }
/* 字は小さいまま、押せる高さだけ確保する。行間の 10px と合わせて 44px。
   a を block にしないと当たり判定が字の丈（約 25px）で終わってしまう。 */
@media (max-width: 640px) {
  .site-footer li { margin-bottom: 0; }
  .site-footer li a { display: block; padding-block: 9px; }
}
.site-footer .f-company { font-size: 12px; line-height: 2; letter-spacing: .06em; }
.site-footer .f-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--f-latin);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}

/* ---------- 一覧行 ----------
   「番号・品名・小さな図・点数」の一行。トップの商品一覧と products.html の
   目次で同じものを使う。カード並べより一覧のほうが、点数を見比べる相手
   （問屋・バイヤー）には読みやすい。 */
.row-list { border-top: 1px solid var(--line-strong); }
.row-list > a {
  display: grid;
  /* the picture column is square. It used to be 132x74, and a tall product —
     a sticker sheet, a pack of cards — contained inside that came out as a
     35px sliver stranded in the middle of the cell. */
  grid-template-columns: 64px 1fr 88px 48px;
  gap: clamp(14px, 3vw, 40px);
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-strong);
  transition: padding-left 0.5s var(--ease);
}
.row-list .no {
  font-family: var(--f-latin);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--ink-mute);
}
.row-list .nm { font-family: var(--f-serif); font-size: clamp(17px, 2vw, 22px); letter-spacing: 0.08em; }
.row-list .ds { font-size: 11.5px; letter-spacing: 0.06em; color: var(--ink-mute); }
/* No plate behind the picture. The shots carry their own alpha (tools/cutout.py),
   so they sit on whatever ground the section has and every row matches. Putting
   a tile behind them is what made a photograph flattened onto white read as a
   white card next to a transparent one. */
.row-list .fig {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
}
.row-list .fig img {
  max-height: 100%; max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.8s var(--ease);
}
/* 一覧行の寄りと絵の拡大はマウスのある画面だけ。指では押したあとに
   行がずれたまま残ってしまう（.btn のところと同じ理由）。 */
@media (hover: hover) and (pointer: fine) {
  .row-list > a:hover { padding-left: 12px; }
  .row-list > a:hover .fig img { transform: scale(1.05); }
}
.row-list > a:active { opacity: 0.62; }
.row-list .qt {
  text-align: right;
  font-family: var(--f-latin);
  font-weight: 800; font-size: 15px;
  letter-spacing: -0.01em;
}
@media (max-width: 640px) {
  .row-list > a { grid-template-columns: 34px 1fr 60px 40px; gap: 12px; }
  .row-list .fig { height: 60px; }
}

/* ---------- 仕様表 ---------- */
.spec { border: 1px solid var(--line); }
.spec .r {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.spec .r:last-child { border-bottom: 0; }
.spec .r--head {
  font-family: var(--f-latin);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.spec .v { font-family: var(--f-latin); font-weight: 600; white-space: nowrap; }

/* ---------- 囲み ---------- */
.panel {
  background: var(--white);
  border: 1px solid var(--line-strong);
  padding: clamp(26px, 3.4vw, 44px);
}

/* ---------- reveal (GSAP hooks) ---------- */
[data-reveal] { opacity: 0; }
.no-js [data-reveal], .reduced-motion [data-reveal] { opacity: 1; }

/* ---------- page hero (subpages) ---------- */
.page-hero {
  padding: calc(var(--header-h) + clamp(64px, 10vw, 130px)) 0 clamp(56px, 8vw, 100px);
}
.page-hero .t-label { margin-bottom: 24px; }
.page-hero .t-sub { margin-top: 28px; }

/* ---------- utility ---------- */
.mt-s { margin-top: 24px; }
.mt-m { margin-top: 48px; }
.mt-l { margin-top: 72px; }
.center { text-align: center; }
.red-dot {
  display: inline-block;
  width: 0.5em; height: 0.5em;
  background: var(--red);
  border-radius: 50%;
  vertical-align: baseline;
}

/* ---------- responsive ---------- */
/* 6 項目＋ベル＋CTA は 1320px を切ると gutter に収まらなくなる（実測）。
   レイアウト全体より先にドロワーへ切り替えるのはそのため。
   ナビのラベルを変えたら測り直すこと（scratchpad/measure_nav.py と同じ要領で
   .gnav を強制表示して brand + gnav + gap が container の内幅に収まるか見る）。 */
@media (max-width: 1340px) {
  .gnav { display: none; }
  .burger { display: block; }
}
@media (max-width: 960px) {
  .site-footer .f-grid { grid-template-columns: 1fr; }
}
/* 本文の行送り。日本語の長い段落は 2 で読みやすいが、広い画面では
   一行が長いぶん間延びして見える。机の上だけ少し詰める。
   （reset の body より後に置くこと。前に置くと同じ強さで負ける。） */
@media (min-width: 900px) {
  body { line-height: 1.9; }
}

/* 添える字（ラベル・注記・英字の小見出し）は 10〜12.5px で組んである。
   机の上では効いているが、手のひらでは読むのに目を寄せる大きさになる。
   640px 以下だけ一段起こす。字送りは触らない——詰めた字送りとこの大きさは
   組みで決めたものなので、両方いじると版の表情が変わってしまう。 */
@media (max-width: 640px) {
  .t-label { font-size: 11px; }
  .drawer a small { font-size: 11px; }
  .site-footer h4 { font-size: 11px; }
  .site-footer li { font-size: 13.5px; }
  .site-footer .f-company { font-size: 13px; }
  .site-footer .f-bottom { font-size: 11px; }
  .row-list .no { font-size: 11px; }
  .row-list .ds { font-size: 12.5px; }
  .spec .r--head { font-size: 11px; }
  .btn--sm { font-size: 13.5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
