/* ======== ポップアップ ======== */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none; /* 初期は非表示 */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* ポップアップ内容 */
.popup-content {
  position: relative;
  background-color: #000;
  padding: 1rem;
  border-radius: 10px;
  max-width: 800px;
  width: 90%;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  animation: fadeIn 0.8s ease;
}

/* 閉じるボタン */
.close-button {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: #ff3366;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  width: 35px;
  height: 35px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.close-button:hover {
  background-color: #ff6699;
}

/* 動画サイズ */
#intro-video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* フェードインアニメーション */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
