.temp-fv {
  font-size: 54px;
  width: 100%;
  height: 100vh;
}
.temp-fv-container {
  display: flex;
  flex-direction: column; /* 要素を縦方向に配置に変更 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  margin: 0;
  border: none;
  color: var(--white);
  text-align: center;
  justify-content: center;
  align-items: center;
  text-shadow: var(--black-shadow) 0px 4px 4px;
}
.temp-fv-container h1 {
  font-size: 1em;
  line-height: 2;
}
.temp-fv-container p {
  font-size: 0.4em;
  line-height: 2;
}
.temp-fv-container img {
  width: 200px;
  height: auto;
  padding: 20px 0;
}
.temp-fv-container .temp-slot {
  color: var(--gold-deep);
  position: relative;
  width: 700px; /* 幅を調整 */
  height: 120px; /* 高さを調整 */
  overflow: hidden; /* はみ出した部分を非表示に */
}
.temp-slot .temp-slot-txt {
  font-size: 1.5em;
  padding-bottom: 50px;
  position: absolute;
  width: 100%; /* 幅を100%に */
  top: 50%; /* 垂直中央に配置 */
  transform: translateY(-50%); /* 中央に表示するための調整 */
  opacity: 0; /* 初期状態は透明 */
  animation: roulette-animation 16.5s infinite;
}
.temp-slot .temp-slot-txt:nth-child(1) {
  animation-delay: 0s;
}
.temp-slot .temp-slot-txt:nth-child(2) {
  animation-delay: 1.5s;
}
.temp-slot .temp-slot-txt:nth-child(3) {
  animation-delay: 3s;
}
.temp-slot .temp-slot-txt:nth-child(4) {
  animation-delay: 4.5s;
}
.temp-slot .temp-slot-txt:nth-child(5) {
  animation-delay: 6s;
}
.temp-slot .temp-slot-txt:nth-child(6) {
  animation-delay: 7.5s;
}
.temp-slot .temp-slot-txt:nth-child(7) {
  animation-delay: 9s;
}
.temp-slot .temp-slot-txt:nth-child(8) {
  animation-delay: 10.5s;
}
.temp-slot .temp-slot-txt:nth-child(9) {
  animation-delay: 12s;
}
.temp-slot .temp-slot-txt:nth-child(10) {
  animation-delay: 13.5s;
}
.temp-slot .temp-slot-txt:nth-child(11) {
  animation-delay: 15s;
}
@keyframes roulette-animation {
  0% {
    top: 100%; /* コンテナの下に隠す */
    opacity: 0;
  }
  2.5% {
    top: 50%; /* コンテナの中央に移動 */
    opacity: 1;
  }
  7.5% {
    top: 50%; /* 中央で表示 */
    opacity: 1;
  }
  10% {
    top: -50%; /* コンテナの上に移動 */
    opacity: 0;
  }
  100% {
    top: -50%; /* コンテナの上に隠す */
    opacity: 0;
  }
}
.temp {
  padding: 50px 20px;
  font-size: 18px;
  font-weight: bold;
}
.temp-gold {
  background: var(--gold-gradient);
  color: var(--white);
  text-shadow: var(--black-shadow) 0px 4px 4px;
}
.temp-black {
  background: var(--black-light);
  color: var(--white);
  text-shadow: var(--black-shadow) 0px 4px 4px;
}
.temp .about-container {
  text-align: center;
  line-height: 2;
  font-size: 36px;
  font-weight: initial;
}
.temp .about-container p {
  font-size: 0.5em;
}
.temp .about-container span {
  font-weight: 400;
  font-size: 0.9em;
}
.temp .about-container span a {
  color: var(--white);
  background: var(--black);
  border-radius: 20px;
  padding: 0 10px 5px;
}
.temp .about-container .temp-span {
  font-size: 1em;
  font-weight: bold;
  padding: 30px 0 0;
}
.temp-container {
  justify-content: center;
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}
.temp-container p {
  font-size: 1em;
  line-height: 2;
}
.temp-card {
  position: relative;
  text-decoration: none;
  outline: none;
  overflow: hidden;
  text-decoration: none;
  border: 5px solid var(--white);
  border-radius: 10px;
  padding: 10px;
  justify-content: center;
  margin: 20px auto;
  max-width: 400px;
  text-align: center;
  box-shadow: var(--black-shadow) 0px 10px 10px;
  background-size: cover;
  background-position: center;
}
.temp-card span {
  font-size: 2em;
  padding: 0 10px;
}
.temp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-35deg);
}
.temp-card:hover {
  color: #fff;
}
.temp-card:hover::before {
  animation: shine 0.7s;
}
.temp-faq {
  color: var(--black);
  text-shadow: none;
}
.temp-faq p,
.temp-faq .faq-txt {
  font-size: 1.1em;
}
.temp-faq p {
  padding: 18px 40px 18px 30px;
}
.temp-faq .faq-txt {
  padding: 15px 20px 15px 10px;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}

@media (max-width: 750px) {
  .temp-fv {
    font-size: 36px;
    width: 100%;
  }
  .temp-fv-container img {
    width: 150px;
  }
  .temp-fv-container .temp-slot {
    width: 95%; /* 幅を調整 */
  }
  .temp .about-container {
    text-align: left;
    font-size: 28px;
    padding: 0 5px;
  }
  .temp .about-container .temp-span {
    padding: 20px 0 0;
  }
  .temp-faq p {
    padding: 18px 20px;
  }
  .temp-faq .faq-txt {
    padding: 15px 0;
  }
}
