@charset "UTF-8";
/* メディアクエリ */
/* //メディアクエリ */
/* position 中央寄せ */
/* //position 中央寄せ */
.top {
  margin-bottom: 16px;
}
.top img {
  width: 100%;
}

.main-inner {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1em;
  margin-bottom: 2em;
}

.main-img__item {
  width: 100%;
}
.main-img__item img {
  width: 100%;
}

.main-btn-wrapper {
  text-align: center;
  margin-bottom: 2em;
}

.main-btn__txt {
  text-align: center;
  line-height: 1.8;
  font-size: 4vw;
}
.main-btn__txt span {
  color: #E44141;
  font-weight: 700;
  background: linear-gradient(transparent 64%, #fcf69f 0%);
  padding: 2px;
}

.main__btn {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 8px -4px rgba(0, 0, 0, 0.2);
  background-color: #62d847;
  min-width: 100%;
  display: block;
  padding: 1em 1.5em;
  color: #fff;
  font-weight: 700;
  position: relative;
  line-height: 1.5;
  letter-spacing: 1px;
  border-radius: 80px;
  display: inline-block;
  overflow: hidden;
  transition: opacity 0.25s, transform 0.25s, -webkit-transform 0.25s;
  box-sizing: border-box;
  font-size: 4vw;
}
.main__btn:hover {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
.main__btn:hover::before {
  left: 110%;
  transition: 0.25s ease-in-out;
}
.main__btn:hover::after {
  -webkit-animation: none;
  animation: none;
}
.main__btn::before {
  position: absolute;
  top: 50%;
  left: -120px;
  width: 80px;
  height: 200px;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.6) 80%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: translateY(-50%) rotate(25deg);
  transform: translateY(-50%) rotate(25deg);
  content: "";
}
.main__btn::after {
  position: absolute;
  top: 0;
  left: -100px;
  width: 50px;
  height: 100%;
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 0, #fff 100%);
  -webkit-animation-name: shiny_btn;
  animation-name: shiny_btn;
  -webkit-animation-duration: 3.5s;
  animation-duration: 3.5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  content: "";
}

@media (min-width: 600px) {
  .main-btn__txt {
    font-size: 16px;
  }
  .main__btn {
    min-width: 80%;
    font-size: 16px;
  }
}
@keyframes shiny_btn {
  0% {
    -webkit-transform: scale(0) rotate(25deg);
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  84% {
    -webkit-transform: scale(0) rotate(25deg);
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  85% {
    -webkit-transform: scale(1) rotate(25deg);
    transform: scale(1) rotate(25deg);
    opacity: 0.9;
  }
  100% {
    -webkit-transform: scale(50) rotate(25deg);
    transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}
.footer-inner {
  text-align: center;
  line-height: 1.8;
  font-size: 4vw;
}
.footer-inner span {
  font-size: 0.7em;
}
.footer-inner span a {
  color: #39a0ff;
  font-weight: 500;
}

@media (min-width: 600px) {
  .footer-inner {
    font-size: 16px;
  }
}/*# sourceMappingURL=style-main.css.map */