@charset "UTF-8";

.top-mainV-paint-01.is-active {
	display: block;
}
.top-mainV-paint-01.is-active:before {
	animation: point-01 .2s ease-in both;
	background-size: auto 100%;
	background-position: left center;
	overflow: hidden;
}


.top-mainV-paint-02.is-active {
	display: block;
}
.top-mainV-paint-02.is-active:before {
	animation: point-02 .2s ease-in both;
	background-size: auto 100%;
	background-position: left center;
	overflow: hidden;
}

.top-mainV-text-fighter.is-active{
	display: block;
}
.top-mainV-text-fighter.is-active:before {
	animation: text-fighter .5s ease both;
}

.top-mainV-logo-angel.is-active-02,
.top-mainV-paint-01.is-active-02,
.top-mainV-paint-02.is-active-02,
.top-mainV-text-fighter.is-active-02 {
	animation: slide-out-bottom .5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

.top-mainV-logo-fighter.is-active {
	display: block;
	animation: logo-fighter .5s ease-out both;
}
.top-mainV-logo-fighter.is-active-02 {
	animation: fade-out 1s ease both;
}


@-webkit-keyframes point-01 {
	0% {width: 0%}
	100% {width: 100%}
}
@keyframes point-01 {
	0% {width: 0%}
	100% {width: 100%}
}

@-webkit-keyframes point-02 {
	0% {width: 0%}
	100% {width: 100%}
}
@keyframes point-02 {
	0% {width: 0%}
	100% {width: 100%}
}

@-webkit-keyframes text-fighter {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes text-fighter {
  0% {
    opacity: 0;
  }
  100% {
   opacity: 1;
  }
}

@-webkit-keyframes slide-out-bottom {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
}
@keyframes slide-out-bottom {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
}


@-webkit-keyframes logo-fighter {
  0% {
    -webkit-transform: scale(7);
            transform: scale(7);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
        opacity: 1;
  }
}
@keyframes logo-fighter {
  0% {
    -webkit-transform: scale(7);
            transform: scale(7);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
        opacity: 1;
  }
}



@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
