#loader_page{
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 1000;
}
.loader_bg{
	position: relative;
	width: 100%;
	height: 70%;
	display: block;
	overflow: hidden;
}
.loader_bg_top{
	color: black;
	position: absolute;
	background-color: white;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
}
.loader_bg_bottom{
	position: absolute;
	background-color: #acfd91;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.loader_texts{
	position:absolute;
	bottom:30%; 
	margin: 0 auto;
	width: 100%;
	text-align: center;
}
/*
loadingのタイトル
*/

.loader_title {
	position: relative;
	bottom: 0;
	margin: 0 auto;
	
	font-size: 80px;
	line-height: 80px;
	text-align: center;
	color:aliceblue;
	width: 100%;
}
.loader_title::after {
	content: attr(data-color-change);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	line-height:80px;
	color: #ff8c00;
	clip: rect(0,0,80px,0);
	transition: clip 2s linear;
}

.loader_open::after {
	clip: rect(0,2500px,1000px,0);
}
/*中央のロードライン*/
.loader_center{
	position: relative;
	width: 100%;
	background: aliceblue;
	height: 24px;
}
.loader_line{
	position: relative;
	display: block;
	width:0%;
	height: 24px;
	background-color: #0c6;
}
#loader_line{
	animation: load_line 1.5s forwards; /*1秒毎にくるくる回転するアニメーション*/
}
@keyframes load_line
{
	0% { width: 0%;} /*0%の時は20％の透明度*/
	50%  { width: 50% } /*50%の時は透明度なし*/
	100%   { width: 100% } /*100%の時に20％の透明度に戻る*/
}

/*************
ローディング後のCSS
*/
