/* 各シーン間の分離を確実にするためのオーバーレイ */
.scene-separator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,1);
    z-index: 999;
    pointer-events: none;    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.scene-separator.active {
    opacity: 1;
}
