@charset "utf-8";

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background: #F7F4ED;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Loading画像中央配置　*/
#splash_logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

#splash p {
    color: #000;
    line-height: 1em;
    margin-top: 30%;
}

@media(max-width:1025px){
    #splash_logo img {
        width: 35vw;
    }
}