  
  /* モーダルのコンテンツ */
  .modal-content {
    background-color: #fefefe;
    margin: auto; /* 画面中央に配置 */
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    height: 20%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px; /* テキストのサイズを変更 */
  }
  
  /* モーダルの閉じるボタン */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }