body{
  font-family: 'Yu Gothic', 'Meiryo', sans-serif;
}

img{
  width: 100%;
  display: block;
}

.clearfix::after{
  content: '';
  display: block;
  clear: both;
}

.wrapper{
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.wrapper input {
  width: 100%;
  display: block;
}

/* CTA内『このセットがなんと』部(矢印上下) */
.cta_arrow {
  position: relative;
}
.cta_arrow p {
  position: absolute;
  top: 10%;
  left: 3.5%;
  transform: translate(-50%,-50%);
  width: min(calc(698 /750 * 100vw), 698px);
}
/* 矢印上下アニメーション */
.arrow_updown{
  animation-name: UpDown;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}
@keyframes UpDown{
  0%{
    transform: translateY(0);
  }
  100%{
    transform: translateY(30px);
  }
}

/* CTA内『美容液が実質無料 今すぐ購入する』部ボタン(拡大・縮小) */
.cta_btn {  
  position: relative;
}
.cta_btn .wrapScaling {
  position: absolute;
  top: 0;
  left: 4%;
  transform: translate(-50%,-50%);
  width: min(calc(703 /750 * 100vw), 703px);
}
/* 拡大・縮小アニメーション */
.btn_scale{
  animation-name: Scaling;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}
@keyframes Scaling{
  0%{
    transform: scale(0.95,0.95);
  }
  50%{
    transform: scale(1,1);
  }
  100%{
    transform: scale(0.95,0.95);
  }
}

/* CTA内『定期購入について』『返品について』部 */
.cta_modal {
  position: relative;
}
.cta_modal p {
  display: block;
}
.cta_modal p a {
  position: absolute;
  font-size: min(calc(30 /750 * 100vw), 30px);
  font-weight: bold;
  color: #5b5b58;
  left: 50%;
  transform: translateX(-50%);
}
.cta_modal p:nth-child(2) a {
  bottom: 57%;
}
.cta_modal p:nth-child(3) a {
  bottom: 32%;
}

video{
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  display: block;
}

.accordion__item {
  margin-bottom: 10px;
}

.accordion__q {
  cursor: pointer;
}

.header-image, .content-image {
  display: block;
  width: 100%;
}

.accordion__a {
  display: none; /* 初期状態で非表示 */
}

.header-image, .content-image {
  max-width: 100%;
  height: auto;
}

.modal_content{
  position: relative;
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.modal_content .close-btn{
  position: absolute;
  width: 27.2px;
  height: 27.2px;
  top: 5%;
  right: 13%;
  z-index: 1046;
}
@media screen and (min-width:751px) {
  .modal_content .close-btn{
    left: 4%;
  }
}

.modal_content .modal-img{
  max-height: 400px;
  overflow: scroll;
}

.mfp-close {
  opacity: 1;
}

.footer .footer__text{
  font-size: min(calc(14 /750 * 100vw), 14px);
  font-weight: normal;
}

.footer .footer__text a{
  color: #c26da2;
}

/* tab */
.tab-panel {
  margin-top: min(38px, 38 / 750 * 100vw);
}
.tab-panel .tab-group {
  display: flex;
  margin: 0 min(20px, 20 / 750 * 100vw) 0 min(18px, 18 / 750 * 100vw);
}
.tab-panel .tab-group .tab {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-grow: 1;
  list-style: none;
  padding-right: min(8px, 8 / 750 * 100vw);
  cursor: pointer;
}
.tab-panel .tab-group .tab:last-child {
  padding-right: 0;
}
.tab-panel .tab-group .tab.is-active {
  color: #ffffff;
  transition: all 0.4s ease-out;
}

.tab-panel .panel-group {
  height: auto;
  overflow: auto;
}
.tab-panel .panel {
  display: none;
}
.tab-panel .panel.is-show {
  display: block;
}

.tab .tab-image {
  width: 100%;
  height: min(194px, 194 / 750* 100vw);
  background-size: cover;
  background-repeat: no-repeat;
}
.tab.is-active .tab-image {
  height: min(207px, 207 / 750* 100vw);
}
.tab.tab-A .tab-image {
  background-image: url('../img/tab_1_off.png');
}
.tab.tab-B .tab-image {
  background-image: url('../img/tab_2_off.png');
}
.tab.tab-C .tab-image {
  background-image: url('../img/tab_3_off.png');
}
.tab.is-active.tab-A .tab-image {
  background-image: url('../img/tab_1_on.png');
}
.tab.is-active.tab-B .tab-image {
  background-image: url('../img/tab_2_on.png');
}
.tab.is-active.tab-C .tab-image {
  background-image: url('../img/tab_3_on.png');
}

/* 動画 */
.movie {
  background-image: url(../img/fv_img.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top center;
  width: 100%;
  max-width: 750px;
  height: min(calc(849 / 750 * 100vw), 849px);
  padding-top: 51.8%;
}