.point td{
    background-color: #fff;
}
.bgy {
    /* background-color: #f2f2a1; */
    /* background-color: #9eceff; */
    background-color: #f8e58c;
}

.modal {
    display: none; /* 初期状態では非表示 */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 背景を半透明に */
    justify-content: center;
    align-items: center;
}

/* モーダルウィンドウの内容 */
.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

/* モーダルを閉じるボタン（×） */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    cursor: pointer;
}

/* モーダル表示時にスクロールを無効にする */
body.modal-open {
    overflow: hidden;
}