@charset "utf-8";

/*========= LoadingのためのCSS ===============*/
#splash {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #fff;
    text-align: center;
}

/* Loading画像中央配置　*/
#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo svg {
    width: 31.25vw;
}

@media screen and (max-width: 768px) {
    #splash_logo svg {
        width: 83.25vw;
    }
}

#mask path {
    fill-opacity: 0;
    transition: fill-opacity .8s;
    fill: none;
    stroke: #333;
}


#mask.done path {
    fill: #333;
    fill-opacity: 1;
    stroke: none;
}

#splash.is-active {
    opacity: 0;
    visibility: hidden;
}

/* コンテンツフェードイン用のCSS */
.slide-bottom {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.3s 0s ease-out;
}