@charset "utf-8";
/*-------anime------*/
.js-split span {
  opacity: 0;
  display: inline-block;
  transform: translateY(20px);
}

.js-split.is-active span {
  animation: fadeUp 0.6s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.a-ct {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.a-ct::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  display: inline-block;
  background: #fff;
  top: 0;
  z-index: 5;
  transition: 0.8s;
  transition-delay: 0.4s;
}
.a-left::after {
  left: 0;
}
.a-left.is-visible::after {
  left: -100vw;
}
.a-right::after {
  right: 0;
}
.a-right.is-visible::after {
  right: -100vw;
}
.fade-up {
  opacity: 0;
  transform: translateY(15%);
  transition: 1.5s;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(-0%);
}
.fade-up05 {
  transition-delay: 0.75s;
}
.guragura {
  animation: GuraGura 1.5s infinite;
}
@keyframes GuraGura {
  0%,
  100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}
.dog-walk {
  position: absolute;
  width: max(var(--px-93), 93px);
  height: max(var(--px-139), 139px);
}
.sec2 .dog-walk {
  top: 30px;
  left: var(--px-208);
}
.sec3 .w-left {
  top: 60px;
  left: 0;
  transform: rotate(-25deg);
}
.sec3 .w-right {
  bottom: 0;
  right: 0;
  transform: rotate(15deg);
}
.sec4 .w-left {
  bottom: 10px;
  right: 0;
  transform: rotate(-25deg) translateX(100%);
}
.sec4 .w-right {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}
.dog-foot {
  width: max(var(--px-45), 45px);
  position: absolute;
  opacity: 0;
}
.dog-foot.num1 {
  right: 0;
  top: 0;
  transition-delay: 1.2s;
}
.dog-foot.num2 {
  left: 0;
  top: max(var(--px-34), 34px);
  transition-delay: 0.9s;
}
.dog-foot.num3 {
  bottom: max(var(--px-34), 34px);
  right: 0;
  transition-delay: 0.6s;
}
.dog-foot.num4 {
  bottom: 0;
  left: 0;
  transition-delay: 0.3s;
}
.dog-walk.is-visible .dog-foot {
  opacity: 1;
}
@media screen and (max-width: 680px) {
  @keyframes GuraGura {
    0%,
    100% {
      transform: rotate(-3deg) translateY(-100%);
    }
    50% {
      transform: rotate(3deg) translateY(-100%);
    }
  }
  .sec3 .w-left {
    top: -60px;
    left: -5.55%;
    transform: rotate(-25deg);
  }
}
