@charset "UTF-8";
/* ============================================================
   02. ベース
   ============================================================ */

body {
  background: var(--mh-paper);
  color: var(--mh-ink);
  font-family: var(--mh-font-body);
  font-size: var(--mh-fs-400);
  line-height: var(--mh-lh-body);
  letter-spacing: var(--mh-track-jp);
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Cocoon の既定リンク色を上書き */
a {
  color: var(--mh-accent);
  text-decoration: none;
  text-underline-offset: .18em;
  transition: color var(--mh-dur) var(--mh-ease);
}
a:hover { color: var(--mh-accent-hover); text-decoration: underline; }

/* キーボード操作を必ず見えるようにする */
:focus-visible {
  outline: 2px solid var(--mh-accent);
  outline-offset: 2px;
  border-radius: var(--mh-radius);
}

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

/* --- 見出し ------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--mh-font-display);
  font-weight: 600;
  line-height: var(--mh-lh-tight);
  letter-spacing: .01em;
  color: var(--mh-ink);
}
h5, h6 {
  font-family: var(--mh-font-body);
  font-weight: 700;
}

/* --- 数値・コードは等幅で ------------------------------------ */
code, kbd, samp, pre,
.mh-num, .mh-code {
  font-family: var(--mh-font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: var(--mh-track-mono);
}

/* 品番。カタログの型番はコードなので囲って見せる */
.mh-code {
  display: inline-block;
  padding: 1px 6px;
  border: 1px solid var(--mh-rule-strong);
  border-radius: var(--mh-radius);
  background: var(--mh-surface);
  font-size: .875em;
  color: var(--mh-ink);
}

/* --- ラベル（小さな見出し）----------------------------------- */
.mh-label {
  font-family: var(--mh-font-mono);
  font-size: var(--mh-fs-50);
  letter-spacing: .12em;
  color: var(--mh-ink-3);
  text-transform: uppercase;
}

/* --- シグネチャ：グレースケール・ウェッジ ---------------------- */
.mh-wedge {
  display: block;
  height: 4px;
  background: var(--mh-wedge);
}

/* --- 選択範囲 ---------------------------------------------- */
::selection { background: var(--mh-accent-soft); color: var(--mh-ink); }

/* --- 動きを減らす設定を尊重 ---------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
