@keyframes moveUpDown {
    0% { transform: translateY(-5px); }
    50% { transform: translateY(15px); }
    100% { transform: translateY(-5px); }
}

/* 페이지 레이아웃 */
.pull-page { width: 100%; height: 100vh; }

/* 스크롤 다운 알림 */
.scroll-down {
    text-align: center;
    position: fixed;
    bottom: 34px;
    left: 50%;
    z-index: 111;
    opacity: 1;
    transform: translateX(-50%);
    transition: opacity 0.4s ease;
}
.scroll-down p {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.scroll-down svg { animation: moveUpDown 2s ease-in-out infinite; }
.none-swiper {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 111;
}
/* /스크롤 다운 알림 */

@media screen and (max-width: 768px) {
    @keyframes moveUpDown {
        0% { transform: translateY(-5px); }
        50% { transform: translateY(10px); }
        100% { transform: translateY(-5px); }
    }

    .scroll-down { bottom: 84px; }
    .scroll-down p { font-size: 1rem; }
    .scroll-down svg { width: 27px; height: 25px; }
}