@charset "utf-8";
/*****************************

　         reset.css

*****************************/

*{
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	tap-highlight-color: rgba(0, 0, 0, 0);
}
h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, table, caption, th, td, img, form {
	margin: 0;
	padding: 0;
	border: none;
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
	text-align: left;
	text-decoration: none;
}
body { 
	font-family: sans-serif;
	/*
	"MS Pゴシック","MS P Gothic","ＭＳ ゴシック",sans-serif,"ヒラギノ角ゴ","Hiragino Kaku Gothic Pro",Osaka !important;
	*/
	font-size:12px;
}
img { 
	vertical-align: top; 
	border: none;
}
ul li{
	list-style:none;
}
a{
	text-decoration: none;
	color:#2950bf;
}
td,th{
	vertical-align:top;
}

#buzzes-telop-container{
	position:relative!important;
	z-index: 1!important;
}
/*.loading_wrap{
	position:fixed;
	width:100%;
	height:100%;
	left:0;
	top:0;
	background:url(../img/loader.gif) no-repeat center center;
	background-size: 50px;
}*/
.loading_wrap{
	position:fixed;
	width:100px;
	height:100px;
	left: 47.5%;
    top: 45%;
	border-radius: 100%;
	background: linear-gradient(45deg, #f78429, #a40137, #4bceab);
	background-size: 100% 100%;
	-webkit-animation: loadeing 1s linear infinite;
	-moz-animation: loadeing 1s linear infinite;
	animation: loadeing 1s linear infinite;
}
.loading_wrap:after{
    display: block;
    content: "";
    width: 96px;
    height: 96px;
    position: absolute;
    top: 2px;
    left: 2px;
    border-radius: 100%;
    background: #000;
}
@-webkit-keyframes loadeing {
    0%{transform:rotate(0deg)}
    100%{transform:rotate(360deg)}
}
@-moz-keyframes loadeing {
    0%{transform:rotate(0deg)}
    100%{transform:rotate(360deg)}
}
@keyframes loadeing {
    0%{transform:rotate(0deg)}
    100%{transform:rotate(360deg)}
}


@media screen and (min-width: 0px) and (max-width: 800px) {
	
	.loading_wrap{
		position:fixed;
		width:50px;
		height:50px;
		left: 44%;
		top: 45%;
	}

	.loading_wrap:after{
		width: 46px;
		height: 46px;
		top: 2px;
		left: 2px;
	}
	
}