@charset "utf-8";
/*モーダル（ポップアップ）に関するスタイル*/
/* モーダルの背景 */
#modal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.5s ease-out;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
}
#modal-bg.overlay-on {
    visibility: visible;
    opacity: 1;
}

/* モーダルのコンテンツボックス */
#message_box {
    background-color: #fff;
    border-radius: 0.5rem;
    text-align: center;
    padding: 20px;
}