@charset "utf-8";
/* CSS Document */
.loader{
	position: absolute;
	width: 30px; 	/* ローディングアイコンの横サイズ */
	height: 30px;	/* ローディングアイコンの縦サイズ */
	border-radius: 30px;  /* 円 */
	border: 8px solid #191919;	/* 円の枠 */
	border-right-color: transparent; /* 円右のC状の空き */
	-webkit-animation: spin 1s infinite linear; /* 回転アニメーション */
	-moz-animation: spin 1s infinite linear;
	text-align:center;
}
@-webkit-keyframes spin{
	0% { -webkit-transform: rotate(0deg); opacity: 0.4; }
	50% { -webkit-transform: rotate(180deg); opacity: 1; }
	100% { -webkit-transform: rotate(360deg); opacity: 0.4; }
}
@-moz-keyframes spin{
	0% { -moz-transform: rotate(0deg); opacity: 0.4; }
	50% { -moz-transform: rotate(180deg); opacity: 1; }
	100% { -moz-transform: rotate(360deg); opacity: 0.4; }
}
.l_contain{
	width:40px;
	display:block;
	margin: 0 auto;
	height:60px;
}
