@charset "UTF-8";


.loading .logo_35th {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}

.loading .logo_35th img {
	width: 240px;
	animation: none;
	opacity: 0;
	transition: 0.5s ease-in-out;
	filter: blur(30px);
	transform: scale(1.4);
}

.loading .logo_35th img.show {
	opacity: 1;
	filter: blur(0);
	transition: 0.8s ease-in-out;
	transform: scale(1.0);
}



/*------------------------------------------------------------------------------------------------------------------------------------

	スマホここから
	
------------------------------------------------------------------------------------------------------------------------------------*/


/*ブレークポイントはcommon.jsのスライダー設定と連動させる*/
@media screen and (max-width:639px){

.loading {

	display: block;
}

.loading .logo_35th {
	transition: 0.6s ease-in-out;
	background: #1d2088;
}

.loading .logo_35th.hide {
	opacity: 0;
}


}






