.modal {
  display: none; /* 初期状態では非表示 */
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9); /* 背景を暗くして集中させる */
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  /* スマートフォンでの縦向き表示を考慮したサイズ調整 */
  width: 90%;
  max-width: 400px;
  background-color: #000;
  padding: 10px;
  position: relative;
  /* 縦動画のアスペクト比に合わせて調整 */
}

video#verticalVideo {
  width: 100%;
  height: auto;
  display: block;
}

.close-button {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white; /* 背景に合わせて色調整 */
  font-size: 30px;
  cursor: pointer;
  z-index: 2;
}
