@charset "UTF-8";
/*フォント
---------------------------------------------*/
/*メディアクエリー
---------------------------------------------*/
/*変数
---------------------------------------------*/
#mainArea {
  width: 100%;
  overflow: hidden;
  -webkit-transition: 1.5s;
  transition: 1.5s;
}

@media screen and (min-width: 769px) {
  #mainArea {
    height: 100vh;
  }
}

@media screen and (max-width: 768px) {
  #mainArea {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
  }
}

#mainArea div.cover {
  width: 100%;
  height: 100%;
  position: relative;
}

#mainArea ul {
  height: 100%;
  position: relative;
}

#mainArea div.cover p{
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%,-45%);
  width: 30%;
  z-index: 99998;
}

#mainArea div.cover div.logo{
  position: absolute;
  top: 84%;
  left: 50%;
  transform: translate(-50%,-84%);
  width: 30%;
  z-index: 99998;
}

@media screen and (min-width: 769px) {
  #mainArea div.cover div.logo {
    width: 12%;
  }
}

#mainArea div.cover div.logo img{
  filter: invert(100%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(116%);
}

@media screen and (min-width: 769px) {
  #mainArea ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 768px) {
  #mainArea ul {
    width: 100%;
    background: #FFF;
  }
  #mainArea div.cover p{
    width: 80%;
  }
}

@media screen and (min-width: 769px) {
  #mainArea ul li {
    width: calc(100% / 3);
    height: 100%;
  }
}

@media screen and (max-width: 768px) {
  #mainArea ul li {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}

#mainArea ul li:nth-child(1) {
  background: url(../images/main01.jpg);
  background-size: cover;
  background-position: center center;
}

@media screen and (max-width: 768px) {
  #mainArea ul li:nth-child(1) {
    z-index: 1;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@media screen and (max-width: 768px) {
  #mainArea ul li:nth-child(1).slide {
    -webkit-animation: slideImg .5s linear 1s forwards;
    animation: slideImg .5s linear 1s forwards;
  }
}

#mainArea ul li:nth-child(2) {
  background: url(../images/main02.jpg);
  background-size: cover;
  background-position: center center;
}

@media screen and (max-width: 768px) {
  #mainArea ul li:nth-child(2) {
    z-index: 2;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  #mainArea ul li:nth-child(2).slide {
    -webkit-animation: slideImg .5s linear 2s forwards;
    animation: slideImg .5s linear 2s forwards;
  }
}

#mainArea ul li:nth-child(3) {
  background: url(../images/main03.jpg);
  background-size: cover;
  background-position: center center;
}

@media screen and (max-width: 768px) {
  #mainArea ul li:nth-child(3) {
    z-index: 3;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  #mainArea ul li:nth-child(3).slide {
    -webkit-animation: slideImg .5s linear 3s forwards;
    animation: slideImg .5s linear 3s forwards;
  }
}

/* loading
--------------------------------------*/
#loader-bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  top: 0px;
  left: 0px;
  background: #FFF;
  z-index: 1;
  z-index: 99999;
}

#loader-bg #loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 769px) {
  #loader-bg #loading {
    width: 100%;
    margin: auto;
    height: 100%;
  }
}

@media screen and (max-width: 768px) {
  #loader-bg #loading {
    width: 100%;
    margin: auto;
    height: 100%;
  }
}

@media screen and (min-width: 769px) {
  #loader-bg #loading div {
    width: 20%;
    margin: auto;
  }
}

@media screen and (max-width: 768px) {
  #loader-bg #loading div {
    width: 40%;
    margin: auto;
  }
}

@-webkit-keyframes slideImg {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes slideImg {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
/*# sourceMappingURL=style.css.map */