/* ポップアップ全体 */
.popupMov {
  display: none;
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;

  align-items: center;
  justify-content: center;
}

/* 表示状態 */
.popupMov.popActive {
  display: flex;
}

/* 背景の半透明レイヤー */
.popupMov .shade {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

/* ポップアップの中央ボックス */
.popupMov .popInBox {
    max-width: 1000px;
    width: 90%;
    aspect-ratio: 16 / 9;
    position: relative;
}

/* YouTube iframeが入るコンテナ */
.popupMov .popInBox iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* 閉じるボタン */
.popupMov .close {
    width: 40px;
    height: 40px;
    position: fixed;
    right: 30px;
    top: 30px;
    cursor: pointer;
    transition: 0.3s ease;
    transform: rotate(45deg);
    z-index: 2;
}
.popupMov .close::before,
.popupMov .close::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 2px;
    background: #FFF;
    position: absolute;
    left: 50%;
    top: 50%;
}
.popupMov .close::before {
	transform: translate(-50%,-50%);
}
.popupMov .close::after {
    transform: translate(-50%,-50%) rotate(90deg);
}

/* スマホ対応 */
@media screen and (max-width: 960px) {
  .popupMov .popInBox {
    width: 95%;
  }
  .popupMov .close {
    width: 30px;
    height: 30px;
    right: 20px;
    top: 20px;
  }
}
