@import 'https://fonts.googleapis.com/css?family=Poppins:400,500,700';


/********************
animation setting
********************/
@-webkit-keyframes loadingAnim{
    0%{
        width: 0;
    }
    100%{
        width: 100%;
        -webkit-transform: translate(100%);
        transform: translate(100%);
    }
}
@keyframes loadingAnim{
    0%{
        width: 0;
    }
    100%{
        width: 100%;
        -webkit-transform: translate(100%);
        transform: translate(100%);
    }
}
@-webkit-keyframes loadingAnim_text{
    0%{
        opacity: 1;
        color: #cba166;
    }
    50%{
        color: #333;

    }
    100%{
        opacity: .5;
        color: #fff;
    }
}
@keyframes loadingAnim_text{
    0%{
        opacity: 1;
        color: #cba166;
    }
    50%{
        color: #333;
    }
    100%{
        opacity: .5;
        color: #fff;
    }
}



/********************
settings
********************/
::-moz-selection{
    background-color: rgba(0,105,255,.3);
}
::selection{
    background-color: rgba(0,105,255,.3);
}

html #loadingAnim{
    font-family: '游ゴシック',YuGothic,'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','メイリオ',Meiryo,sans-serif;
    font-size: 14px;
    line-height: 1.75;
    position: relative;
}
body #loadingAnim{
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    background-color: #fff;
}

#loadingAnim img,
#loadingAnim iframe,
#loadingAnim object{
    line-height: 1;
    max-width: 100%;
    height: auto;
}

#loadingAnim a{
    text-decoration: none;
    color: #12aaaf;
    outline: none;
}
#loadingAnim a,
#loadingAnim a img{
    transition: all .25s ease-in 0s;
    border: none;
    outline: none;
}
#loadingAnim a button{
    padding: 0;
    border: none;
    background: 0;
}
#loadingAnim a:hover,
#loadingAnim a:active,
a:focus{
    color: #0b676a;
}
a img:hover,
a img:active,
a img:focus{
    opacity: .87;
}



/********************
loading effects
********************/
.loadingAnim{
    position: fixed;
    z-index: 100000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
}
.loadingAnim_line{
    line-height: 1;
    position: fixed;
    z-index: 100000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: inline-block;
    overflow: hidden;
    width: 16em;
    height: 3em;
    margin: auto;
    transition: all .3s cubic-bezier(.785, .135, .15, .86) 0s;
    transition-delay: .6s;
    text-align: center;
}
/*
.loadingAnim_line:after{
    position: absolute;
    z-index: 100000;
    top: 3em;
    bottom: 0;
    left: 0;
    display: block;
    width: 0;
    height: 1em;
    margin: auto auto auto 0;
    content: ' ';
    -webkit-animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
    animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
    background-color: #fff;
    will-change: transform, width;
}
*/
.loadingAnim_line:before{
    font-family: 'Poppins', sans-serif;
    font-size: 1.25em;
    font-weight: bold;
    font-style: normal;
    /*line-height: 1;*/
    display: block;
    content: '夢×挑戦×スピード';
    /*-webkit-animation: loadingAnim_text 1s ease .1s infinite alternate both;
    animation: loadingAnim_text 1s ease .1s infinite alternate both;*/
	-webkit-animation: fadeIn 1s ease .1s infinite alternate both;
    animation: fadeIn 1s ease .1s infinite alternate both;
    letter-spacing: .2em;
    color: #fff;
    will-change: opacity;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

.loaded .loadingAnim_line{
    overflow: hidden;
    height: 0;
}
.loaded .loadingAnim_line:after,
.loaded .loadingAnim_line:before{
    -webkit-animation: none;
    animation: none;
}
.loaded .loadingAnim_line:before{
    content: 'Venture Lab';
}

.loadingAnim:before,
.loadingAnim:after{
    line-height: 1;
    position: fixed;
    z-index: 99999;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 50%;
    margin-right: auto;
    margin-left: auto;
    content: ' ';
    transition: all .3s cubic-bezier(.785, .135, .15, .86) 0s;
    transition-delay: .3s;
    background-color: #ffb32e;

}
.loadingAnim:before{
    top: 0;
}
.loadingAnim:after{
    bottom: 0;
}

.loaded .loadingAnim:before{
    height: 0;
    -webkit-transform: translateY(-1%);
    -ms-transform: translateY(-1%);
    transform: translateY(-1%);
}
.loaded .loadingAnim:after{
    height: 0;
    -webkit-transform: translateY(1%);
    -ms-transform: translateY(1%);
    transform: translateY(1%);
}



/********************
style
********************/

html:after{
    content:" ";
    width: 100%;
    height: 0;
    /*padding-top: 50%;*/
    display: block;
}

@media screen and ( max-width: 768px ){
    html:after{
        /*padding-top: 100vh;*/
    }
    body{
        -webkit-background-size: auto 100%;
        background-size: auto 100%;
    }
}