@charset "utf-8";
/*** The new CSS Reset - version 1.0.0 (last updated 8.7.2021) ***/

/* ブラウザのUAスタイルシートのすべてのスタイルを削除します、displayは除く */
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

/* box-sizingの優先値 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 画像がコンテナを超えないようにするため */
img {
  max-width: 100%;
}

/* テーブルのセル間のスペースを削除します */
table {
  border-collapse: collapse;
}

ol,
ul,
li,
dt,
dd {
  list-style: none;
}

a {
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  cursor: pointer;
}

body {
  line-height: 1;
  width: 100%;
}

article,
footer,
header,
menu,
nav,
section {
  display: block;
}

button {
  background: none;
  margin: 0;
  padding: 0;
  border: 0;
}

article,
footer,
header,
nav,
section {
  display: block;
}


