#is-loading {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #FFF;
	z-index: 999999;
}
#loading {
	position: absolute;
	left: 0;
	top: 0%;
	right: 0;
	margin: 0 auto;
}
.loader{
	margin: 40vh 0 0 0;
	display: flex;
	align-items: center;
	position:relative;
}
.loader img{
	display: block;
	position: relative;
	z-index: 5;
}
.loader:before{
	content:"";
	width: 20px;
	height: 24px;
	background: #54494B;
	display: inline-block;
	position: relative;
	top: 2px;
	animation:ling 3s ease-in-out forwards;
}
@keyframes ling{

	0%{	
		width:0px;
		}
	100%{
		width:120vw;
		}	

}
.loader:after{
	content: "つなぐhome";
	color: #fff;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
	letter-spacing: 18px;
	font-size: 13px;
	font-family: fot-tsukuardgothic-std,sans-serif;
	font-weight: 400;
	font-style: normal;
}

