/*----------------------------------------

　reset

----------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: .1em;
  color: #231815;
  text-rendering: optimizeSpeed;
}
body, h1, h2, h3, h4, p, ul, ol, li, figure, figcaption, dl, dd {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration-skip-ink: auto;
  transition: color .3s;
}
img {
  width: 100%;
  height: auto;
  display: block;
}
pre {
  white-space: pre-wrap;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}
input, button, textarea, select {
  font: inherit;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}