@charset "UTF-8";
@import url(/common/css/common.css);
/* variables
----------------------------------------------------*/
/* fx
----------------------------------------------------*/
.fx−bright {
  opacity: 0;
  transition: opacity;
  transition-delay: 0.5s;
  transition-duration: 2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.inview .fx−bright {
  opacity: 1;
  animation: bright 1s 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes bright {
  0% {
    filter: brightness(1000%) blur(50px);
  }
  100% {
    filter: brightness(100%) blur(0);
  }
}
.fx−bright2 {
  opacity: 0;
  transform: translateY(20%) perspective(600px) rotateY(15deg);
  transition: opacity transform;
  transition-delay: 1.5s;
  transition-duration: 1.5s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.inview .fx−bright2 {
  opacity: 1;
  transform: translateY(0) perspective(600px) rotateY(0deg) skewX(0);
  animation: bright2 1.5s 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes bright2 {
  0% {
    filter: brightness(1000%) blur(50px);
  }
  100% {
    filter: brightness(100%) blur(0);
  }
}
.inview.fx-flip {
  animation-name: flip;
  animation-duration: 1s;
  animation-delay: 1.2s;
  animation-fill-mode: forwards;
  perspective-origin: left center;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0;
}

.inview.fx-flip2 {
  animation-name: flip;
  animation-duration: 1s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
  perspective-origin: left center;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0;
}

@keyframes flip {
  from {
    transform: perspective(600px) rotateY(15deg) skewX(10deg);
    filter: brightness(1000%) blur(50px);
    opacity: 0;
  }
  to {
    transform: perspective(600px) rotateY(0deg) skewX(0);
    filter: brightness(100%) blur(0);
    opacity: 1;
  }
}
.slidein {
  opacity: 0;
  transform: translateY(20%);
  transition: opacity transform;
  transition-delay: 0.7s;
  transition-duration: 2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.slidein.inview {
  opacity: 1;
  transform: translateY(0);
}

.slidein2 {
  opacity: 0;
  transform: translateY(20%);
  transition: opacity transform;
  transition-delay: 1.2s;
  transition-duration: 2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.slidein2.inview {
  opacity: 1;
  transform: translateY(0);
}

.slidein3 {
  opacity: 0;
  transform: translateY(20%);
  transition: opacity transform;
  transition-delay: 1.7s;
  transition-duration: 2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.slidein3.inview {
  opacity: 1;
  transform: translateY(0);
}

/* contents
----------------------------------------------------*/
.contents {
  margin-top: 60px;
  padding-bottom: 100px;
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .contents {
    margin-top: 40px;
    padding-bottom: 0;
  }
}

/* hero
----------------------------------------------------*/
#hero {
  position: relative;
  width: 100%;
  height: 23vw;
  min-height: 300px;
  max-height: 450px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #hero {
    height: 47vw;
    min-height: inherit;
  }
}
#hero .page-title {
  position: absolute;
  top: 50%;
  left: 12%;
  transform: translateY(-50%);
  font-family: "Inter", sans-serif;
  font-size: 6rem;
  font-weight: 400;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #hero .page-title {
    font-size: 10vw;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-bg img {
  width: 100%;
  max-width: inherit;
}
@media only screen and (max-width: 767px) {
  .hero-bg img {
    width: 160%;
  }
}

#history {
  padding-top: 120px;
}
@media only screen and (max-width: 767px) {
  #history {
    padding-top: 60px;
  }
}
#history .inner {
  margin: 0 auto;
  width: 75%;
  max-width: 720px;
}
#history .title {
  font-size: 3rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  #history .title {
    font-size: 5vw;
  }
}
#history p {
  margin-top: 3em;
}
#history .fig {
  margin-top: 3em;
  height: 400px;
  overflow: hidden;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  #history .fig {
    margin-left: -7.5vw;
    width: 90vw;
    height: 50vw;
  }
}

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