#splash {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s;
    background: #fff;
    z-index: 9999;
}

#splash::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    background: url(assets/cover/ps2_v2.png);
    filter: blur(3px);
    opacity: 0.2;
}

#splash img {
    position: relative;
    z-index: 1;
    width: calc(100vw - 32px);
    max-width: 1000px;
}

#splash.hide {
    opacity: 0;
    pointer-events: none;
}

body.loading {
    overflow: hidden;
}

#splash {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px; /* ロゴとバーの間隔 */
}

#progress {
    position: absolute;
    bottom: 50px;
    width: 100%;
    height: 14px;
    background: rgba(0,0,0,0.2);
    overflow: hidden;
}

#bar {
    width: 0%;
    height: 100%;
    background: #3ea6ff;
    transition: width .15s linear;
}