@charset "utf-8";
/* CSS Document */

/* アニメーション */

.fade01 {
	animation-name: mv01;
	animation-duration: 5s;
	animation-timing-function: ease-out;
	animation-delay: 1.5s;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes mv01 {
	0% {
		opacity: 0;
		transform: scale(1.1);
	}
	20% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
.fade02 {
	animation-name: mv02;
	animation-duration: 3s;
	animation-timing-function: ease-out;
	animation-delay: 2.5s;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes mv02 {
	0% {
		opacity: 0;
		transform: scale(1.1);
	}
	20% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
.fade02_1 {
	animation-name: mv02_1;
	animation-duration: 5s;
	animation-timing-function: ease-out;
	animation-delay: 4.5s;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes mv02_1 {
	0% {
		opacity: 0;
		transform: scale(1.1);
	}
	20% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.fade03 {
	animation-name: mv03;
	animation-duration: 2s;
	animation-timing-function: ease-out;
	animation-delay: 1.5s;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes mv03 {
	0% {
		opacity: 0;
		transform: translateX(10%);
	}
	100% {
		opacity: 1;
		transform: translateX(0px);
	}
}
.fade04 {
	animation-name: mv04;
	animation-duration: 2s;
	animation-timing-function: ease-out;
	animation-delay: 1.0s;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes mv04 {
	0% {
		opacity: 0;
		transform: translateX(-10%);
	}
	100% {
		opacity: 1;
		transform: translateX(0px);
	}
}
.fade05 {
    animation-name: mv05;
    animation-duration: 2.0s;
    animation-timing-function: ease-out;
    animation-delay: 2.0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes mv05 {
	0% {
		opacity: 0;
		transform: translateY(10%);
	}
	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}


.fadezoom{
  animation: fadezoom 3s cubic-bezier(0.22, 1, 0.36, 1) 0.5s 1 forwards;
  opacity: 0;
  filter: blur(10px);
}
@keyframes fadezoom{
  0% {
    opacity: 0;
  }
  100% {
    filter: blur(0);
  }
  80%, 100% {
    opacity: 1;
  }
}
.fade-in{
  opacity: 0;
}
.fade-in{
  will-change: transform;
  animation: fadein;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  z-index: 1;
}
@keyframes fadein{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
.clippath {
  opacity: 0; /* 初期状態では透明に設定 */
}

.clippath.active {
  animation: clippath 1.4s ease-in-out forwards; /* アクティブ時にアニメーションを適用 */
}

@keyframes clippath {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0); /* アニメーションの開始状態 */
  }
  100% {
    opacity: 1;
    clip-path: inset(0); /* アニメーションの終了状態 */
  }
}

.clippath02{
  animation: clippath02;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-delay: 1.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes clippath02{
  0%{
    opacity: 0;
    -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
  }
  100%{
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}

.slide-up{
  opacity: 0;
}
.slide-up.active{
  will-change: transform;
  animation: slideup;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 1;
}
@keyframes slideup{
  0% {
    opacity: 0;
    transform: translate(0, 50px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.fade{
  opacity: 0;
}
.fade.active{
  animation: fade;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.8s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fade{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

.fadeUp{
  opacity: 0;
}
.fadeUp.active{
  will-change: transform;
  animation: fadeinUp;
  animation-duration: 1.4s;
  animation-timing-function: ease-out;
  animation-delay: 2.8s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 2;
}
@keyframes fadeinUp{
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeDown{
  opacity: 0;
}
.fadeDown.active{
  will-change: transform;
  animation: fadeDown;
  animation-duration: 1.4s;
  animation-timing-function: ease-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 2;
}
@keyframes fadeDown{
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeLeft{
  opacity: 0;
}
.fadeLeft.active{
  will-change: transform;
  animation: fadeinLeft;
  animation-duration: 1.2s;
  animation-timing-function: ease-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeinLeft{
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;

    transform: translateX(0);
  }
}

.fadeRight{
  will-change: transform;
  opacity: 0;
}
.fadeRight.active{
  animation: fadeinRight;
  animation-duration: 1.4s;
  animation-timing-function: ease-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 1;
}

@keyframes fadeinRight{
  0% {
    opacity: 0;
    transform: translate(50px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.slideLeft{
  opacity: 0;
}
.slideLeft.active{
  animation: slideLeft;
  animation-duration: 1.2s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 1;
}
@keyframes slideLeft{
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0);
  }
  100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
  }
}
.slideRight{
  opacity: 0;
}
.slideRight.active{
  animation: slideRight;
  animation-duration: 1.2s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 1;
}
@keyframes slideRight{
  0% {
    opacity: 0;
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 0, 0);
  }
  100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
  }
}
.slideUp{
  opacity: 0;
}
.slideUp.active{
  animation: slideUp;
  animation-duration: 1.2s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 1;
}
@keyframes slideUp{
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 120%, 0);
    transform: translate3d(0, 120%, 0);
  }
  100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
  }
}
.slideDown{
  opacity: 0;
}
.slideDown.active{
  animation: slideDown;
  animation-duration: 1.6s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 1;
}
@keyframes slideDown{
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -40%, 0);
    transform: translate3d(0, -40%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}




