@charset "UTF-8";
/** cover部分のスタイリング **/
#cover {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 760px;
  background-color: #00bac8;
  /** ロゴ **/
}

#cover.loading .base {
  opacity: 0;
  position: relative;
}

#cover.loading .jacket {
  opacity: 0;
}

#cover.loading .jacket > img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

#cover.loading .illust {
  opacity: 0;
}

#cover.loading #logo {
  opacity: 0;
}

#cover .nowloading {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 6.1em;
  height: 1em;
  margin: auto;
  color: #fff;
  font-size: 14pt;
  text-align: center;
}

#cover .base {
  opacity: 1;
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-transition: opacity 1.5s ease-out .1s;
  transition: opacity 1.5s ease-out .1s;
}

#cover .base > img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: auto;
  max-width: inherit;
  min-width: 100%;
  height: auto;
  min-height: 100%;
  margin: auto;
}

#cover .jacket {
  opacity: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  width: 450px;
  height: 447px;
  margin: auto;
  -webkit-transition: opacity 1.2s ease-out 1s;
  transition: opacity 1.2s ease-out 1s;
}

#cover .jacket img {
  -webkit-transform: scale(1);
          transform: scale(1);
  width: 100%;
  -webkit-box-shadow: 7px 7px 10px rgba(8, 33, 94, .2);
          box-shadow: 7px 7px 10px rgba(8, 33, 94, .2);
  -webkit-transition: -webkit-transform 1.4s ease-out 1s;
  transition: -webkit-transform 1.4s ease-out 1s;
  transition: transform 1.4s ease-out 1s;
  transition: transform 1.4s ease-out 1s, -webkit-transform 1.4s ease-out 1s;
}

#cover .jacket h2 {
  position: absolute;
  top: -40px;
  left: -35px;
  z-index: 1;
}

#cover .jacket h2 img {
  -webkit-box-shadow: none;
          box-shadow: none;
}

#cover .jacket a.subLink {
  display: block;
  position: absolute;
  bottom: -40px;
}

#cover .jacket a.subLink img {
  -webkit-box-shadow: none;
          box-shadow: none;
}

#cover > img.illust {
  opacity: 1;
  position: absolute;
  z-index: 40;
  width: 274px;
  height: 192px;
  -webkit-transition: opacity 1s ease-out 2s;
  transition: opacity 1s ease-out 2s;

  pointer-events: none;
}

#cover > img.illust.illust01 {
  top: 50%;
  left: 50%;
  width: 270px;
  height: 171px;
  margin-top: -20%;
  margin-left: 16%;
  -webkit-animation: animIllust01 6s ease-in-out 0s infinite;
          animation: animIllust01 6s ease-in-out 0s infinite;
}

#cover > img.illust.illust02 {
  top: 50%;
  left: 50%;
  width: 270px;
  height: 187px;
  margin-top: -5%;
  margin-left: -28%;
  -webkit-animation: animIllust02 4s ease-in-out 0s infinite;
          animation: animIllust02 4s ease-in-out 0s infinite;
}

#cover #logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 50;
  width: 100%;
  height: 70px;
  padding-top: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 1.5s ease-out .1s;
  transition: opacity 1.5s ease-out .1s;
}

#cover #logo > img {
  width: auto;
  height: 100%;
}

/** スマホ **/
.sp > #cover {
  min-width: auto;
}

.sp > #cover .jacket img {
  width: 100%;
}

.sp > #cover .illust > img {
  width: 137px;
  height: 96px;
}

@media screen and (max-width: 750px) {
  #cover #logo {
    height: 100px;
  }
  #cover .jacket {
    width: calc(100vw - 90px);
    height: calc(100vw - 95px);
  }
  #cover .jacket h2 {
    top: -120px;
    left: -7px;
    width: 87%;
  }
  #cover .jacket a.subLink {
    bottom: -70px;
    width: 100%;
  }
  #cover > img.illust.illust01 {
    margin-top: -41%;
    margin-left: 8%;
  }
  #cover > img.illust.illust02 {
    margin-top: 19%;
    margin-left: -45%;
  }
}

/** ===== ===== ===== ===== ===== ===== ===== ===== **/
/** Animation **/
/** イラストのアニメーション **/
@-webkit-keyframes animIllust01 {
  50% {
    transform: translate(5%, -15%);

    -webkit-transform: translate(5%, -15%);
  }
  100% {
    transform: translate(0px);

    -webkit-transform: translate(0px);
  }
}
@keyframes animIllust01 {
  50% {
    transform: translate(5%, -15%);

    -webkit-transform: translate(5%, -15%);
  }
  100% {
    transform: translate(0px);

    -webkit-transform: translate(0px);
  }
}

/** **/
@-webkit-keyframes animIllust02 {
  50% {
    transform: translate(-10%, 10%);

    -webkit-transform: translate(-10%, 10%);
  }
  100% {
    transform: translate(0px);

    -webkit-transform: translate(0px);
  }
}
@keyframes animIllust02 {
  50% {
    transform: translate(-10%, 10%);

    -webkit-transform: translate(-10%, 10%);
  }
  100% {
    transform: translate(0px);

    -webkit-transform: translate(0px);
  }
}

/*# sourceMappingURL=topcover.css.map */
