/* ===== RESET ===== */
/* 外部リセットライブラリを使わず、必要な項目のみ最小限にリセットする */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100svh;
}

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

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
}

fieldset {
  border: none;
  min-width: 0;
}

legend {
  padding: 0;
}

table {
  border-collapse: collapse;
}
