/* スタイルはモーダルが非表示になるように設定 */
/* モーダルのスタイル */
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 600px;
  height: 80%;
  max-height: 400px;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
}

/* 動画のスタイル */
.modal video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* モーダルが表示される時には表示されるように設定 */
.modal.active {
  display: block;
}
