@charset "utf-8";
/*****************************
common.css
*****************************/
/*---------------------

PC

-----------------------*/
.sp_view{
	display:none !important;
}
.pc_view{
	display:block;
}
/*---------------------
フェード ローディング
-----------------------*/
#top_fade{
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: #000;
	z-index: 989;	
}
.loading_icon{
    position: fixed;
    width: 80px;
    height: 80px;
    margin-left:-40px;
    margin-top:-40px;
    left:50%;
    top:50%;
/*    transform:scale(1, -0.5);*/
}
.loading_wrap{
	position:absolute;
    width: 80px;
    height: 80px;
    left:0;
    top:0;
    /*animation: roopanim 1s linear infinite;*/
    transform-origin: center center;
}
.loader,
.loader:after {
  border-radius: 50%;
  width: 80px;
  height: 80px;
}
.loader {
  font-size: 2px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(215, 159, 115, 0.2);
  border-right: 1.1em solid rgba(215, 159, 115, 0.2);
  border-bottom: 1.1em solid rgba(215, 159, 115, 0.2);
  border-left: 1.1em solid #d79f73;
  transform: translateZ(0);
  animation: load8 0.8s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


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

SP

-----------------------*/
@media screen and (min-width: 0px) and (max-width: 800px) {
	.sp_view{
		display:block !important;
	}
	.pc_view{
		display:none !important;
	}
	/*---------------
	ローディング
	-----------------*/
	.loading_wrap{
		position:fixed;
		width:50px;
		height:50px;
		left: 41%;
		top: 44%;
	}
	.loading_wrap:after{
		width: 46px;
		height: 46px;
		top: 2px;
		left: 2px;
	}
	.loading_wrap2{
		position:fixed;
		width:50px;
		height:50px;
		left: 44%;
		top: 45%;
	}
	.loading_wrap2:after{
		width: 46px;
		height: 46px;
		top: 2px;
		left: 2px;
	}
	
	

}
