@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}
body {
  min-height: 100vh;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000;
  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: none;
  text-decoration-skip-ink: auto;
  transition: all .5s;
  color: #000;
}
a:hover {
  color: #5FC1C7;
}
a img:hover {
  transition: all .5s;
  opacity: .6;
}
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;
  }
}