@charset "UTF-8";
/*
参考
・A Modern CSS Reset
https://github.com/hankchizljaw/modern-css-reset
・My Custom CSS Reset
https://www.joshwcomeau.com/css/custom-css-reset/
・The New CSS Reset
https://github.com/elad2412/the-new-css-reset
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

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

body {
  line-height: 1.5;
}

body {
  min-height: 100vh;
  min-height: 100dvh; /* ios用 */
  display: flex;
  flex-direction: column;
}

main {
  display: block;
  flex: 1;
}

ul,
ol {
  list-style: none;
}

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

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

table {
  border-collapse: collapse;
}

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