@charset "utf-8";


/* fadeIn */
.fadeInTrigger { opacity: 0; }

.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/* fadeLeft */
.fadeLeftTrigger { opacity: 0; }

.fadeLeft {
    animation-name: fadeLeftAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
	transform: translateX(-50px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}


/* fadeRight */
.fadeRightTrigger { opacity: 0; }

.fadeRight {
    animation-name: fadeRightAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
	transform: translateX(50px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}

/* fadeUp */
.fadeUpTrigger { opacity: 0; }

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(50px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


/* fadeDown */
.fadeDowTrigger { opacity: 0; }

.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 0.8s;
    animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-50px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


/* zoomIn */
.zoomInTrigger { transform: scale(0); }

.zoomIn {
	animation-name: zoomInAnime;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
}

@keyframes zoomInAnime{
  from {
    transform: scale(0.8);
  }

  to {
    transform: scale(1);
  }
}


/* zoomOut */
.zoomOutTrigger { transform: scale(1.4); }

.zoomOut {
	animation-name: zoomOutAnime;
	animation-duration: 1.8s;
	animation-fill-mode: forwards;
}

@keyframes zoomOutAnime{
  from {
    transform: scale(1.4);
  }

  to {
    transform: scale(1);
  }
}



/* blur */
.blurTrigger { opacity: 0; }

.blur {
	animation-name: blurAnime;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
}

@keyframes blurAnime{
  from {
    opacity: 0;
    filter: blur(20px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}


/* updown */
.updown {
    animation: move-y 1s infinite alternate ease-in-out;
    display: inline-block; 
}

@keyframes move-y {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(15px);
  }
}


/* l-home-strength-logo */
.l-home-strength-logo01,
.l-home-strength-logo02,
.l-home-strength-logo03,
.l-home-strength-logo04 {
    fill: transparent;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-miterlimit: 10;
}

.l-home-strength-logo01 { stroke-dasharray: 1532px; }
.l-home-strength-logo02 { stroke-dasharray: 566px; }
.l-home-strength-logo03 { stroke-dasharray: 122px; }
.l-home-strength-logo04 { stroke-dasharray: 85px; }

.strength-logo-anime .l-home-strength-logo01 {
    stroke: var(--color-red);
    fill: var(--color-red);
    animation: strength-logo-anima01 2s ease;
}

.strength-logo-anime .l-home-strength-logo02 {
    stroke: var(--color-yellow);
    fill: var(--color-yellow);
    animation: strength-logo-anima02 2s ease;
}

.strength-logo-anime .l-home-strength-logo03 {
    stroke: var(--color-red);
    fill: var(--color-red);
    animation: strength-logo-anima03 2s ease;
}

.strength-logo-anime .l-home-strength-logo04 {
    stroke: var(--color-yellow);
    fill: var(--color-yellow);
    animation: strength-logo-anima04 2s ease;
}

@keyframes strength-logo-anima01 {
    0% {
        stroke-dashoffset: 1532px;
        fill: transparent;
    } 70% {
        stroke-dashoffset: 0;
        fill: transparent;
    } 100% {
        fill: var(--color-red);
    }
}

@keyframes strength-logo-anima02 {
    0% {
        stroke-dashoffset: 566px;
        fill: transparent;
    } 70% {
        stroke-dashoffset: 0;
        fill: transparent;
    } 100% {
        fill: var(--color-yellow);
    }
}

@keyframes strength-logo-anima03 {
    0% {
        stroke-dashoffset: 122px;
        fill: transparent;
    } 70% {
        stroke-dashoffset: 0;
        fill: transparent;
    } 100% {
        fill: var(--color-red);
    }
}

@keyframes strength-logo-anima04 {
    0% {
        stroke-dashoffset: 85px;
        fill: transparent;
    } 70% {
        stroke-dashoffset: 0;
        fill: transparent;
    } 100% {
        fill: var(--color-yellow);
    }
}


/* opacity0 */
.opacity0 { opacity: 0; }


/* delay */
.animationDealy1 { animation-delay: 0; }
.animationDealy2 { animation-delay: 0.2s; }
.animationDealy3 { animation-delay: 0.4s; }
.animationDealy4 { animation-delay: 0.6s; }
.animationDealy5 { animation-delay: 0.8s; }

