@charset "utf-8";
/* CSS Document */
/*初期設定*/
html {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  scroll-behavior: smooth;
}
img, video {
  width: 100%;
}
body {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  font-family: 'Yu Gothic', '游ゴシック', 'YuGothic', sans-serif;
}
.fv {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
.main-title {
  position: absolute;
  width: 90%;
  top: 2%;
  left: 0;
  right: 20px;
  margin: 0 auto;
}
#roulette-section.roulette-wrapper {
  position: relative;
  margin: 0 auto;
}
.roulette_wrap {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
/* 矢印 */
.arrow {
  position: absolute;
  top: 26%;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: auto;
  z-index: 2;
}
/* ルーレット本体 */
.roulette {
  position: absolute;
  top: 28%;
  left: 0;
  right: 0;
  width: 65%;
  height: auto;
  display: block;
  margin: 0 auto;
  z-index: 1;
  animation: spin 4s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* ボタン */
.cta-btn {
  cursor: pointer;
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  width: 90%;
  margin: 0 auto;
}
/* ポップアップ */
.popup {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column; /* ← これを追加 */
  z-index: 3;
}

.popup-img,.popup-btn {
  height: auto;
  margin-bottom: 20px; /* ボタンとの間に余白を追加 */
}
.popup-img {
  width: 80%;
}
.popup-btn{
  width: 100%;
}
/*フッター*/
footer {
  padding: 5% 0 0 0;
  color: #ffffff;
  background: #000000;
}
footer a {
  color: #ffffff;
  text-decoration: underline;
  font-size: 14px;
}
.nav {
  text-align: center;
  padding: 0 20px 0 0;
}
.copy {
  text-align: center;
  padding: 7px 0 10px 0;
  color: #ffffff;
  font-size: 11px;
}
/*利用規約*/
.container {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  font-size: 16px;
  background: #000;
}
.pp {
  user-select: none;
  color: #ffffff;
  padding: 5%;
  text-align: left;
}
.pp h2 {
  margin-top: 10%;
  padding: 3% 4%;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
.pp p {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 3%;
}
.terms_footer {
  text-align: center;
  font-size: 14px;
  background: #000000;
}
footer small {
  display: block;
  padding: 2% 4%;
  font-size: 62%;
  background: #000000;
}
.pp .policy p {
  font-size: 16px;
}
.pp .policy h2 {
  font-size: 20px;
}
/**アニメーション**/
.pulsate-bck {
  -webkit-animation: pulsate-bck .5s ease-in-out infinite both;
  animation: pulsate-bck .5s ease-in-out infinite both
}
@-webkit-keyframes pulsate-bck {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
  50% {
    -webkit-transform: scale(.9);
    transform: scale(.9)
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}
@keyframes pulsate-bck {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
  50% {
    -webkit-transform: scale(.9);
    transform: scale(.9)
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}
/* 拡大 */
.zoomIn {
  animation-name: zoomInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes zoomInAnime {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}