@charset "UTF-8";

/*
theme Name: lifix_gym
Author: LTC
Description: original theme
version： 1.1.0
*/

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999;
    text-align:center;
    color:#fff;
}

@media screen and (min-width:768px) {
    .webp #splash {
    	background-color: #fff;
    	background-image: url(assets/img/mv/loading_bg.webp);
    	background-size: cover;
	} 
}

@media screen and (max-width:767px) {
    .webp #splash {
    	background-color: #fff;
    	background-image: url(assets/img/mv/loading_bg-sp.webp);
    	background-size: cover;
	} 
}

.no-webp #splash {
    background-color: #fff;
    background-image: url(assets/mv/loading_bg.jpg);
    background-size: cover;
}

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

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