@charset "utf-8";
/* CSS Document */

/* スプラッシュ画面
-----------------------------------------*/
#login { display: none; }

.WelcomeLayer {
    position: relative;
    width: 100%;
    height: 100vh;
    display: none; /*デフォルト非表示*/
    background: #fff;
    z-index: 2019;
}
.Welcome {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}
.Welcome-Logo {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}
@media screen and (min-width: 768px) {
    .Welcome {
        width: 80%;
    }
    .Welcome-Logo {
        max-width: 500px; /*最大幅指定*/
    }
}
