@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}

/* CSS Document */
.fv-bg {
  background-image: url("../images/_fv/fv-bg@2x.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
background-size: contain;
background-color: #69c8f4; }

.fv .main-a {
  position: relative;
  z-index: 10;
  /* margin-top: -10%; */ }
.fv .video-area {
  position: relative;
  margin-top: -5%;
  z-index: 2; }
  .fv .video-area .video {
    position: absolute;
    left: 13%;
    bottom: 34%;
    width: 74%; }
    .fv .video-area .video video {
      width: 100%;
      height: auto;
      margin: auto;
      border-radius: 0.5em; }
.fv .price {
  display: block;
  margin-top: -10%; }

#shop_area .region a {
  pointer-events: none !important; }


/*カウントダウンタイマー*/
.p-mv__countdown {
  background-color: #ffff64;
  padding: 0rem 0 0.1rem;
  text-align: center
}

.p-mv__countdown-lead {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: .15em
}

.p-mv__countdown-lead span {
  font-size: 1.8rem
}

.p-mv__countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 520px;
  height: 100px;
  margin: 0 auto
}

.p-mv__countdown-block {
  color: #333;
  display: flex;
  align-items: baseline;
  font-family: Noto Sans CJK JP , 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック, "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 600
}

.p-mv__countdown-number {
  font-size: 3.7rem;
  background: #fff;
  padding: 4px;
  border-radius: 5px;
  color: #00b0ec;
  margin: 0 3px;
  min-width: 75px;
  box-shadow: 2px 2px 0px 1px rgba(0, 0, 255, 0.1);
}

@media screen and (max-width: 640px) {

  .p-mv__countdown {
    padding: 0rem 0 .5rem
}

.p-mv__countdown-lead {
    font-size: 1.7rem;
    letter-spacing: .15em
}

.p-mv__countdown-lead span {
    font-size: 1.4rem
}

.p-mv__countdown-image {
    width: 60%
}

.p-mv__countdown-timer {
    width: 95%;
    height: 55px
}

.p-mv__countdown-number {
    font-size: 7.2vw;
    min-width: 35px
}

.p-mv__countdown .unit {
    font-size: 4vw
}
}


/*POPUP*/
.bg_onetime_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.onetime_popup {
  padding: 20px;
  border-radius: 8px;
  max-width: 640px;
  width: 100%;
  overflow: auto;
  position: relative;
}
onetime_popup img{
  width: 100%;
  max-width: 100%;

}

.onetime_popup_title_close {
  position: absolute;
  top: 25px;
  right: 10px;
  cursor: pointer;
}

/* オリジナルスタイル */
body.open_popup {
  overflow: hidden;
}

.bg_onetime_popup {
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

body.open_popup .bg_onetime_popup {
  opacity: 1;
  visibility: visible;
}

.onetime_popup_title {
  padding: 1em 80px;
  background-color: #3388dd;
  color: #fff;
  font-size: 32px;
  text-align: center;
  line-height: 1.5;
}

.onetime_popup_title_close {
transform: translateY(-50%);
color: gray  ;
}

/**
 * ----------------------------------------
 * animation bounce-top
 * ----------------------------------------
 */
 .bounce-top {
	-webkit-animation: bounce-top 1.5s infinite both;
	        animation: bounce-top 1.5s infinite both;
}

 @-webkit-keyframes bounce-top {
  0% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-24px);
            transform: translateY(-24px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  65% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  82% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  93% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  25%,
  55%,
  75%,
  87% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
}
@keyframes bounce-top {
  0% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-24px);
            transform: translateY(-24px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  65% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  82% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  93% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  25%,
  55%,
  75%,
  87% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
}





.zoom-in {
  animation: zoom-in 1.5s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes zoom-in {
  0% {
    transform: translateY(40px) scale(0.6);
    opacity: 0;
  }

  80% {
    transform: translateY(0) scale(1.0);
  }

  70%,
  100% {
    opacity: 1;
  }
}

@keyframes shiny {
  0% {
      transform: scale(0) rotate(25deg);
      opacity: 0;
  }

  50% {
      transform: scale(1) rotate(25deg);
      opacity: 1;
  }

  100% {
      transform: scale(50) rotate(25deg);
      opacity: 0;
  }
}

#app {
  width: 400px;
  margin: 40px auto;
  padding: 28px;
  line-height: 1.5;
  border: 1px solid #ffffff;
  border-radius: 5px;
  background-color: transparent;
  box-shadow: 2px 2px 5px 0px rgba(200,200,200,1);
}



/* ボタンをキラッとさせる */

.shiny-btn {
  display: block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

.shiny-btn::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
  /* 【変更部分】inifiniteによりずっと続ける */
  -webkit-animation: shine 1s infinite;
          animation: shine 1s infinite;
}
@-webkit-keyframes shine {
  100% {
    left: 100%;
  }
}

@keyframes shine {
  100% {
    left: 100%;
  }
}
