/* -------------------------------------------------------------
   リセット
   ------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Windows 等の占有型スクロールバー対応：
     モーダル open 時 (body { overflow: hidden }) にスクロールバーが消えて
     コンテンツが右にズレる現象を防ぐため、常にガターを予約する。 */
  scrollbar-gutter: stable;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
