@charset "UTF-8";
.ac {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

@keyframes fw {
  0% {
    transform: translate(0, 0px);
    opacity: 0;
  }
  100% {
    transform: translate(0, -5px);
    opacity: 1;
  }
}
.blur {
  animation-name: blurAnime;
  animation-duration: 4s;
  animation-fill-mode: forwards;
}
@media only screen and (max-width:767px) {
  .blur {
    animation-name: blurAnime_sp;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(20px);
    transform: scale(1.02);
    opacity: 0;
    top: 10rem;
    color: #0099cc;
    background: -webkit-linear-gradient(90deg, #0099cc, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
    top: 0;
    background: -webkit-linear-gradient(90deg, #fff, #0099cc);
    color: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@keyframes blurAnime_sp {
  from {
    filter: blur(20px);
    transform: scale(1.02);
    opacity: 0;
    top: 10rem;
    color: #0099cc;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
    top: 0;
    color: #fff;
  }
}
.blurTrigger span {
  opacity: 0;
  top: 10rem;
  position: relative;
}

#top .header {
  position: relative;
  height: 100vh;
}
#top .header:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: #fff;
  opacity: 0.95;
  transition: all 5s;
}
@media only screen and (max-width:767px) {
  #top .header:before {
    transition: none;
  }
}
#top .header-menu span {
  background: #fff;
}
#top .header.on:before {
  background-color: #1f296b;
  opacity: 0.35;
}
#top .header-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 5;
}
@media only screen and (max-width:767px) {
  #top .header-logo {
    width: 24rem;
  }
}
#top .header-logo img {
  width: 45rem;
  opacity: 1;
  transition: opacity 0.5s;
}
#top .header-logo.change {
  background: url("../../images/common/logo_w.svg") no-repeat 50% 50%;
  background-size: 45rem auto;
}
@media only screen and (max-width:1023px) {
  #top .header-logo.change {
    background-size: 100% auto;
  }
}
#top .header-logo.change img {
  opacity: 0;
}
#top .header-catch {
  width: 33%;
  height: 30%;
  text-align: center;
  font-size: 4rem;
  position: absolute;
  color: #fff;
}
#top .header-catch_wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 4;
}
#top .header-catch.pos0 {
  left: 0;
  top: 0;
}
@media only screen and (max-width:767px) {
  #top .header-catch.pos0 {
    left: 10%;
  }
}
#top .header-catch.pos1 {
  left: 33%;
  top: 0;
}
@media only screen and (max-width:767px) {
  #top .header-catch.pos1 {
    left: 15%;
    top: 15%;
  }
}
#top .header-catch.pos2 {
  right: 0;
  top: 0;
}
@media only screen and (max-width:767px) {
  #top .header-catch.pos2 {
    right: 10%;
    top: 30%;
  }
}
#top .header-catch.pos3 {
  left: 0;
  bottom: 0;
}
@media only screen and (max-width:767px) {
  #top .header-catch.pos3 {
    left: 10%;
    bottom: 10%;
  }
}
#top .header-catch.pos4 {
  left: 33%;
  bottom: 0;
}
@media only screen and (max-width:767px) {
  #top .header-catch.pos4 {
    left: 15%;
    bottom: 8%;
  }
}
#top .header-catch.pos5 {
  right: 0;
  bottom: 0;
}
@media only screen and (max-width:767px) {
  #top .header-catch.pos5 {
    right: 10%;
  }
}
@media only screen and (max-width:767px) {
  #top .header-catch {
    font-size: 2rem;
  }
}
#top .header-catch span {
  font-family: "Rock Salt", cursive;
}

#video {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.77777778vh;
  /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw;
  /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}
#video-area {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

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