* {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-content {
  width: 100%;
  max-width: 750px;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}

img {
  height: auto;
  vertical-align: bottom;
}

.lp-img {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
}

.cta-box {
  position: relative;
}

.cta-box .cta-btn img {
  position: absolute;
  top: 10%;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  padding: 0 8% 0;
}

.floating {
  position: fixed;
  z-index: 1;
  bottom: 1.5%;
  right: 2%;
  width: 45%;
  transition:
    opacity .3s ease,
    visibility .3s ease;
  opacity: 0;
  visibility: hidden;
}

@media screen and (min-width: 600px) {
  .floating {
    width: 20%;
    bottom: 20px;
    right: 20px;
  }
}

.floating.is-visible {
  opacity: 1;
  visibility: visible;
}

.active {
  opacity: 1;
  visibility: visible;
}

.tradelaw {
  margin: 20px 0 100px;
  font-size: 12px;
}

.tradelaw a {
  color: #aaa;
  text-decoration: none;
}


.countdown {
  font-weight: bold;
  background: #fff729;
  padding: 10px 0;
}

.countdown .timer {
  font-size: 14px;
  color: #8C5917;
  margin: 0;
  padding: 0;
}

.countdown #hour,
.countdown #min,
.countdown #sec {
  color: #EC0809;
  font-size: 34px;
  margin: 0 2px;
  padding: 0;
  line-height: 100%;
}

/*
 * Btn Bounce
*/
.btn_bounce {
  animation: beat 1.5s infinite;
  max-width: 100% !important;
  display: block;
  margin: 0 auto;
}

@keyframes beat {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1);
  }

  60% {
    transform: scale(1.05);
  }

  70% {
    transform: scale(1);
  }

  80% {
    transform: scale(1.05);
  }

  100% {
    -webkit-transform: scale(1);
  }
}