@charset "UTF-8";

.lp_wrap .offer {
  overflow: hidden;
}
.lp_wrap .offer .photo {
  position: absolute;
  top: 8.17%;
  left: 4%;
  width: 92%;
  animation: 3s offer_photo2 linear infinite;
  display: none;
}
.lp_wrap .offer .photo img {
  animation: 3s offer_photo1 linear infinite;
}
@keyframes offer_photo1 {
  0%, 33.3% {
    opacity: 1;
  }
  33.4%, 100% {
    opacity: 0;
  }
}
@keyframes offer_photo2 {
  0%, 66.6% {
    background: url("../image/offer/offer-photo2.png") center center/contain no-repeat;
  }
  66.7%, 100% {
    background: url("../image/offer/offer-photo3.png") center center/contain no-repeat;
  }
}
.lp_wrap .offer .offer_btn {
  position: absolute;
  top: 41.7%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 74.6667%;
  max-width: 560px;
}
.lp_wrap .offer .offer_btn.trigger {
  transition: 0.6s cubic-bezier(0.25, 0.1, 0.45, 1.48);
  transform: scale(0);
  opacity: 0;
}
.lp_wrap .offer .offer_btn.trigger.move {
  transform: scale(1);
  opacity: 1;
}
