@charset "utf-8";
/* CSS Document */


.vsp767 {
  display: none;
}
@media (max-width: 767px) {
  .vsp767 {
    display: block;
  }
  .vpc767 {
    display: none;
  }
}


/* 全体初期化 */
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

/* ▼ ローディング画面 ▼ */
#loading-screen {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  z-index: 200;
  transition: opacity 0.6s ease;
}

#loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* ローディングの簡易アニメ */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ▼ 動画コンテナ ▼ */
#video-container {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

#video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ▼ スキップボタン ▼ */
#skip-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 12px 20px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
}

#skip-btn:hover {
  background: rgba(0,0,0,0.8);
}

/* ▼ 本コンテンツ（最初は非表示） ▼ */
.top-page {
  display: none;
}










