/* モーダルの基本スタイル */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
  }
  
  /* モーダル内の画像 */
  .modal-content img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
  }
  
  /* クリックできる画像 */
  .img img {
    cursor: pointer;
  }
  