/* styles.css */
.modal-background {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-content {
    position: relative;
    background-color: white;
    padding: 20px;
    width: 75vw;
    /* height: 80vh; */
    overflow: auto; /* 内容が大きい場合にスクロール可能にする */
}

.modal-video {
    width: 100%;
    height: 100%;
}
