/*!
 * @license endroll v1.2.0
 * (c) 2014 sugarshin https://github.com/sugarshin
 * License: MIT
 */
@charset "utf-8";
html {
  height: 100%;
}
body {
  height: 100%;
  line-height: 1.5;
  background: #000;
  color: #fbdf00;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
}
h1 {
  margin-bottom: 800px;
  text-align: center;
}
h2 {
  text-align: center;
}
ul {
  display: table;
  padding-bottom: 500px;
}
ul li {
  min-width: 50%;
  float: left;
  list-style-type: none;
  margin: 0 0 0.5em;
  padding: 0;
}
ul.sponsor li {
  width: 100%;
  float: none;
  margin: 300px 0;
}
.endroll {
  position: absolute;
  width: 20em;
  height: 100%;
  overflow: hidden;
  bottom: 0;
  left: 50%;
  margin-left: -10em;
  font-size: 300%;
  font-weight: bold;
  text-align: justify;
}
.endroll::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 60%;
  pointer-events: none;
}
.inner {
  position: absolute;
  top: 100%;
  -webkit-animation: endroll 120s linear 4s;
  animation: endroll 120s linear 4s;
}
@-moz-keyframes endroll {
  0% {
    top: 100%;
  }
  100% {
    top: -16000px;
  }
}
@-webkit-keyframes endroll {
  0% {
    top: 100%;
  }
  100% {
    top: -16000px;
  }
}
@-o-keyframes endroll {
  0% {
    top: 100%;
  }
  100% {
    top: -16000px;
  }
}
@keyframes endroll {
  0% {
    top: 100%;
  }
  100% {
    top: -16000px;
  }
}
