@charset "UTF-8";
/* CSS Document */


/****************************************************************************
ローディング中のアニメーション
****************************************************************************/
#loading {
	width: 100vw;
	height: 100%;
	transition: all 1s;
	background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
	z-index: 99999;
}


.loading__inner {
	width: 400px;
	height: 97%;
	padding-top: 3%;
	margin: 0 auto;
    position: relative;
}

.loading__inner .loadingBox {
    position: absolute;
    top: 45.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.loading__logo {
	width: 40%;
	line-height: 1;
    margin: 0 auto 20px;
}

.loading__copy {
	margin-bottom: 50px;
	line-height: 1;
}

.loading__txt {
	font-size: 8px;
	color: #FFF;
	line-height: 1;
    margin-top: 25px;
    text-align: center;
}


/*点々アニメーション*/
.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.loader {
  color: #ffffff;
  font-size: 6px;
  margin: 0 auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}




/*#loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #f3f3f3;
  width: 0;
  height: 1px;
  -webkit-animation: shutterOpenLoadingNow 1.3s forwards　;
          animation: shutterOpenLoadingNow 1.3s forwards ;
    animation-iteration-count:infinite;
}*/

/*@keyframes spin{
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}*/


@keyframes shutterOpenLoadingNow {
  0% {
    width: 0;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 1px;
  }

}

/*スマホ対応*/
@media screen and (max-width: 559px){
	
	.loading__inner {
		width: 175px;
	}
	
	.loading__logo {
		margin-bottom: 5px;
		line-height: 1;
        margin: 0 auto 40px;
	}
    
    .loading__inner .loadingBox {
        top: 50%;
    }

	.loading__copy {
		margin-bottom:35px;
		line-height: 0;
	}
	
	.loading__copy img {
		line-height: 0;
	}
	

	.loader__img {
		width: 45px;
		height: 45px;
		margin-bottom: 10px;
	}

	.loading__txt {
		font-size: 7.5px;
	}
    

	
}
	
	
	
	
	
	
	



/****************************************************************************
ローディング完了後のアニメーション
****************************************************************************/


#loading.shutter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1e1e1e;
  z-index: 9999;
  -webkit-animation: byeShutter 2.6s forwards;
          animation: byeShutter 2.6s forwards;
}
#loading.shutter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #f3f3f3;
  width: 0;
  height: 1px;
  -webkit-animation: shutterOpen 2.6s forwards;
          animation: shutterOpen 2.6s forwards;
}


@-webkit-keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
@-webkit-keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@-webkit-keyframes contentScale {
  70% {
    transform: perspective(800px) scale(0.9) rotateX(15deg);
  }
  100% {
    transform: perspective(800px) scale(1) rotateX(0);
  }
}
@keyframes contentScale {
  70% {
    transform: perspective(800px) scale(0.9) rotateX(15deg);
  }
  100% {
    transform: perspective(800px) scale(1) rotateX(0);
  }
}



/*.loaded {
    opacity: 0;
    visibility: hidden;
}*/
