@charset "UTF-8";
/* ========================================
  コンテンツ
 ========================================= */
.content {
  margin: 0 auto;
  max-width: 1000px;
}
@media (width < 768px) {
  #container main > .inner {
    padding: 0;
  }
}

/* ========================================
  fixed-btn
 ========================================= */
.fixed-btn {
  width: 250px;
  position: fixed;
  right: 0;
  bottom: 20px;
  z-index: 10;
}

@media (width < 768px) {
  .fixed-btn {
    width: 33.33333vw;
    bottom: 2.66667vw;
  }
}

/* ========================================
  CTA
 ========================================= */
.cta {
  position: relative;
}
.cta .btn-cart {
  position: absolute;
  left: 50%;
  bottom: 120px;
  transform: translateX(-50%);
  width: 898px;
  height: 253px;
  cursor: pointer;
}

@media (width < 768px) {
  .cta .btn-cart {
    bottom: 12vw;
    width: 89.8vw;
    height: 25.3vw;
  }
}

/* ========================================
  エフェクト
 ========================================= */
/*------------------------------------------------------
  光るボタン
------------------------------------------------------*/
.shiny-btn {
  position: relative;
  overflow: hidden;
}
.shiny-btn::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -20%;
  width: 8.4%;
  height: 100%;
  transform: scale(2) rotate(20deg) translate3d(0, 0, 0);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.5) 100%, rgba(255, 255, 255, 0) 0%);
  /* アニメーション */
  -webkit-animation-name: shiny;
  animation-name: shiny;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* アニメーション */
@-webkit-keyframes shiny {
  0% {
    left: -20%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
@keyframes shiny {
  0% {
    left: -20%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

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

@-webkit-keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0);
  }
}

/* ========================================
  VOICE
 ========================================= */
.voice {
  position: relative;
}
.voice .voice-wrap {
  position: absolute;
  bottom: 240px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  width: 94%;
  overflow: hidden;
}
.voice .swiper-slide {
  text-align: center;
}
.voice .swiper-button-next-voice,
.voice .swiper-button-prev-voice {
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 90px;
  height: 86px;
  background-size: 90px 86px;
}
.voice .swiper-button-next-voice {
  background-image: url(../img/voice/icon-next-voice.png);
  right: 0;
}
.voice .swiper-button-prev-voice {
  background-image: url(../img/voice/icon-prev-voice.png);
  left: 0;
}
.voice .swiper-button-next:after,
.voice .swiper-button-prev:after {
  display: none;
}

.voice-wrap .swiper-slide img {
  max-width: 800px;
}

@media (width < 768px) {
  .voice .voice-wrap {
    bottom: 20vw;
  }
  .voice .swiper-button-next-voice,
  .voice .swiper-button-prev-voice {
    width: 50px;
    height: 46px;
    background-size: 50px 46px;
  }
  .swiper-container {
    width: 90%;
  }
}

/* ========================================
  注意事項
 ========================================= */
.attention {
  margin-top: 40px;
  padding: 40px;
  background-color: #EDE6E7;
}
.attention__heading {
  margin: 0 0 1em;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
.attention__text {
  line-height: 1.7;
}
.attention__text a {
  color: #B9647B;
}
.attention__text p + p {
  margin-top: 1em;
}
.attention__text ul {
  margin-bottom: 1em;
}
.attention__text ul li {
  padding: 0.5em 1em;
}
.attention__text ul li:not(:last-of-type) {
  border-bottom: 1px dashed #595757;
}
.attention__text ul li::before {
  content: "・";
  display: inline-block;
  text-indent: -1em;
}

@media (width < 820px) {
  .attention {
    margin: 10.67vw 5.4vw 0;
    padding: 8vw 5.33vw;
  }
  .attention__heading {
    margin: 0 0 0.5em;
    font-size: 2.4rem;
  }
}