 /* モーダルの基本設定 */
 .modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.4);
     z-index: 999;
 }

 .modal-content {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 400px;
     height: 250px;
     background-color: #fff;
     border: 5px solid #008040;
     border-radius: 10px;
     display: flex;
     align-items: top;
     justify-content: center;
 }

 .modal-text {
     position: absolute;
     text-align: center;
     top: 30px;
     margin-bottom: 10px;
 }

 .modal-text>p {
     font-size: 0.9rem;
     font-weight: 300;
     margin: 10px;
 }

 /* モーダル内のyesnoのボタン */
 .in-modal-button {
     position: absolute;
     bottom: 10%;
     width: 120px;
     height: 50px;
     padding: 10px;
     font-size: 1.2rem;
     color: aliceblue;
     border-radius: 20px;
     border: none;
 }

 #js-yes-modal {
     left: 10%;
     background-color: rgb(3, 173, 216);
 }


 #js-no-modal {
     right: 10%;
     background-color: #ee9105;
 }

 /* モーダル閉じるボタン*/
 #closeModal {
     position: absolute;
     top: 5px;
     right: 10px;
     font-size: 1.5rem;
     background: #fff;
     border: none;
 }

 #js-yes-modal:hover,
 #js-no-modal:hover,
 #closeModal:hover {
     cursor: pointer;
 }