/* SITE 85 — reset
   最低限の正規化のみ。装飾は tokens / components / pages が担当する。 */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* 固定ヘッダーの下へアンカー先が潜らないようにする（CANON: scroll-padding-top 必須）。
     実高 = --h-header + 余白。ページ内リンク（FAQ の分類ジャンプ等）で効く。 */
  scroll-padding-top: calc(var(--h-header, 68px) + var(--sp-4, 16px));
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}

ul, ol { padding: 0; list-style: none; }

img, svg, video, canvas {
  display: block;
  max-width: 100%;
}

img { height: auto; }

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  margin: 0;
}

button { background: none; border: 0; padding: 0; cursor: pointer; }

table {
  border-collapse: collapse;
  width: 100%;
}

th, td { text-align: left; }

address { font-style: normal; }

/* 電話・料金・日付に old-style 数字を使わせない（DM Sans 以外へフォールバックしても同じ見え方にする） */
body, input, select, textarea, button, table {
  font-variant-numeric: var(--num-feature, lining-nums tabular-nums);
  font-feature-settings: "lnum" 1, "tnum" 1;
}

/* JSが読み込まれるまで/無効時に、切替UI前提の要素が消えないようにする */
[hidden] { display: none !important; }

:focus-visible {
  outline: 3px solid var(--c-focus, #E3BE86);
  outline-offset: 2px;
}
