@charset "UTF-8";
/* デフォルト */
/* レスポンシブ設定 */
@media screen and (min-width: 321px) {
  .ssp {
    display: none;
  }
}
@media screen and (min-width: 541px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .tb {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .nb {
    display: none;
  }
}
body {
  padding: 0;
  margin: 0 auto;
  font-family: "source-han-sans-japanese", sans-serif;
}

img {
  display: block;
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
}
img.mt {
  margin-top: -120px;
}
@media screen and (max-width:540px) {
  img.mt {
    margin-top: -60px;
  }
}

a {
  display: block;
  margin: 20px auto;
  width: 95%;
  position: relative;
  padding: 20px 0;
  overflow: hidden;
}
a img.bounce {
  animation: bounce 1.5s infinite;
}
a.button {
  margin: 0 auto;
  width: 90%;
  transform: translateY(-170px);
}
@media screen and (max-width:540px) {
  a.button {
    transform: translateY(-90px);
  }
}
a.shine::after {
  position: absolute;
  top: -90%;
  left: -150%;
  content: "";
  height: 270%;
  width: 70px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6) 70%, rgba(255, 255, 255, 0));
  transform: rotate(60deg);
  animation: 2.5s shine infinite linear;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  80% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
@keyframes bounce {
  0% {
    transform: translate(0px, 10px);
  }
  10% {
    transform: translate(0px, -10px);
  }
  20% {
    transform: translate(0px, 10px);
  }
  30% {
    transform: translate(0px, 0px);
  }
}/*# sourceMappingURL=style.css.map */