@charset "utf-8";

.video {
    position: relative;
    width: 98%;
    margin: 0 auto;
    padding-top: 56.25%; /* 16:9のアスペクト比 */
    height: 0;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.endroll-container {
  position: relative;
  width: 100%;
  height: 6500px;
  overflow: hidden;
  padding: 0 !important;
}

.endroll {
  position: absolute;
  width: 100%;
  animation: scroll-up 110s linear infinite;
}

/* スマホ対応 */
@media (max-width: 480px) {
  .endroll-container {
    height: 5550px;
  }

  .endroll {
    animation: scroll-up 70s linear infinite;
  }
}

@keyframes scroll-up {
  0% {
    bottom: -100%;
  }

  100% {
    bottom: 100%;
  }
}