@charset "UTF-8";
.topmov {
  transform: translate(0, -50px);
    opacity: 0.0;
      animation-name: topmov;
    animation-duration: 1.5s;
    animation-fill-mode: both;
    animation-iteration-count:forwards;
    letter-spacing: calc(0.2em);
  }
  @keyframes topmov {
    100% {
  opacity: 1.0;
  transform: translate(0, 0px);
  transition: ease-in-out 1.5s;
  letter-spacing: calc(0.1em);
    }
  }
  .topleft {
  transform: translate(-50px, 0);
    opacity: 0.0;
      animation-name: topleft;
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-iteration-count:forwards;
  }
  @keyframes topleft {
    100% {
  opacity: 1.0;
  transform: translate(0, 0px);
  transition: ease-in-out 0.8s;
  letter-spacing: calc(0.1em);
    }
  }
    .topright {
  transform: translate(50px, 0);
    opacity: 0.0;
      animation-name: topleft;
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-iteration-count:forwards;
  }
  @keyframes topright {
    100% {
  opacity: 1.0;
  transform: translate(0, 0px);
  transition: ease-in-out 0.8s;
    }
  }
.topzoomout {
  opacity: 0.0;
 animation-name: topzoomout;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-iteration-count:forwards;
}
@keyframes topzoomout {
  0% {
    opacity: 0;
 transform: scale(1.2);
  }
   40% {
transform: scale(0.8);
  }
  100% {
    opacity: 1;
transform: scale(1);
  }
}

.topfade {
  opacity: 0.0;
   animation-name: topfade;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-iteration-count:forwards;
}
  @keyframes topfade {
    100% {
  opacity: 1;
  transition: ease-in-out 0.8s;
    }
}


 /*top to bottom*/
.mov-top {
  transform: translate(0, -50px);
    opacity: 0.0;
transition: ease-in-out 0.8s;
  }
 .mov-top.scrollin {
  opacity: 1.0;
  transform: translate(0, 0px);
  }
  
  /*left to right*/
.mov-left {
  opacity: 0.0;
  transform: translate(-10%, 0);

  }
 .mov-left.scrollin {
  opacity: 1;
  transform: translateX(0px);
    transition: ease-in-out 0.8s;
  }
  
  /*right to left*/
.mov-right {
  opacity: 0.0;
  transform: translate(10%, 0);

  }
 .mov-right.scrollin {
opacity: 1.0;
transform: translate(0, 0);
transition: ease-in-out 0.8s;
vertical-align: bottom;
  }
  
  /*left to right*/
.mov-leftbig {
  opacity: 0.0;
  transform: translate(-100%, 0);
transition: ease-in-out 0.8s;
  }
 .mov-leftbig.scrollin {
  opacity: 1;
  transform: translate(0%, 0);
  }
  
  /*right to left*/
.mov-rightbig {
transform: translate(100%, 0);
opacity: 0.0;
transition: ease-in-out 0.8s;
  }
 .mov-rightbig.scrollin {
  opacity: 1.0;
  transform: translate(0%, 0);
  }
  
  /*bottom to top*/
.mov-bottom {
  opacity: 0.0;
  transform: translate(0, 50px);
transition: ease-in-out 0.8s;
  }
 .mov-bottom.scrollin {
  opacity: 1;
  transform: translate(0, 0);
  } 
  
 /*alpha0 to 100*/
.mov-fade {
  opacity: 0.0;
}
.mov-fade.scrollin {
  opacity: 1;
  transition: ease-in-out 0.8s;
}

 /*zoom to up*/
.mov-zoomin {
  opacity: 0.0;
}
.mov-zoomin.scrollin {
 animation-name: mov-zoomin;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-iteration-count:forwards;
}
@keyframes mov-zoomin {
  0% {
 opacity: 0;
 transform: scale(0.8);
  }
   50% {
transform: scale(1.2);
  }
  100% {
    opacity: 1;
transform: scale(1);
  }
} 

 /*zoom to out*/
.mov-zoomout {
  opacity: 0.0;

}
.mov-zoomout.scrollin {
 animation-name: mov-zoomout;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-iteration-count:forwards;
}
@keyframes mov-zoomout {
  0% {
    opacity: 0;
 transform: scale(1.2);
  }
   40% {
transform: scale(0.8);
  }
  100% {
    opacity: 1;
transform: scale(1);
  }
}
.mov-rotate{
opacity: 0.0;
transform-origin:left bottom;
transform:rotate(45deg);
}
.mov-rotate.scrollin{
 animation-name: mov-rotate;
    animation-duration: 0.4s;
    animation-fill-mode: both;
    animation-iteration-count:forwards;
}
@keyframes mov-rotate {
  0% {
    opacity: 0;
transform:rotate(10deg);
  }
  100% {
    opacity: 1;
transform:rotate(0deg);
  }
}




 
.delay01 {
  animation-delay: 0.1s;
}
.delay02 {
  animation-delay: 0.2s;
}
.delay03 {
  animation-delay: 0.3s;
}
.delay04 {
  animation-delay: 0.4s;
}
.delay05 {
  animation-delay: 0.5s;
}
.delay06 {
  animation-delay: 0.6s;
}
.delay07 {
  animation-delay: 0.7s;
}
.delay08 {
  animation-delay: 0.8s;
}
.delay09 {
  animation-delay: 0.9s;
}
.delay10 {
  animation-delay: 1.0s;
}
.delay11 {
  animation-delay: 1.1s;
}
.delay15 {
  animation-delay: 1.5s;
}
.delay20 {
  animation-delay: 2.0s;
}
.delay25 {
  animation-delay: 2.5s;
}
.delay30 {
  animation-delay: 3.0s;
}
.delay30 {
  animation-delay: 3.5s;
}














.fadein-right {
  opacity: 0.0;
  transform: translate(50%, 0);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s ;
}
/* 画面内に入った状態 */
.fadein-right.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
/*画面内に入ったら表示する*/
/* 画面外にいる状態 */
.fadein-left {
  opacity: 0.0;
  transform: translate(-50%, 0);
  transition:  0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
/* 画面内に入った状態 */
.fadein-left.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
/*画面内に入ったら表示する*/
/* 画面外にいる状態 */
.fadein-top {
  opacity: 0.0;
  transform: translate(0, 50px);
  transition: all 1.3s;
  display: block;
}
/* 画面内に入った状態 */
.fadein-top.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
/*画面内に入ったら表示する*/
/* 画面外にいる状態 */
.fadein-bottom {
  opacity: 0.0;
  transform: translate(0, -50px);
  transition: all 1.3s;
  display: block;
}
/* 画面内に入った状態 */
.fadein-bottom.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}


/*画面内に入ったら表示する*/
/* 画面外にいる状態 */
.fade {
  opacity: 0.0;
  transition: all 500ms;
  /* [disabled]width: auto; */
}
.fade.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.fadein {
  opacity: 0.0;
  animation: fadeinAnime 1s linear 0.5s forwards; /*表示されて1秒後に下線が0.5秒かけて表示*/
  /* [disabled]height: auto; */
}
@keyframes fadeinAnime {
  0% {
    opacity: 0.0;
    transform: translate(0, 20px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0px);
  }
}

@media screen and (min-width: 481px) {/*PC*/
.cocAnime {

background-size: calc(120% * 1.5);
background-position: center center;
animation: cocAnime 2s ease-in-out 2s forwards; /*表示されて1秒後に下線が0.5秒かけて表示*/
}

/*森林認証*/
@keyframes cocAnime {
  0% {

transition: all 2s ease-in-out 2s;
background-size: calc(120% * 1.5);
  }
  100% {

transition: all 2s ease-in-out 2s;
background-size: calc(120%);
  }
}
}

@media screen and (max-width:480px) {
.cocAnime {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 120%;
    animation: cocAnime 2s ease-in-out 2s forwards;
}
/*森林認証*/
@keyframes cocAnime {
  0% {
transition: all 2s ease-in-out 2s;
    background-size: auto 120%;
  }
  100% {

transition: all 2s ease-in-out 2s;
    background-size: auto 100%;
  }
}
}

/*マスク*/
.mask_box {
    -webkit-mask-image: url("../images/mask_block.svg");
    -webkit-mask-mode: alpha;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: calc(00%);
    -webkit-mask-position: left top;
 animation: staffMotion 1.5s cubic-bezier(.09,.77,.87,.17) 1s forwards; /**/
}
@keyframes staffMotion {
  0% {
    -webkit-mask-size: 0%, 0%;
  }
   20% {
    -webkit-mask-size: 0%, 100vh;
  }
  100% {
    -webkit-mask-size:100%, 100vh;
  }
}

/*about わたしたちの特長*/
.fadein-ab {
  opacity: 0.0;
  transform: translate(0, -20px);
}
@keyframes fadein-abAnime {
  0% {
    opacity: 0.0;
    transform: translate(0, -20px);
  }
  100% {
    opacity: 1.0;
    transform: translate(0, 0);
  }
}
/*///////画像を出現させるアニメーションCSS////////*/
.flipLeft {
  animation-name: flipLeft;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  perspective-origin: left center;
  opacity: 0.0;
}
@keyframes flipLeft {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}

  .blur_anime{
    animation: blurAnime 1s ease 0.5s forwards;
  }
    @keyframes blurAnime {
    0% {
  opacity: 0.0;
  -ms-filter: blur(6px);
  filter: blur(6px);
    }
    100% {
  opacity: 1.0;
  -ms-filter: blur(0px);
  filter: blur(0px);
    }
  }
 

.fadein-ab:nth-child(1) {
  animation: fadein-abAnime 1s linear 0.7s forwards;
}
.fadein-ab:nth-child(2) {
  animation: fadein-abAnime 1s linear 0.8s forwards;
}
.fadein-ab:nth-child(3) {
  animation: fadein-abAnime 1s linear 0.9s forwards;
}
.fadein-ab:nth-child(4) {
  animation: fadein-abAnime 1s linear 0.0s forwards;
}
.fadein-ab:nth-child(5) {
  animation: fadein-abAnime 1s linear 0.1s forwards;
}
.fadein-ab:nth-child(6) {
  animation: fadein-abAnime 1s linear 0.2s forwards;
}
.fadein-ab:nth-child(7) {
  animation: fadein-abAnime 1s linear 0.3s forwards;
}
.fadein-ab:nth-child(8) {
  animation: fadein-abAnime 1s linear 0.4s forwards;
}
/*画面内に入ったら表示する*/
/* 画面外にいる状態 */
.fadein-right {
  opacity: 0.0;
  transform: translate(50%, 0);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s ;
}
/* 画面内に入った状態 */
.fadein-right.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
/*画面内に入ったら表示する*/
/* 画面外にいる状態 */
.fadein-left {
  opacity: 0.0;
  transform: translate(-50%, 0);
  transition:  0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
/* 画面内に入った状態 */
.fadein-left.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
/*画面内に入ったら表示する*/
/* 画面外にいる状態 */
.fadein-top {
  opacity: 0.0;
  transform: translate(0, 50px);
  transition: all 1.3s;
  display: block;
}
/* 画面内に入った状態 */
.fadein-top.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
/*画面内に入ったら表示する*/
/* 画面外にいる状態 */
.fadein-bottom {
  opacity: 0.0;
  transform: translate(0, -50px);
  transition: all 1.3s;
  display: block;
}
/* 画面内に入った状態 */
.fadein-bottom.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
/*画面内に入ったら表示する*/
/* 画面外にいる状態 */
.navmov {
  opacity: 0.0;
  top: calc(-(100vw / 24));
}
/* 画面内に入った状態 */
.navmov.scrollin {
  opacity: 1.0;
  animation: navmove 2s alternate infinite;
  top: calc(-(100vw / 24));
}
/*画面内に入ったら表示する*/
/* 画面外にいる状態 */
.fadein-top2 {
  opacity: 0.0;
  transform: translate(0, 10px);
  transition: all 0.5s;
  display: block;
  z-index: 2;
}
/* 画面内に入った状態 */
.fadein-top2.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
/*画面内に入ったら表示する*/
/* 画面外にいる状態 */
.fadein-right2 {
  opacity: 0.0;
  transform: translate(0, 10px);
  transition: all 0.5s;
  line-height: 0.0em;
  display: block;
  z-index: 2;
}
/* 画面内に入った状態 */
.fadein-right2.scrollin {
  opacity: 1;
  line-height: 1.10em;
  transform: translate(0, 0);
}
@keyframes navmove {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes alpha {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes alpha-re {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes leftgo {
  from {
    opacity: 0;
    transform: translateX(-980px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes rightgo {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
/*==================================================
ぱたっ
===================================*/

.flipLeftTopTrigger{
	opacity: 0;
}
/* flipLeftTop */
.flipLeftTop{
animation-name: flipLeftTopAnime;
animation-duration:1s;
animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes flipLeftTopAnime{
  from {
   transform: translate(-20px,80px) rotate(-15deg);
 	opacity: 0;
  }
  to {
   transform: translate(0,0) rotate(0deg);
	opacity: 1;
  }
}

/*about わたしたちの特長*/
.fadein-left:nth-of-type(1) {
  transition-delay: .0s;
}
.fadein-left:nth-of-type(2) {
  transition-delay: .1s;
}
.fadein-left:nth-of-type(3) {
  transition-delay: .2s;
}
.fadein-left:nth-of-type(4) {
  transition-delay: .3s;
}
.fadein-left:nth-of-type(5) {
  transition-delay: .4s;
}
.fadein-left:nth-of-type(6) {
  transition-delay: .5s;
}
.fadein-left:nth-of-type(7) {
  transition-delay: .6s;
}
.fadein-left:nth-of-type(8) {
  transition-delay: .7s;
}
/*Highgrade & Highquality*/
.wave1 .fadein-top2:nth-of-type(1) {
  transition-delay: .0s;
}
.wave1 .fadein-top2:nth-of-type(2) {
  transition-delay: .05s;
}
.wave1 .fadein-top2:nth-of-type(3) {
  transition-delay: .1s;
}
.wave1 .fadein-top2:nth-of-type(4) {
  transition-delay: .15s;
}
.wave1 .fadein-top2:nth-of-type(5) {
  transition-delay: .2s;
}
.wave1 .fadein-top2:nth-of-type(6) {
  transition-delay: .25s;
}
.wave1 .fadein-top2:nth-of-type(7) {
  transition-delay: .3s;
}
.wave1 .fadein-top2:nth-of-type(8) {
  transition-delay: .35s;
}
.wave1 .fadein-top2:nth-of-type(9) {
  transition-delay: .4s;
}
.wave1 .fadein-top2:nth-of-type(10) {
  transition-delay: .45s;
}
.wave1 .fadein-top2:nth-of-type(11) {
  transition-delay: .5s;
}
.wave1 .fadein-top2:nth-of-type(12) {
  transition-delay: .55s;
}
.wave2 .fadein-top2:nth-of-type(1) {
  transition-delay: .6s;
}
.wave2 .fadein-top2:nth-of-type(2) {
  transition-delay: .65s;
}
.wave2 .fadein-top2:nth-of-type(3) {
  transition-delay: .7s;
}
.wave2 .fadein-top2:nth-of-type(4) {
  transition-delay: .75s;
}
.wave2 .fadein-top2:nth-of-type(5) {
  transition-delay: .8s;
}
.wave2 .fadein-top2:nth-of-type(6) {
  transition-delay: .85s;
}
.wave2 .fadein-top2:nth-of-type(7) {
  transition-delay: .9s;
}
.wave2 .fadein-top2:nth-of-type(8) {
  transition-delay: .95s;
}
.wave2 .fadein-top2:nth-of-type(9) {
  transition-delay: 1.0s;
}
.wave2 .fadein-top2:nth-of-type(10) {
  transition-delay: 1.05s;
}
.wave2 .fadein-top2:nth-of-type(11) {
  transition-delay: 1.1s;
}
.wave2 .fadein-top2:nth-of-type(12) {
  transition-delay: 1.15s;
}
/*Factory ワンストップオーダーを叶える自社工場*/
#factory .wave1 .fadein-right2:nth-of-type(1) {
  transition-delay: .0s;
}
#factory .wave1 .fadein-right2:nth-of-type(2) {
  transition-delay: .1s;
}
#factory .wave1 .fadein-right2:nth-of-type(3) {
  transition-delay: .2s;
}
#factory .wave1 .fadein-right2:nth-of-type(4) {
  transition-delay: .3s;
}
#factory .wave1 .fadein-right2:nth-of-type(5) {
  transition-delay: .4s;
}
#factory .wave1 .fadein-right2:nth-of-type(6) {
  transition-delay: .5s;
}
#factory .wave1 .fadein-right2:nth-of-type(7) {
  transition-delay: .6s;
}
#factory .wave1 .fadein-right2:nth-of-type(8) {
  transition-delay: .7s;
}
#factory .wave1 .fadein-right2:nth-of-type(9) {
  transition-delay: .8s;
}
#factory .wave1 .fadein-right2:nth-of-type(10) {
  transition-delay: .9s;
}
#factory .wave1 .fadein-right2:nth-of-type(11) {
  transition-delay: 1.0s;
}
#factory .wave2 .fadein-right2:nth-of-type(1) {
  transition-delay: 1.1s;
}
#factory .wave2 .fadein-right2:nth-of-type(2) {
  transition-delay: 1.2s;
}
#factory .wave2 .fadein-right2:nth-of-type(3) {
  transition-delay: 1.3s;
}
#factory .wave2 .fadein-right2:nth-of-type(4) {
  transition-delay: 1.4s;
}
#factory .wave2 .fadein-right2:nth-of-type(5) {
  transition-delay: 1.5s;
}
#factory .wave2 .fadein-right2:nth-of-type(6) {
  transition-delay: 1.6s;
}
#factory .wave2 .fadein-right2:nth-of-type(7) {
  transition-delay: 1.7s;
}
.wabe1 .fadein-left {
  transition-delay: .0s;
}
.wabe2 .fadein-left {
  transition-delay: .2s;
}
#effect2 .fadein:nth-of-type(2) {
  -moz-transition-delay: 100ms;
  -webkit-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  -ms-transition-delay: 100ms;
}
#effect2 .fadein:nth-of-type(3) {
  -moz-transition-delay: 150ms;
  -webkit-transition-delay: 150ms;
  -o-transition-delay: 150ms;
  -ms-transition-delay: 150ms;
}
#effect2 .fadein:nth-of-type(4) {
  -moz-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
}
#effect2 .fadein:nth-of-type(5) {
  -moz-transition-delay: 250ms;
  -webkit-transition-delay: 250ms;
  -o-transition-delay: 250ms;
  -ms-transition-delay: 250ms;
}
#effect3 .fadein-right:nth-of-type(2) {
  -moz-transition-delay: 100ms;
  -webkit-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  -ms-transition-delay: 100ms;
  padding-bottom: 0px;
}
#effect3 .fadein-right:nth-of-type(3) {
  -moz-transition-delay: 150ms;
  -webkit-transition-delay: 150ms;
  -o-transition-delay: 150ms;
  -ms-transition-delay: 150ms;
}
#effect4 .fadein-left:nth-of-type(2) {
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
}
#effect4 .fadein-left:nth-of-type(3) {
  -moz-transition-delay: 150ms;
  -webkit-transition-delay: 150ms;
  -o-transition-delay: 150ms;
  -ms-transition-delay: 150ms;
}
