/* ローディング */

#splash {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #ffffff;
    text-align: center;
    color: #333;
}

#splash_logo {
    position: absolute;
    top: 50%;
    display: flex;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    font-size: 25px;
}

#splash_logo img {
    width: 30px;
    height: 30px;
    margin: 0 10px 0 0;
}

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

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

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

@media screen and (max-width:820px) {
    #splash_logo {

        width: fit-content;
        font-size: 22px;
        width: 300px;
        justify-content: center;
    }

    #splash_logo img {
        width: 27px;
        height: 27px;
    }

}

/* TOP VIEW */

#top {
    width: 100%;
    height: 110vh;
    background-size: cover;
    position: relative;
    background-position: bottom;
    z-index: 1;
}

.mak {
    width: 100%;
    height: 100%;
    background: linear-gradient(#0000005c, #0000005c, #fff);
}


#top .t_title {
    position: absolute;
    margin: auto;
    bottom: 20%;
    left: 5%;
    font-size: 20px;
    letter-spacing: 4px;
    line-height: 40px;
    z-index: 10;
    align-items: center;
}

#top .t_title h2 {
    font-size: 50px;
    letter-spacing: 6px;
    line-height: 40px;
    text-shadow: 1px 1px 2px rgb(141, 141, 141);
    margin: 30px 0;
    font-weight: bold;
}

@media screen and (max-width:820px) {

    #top .t_title {
        text-align: center;
        margin: auto;
        top: 52%;
        left: 50%;
        transform: translate(-50%, -50%);
        /* font-size: 15px; */
        /* letter-spacing: 4px; */
        /* line-height: 40px; */
        letter-spacing: 1px;
        line-height: 30px;
        width: 95%;
        font-size: 13px;
    }

    #top .t_title h2 {
        font-size: 25px;
        letter-spacing: 1px;
        line-height: 15px;
    }
}