@charset "UTF-8";
/* CSS Document */
.mt10 {
  margin-top: 10%;
}

.wrap {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  position: relative;
}

@media screen and (min-width: 1024px) { /* 1024px以上 */
  .wrap {
    width: 750px;
  }
}
.overlaid {
  position: relative;
}

.offer_btn {
  position: absolute;
  bottom: 2%;
  right: 4%;
  width: 35%;
  animation: updown 1.5s ease 0.5s infinite;
}
.offer_btn:hover {
  opacity: 0.8;
  transition: all 0.5s ease 0s;
}

.special {
  margin: 0 auto;
  width: 100%;
}

.updwn {
  animation-name: updwn1; /* アニメーション名の指定 */
  animation-delay: 0s; /* アニメーションの開始時間指定 */
  animation-duration: 1.5s; /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in-out; /* アニメーションの動き指定（徐々に早く）*/
  animation-iteration-count: infinite;
}

@keyframes updwn1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}
/*-------------------------------------------
 footer
-----------------------------------------------*/
.pay {
  position: relative;
}

.gmo {
  position: absolute;
  top: 30%;
  text-align: center;
  width: 100%;
}
.gmo img {
  width: 86%;
}