/*******************************************************************************
ベース
*******************************************************************************/

* {
  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;
}

/*******************************************************************************
オファー - CTA
*******************************************************************************/

.cta-box {
  position: relative;
}

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

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

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

.cta-box .cta-btn.--all3-3 {
  bottom: 25%;
}

/*******************************************************************************
タブ
*******************************************************************************/

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

.tab li {
  cursor: pointer;
  flex: 1;
}

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

/*******************************************************************************
フローティング
*******************************************************************************/

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

/*******************************************************************************
特商法
*******************************************************************************/

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

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

/*******************************************************************************
ボタンアニメーション
*******************************************************************************/

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