

/* 動画モーダル (modal.js) */
#modal-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

#modal-video.close {
    display: none;
}

#modal-video #player {
    width: 90%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    cursor: auto;
}

#modal-video #player iframe {
    width: 100%;
    height: 100%;
}