@charset "utf-8";
@media (min-width: 769px) {
  .fst-scale {
    position: absolute;
    opacity: 0;
    animation-fill-mode: forwards !important;
    animation: fst_scale 0.5s; }
    .fst-scale:nth-child(1) {
      animation-delay: 0s !important; }
    .fst-scale:nth-child(2) {
      animation-delay: 0.2s !important; }
    .fst-scale:nth-child(3) {
      animation-delay: 0.4s !important; }
    .fst-scale:nth-child(4) {
      animation-delay: 0.6s !important; }
    .fst-scale:nth-child(5) {
      animation-delay: 0.8s !important; }
  @keyframes fst_scale {
    0% {
      opacity: 0;
      transform: scale(0); }
    100% {
      opacity: 1;
      transform: scale(1); } }
}
@media (max-width: 769px) {
  .fst-scale {
    position: absolute;
    opacity: 0;
    animation-fill-mode: forwards !important;
    animation: fst_scale 0.5s; }
    .fst-scale:nth-child(1) {
      animation-delay: 0s !important; }
    .fst-scale:nth-child(2) {
      animation-delay: 0.2s !important; }
    .fst-scale:nth-child(3) {
      animation-delay: 0.4s !important; }
    .fst-scale:nth-child(4) {
      animation-delay: 0.6s !important; }
    .fst-scale:nth-child(5) {
      animation-delay: 0.8s !important; }
  @keyframes fst_scale {
    0% {
      opacity: 0;
      transform: scale(0); }
    100% {
      opacity: 1;
      transform: scale(1); } }
}
.fst-up {
    position: absolute;
    opacity: 0;
    animation-fill-mode: forwards !important;
    animation: fst_up 0.5s; 
	animation-delay: 1.2s !important;
}
  @keyframes fst_up {
    0% {
      opacity: 0;
      transform: scale(1); }
    25% {
      opacity: 1;
      transform: scale(1.3); }
    50% {
      opacity: 1;
      transform: scale(1); }
    75% {
      opacity: 1;
      transform: scale(1.3); }
    100% {
      opacity: 1;
      transform: scale(1); }
}
.bigup{
    animation-fill-mode: forwards !important;
    animation: fst_scale 0.5s;	
}
.container {
  margin: 30px auto 0;
  width: 100%;
}
.thumbnail-img {
  opacity: 0.3;
  transition: opacity .3s linear;
}
.thumbnail .slick-current {
  opacity: 1;
}

.ft_btn{
  cursor: pointer;
  transition: .3s;
  
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
}
/*このクラスが付与されると表示する*/
.active{
  opacity: 1;
  visibility: visible;
}
.link_btn {
  transition: .3s;		
}
.link_btn:hover {
  transform: scale(1.1);
}

@keyframes return {
  0% {
    left: 0px;
  }	
  25% {
    left: -200px;
  }
  50% {
    left: 0px;
  }
  75% {
    left: -200px;
  }
  100% {
    left: 0px;
  }
}

.return {
  position: relative;
  animation-name: return;
  animation-duration: 180s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
}


@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}


.wap1{
  opacity: 0;	
}
.wap1.img-wrap {
  animation: img-wrap 1s cubic-bezier(.4, 0, .2, 1);
  transition-delay: 0s; 
  opacity: 1;  
}
@keyframes img-wrap {
  0% {
    clip-path: circle(0 at 50% 50%);
    -webkit-clip-path: circle(0 at 50% 50%);
  }

  100% {
    clip-path: circle(100% at 50% 50%);
    -webkit-clip-path: circle(100% at 50% 50%);
  }
}
.scrollleft {
  transition: all 1.2s 0s ease;
  opacity: 0;
  -webkit-transform: scale(1, 1) translate(100px, 0);
  transform: scale(1, 1) translate(100px, 0);
  transition-delay: 0s;
}
.scrollleft.left {
  opacity: 1;
  -webkit-transform: scale(1, 1) translate(0%, 0%);
  transform: scale(1, 1) translate(0%, 0%);
}
.scrollright {
  transition: all 1.2s 0s ease;
  opacity: 0;
  -webkit-transform: scale(1, 1) translate(-100px, 0);
  transform: scale(1, 1) translate(-100px, 0);
  transition-delay: 0s;
}
.scrollright.right {
  opacity: 1;
  -webkit-transform: scale(1, 1) translate(0%, 0%);
  transform: scale(1, 1) translate(0%, 0%);
}
.scrollView {
  transition: all 1.1s 0s ease;
  opacity: 0;
  -webkit-transform: scale(1, 1) translate(0, 100px);
  transform: scale(1, 1) translate(0, 100px);
  transition-delay: 0s;
}
.scrollView.view {
  opacity: 1;
  -webkit-transform: scale(1, 1) translate(0%, 0%);
  transform: scale(1, 1) translate(0%, 0%);
}
.scale-motion01 {
    position: absolute;
    opacity: 0;
    animation-fill-mode: forwards !important;
    animation: scale_motion01 .8s;
}
@keyframes scale_motion01 {
    0% {
      opacity: 0;
      transform: scale(0); }
    100% {
      opacity: 1;
      transform: scale(1);
}
}
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
transition-delay: 0.5s;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.blink{
    -webkit-animation:blink 1.5s ease-in-out infinite alternate;
    -moz-animation:blink 1.5s ease-in-out infinite alternate;
    animation:blink 1.5s ease-in-out infinite alternate;
	mix-blend-mode: screen;
}

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

@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}