@charset "UTF-8";
"utf-8"
.info_content {
  min-height: 1000px;
  /* demo */
}

.hero {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  backface-visibility: hidden;
  height: 100vh;
  overflow: hidden;
  position: relative;
  width: 100%;
  /* メディスク対応 */
}

@media (max-width: 640px) {
  .hero {
    background-position: 50% 0;
  }
}

.hero::after {
  background-color: rgba(0, 0, 0, 0.3);
  bottom: 0;
  content: '';
  left: -2000%;
  position: absolute;
  right: -2000%;
  top: 0;
  z-index: 1;
}

.hero_container {
  box-sizing: border-box;
  height: auto;
  padding: 20vh 50px;
  /* viewport style */
  position: relative;
  z-index: 2;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-duration: 2s;
  /* メディスク対応 */
}

@media (max-width: 640px) {
  .hero_container {
    height: 100%;
  }
}

.hero_container p {
  color: white;
  font-family: 'Black Ops One', cursive;
  font-size: 50px;
  font-style: Italic;
  letter-spacing: 0.1em;
  margin-left: 0;

}

@media screen and (max-width: 640px) {
  .hero_container p {
    font-size: 25px;
  }
}

.hero_title {
  color: white;
  font-family: 'Black Ops One', cursive;
  font-style: Italic;
  font-size: 80px;
  font-weight: 500;
  line-height: 1.1;

}

@media screen and (max-width: 640px) {
  .hero_title {
    /* メディスク対応 */
    font-size: 50px;
  }
}



/* start animation tweaks */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-12px, 0, 0);
  }
  to {
    opacity: 0.8;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

.animate {
  animation-duration: 0.75s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.2, 0.3, 0.25, 0.9);
}

.delay-100 {
  animation-delay: 1s;
}

.delay-200 {
  animation-delay: 2s;
}
