@charset "utf-8";

/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:#CE3736;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:100px;
    opacity: 0;
}

/* fadeUpをするアイコンの動き */
.flash{
  animation: flashAnime 1s linear infinite;
}

@keyframes flashAnime{
  0% {
    opacity: 1;
  }

  10% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}




.fade-in-bottom.is-show {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition:all 1.5s cubic-bezier(0.160, 0.940, 0.800, 0.985);
}
.fade-in-right.is-show,
.fade-in-left.is-show {
  opacity: 1 !important;
  transform: translateX(0) !important;
  transition:transform .5s cubic-bezier(0.05, 0.7, 0.68, 1.01),
             opacity .7s cubic-bezier(0.87, 0.14, 0.86, 0.38);
}



.is-show{
  transition-delay: 0s;
}
.is-show.timing01 {
  transition-delay: .1s;
}
.is-show.timing02 {
  transition-delay: .2s;
}
.is-show.timing03 {
  transition-delay: .3s;
}
.is-show.timing04 {
  transition-delay: .4s;
}
.is-show.timing05 {
  transition-delay: .5s;
}
.is-show.timing06 {
  transition-delay: .6s;
}
.is-show.timing07 {
  transition-delay: .7s;
}
.is-show.timing08 {
  transition-delay: .8s;
}


.arrow.is-show:before,
.arrow.is-show:after {
  width: 200px;
  transition:all .4s;
}

.arrow2.is-show:before,
.arrow2.is-show:after {
  width: 590px;
  transition:all .4s;
}



@media only screen and (max-width: 767px) {

.arrow.is-show:before,
.arrow.is-show:after {
  width: calc(40vw - 4vw);
  transition:all .4s;
}

.arrow2.is-show:before,
.arrow2.is-show:after {
  width: calc(50vw - 4vw);
  transition:all .4s;
}

}



.spinner {
  margin: 100px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.spinner > div {
  background-color: #0c45a9;
  height: 100%;
  width: 6px;
  display: inline-block;
  
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}




/* タイピング */
.is-typingTxt span {
  opacity: 0;
}
.is-typingTxt.is-show span {
  opacity: 1;
  transition: opacity .3s ease;
}

.is-typingTxt span:nth-of-type(1) {
  transition-delay: .1s;
}
.is-typingTxt span:nth-of-type(2) {
  transition-delay: .2s;
}
.is-typingTxt span:nth-of-type(3) {
  transition-delay: .3s;
}
.is-typingTxt span:nth-of-type(4) {
  transition-delay: .4s;
}
.is-typingTxt span:nth-of-type(5) {
  transition-delay: .5s;
}
.is-typingTxt span:nth-of-type(6) {
  transition-delay: .6s;
}
.is-typingTxt span:nth-of-type(7) {
  transition-delay: .7s;
}
.is-typingTxt span:nth-of-type(8) {
  transition-delay: .8s;
}
.is-typingTxt span:nth-of-type(9) {
  transition-delay: .9s;
}
.is-typingTxt span:nth-of-type(10) {
  transition-delay: 1s;
}

/*.is-typingTxt span:nth-of-type(1) {
  transition-delay: .05s;
}
.is-typingTxt span:nth-of-type(2) {
  transition-delay: .1s;
}
.is-typingTxt span:nth-of-type(3) {
  transition-delay: .15s;
}
.is-typingTxt span:nth-of-type(4) {
  transition-delay: .2s;
}
.is-typingTxt span:nth-of-type(5) {
  transition-delay: .25s;
}
.is-typingTxt span:nth-of-type(6) {
  transition-delay: .3s;
}
.is-typingTxt span:nth-of-type(7) {
  transition-delay: .35s;
}
.is-typingTxt span:nth-of-type(8) {
  transition-delay: .4s;
}
.is-typingTxt span:nth-of-type(9) {
  transition-delay: .45s;
}
.is-typingTxt span:nth-of-type(10) {
  transition-delay: .5s;
}
.is-typingTxt span:nth-of-type(11) {
  transition-delay: .55s;
}
.is-typingTxt span:nth-of-type(12) {
  transition-delay: .6s;
}
.is-typingTxt span:nth-of-type(13) {
  transition-delay: .65s;
}
.is-typingTxt span:nth-of-type(14) {
  transition-delay: .7s;
}
.is-typingTxt span:nth-of-type(15) {
  transition-delay: .75s;
}
.is-typingTxt span:nth-of-type(16) {
  transition-delay: .8s;
}
.is-typingTxt span:nth-of-type(17) {
  transition-delay: .85s;
}
.is-typingTxt span:nth-of-type(18) {
  transition-delay: .9s;
}
.is-typingTxt span:nth-of-type(19) {
  transition-delay: .95s;
}
.is-typingTxt span:nth-of-type(20) {
  transition-delay: 1.0s;
}
.is-typingTxt span:nth-of-type(21) {
  transition-delay: 1.05s;
}
.is-typingTxt span:nth-of-type(22) {
  transition-delay: 1.1s;
}
.is-typingTxt span:nth-of-type(23) {
  transition-delay: 1.15s;
}
.is-typingTxt span:nth-of-type(24) {
  transition-delay: 1.2s;
}
.is-typingTxt span:nth-of-type(25) {
  transition-delay: 1.25s;
}
.is-typingTxt span:nth-of-type(26) {
  transition-delay: 1.3s;
}
.is-typingTxt span:nth-of-type(27) {
  transition-delay: 1.35s;
}
.is-typingTxt span:nth-of-type(28) {
  transition-delay: 1.4s;
}
.is-typingTxt span:nth-of-type(29) {
  transition-delay: 1.45s;
}
.is-typingTxt span:nth-of-type(30) {
  transition-delay: 1.5s;
}*/


/* その場でふわっと */

.fade-in{
opacity:0;
}
.fade-in.is-show{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}



/* ぼよよーん */

.fade-in-bounce.is-show {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}


@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
 
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
 
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
 
  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }
 
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
 
  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }
 
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
 
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
 
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    -ms-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
 
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
 
  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    -ms-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }
 
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    -ms-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
 
  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    -ms-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }
 
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}