/*————————————————————————
modal
 ————————————————————————*/

/* 全画面＆背景を薄く */
.video-modal {
  position: fixed;
  inset: 0;
  display: none; /* 開く時にJSでflexへ */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.video-modal__content {
  position: relative;
  width: min(90vw, 960px);
  aspect-ratio: 16 / 9;
  background: #000;
  z-index: 1;
}
.video-modal__content iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.video-modal__close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 28px;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
}
