@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translate(0, 7%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes scale-center-top {
  0% {
    opacity: 0;
    clip-path: polygon(50% 0, 50% 0, 50% 0, 50% 0);
  }
  100% {
    opacity: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes arrow01 {
  0% {
    transform: translate(-50%, 50%);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 0.8;
  }
}
:root {
  --hero-main-animation-time: 1.8s;
  --hero-main-animation-delay: 0.8s;
  --hero-main-animation-sub-delay: 1.7s;
  --hero-main-text-sub-rotate: rotate(0deg);
}
@media screen and (min-width: 768px) {
  :root {
    --hero-main-animation-time: 1.8s;
    --hero-main-animation-delay: 0.9s;
    --hero-main-animation-sub-delay: 2s;
    --hero-main-text-sub-rotate: rotate(5.88deg);
  }
}

@keyframes heroArea {
  0% {
    clip-path: ellipse(0% 0% at 50% 0%);
    opacity: 0;
  }
  100% {
    clip-path: ellipse(100% 100% at 50% 14%);
    opacity: 1;
  }
}
.hero-area .hero-bg {
  clip-path: ellipse(0% 0% at 50% 0%);
  opacity: 0;
  animation: heroArea var(--hero-main-animation-time) var(--hero-main-animation-delay) cubic-bezier(0.72, 0.01, 0, 0.99) forwards;
}

.hero-arrow {
  transform: translate(-50%, 50%);
  opacity: 0;
}
.hero-arrow.arrow01, .hero-arrow.arrow04 {
  animation: arrow01 1.8s 0.4s cubic-bezier(0.72, 0.01, 0, 0.99) forwards;
}
.hero-arrow.arrow03, .hero-arrow.arrow05 {
  animation: arrow01 1.8s 0.6s cubic-bezier(0.72, 0.01, 0, 0.99) forwards;
}
.hero-arrow.arrow02, .hero-arrow.arrow06 {
  animation: arrow01 1.8s 0.8s cubic-bezier(0.72, 0.01, 0, 0.99) forwards;
}
.hero-arrow.animation.arrow06, .hero-arrow.animation.arrow07, .hero-arrow.animation.arrow08, .hero-arrow.animation.arrow09, .hero-arrow.animation.arrow10, .hero-arrow.animation.arrow11, .hero-arrow.animation.arrow12 {
  animation: arrow01 1.6s 0s cubic-bezier(0.72, 0.01, 0, 0.99) forwards;
}

@keyframes h1 {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.hero-content {
  transform-origin: center center;
  opacity: 0;
  animation: h1 1s calc(var(--hero-main-animation-sub-delay) + 0s) cubic-bezier(0.72, 0.01, 0, 0.99) forwards;
}

@keyframes hero-txt01 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.hero-txt01 {
  transform: scale(0);
  animation: hero-txt01 1s 0.6s cubic-bezier(0.72, 0.01, 0, 0.99) forwards;
}

@keyframes fix-btn-sp {
  0% {
    transform: translate(0, 100%);
  }
  100% {
    transform: translate(0, 0);
  }
}
a.fix-btn {
  transform: translate(0, 100%);
}
@media screen and (min-width: 768px) {
  a.fix-btn {
    transform: translate(0, 0) scale(0);
  }
}
a.fix-btn.animate {
  animation: fix-btn-sp 0.8s 0s ease forwards;
}
@media screen and (min-width: 768px) {
  a.fix-btn.animate {
    animation: hero-txt01 1s 0s cubic-bezier(0.72, 0.01, 0, 0.99) forwards;
  }
}

@keyframes header-sp {
  0% {
    transform: translate(0, -200%);
  }
  100% {
    transform: translate(0, 0);
  }
}
header {
  transform: translate(0, 0);
  opacity: 0;
  animation: fade 2s calc(var(--hero-main-animation-sub-delay) + 0.3s) ease forwards;
}

div.hero-slide {
  opacity: 0;
  animation: fade 1.6s 0.6s ease forwards;
}

.hero-txt03 {
  opacity: 0;
  animation: hero-txt01 1s calc(var(--hero-main-animation-sub-delay) + 0.5s) cubic-bezier(0.72, 0.01, 0, 0.99) forwards;
}

@keyframes hero-text-sub {
  0% {
    opacity: 0;
    transform: var(--hero-main-text-sub-rotate);
  }
  30% {
    opacity: 1;
    transform: var(--hero-main-text-sub-rotate);
  }
  60% {
    opacity: 1;
    transform: var(--hero-main-text-sub-rotate);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
  }
}
@keyframes hero-text-sub_sp {
  0% {
    transform: scale(0);
  }
  60% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.hero-txt-sub {
  transform: scale(0);
  transform-origin: center bottom;
  animation: hero-text-sub_sp 0.45s calc(var(--hero-main-animation-sub-delay) + 1s) ease forwards;
}

.hero-txt02,
.sec-step,
.sec-flow {
  opacity: 0;
}
.hero-txt02.animation,
.sec-step.animation,
.sec-flow.animation {
  animation: fade 1s 0s ease forwards;
}

@keyframes hero-obj {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    opacity: 0;
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
.hero-obj {
  opacity: 0;
  animation: hero-obj 1.2s 0.4s cubic-bezier(0.72, 0.01, 0, 0.99) forwards;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.slider-wrapper {
  display: flex;
  gap: 5vw;
  overflow: hidden;
  margin-bottom: 50px;
}

.slider {
  animation: scroll-left 20s infinite linear 0.5s both;
  display: flex;
}

.slide {
  width: 270vw;
}
@media screen and (min-width: 768px) {
  .slide {
    width: 100vw;
  }
}

.slide img {
  display: block;
  width: 100%;
}/*# sourceMappingURL=animation.css.map */