@charset "UTF-8";
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  min-height: 100vh;
}

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

ul,
li {
  list-style: none;
}

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

button {
  text-align: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
  font-weight: inherit;
  font-family: inherit;
  font-size: inherit;
}

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

input {
  border: none;
}

.container {
  width: calc(100% - 40px);
  max-width: 520px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .container {
    width: calc(100% - 80px);
    max-width: 760px;
  }
}
@media screen and (min-width: 1024px) {
  .container {
    width: calc(100% - 160px);
    max-width: 1140px;
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0em;
  color: #202020;
  width: 100%;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1024px) {
  body {
    font-size: 2rem;
  }
}

a, button {
  cursor: pointer;
  display: inline;
  width: 100%;
  transition: 0.3s ease;
}
a:hover, button:hover {
  opacity: 0.7;
}

svg {
  width: auto;
  height: auto;
}

img {
  display: block;
  width: 100%;
  height: auto;
}/*# sourceMappingURL=style.css.map */