/* SITE 87 CABARET NEW OPEN — reset */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* 固定ヘッダーの下に見出しが潜らないようにする。ページ内リンク・#id 直リンクの両方に効く。
     値は tokens.css / responsive.css の --anchor-offset（ヘッダー実測高＋余白）。 */
  scroll-padding-top: var(--anchor-offset, 96px);
}

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

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

body {
  min-height: 100%;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

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

img { height: auto; }

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

button { cursor: pointer; }

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

a { color: inherit; }

address { font-style: normal; }

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

[hidden] { display: none !important; }

/* 料金・時刻・日数の桁を揃える。数字が上下に飛ばないよう lining-nums も明示する。 */
.num,
.lining {
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

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