@charset "UTF-8";
/* CSS Document */
html {
  font-size: calc(100vw / 37.5);
}
body {
  font-size: 62.5%;
  color: var(--text-color);
  font-family: "Noto Sans JP", serif;
  letter-spacing: 0.05em;/*都度調整してください*/
  line-height: 1.5;/*都度調整してください*/
}
.wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background-color: #FFF;/*都度調整してください*/
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 26px 0px;/*都度調整してください*/
}
img {
  width: 100%;
  height: auto;
  display: block;
}
a {
  cursor: pointer;
  display: block;
}
a img.updown {
  animation-name: updown;
  animation-delay: 0s;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  padding-top: 1.5em;
}
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.shine_inner {
  position: relative;
  overflow: hidden;
  display: block;
}
.shine_inner .shine_mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mask-image: url("../img/cta.webp");
  mask-size: 100% auto;
  mask-repeat: no-repeat;
  mask-position: left bottom;
  display: block;
}
.shine_inner .shine_mask .shine {
  content: "";
  -webkit-animation: shine 3s cubic-bezier(0.25, 0, 0.25, 1) infinite;
  animation: shine 3s cubic-bezier(0.25, 0, 0.25, 1) infinite;
  background-color: #fff;
  width: 140%;
  height: 100%;
  -webkit-transform: skewX(-45deg);
  transform: skewX(-45deg);
  top: 0;
  left: -160%;
  opacity: 0.5;
  position: absolute;
  z-index: 1;
  display: block;
}
@-webkit-keyframes shine {
  0% {
    left: -200%;
    opacity: 0;
  }
  70% {
    left: -200%;
    opacity: 0.5;
  }
  71% {
    left: -200%;
    opacity: 1;
  }
  100% {
    left: -20%;
    opacity: 0;
  }
}
@keyframes shine {
  0% {
    left: -200%;
    opacity: 0;
  }
  70% {
    left: -200%;
    opacity: 0.5;
  }
  71% {
    left: -200%;
    opacity: 1;
  }
  100% {
    left: -20%;
    opacity: 0;
  }
}
video {
  width: 100%;
}
/*CTAエリア*/
.ctaArea a {
  width: 90%;
  margin: 0 auto;
}
/*shopエリア*/
#shopArea .map {
  position: relative;
  width: 100%;
  height: 0;
  margin-top: 2rem;
  padding-top: 100%;
}
.map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*footerエリア*/
footer {
  padding: 13em 0 4em;
}
footer nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
}
footer nav ul li  {
  font-size: 0.9rem;
  letter-spacing: -0.05em;
  color: #000;
  font-weight: bold;
}
footer nav ul li:last-child:after {
  content: none;
}
footer nav ul li.line {
  border-right: 1px solid;
  margin: 0.3em 0.5em;
}
footer p {
  text-align: center;
  font-size: 0.9rem;
  padding-top: 1em;
  color: #000;
  letter-spacing: 0.2em;
}