body{
    margin: 0;
    position: relative;
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    66.66% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.loading {
    width: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    animation: fadeOut 2.5s ease-in-out forwards; /* アニメーションを適用、2.5秒間かかる */
    z-index: 999999;
}
.loadingsub {
    width: 100%;
    position: absolute;
    background-color: #00573E;
    height: 100%;
    animation: fadeOut 3.5s ease-in-out forwards; /* アニメーションを適用、2.5秒間かかる */
    z-index: 99999;
}

.logo {
    display: block;
    margin: 0 auto;
}

.iceeat {
    margin-top:  20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 104px;
}

.iceeat img{
    max-width: initial;
}

.icecup {
    position: absolute;
    right: -13px;
}

@keyframes rotateSpoon {
    0% {
        transform: rotate(-115deg);

    }
    50% {
        transform: rotate(-165deg);

    }
    100% {
        transform: rotate(-115deg);

    }
}

.spoon {
    position: absolute;
    left: -22px;
    animation: rotateSpoon 1.2s ease-in-out infinite; /* 1.2秒ごとにアニメーションを繰り返し */
}

.loadtext {
    font-family: "filosofia", serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    margin-top: 20px;
    color: #C6B971;
    font-size: 20px;
    /* letter-spacing: 1px; */
}


@media screen and (max-width: 500px) {
    .logo{
        width:70%;
    }
    .loadtext{
        font-size: 15px;
    }
}