/* TOP　スタジオ紹介モーダル動画表示用CSS */
@charset "UTF-8";
.modal {
  display: none;
  position: fixed;
  z-index: 9990;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  background-color: #000;
  padding: 40px 10px;
  border-radius: 8px;
  box-sizing: border-box;
}

.modal-content video {
  width: 100%;
  height: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}

.close-btn {
  color: #fff;
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}

.close-btn:hover {
  color: #ccc;
}