@charset "UTF-8";

/*ローディング
---------------------------------*/
.loading {
	width: 100%;
	height: 100%;
	background:#fff9ea;/*背景色*/
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999999;
}

.loading img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
}

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace.pace-inactive .pace-progress {
  display: none;
}

.pace .pace-progress {
  position: fixed;
  z-index: 99999999;
  top: 20%;
  right: 0;
  bottom:0;
  left:-2%;
  margin: auto;
  height: 5rem;
  width: 5rem;

  -webkit-transform: translate3d(0, 0, 0) !important;
  -ms-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
}

.pace .pace-progress:after {
  display: block;
  position: absolute;
  top: 30%;
  right: 0;
  bottom: 0;
  left:40%;
  margin: auto;
  content: attr(data-progress-text);
  font-family: 'Noto Serif JP', serif;/*数字のフォント*/
  font-weight: 400;/*数字の太さ*/
  font-size: 30px;/*数字の大きさ*/
  line-height: 1;
  text-align: right;
  color: #463f39;/*数字のフォントカラー*/
}


.pace-running .wrap {
  display:none;
}
@media screen and (max-width: 1366px) {
	.pace .pace-progress:after {
	  top: 60%;
		left:35%;
	}
}


@media screen and (max-width: 768px) {
	.pace .pace-progress:after {
	  top: 45%;
		left:20%;
	}

	.loading img {
		position: absolute;
		top: -10%;
		left: 0;
		bottom: 0;
		right: 0;
		margin: auto;
	}
}
