@charset "UTF-8";

/*ライブ・ダイジェスト*/
.live-item {
  margin-left: 0px;
}
.live-item-white {
  background-color: #fff;
}

.run {
  background-color:#f9ca49;
  background-image: url(../img/bg_header.png);
  background-size: 90%;
  background-repeat: no-repeat;
  animation: sectionwind2 45s linear infinite;
}

@keyframes sectionwind2 {
  0% {
    background-position: -1000% bottom;
  }

  100% {
    background-position: 1000% bottom;
  }

}

footer p {
  line-height: 1.3em;
  letter-spacing: 0.08em;
  font-weight: bold;
  font-size: 20px;
}
@media (max-width: 767px) {
  footer p {
      font-size: 16px;
  }
}

/*ファーストビュー装飾*/
.moving-back {
  background:
    linear-gradient(#00000015),
    linear-gradient(45deg,#ffffff00 40%,#FFC754 50%,#FFF89B 52%,#B67715 55%,#FFC754,#ffffff00 70%);
  background-blend-mode: overlay;
  background-size: 500%;
  background-repeat: repeat;
  animation: bg 120s linear infinite;
}
@media screen and (max-width: 912px) {
  .moving-back {
    background-size: 1500%;
    background-repeat: repeat;
    animation: bg-sp 180s linear infinite;
  }
}
@keyframes bg {
  0% {
    background-position: 500% 500%;
  }

  100% {
    background-position: -500% -500%;
  }

}

@keyframes bg-sp {
  0% {
    background-position: 1000% 1000%;
  }

  100% {
    background-position: -1000% -1000%;
  }

}
