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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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; }

/* 数字は常に lining / tabular。電話・料金・日付が old-style で崩れないようにする。 */
body, input, select, textarea, button, table {
  font-variant-numeric: 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, #DCA76D);
  outline-offset: 2px;
}
