@charset "UTF-8";
/* CSS Document */
html {
  height: 100%;
}
body {
  position: fixed;
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
}
#ARbtn {
  width: 90px;
  height: 30px;
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translate(-45px, 0);
  padding-top: 5px;
  background-color: RGBA(0, 0, 0, 0.5);
  color: #FFF;
  border-radius: 6px;
  text-align: center;
  display: none;
}
#ARButton {
  width: 90px !important;
  height: 35px !important;
  position: absolute !important;
  left: 50% !important;
  bottom: 40px !important;
  transform: translate(-45px, 0) !important;
  padding-top: 5px !important;
  background-color: RGBA(0, 0, 0, 0.5) !important;
  color: #FFF !important;
  border-radius: 6px !important;
  text-align: center !important;
	border: none !important;
	z-index: 1 !important;
	opacity: inherit !important;
	font-size: 16px !important;
  font-weight: 400 !important;
	font-family: "Noto Sans JP", sans-serif !important;
	
}
/*------------------
effect
------------------*/
#effect{
  position: absolute;
  left: 0;
  top: 0;
/*  z-index: 1;*/
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(0,0,0,0) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,1) 100%);
  pointer-events: none;
  opacity: .2;
}
/*------------------
loader
------------------*/
.loader, .loader:before, .loader:after {
  border-radius: 50%;
}
.loader {
  color: #CCCCCC;
  font-size: 11px;
  text-indent: -99999em;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6em;
  height: 6em;
  box-shadow: inset 0 0 0 1em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translate(-3em, -3em);
  display: none;
}
.loader:before, .loader:after {
  position: absolute;
  content: '';
}
.loader:before {
  width: 3.2em;
  height: 6.2em;
  background: #FFFFFF;
  border-radius: 10.2em 0 0 10.2em;
  top: -0.1em;
  left: -0.1em;
  -webkit-transform-origin: 5.3em 5.3em;
  transform-origin: 3.1em 3.1em;
  -webkit-animation: load2 2s infinite ease 1.5s;
  animation: load2 2s infinite ease 1.5s;
}
.loader:after {
  width: 3.2em;
  height: 6.2em;
  background: #FFFFFF;
  border-radius: 0 10.2em 10.2em 0;
  top: -0.1em;
  left: 3.1em;
  -webkit-transform-origin: 0.3em 5.3em;
  transform-origin: 0em 3.1em;
  /* -webkit-animation: load2 2s infinite ease; */
  animation: load2 2s infinite ease;
}
@-webkit-keyframes load2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.loader_bg{
  background-color: RGBA(0,0,0,0.2);
/*  background-color: #FFF;*/
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  display: none;
}
#loadCount{
	font-size: 16px;
  line-height: 1;
  font-family: 'Oswald', sans-serif;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translate(-50%,0);
  color: #222;
}
/*------------------------------------------------------------
	title
------------------------------------------------------------*/
.title_bg{
  background-color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
/*  display: none;*/
}
.title{
/*  height: 50px;*/
  width: 60px;
/*  background-image: url("../img/simulator/logo_bc.png");*/
/*  background-image: url("/img/common/logo.svg");*/
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  display: none;
}
/*
@media screen and (max-width: 767px) {
  .title{
    width: 50%;
  }
}
*/
.title img{
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

.loader_export{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: RGBA(0,0,0,0.5);
}
#loader_export_wheel{
  width: 27px;
  height: 27px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background-image: url("../img/common/loader.gif");
  background-repeat: no-repeat;
}