/*--------------------------------------
       モーダルウィンドウ用CSS
----------------------------------------*/
.modalWindow{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.modalCommentArea{
    position: fixed;
    width: 50%;
    height: 50%;
    top: 25%;
    left: -50%;
    text-align: center;
}
.modalComment{
    background-color: white;
    height: 25%;
    position: relative;
    top: 40%;
    display: flex;
    align-items: center;
    justify-content: center;  
    font-weight: bold;
    font-size: 250%;
    border-radius: 10px;
}
.modalCommentBlack{
    background-color: black;
    color: white;
}

@media(max-width:640px){
    .modalComment{
        font-size: 200%;
    }
}
@media(max-width:400px){
    .modalComment{
        width: 100%;
        font-size: 150%;
    }
}