/* モーダル全体のスタイル */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 600px;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* スクロール可能なコンテンツ部分 */
.modal-content {
  max-height: 24rem; /* コンテンツの最大高さ */
  overflow-y: auto;  /* スクロール可能にする */
}

/* 動画コンテナのスタイル */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* モーダルが非表示の場合のスタイル */
.hidden {
  display: none;
}

/* ボタンスタイル */
.btn-primary {
  background-color: #1a73e8;
  color: rgb(255, 255, 255);
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #1558c4;
}
