/*--アニメbase--*/
.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeUpAnime{
  from {
  opacity: 0;
  transform: translateY(30px);
  }
  to {
  opacity: 1;
  transform: translateY(0);
  }
} 
.fadeUpTrigger{
  opacity: 0;
}

.fadeUpData{
  animation-name:fadeUpAnimeData;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeUpAnimeData{
  from {
  opacity: 0;
  transform: translateY(30px);
  transform : scale(0.5);
  }
  to {
  opacity: 1;
  transform: translateY(0);
  transform : scale(1.0);
  }
} 
.fadeUpTriggerData{
  opacity: 0;
}
.fadeDown{
  animation-name:fadeDownAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeDownAnime{
  from {
  opacity: 0;
  transform: translateY(-50px);
  }
  to {
  opacity: 1;
  transform: translateY(0);
  }
} 
.fadeDownTrigger{
  opacity: 0;
}
.fadeRight{
  animation-name:fadeRightAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeRightAnime{
  from {
  opacity: 0;
  transform: translateX(-50px);
  }
  to {
  opacity: 1;
  transform: translateX(0);
  }
} 
.fadeRightTrigger{
  opacity: 0;
}
.fadeLeft{
  animation-name:fadeLeftAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeLeftAnime{
  from {
  opacity: 0;
  transform: translateX(50px);
  }
  to {
  opacity: 1;
  transform: translateX(0);
  }
} 
.fadeLeftTrigger{
  opacity: 0;
}
.zoomin {
  opacity : 1;
  transform : scale(1.0);
  transition : all 6s;
}
.zoomin.active{
  opacity : 1;
  transform : scale(1.1);
}
.smooth {
  clip-path: inset(0 100% 0 0);
  transition: all 1s ease;
}
.smooth.active {
  clip-path: inset(0);
}
.L_to_R{
  animation-name:left_to_right;
  animation-duration:2s;
  animation-fill-mode:forwards;
  animation-timing-function: ease;
}
@keyframes left_to_right {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0);
  }
}
img.zoom-1 {
  animation: animationZoom1 1s ease-in-out forwards;
  opacity: 0;
}
@keyframes animationZoom1 {
  0% {
    opacity: 0;
    transform: scale(0)
  }
  100% {
    opacity: 1; 
    transform: scale(1.0)
  }
}
img.zoom-2 {
  animation: animationZoom2 1s ease-in-out forwards;
  animation-delay: 1.0s;
  opacity: 0;
}
@keyframes animationZoom2 {
  0% {
    opacity: 0;
    transform: scale(0)
  }
  100% { 
    opacity: 1;
    transform: scale(1.0)
  }
}
.target1 {
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
  transform: translateY(-4%);
  }
  100% {
  transform: translateY(4%);
  }
}
.target2 {
  animation: floating-y 2s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
  transform: translateY(5%);
  }
  100% {
  transform: translateY(-5%);
  }
}
.target3 {
  animation: floating-y 1.7s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
  transform: translateY(-3%);
  }
  100% {
  transform: translateY(3%);
  }
}
img.small-1 {
  animation: animationSmall1 2s ease-in-out forwards;
  opacity: 0;
}
@keyframes animationSmall1 {
  0% {
    opacity: 0;
    transform: scale(2.0)
  }
  100% {
    opacity: 1; 
    transform: scale(1.0)
  }
}
.delay-time02{
  animation-delay: 0.5s;
}
.delay-time03{
  animation-delay: 1.0s;
}
.delay-time04{
  animation-delay: 1.5s;
}

@keyframes zoomUp {
  0% {
  transform: scale(1);
  }
  100% {
  transform: scale(1.1); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
.type1 {
  transform-origin: left bottom;
}
.type2 {
  transform-origin: right center;
}
.type3 {
  transform-origin: top center;
}