/* ローディング画面全体 */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #F0F4FF;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 2s ease;
    overflow: hidden;
}

.scissors-icon {
    width: 60%;
    animation: rotateFade 2s infinite;
}

@keyframes rotateFade {
    0% {
        transform: rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: rotate(360deg);
        opacity: 0.3;
    }
}

.loading-count {
    position: absolute;
    font-size: 4rem;
    color: #7b7b7b;
    font-weight: bold;
    text-align: center;
}