@charset 'utf-8';

/* ======================================== 
　　mv アニメーション　水玉
======================================== */


/* 絶対位置、中央に位置、はみ出たのは見えなくする */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* シャッフルすると画面がスクロールできてしまうのではみ出た部分を非表示 */
    /* width: 100%;
    height: auto;
    position: absolute; */




}

/* 位置を決め、丸の大きさ、色、影 */
.block {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-image: linear-gradient(-20deg, #e9defa 0%, #fbfcdb 100%);
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.2);

    z-index: -20;
}


/* はみ出た要素を非表示 */
html {
    overflow-x: hidden;
}


/* h1の光るアニメーション */
.eachTextAnime span {
    opacity: 0;
}

.eachTextAnime.appeartext span {
    animation: text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on {
    0% {
        opacity: 0;
        text-shadow: 0 0 0 #fff, 0 0 0 #fff;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 10px #fff, 0 0 15px #fff;
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 0 #fff, 0 0 0 #fff;
    }
}


/* 下から */

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


