/* SITE 91 CABARET RESERVATION & VIP — reset */
*,
*::before,
*::after { box-sizing: border-box; }

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

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd, ul, ol, fieldset {
  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 { padding: 0; border: 0; min-width: 0; }

[hidden] { display: none !important; }

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