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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* 固定ヘッダーの下へアンカー先が潜らないようにする（ページ内リンクを持つため必須） */
  scroll-padding-top: calc(var(--h-header, 76px) + 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; }

/*
 * 料金・時刻・電話でオールドスタイル数字を使わない。
 * Noto Serif JP を見出しと金額に使うため、桁の高さが揃うライニング数字を明示的に固定する。
 */
body {
  font-variant-numeric: lining-nums tabular-nums;
  -moz-font-feature-settings: "lnum" 1, "tnum" 1;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

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

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