/*-------　　ローディング画面　----------*/
.loading{
    position: fixed;
    z-index: 120;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
}
/*ローディング白背景*/
.load-bg{
    position: fixed;
    z-index: 99;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
    content: ' ';
    background-color: #fff;
    opacity:1;
}
/*ローディング画面ロゴ*/
.load-parts{    
	position: absolute;
    display: none;
    width: 24vw;
    height: 50vh;
    top: 50%;
    left: 50%;
    margin-top: -27vh;
    margin-left: -12vw;
}
.loading-logo{
    height:100%;
    padding-bottom: 30px;
}
.loading-logo img{
    z-index:140;
    opacity:1;
    max-height:324px;
    height:100%;
    width:auto;
    margin-bottom:30px;
}

/*ローディング完了後*/
.loaded .loading-logo img{
    opacity: 0;
}
.loaded .load-bg{
    opacity:0;
}
/*プログレスバー*/
.progress{
    z-index: 100;
    width: 100%;
}
.progress-box {
   width: 100%;
   height: 2px;
   background: #c5c5c5;
   position: relative;
   z-index: 100;
}
.progress-bar {
   width: 0;
   height: 2px;
   background: #e50012;
   position: absolute;
   left: 0;
   top: 0;
}
@media screen and (max-width:768px) {
    .load-parts{    
        width: 50vw;
        height: 50vh;
        top: 50%;
        left: 50%;
        margin-top: -25vh;
        margin-left: -25vw;
    }
    .loading-logo{
    }
}
@media screen and (max-width:414px) {
     .loading-logo img{
        height:80%;
    }
}

