@charset "UTF-8";
@tailwind base;
.scroll_position:before {
  animation: pathmove 4s linear infinite;
}
@keyframes pathmove {
  0% {
    top: 0;
  }

  25% {
    top: 25%;
  }

  50% {
    top: 50%;
  }

  75% {
    top: 75%;
  }

  90% {
    top: 90%;

    /* または適切な値に変更 */
  }

  100% {
    top: auto;
    bottom: 0;
    opacity: 0;
  }
}
.scroll_visible {
  transform: translateY(0);
  opacity: 1;
  @media only screen and (min-width: 1272px) {
    /* transform: translate(0, 0); */
  }
}


.p-fv-img-wrap{
  max-width: 84%;
}