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

.lp-content {
  width: 100%;
  max-width: 1000px;
  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 {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* .header {
  position: relative;
  z-index: 1;
  margin-bottom: -86px;
}

@media (max-width: 1000px) {
  .header {
    margin-bottom: -8.6vw;
  }
} */

.tab {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.tab li {
  cursor: pointer;
}

.tab-contents>div:not([data-tab-contents-active]) {
  display: none;
}

.cta-box {
  position: relative;
}

.cta-box .cta-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 79%;
  padding: 0;
}

.cta-box .cta-btn.--1,
.cta-box .cta-btn.--2,
.cta-box .cta-btn.--3 {
  bottom: 3%;
}

.cta-box .cta-btn.--4 {
  bottom: 15%;
}

.floating {
  position: fixed;
  z-index: 1;
  bottom: 20px;
  right: 20px;
  width: clamp(180px, 20%, 280px);
  transition:
    opacity .3s ease,
    visibility .3s ease;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 1000px) {
  .floating {
    bottom: 1.5%;
    right: 2%;
    width: clamp(auto, 35%, 180px);
  }
}

.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;
}

/*
 * 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);
  }
}