/* image modal */
.modal {
    display: none;
    z-index: 500;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
}
.modalBox {
    position: relative;
    text-align: center;
    top : 50%;
    left : 50%;
    position : sticky;
    width: 100%;        /* 모달 너비에 꽉 차게 */
    height: 100%;       /* 모달 높이에 꽉 차게 */
    display: block;     /* 이미지 아래 여백 방지 */
}
/* image modal end */

