.modal-mask {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    display: table;
    transition: opacity .3s ease;
}
  
.modal-wrapper {
    display: table-cell;
    vertical-align: middle;
}
  
.modal-container {
    width: 500px;
    height: 180px;
    margin: 0px auto;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
    transition: all .3s ease;
    font-family: "Noto Sans JP", Helvetica;
    color: #333;
    max-height: 800px;
    overflow-y: auto;
}

.modal-body{
    text-align: center;
    padding: 20px 20px 10px 20px;
    height: 120px;
    align-content: center;
}
  
.btn-info{
    display: inline-block; /* ボタンを横並びにする */
    border: none; /* 枠線をなくす */
    border-radius: 5px; /* 角丸をつける */
    padding: 7px 18px; /* ボタンの内側の余白 */
    margin: 5px; /* ボタン同士の余白 */
    background-color:  rgba(0, 180, 222, 1) ;
    color: white; /* ボタンの文字色 */
    text-align: center; /* ボタンのテキストを中央揃えにする */
    text-decoration: none; /* テキストに下線をつけない */
    font-size: 15px; /* テキストのフォントサイズ */
    cursor: pointer; /* マウスポインタを変更する */
}

.btn-info:hover{
    background-color:  rgba(0, 117, 220, 1) ;
}

@media (max-width: 600px) {
        .modal-container {
            width: 90% !important;
        }
}