html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  color: #eee;
  font-family: "Outfit", sans-serif;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, #142e47 0%, #0c1522 42%, #030508 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 600px) {
  body {
    overflow-x: hidden;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.008) 35%, rgba(255, 255, 255, 0) 100%);
}

.body__wrp.fade-in {
  animation: bodyFadeIn 3s ease forwards;
}

@keyframes bodyFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
svg {
  width: 100%;
  height: 100vh;
  display: block;
  overflow: visible;
  pointer-events: none;
}

section.kv {
  overflow-x: hidden;
}
section.kv h1 {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-size: 10vw;
  font-weight: 600;
  line-height: 0.9;
  color: #eee;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: difference;
}
section.kv h1 .br {
  display: block;
  margin: 2.5vw 0 0;
  font-size: 2.2vw;
  font-weight: 200;
  color: #777;
  line-height: 1.2;
  letter-spacing: 0.1vw;
}
section.kv video {
  position: fixed;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(80%);
}

.logo {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 2s;
}
.logo.is-active {
  position: fixed;
  top: 55px;
  left: 70px;
  opacity: 1;
  font-size: 50px;
  font-weight: 600;
  z-index: 100;
}
@media screen and (max-width: 600px) {
  .logo.is-active {
    top: 25px;
    left: 40px;
  }
}

.keybg {
  position: fixed;
  padding: 130px 140px 0 0;
  bottom: 70px;
  left: 70px;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(0.15);
  transform-origin: left bottom;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .keybg {
    padding: 10vw 10vw 0 0;
    bottom: 5vw;
    left: 5vw;
  }
}

#kv__h1 .ch {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.2s;
}

#kv__h1 {
  visibility: hidden;
}

#kv__h1.is-ready {
  visibility: visible;
}

.kv {
  position: relative;
  height: 100vh;
}

.credit {
  margin: 0 0 1000px;
  font-size: 1.8vw;
  text-align: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 100;
}
.credit .name {
  width: 100%;
  height: 50px;
}
@media screen and (max-width: 600px) {
  .credit .name {
    font-size: 6vw;
  }
}
.credit .name .char {
  display: inline-block;
}

.sec__1 {
  position: relative;
  margin: 0 0 500px;
}
.sec__1 .inner {
  position: relative;
}

.work.transition-wait img.transition-wait,
.work.transition-wait video.transition-wait {
  animation: smoothFling 2s forwards;
  will-change: transform, opacity;
}

@keyframes smoothFling {
  0% {
    transform: translateX(0);
    animation-timing-function: cubic-bezier(0.16, 1, 0.9, 1);
  }
  40% {
    transform: translateY(-10vw) scale(1.6);
    animation-timing-function: cubic-bezier(0.45, 0, 0.1, 1);
  }
  100% {
    transform: translateY(100vw) scale(0.6);
    opacity: 0;
  }
}
.sec__1.transition-wait .svg__sticky {
  opacity: 0;
}
.sec__1.transition-wait .text__wrp .num {
  opacity: 0;
}
.sec__1.transition-wait .text__wrp .ttl {
  opacity: 0;
}

.company-profile dl {
  display: flex;
  flex-direction: column;
  padding: 0 10vw;
  color: #fff;
}
.company-profile dl > div {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.company-profile dt {
  padding: 20px 0 8px;
  border-bottom: 1px solid #666;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex: 0 0 300px;
  padding: 16px 0;
}
.company-profile dd {
  padding: 8px 0 20px;
  border-left: none;
  font-size: 0.875rem;
  border-bottom: 1px solid #333;
  flex: 1;
  padding: 16px 0 16px 24px;
}
@media screen and (max-width: 600px) {
  .company-profile dl > div {
    flex-direction: row;
    align-items: stretch;
  }
  .company-profile dt {
    flex: 0 0 140px;
    padding: 16px 0;
  }
  .company-profile dd {
    flex: 1;
    padding: 16px 0 16px 24px;
  }
}/*# sourceMappingURL=style.css.map */