/* モーダル コンテンツエリア */

.modal-contents {
    display: none;
    margin: 0;
    padding: 20px;
    background-color: #ffffff;
    /* color: #666; */
    position: fixed;
    z-index: 1041;
    border-radius: 4px;
    overflow: auto;
    max-width: 90%;
    width: 600px; /* PCのときは600px、スマホでは90% */
}


/* モーダル 背景エリア */

.modal-bg {
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
}