/* ボタンスタイリング */
  #modal__btn {
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-align: center;
  }
  #modal__btn:hover {
    opacity: .8;
  }
  
  /* モーダル関係スタイリング */
  #modal {
    background: #fff;
    display: none;
    padding: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 50vh; /*好きなサイズに変更*/
    width: 80%; /*好きなサイズに変更*/
    z-index: 1;
  }
  .modal__inner {
    height: 100%;
    overflow: scroll;
  }
  #close__btn {
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translate(-50%, 100%);
    text-align: center;
    line-height: 40px;
    height: 40px;
    width: 40px;
  }
  #close__btn:hover {
    opacity: .8;
  }
  #overlay {
    background: rgba(0,0,0,.7);
    display: none;
    cursor: pointer;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  