.modal-wrapper {
    display: none; /* 最初は非表示 */
    position: fixed; /* 画面全体に固定 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* 半透明の背景 */
    z-index: 9000; /* 他の要素より前面に表示 */
  }
  
  .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 中央に配置 */
    background-color: transparent;
    padding: 20px;
    width: 100%; /* モーダルの幅 */
    max-width: 750px; /* 最大幅 */
  }
  
  .close-button {
    color: #FFF;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close-button:hover,
  .close-button:focus {
    opacity: .75;
    text-decoration: none;
    cursor: pointer;
  }