@charset "UTF-8";
#debug {
  padding: 10px;
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: #fff;
  z-index: 999999999;
}

#load {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  min-height: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}
#load .load__container {
  width: 100%;
  height: 100%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  position: relative;
}
#load .load__container--img {
  width: 100px;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}
#load .load__container--img img {
  width: 100px;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-animation: hata 2.2s steps(5) infinite;
          animation: hata 2.2s steps(5) infinite;
}
#load .load__container--txt {
  margin-top: 20px;
  text-align: center;
}
#load .load__container--txt img {
  max-width: 150px;
}
#load.fade {
  -webkit-animation: fadeOut 0.5s linear;
          animation: fadeOut 0.5s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

/* ios safari */
/* 古いsafari */
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes hata {
  0% {
    -webkit-transform: rotate(0) scale(1, 1);
            transform: rotate(0) scale(1, 1);
  }
  16.67% {
    -webkit-transform: rotate(-35deg) scale(1, 1);
            transform: rotate(-35deg) scale(1, 1);
  }
  33.34% {
    -webkit-transform: rotate(-35deg) scale(-1, 1);
            transform: rotate(-35deg) scale(-1, 1);
  }
  50% {
    -webkit-transform: rotate(0) scale(-1, 1);
            transform: rotate(0) scale(-1, 1);
  }
  66.67% {
    -webkit-transform: rotate(35deg) scale(-1, 1);
            transform: rotate(35deg) scale(-1, 1);
  }
  83.34% {
    -webkit-transform: rotate(35deg) scale(1, 1);
            transform: rotate(35deg) scale(1, 1);
  }
  100% {
    -webkit-transform: rotate(0) scale(1, 1);
            transform: rotate(0) scale(1, 1);
  }
}
@keyframes hata {
  0% {
    -webkit-transform: rotate(0) scale(1, 1);
            transform: rotate(0) scale(1, 1);
  }
  16.67% {
    -webkit-transform: rotate(-35deg) scale(1, 1);
            transform: rotate(-35deg) scale(1, 1);
  }
  33.34% {
    -webkit-transform: rotate(-35deg) scale(-1, 1);
            transform: rotate(-35deg) scale(-1, 1);
  }
  50% {
    -webkit-transform: rotate(0) scale(-1, 1);
            transform: rotate(0) scale(-1, 1);
  }
  66.67% {
    -webkit-transform: rotate(35deg) scale(-1, 1);
            transform: rotate(35deg) scale(-1, 1);
  }
  83.34% {
    -webkit-transform: rotate(35deg) scale(1, 1);
            transform: rotate(35deg) scale(1, 1);
  }
  100% {
    -webkit-transform: rotate(0) scale(1, 1);
            transform: rotate(0) scale(1, 1);
  }
}