@charset "UTF-8";
/*--------------------------
 CSSアニメーション
--------------------------*/
#mq_chanel .fadeup {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0, 20px);
  -webkit-transform-style: preserve-3d;
  backface-visibility: hidden;
  filter: alpha(opacity=0);
  opacity: 0;
  transform: translate(0,20px);
  transform-style: preserve-3d;
  -webkit-transition: all .7s ease 0s;
  -ms-transition: all .7s ease 0s;
  -moz-transition: all .7s ease 0s;
  transition: all .7s ease 0s;
}

#mq_chanel .fadeup.is-active {
  -webkit-transform: translate(0, 0);
  filter: alpha(opacity=100);
  opacity: 1;
  transform: translate(0, 0);
}


/*fadein*/
#mq_chanel .fadein {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all .8s ease-in-out 0s;
  -ms-transition: all .8s ease-in-out 0s;
  -moz-transition: all .8s ease-in-out 0s;
  transition: all .8s ease-in-out 0s;
}

#mq_chanel .fadein.is-active {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=1);
  opacity: 1;
}


/*fadein-skew*/
#mq_chanel .fade-skew {
    -webkit-transition: opacity 1s ease-out, -webkit-transform 1s cubic-bezier(0.05, 0.45, 0.6, 1);
    transition: opacity 1s ease-out, -webkit-transform 1.6s cubic-bezier(0.05, 0.45, 0.6, 1);
    transition: transform 1s cubic-bezier(0.05, 0.45, 0.6, 1), opacity 1s ease-out;
    transition: transform 1s cubic-bezier(0.05, 0.45, 0.6, 1), opacity 1s ease-out, -webkit-transform 1s cubic-bezier(0.05, 0.45, 0.6, 1);
    -webkit-transform: translate3d(30px, 60px, 0) skew(0deg, 2deg);
    transform: translate3d(30px, 60px, 0) skew(0deg, 2deg);
    opacity: 0;
}

#mq_chanel .fade-skew.is-active {
    -webkit-transform: translate3d(0, 0, 0) skew(0deg, 0deg);
    transform: translate3d(0, 0, 0) skew(0deg, 0deg);
    opacity: 1;
}


/* mv/リード（画像） 1文字づつアニメーション*/
#mq_chanel .letter {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 1s cubic-bezier(.36,.14,0,1);
  -webkit-transform: translate(0,40px);
  transform: translate(0,40px);
}

#mq_chanel .letter.is-show {
  opacity: 1;
  -webkit-transform: translate(0,0);
  transform: translate(0,0);
}

#mq_chanel .letter1 {
  transition-delay: 0;
}
#mq_chanel .letter2 {
  transition-delay: .1s;
}
#mq_chanel .letter3 {
  transition-delay: .2s;
}
#mq_chanel .letter4 {
  transition-delay: .3s;
}
#mq_chanel .letter5 {
  transition-delay: .4s;
}
#mq_chanel .letter6 {
  transition-delay: .5s;
}
#mq_chanel .letter7 {
  transition-delay: .6s;
}
#mq_chanel .letter8 {
  transition-delay: .7s;
}
#mq_chanel .letter9 {
  transition-delay: .8s;
}
#mq_chanel .letter10 {
  transition-delay: .9s;
}
#mq_chanel .letter11 {
  transition-delay: 1s;
}
#mq_chanel .letter12 {
  transition-delay: 1.1s;
}
#mq_chanel .letter13 {
  transition-delay: 1.2s;
}
#mq_chanel .letter14 {
  transition-delay: 1.3s;
}
#mq_chanel .letter15 {
  transition-delay: 1.4s;
}
#mq_chanel .letter16 {
  transition-delay: 1.5s;
}
#mq_chanel .letter17 {
  transition-delay: 1.6s;
}
#mq_chanel .letter18 {
  transition-delay: 1.7s;
}
#mq_chanel .letter19 {
  transition-delay: 1.8s;
}
#mq_chanel .letter20 {
  transition-delay: 1.9s;
}
#mq_chanel .letter21 {
  transition-delay: 2s;
}
#mq_chanel .letter22 {
  transition-delay: 2.1s;
}
#mq_chanel .letter23 {
  transition-delay: 2.2s;
}

/* リード（テキスト） 1文字づつアニメーション*/
#mq_chanel .lead span {
  opacity: 0;
  transition: .5s cubic-bezier(.36, .14, 0, 1);
  -webkit-transform: translate(0, 20px);
  transform: translate(0, 20px);
  display: inline-block;
}

#mq_chanel .lead.is-active span {
  opacity: 1;
  -webkit-transform: translate(0,0);
  transform: translate(0,0);
}
#mq_chanel .lead.is-active span:first-child {
  transition-delay: 0;
}
#mq_chanel .lead.is-active span:nth-child(2) {
  transition-delay: 0.04s;
}
#mq_chanel .lead.is-active span:nth-child(3) {
  transition-delay: 0.08s;
}
#mq_chanel .lead.is-active span:nth-child(4) {
  transition-delay: 0.12s;
}
#mq_chanel .lead.is-active span:nth-child(5) {
  transition-delay: 0.16s;
}
#mq_chanel .lead.is-active span:nth-child(6) {
  transition-delay: 0.20s;
}
#mq_chanel .lead.is-active span:nth-child(7) {
  transition-delay: 0.24s;
}
#mq_chanel .lead.is-active span:nth-child(8) {
  transition-delay: 0.28s;
}
#mq_chanel .lead.is-active span:nth-child(9) {
  transition-delay: 0.32s;
}
#mq_chanel .lead.is-active span:nth-child(10) {
  transition-delay: 0.36s;
}
#mq_chanel .lead.is-active span:nth-child(11) {
  transition-delay: 0.40s;
}
#mq_chanel .lead.is-active span:nth-child(12) {
  transition-delay: 0.44s;
}
#mq_chanel .lead.is-active span:nth-child(13) {
  transition-delay: 0.48s;
}
#mq_chanel .lead.is-active span:nth-child(14) {
  transition-delay: 0.52s;
}
#mq_chanel .lead.is-active span:nth-child(15) {
  transition-delay: 0.56s;
}
#mq_chanel .lead.is-active span:nth-child(16) {
  transition-delay: 0.6s;
}
#mq_chanel .lead.is-active span:nth-child(17) {
  transition-delay: 0.64s;
}
#mq_chanel .lead.is-active span:nth-child(18) {
  transition-delay: 0.68s;
}
#mq_chanel .lead.is-active span:nth-child(19) {
  transition-delay: 0.72s;
}
#mq_chanel .lead.is-active span:nth-child(20) {
  transition-delay: 0.76s;
}
#mq_chanel .lead.is-active span:nth-child(21) {
  transition-delay: 0.80s;
}
#mq_chanel .lead.is-active span:nth-child(22) {
  transition-delay: 0.84s;
}
#mq_chanel .lead.is-active span:nth-child(23) {
  transition-delay: 0.88s;
}
#mq_chanel .lead.is-active span:nth-child(24) {
  transition-delay: 0.92s;
}
#mq_chanel .lead.is-active span:nth-child(25) {
  transition-delay: 0.96s;
}
#mq_chanel .lead.is-active span:nth-child(26) {
  transition-delay: 1s;
}
#mq_chanel .lead.is-active span:nth-child(27) {
  transition-delay: 1.04s;
}
#mq_chanel .lead.is-active span:nth-child(28) {
  transition-delay: 1.08s;
}
#mq_chanel .lead.is-active span:nth-child(29) {
  transition-delay: 1.12s;
}
#mq_chanel .lead.is-active span:nth-child(30) {
  transition-delay: 1.16s;
}
#mq_chanel .lead.is-active span:nth-child(31) {
  transition-delay: 1.2s;
}
#mq_chanel .lead.is-active span:nth-child(32) {
  transition-delay: 1.24s;
}
#mq_chanel .lead.is-active span:nth-child(33) {
  transition-delay: 1.28s;
}
#mq_chanel .lead.is-active span:nth-child(34) {
  transition-delay: 1.32s;
}
#mq_chanel .lead.is-active span:nth-child(35) {
  transition-delay: 1.36s;
}
#mq_chanel .lead.is-active span:nth-child(36) {
  transition-delay: 1.4s;
}
#mq_chanel .lead.is-active span:nth-child(37) {
  transition-delay: 1.44s;
}
#mq_chanel .lead.is-active span:nth-child(38) {
  transition-delay: 1.48s;
}

