  /* モーダルの基本スタイル */
  #modal {
    display: none; /* 初期状態は非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 6, 6, 0.9); /* 背景の透過率 */
    z-index: 9999; /* 最前面表示 */
  }

  /* iframeのスタイル */
  #modal iframe {
    width: 100%;
    height: 100%;
    border: none;
    margin-top: 7%;
  }

  /* 閉じるボタンのスタイル */
  #ModalCloseBtn {
    position: absolute;
    top: 2px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 10000; /* iframeより前に表示 */
  }
