/* ローディングここから */
.logo {
  position: relative;
  background-color: rgb(255, 255, 255);
  width: 300px;
  height: 300px;
  margin: 200px auto;
}
.man {
  position: absolute;
  right: 117px;
  top: 78px;
}
/* 右上 */
.miu {
  position: absolute;
  right: 72px;
  top: 0;
}
.miu2 {
  position: absolute;
  right: 36px;
  top: 0;
}
.miu3 {
  position: absolute;
  right: 0;
  top: 0;
}
/* 右上ここまで */
/* 右下ここから */
.misi {
  position: absolute;
  right: 0;
  bottom: 50px;
}
.misi2 {
  position: absolute;
  right: 0;
  bottom: 25px;
}
.misi3 {
  position: absolute;
  right: 0;
  bottom: 0;
}
/* 右下ここまで */
/* 左下ここから */
.hisi {
  position: absolute;
  left: 72px;
  bottom: 0;
}
.hisi2 {
  position: absolute;
  left: 36px;
  bottom: 0;
}
.hisi3 {
  position: absolute;
  left: 0;
  bottom: 0;
}
/* 左下ここまで */
/* 左上ここから */
.hiu {
  position: absolute;
  left: 0;
  top: 48px;
}
.hiu2 {
  position: absolute;
  left: 0;
  top: 24px;
}
.hiu3 {
  position: absolute;
  left: 0;
  top: 0;
}
/* 左上ここまで */
/* 白4種ここから */
.hiw {
  position: absolute;
  left: 0;
  top: 179px;
}
.miw {
  position: absolute;
  right: 0;
  top: 111px;
}
.hiwm {
  position: absolute;
  top: 0;
  left: 0;
}
.miwm {
  position: absolute;
  bottom: 0;
  right: 0;
}
/* 白4種ここまで */
@keyframes slideOut {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-150%);
  }
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 1;
  background-color: rgb(255, 255, 255);
}
.loader-slide {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 1);
  overflow-x: hidden;
}
#loader {
  animation-name: slideOut;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-delay: 2.7s;
}
/* ローディングここまで */

/* TOP画 */

.pageLeft {
  position: relative;
}

.image {
  width: 40vw;
  height: auto;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY( -50%);
  opacity: 0;
  animation: change-img-anim 15s infinite;
}


@keyframes change-img-anim {
  0%{ opacity: 0;}
  20%{ opacity: 1;}
  33%{ opacity: 1;}
  63%{opacity: 0;}
  100%{ opacity: 0;}
}
.image:nth-of-type(1) {
  animation-delay: 0s;
}

.image:nth-of-type(2) {
  animation-delay: 5s;
}

.image:nth-of-type(3) {
  animation-delay: 10s;
}
/* TOP画切り替えここまで */

h2 {
  opacity: 0;
}
.pageText {
  position: relative;
}
.pageText img {
  width: 40vw;
  height: auto;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY( -50%);
}

/* 狭画面 */
@media screen and (max-width:960px) {

}

/* スマホ版 */
@media screen and (max-width:640px) {
  .page {
    margin: 0 auto;
  }
  .pageLeft {
    width: 80vw;
    height: 40vh;
    height: 40dvh;
  }
  .pageLeft img {
    width: 80vw;
    height: 40vh;
    height: 40dvh;
  }
  .pageText {
    width: 80vw;
    height: 10vh;
    height: 10dvh;
  }
  .pageText img {
    width: 80vw;
    height: auto;
  }

}