@charset "UTF-8";
#load {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  min-height: 550px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}
#load.fade {
  -webkit-animation: fadeOut 0.5s linear;
          animation: fadeOut 0.5s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
#load.loaded .load-container::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #f4f4f4;
  position: absolute;
  top: 0;
  left: 0;
}
#load.loaded .load-container::after {
  content: "";
  width: 150%;
  height: 100%;
  background: #E00012;
  position: absolute;
  top: 0;
  left: 200%;
  -webkit-transform: skew(10deg) translateX(-50%);
          transform: skew(10deg) translateX(-50%);
}
#load.loaded .load-container__bg::before {
  content: "";
  width: 150%;
  height: 100%;
  background: #E00012;
  position: absolute;
  top: 0;
  left: 200%;
  -webkit-transform: skew(10deg) translateX(-50%);
          transform: skew(10deg) translateX(-50%);
}
#load.loaded .load-container__bg div {
  opacity: 0;
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
#load .load-container {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
  background: #f4f4f4;
  display: grid;
}
#load .load-container::before, #load .load-container::after {
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
#load .load-container__bg {
  width: 100%;
  height: 100%;
  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;
  justify-content: center;
  align-self: center;
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  z-index: 999;
}
#load .load-container__bg::before {
  content: "";
  width: 150%;
  height: 100%;
  background: #E00012;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: skew(10deg) translateX(-50%);
          transform: skew(10deg) translateX(-50%);
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
#load .load-container__bg div {
  text-align: center;
  position: relative;
  z-index: 1000;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
#load .load-container__bg div img {
  width: 60%;
  max-width: 400px;
}
#load .load-container__logo {
  margin: 0 auto;
  width: 75%;
  max-width: 400px;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-self: center;
  justify-content: center;
  align-self: center;
  grid-column: 1/2;
  grid-row: 1/2;
}

/* ios safari */
@supports (font: -apple-system-body) and (-webkit-appearance: none) {
  #load .load-container__txt p {
    padding: 10px 2px 12px 16px;
  }
}
/* 古いsafari */
@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports not (translate: none) {
    #load .load-container__txt p {
      padding: 10px 2px 8px 16px;
    }
  }
}
@media screen and (min-width: 600px) {
  #load .load__container {
    max-width: 500px;
  }
}
@media screen and (min-width: 1025px) {
  #load .load-container::before, #load .load-container::after {
    -webkit-transition: all 0.85s ease-in-out;
    transition: all 0.85s ease-in-out;
  }
}
@-webkit-keyframes cross__before {
  0% {
    -webkit-transform: translate(-30%, -250%) rotate(45deg) scaleX(0);
            transform: translate(-30%, -250%) rotate(45deg) scaleX(0);
  }
  100% {
    -webkit-transform: translate(-30%, -250%) rotate(45deg) scaleX(1);
            transform: translate(-30%, -250%) rotate(45deg) scaleX(1);
  }
}
@keyframes cross__before {
  0% {
    -webkit-transform: translate(-30%, -250%) rotate(45deg) scaleX(0);
            transform: translate(-30%, -250%) rotate(45deg) scaleX(0);
  }
  100% {
    -webkit-transform: translate(-30%, -250%) rotate(45deg) scaleX(1);
            transform: translate(-30%, -250%) rotate(45deg) scaleX(1);
  }
}
@-webkit-keyframes cross__after {
  0% {
    -webkit-transform: translate(-73%, -250%) rotate(-45deg) scaleX(0);
            transform: translate(-73%, -250%) rotate(-45deg) scaleX(0);
  }
  100% {
    -webkit-transform: translate(-73%, -250%) rotate(-45deg) scaleX(1);
            transform: translate(-73%, -250%) rotate(-45deg) scaleX(1);
  }
}
@keyframes cross__after {
  0% {
    -webkit-transform: translate(-73%, -250%) rotate(-45deg) scaleX(0);
            transform: translate(-73%, -250%) rotate(-45deg) scaleX(0);
  }
  100% {
    -webkit-transform: translate(-73%, -250%) rotate(-45deg) scaleX(1);
            transform: translate(-73%, -250%) rotate(-45deg) scaleX(1);
  }
}
@-webkit-keyframes txt {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes txt {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}