@charset "UTF-8";
/* =====================================================

アニメーションのスタイル

===================================================== */
/* =================================
   ＃LOAD
================================= */
.scroll_r {
  -webkit-animation: scroll_r 5s infinite linear;
  animation: scroll_r 5s infinite linear;
}

@-webkit-keyframes scroll_r {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}

@keyframes scroll_r {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}

.scroll_l {
  -webkit-animation: scroll_l 5s infinite linear;
  animation: scroll_l 5s infinite linear;
}

@-webkit-keyframes scroll_l {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

@keyframes scroll_l {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}