@charset "UTF-8";
/* CSS Document */
#fullScreen {
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  z-index: 0;
  overflow: hidden;
}
#fullScreen img {
  top: 50%;
  left: 50%;
  position: absolute;
  visibility: hidden;
}
#wrap {
  margin: 15px auto;
  padding: 50px;
  width: 80%;
  text-align: left;
  position: relative;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.4);
}
h2 {
  font-size: 1.5em;
  text-shadow: #000 1px 1px;
  padding-bottom: 15px;
  color: #980F0F;
  font-family: ta-houdate-m500, sans-serif;
  font-weight: 400;
  font-style: normal;
}
p {
  z-index: 100;
  color: #fff;
  padding-bottom: 3em;
  font-size: 1em;
  line-height: 1.8em;
  text-align: left;
  font-family: ro-nikkatsu-sei-kai-std, serif;
  font-weight: 400;
  font-style: normal;
}
@media only screen and (min-width: 800px) {
  h2 {
    font-size: 2em;
    text-shadow: #000 1px 1px;
    padding-bottom: 20px;
  }
  p {
    line-height: 2em;
  }
}
/* ------------------------------
Header
------------------------------ */
header div {
  width: 100%;
  margin-top: 30px;
  text-align: center;
  position: relative;
}
a#back {
  left: 0;
  display: block;
  padding: 5px 20px;
  box-sizing: border-box;
  text-decoration: none;
  color: #fff;
  font-size: 0.5em;
  width: 30%;
  text-align: center;
}
header div a:hover {
  color: #f00;
  background: #000;
  text-decoration: none;
}
/* ------------------------------
 ばらばら
------------------------------ */
.posi-zero {
  transition: 1.5s cubic-bezier(0.755, 0.05, 0.855, 0.06);
  animation: bright 1s ease-in-out 1.5s 1 alternate;
}
@keyframes bright {
  0% {
    color: rgba(0, 191, 165, 0.8);
    text-shadow: 0px 0px 5px rgba(0, 191, 165, 0.3);
  }
}
.gucha {
  display: none;
}
#re {
  position: absolute;
  color: #eee;
  border: 1px solid #333;
  width: 10em;
  text-align: center;
  transition: .5s;
  padding-bottom: 0;
  font-size: 1.5em;
}
#re:hover {
  background-color: #333;
  color: #fff;
  cursor: pointer;
  transition: .5s;
}
/* ------------------------------
 Footer
------------------------------ */
footer {
  position: absolute;
  width: 100%;
}
footer #end {
  padding: 15px 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #fff;
  font-family: rampart-one, sans-serif;
  font-weight: 400;
  font-style: normal;
}
footer small {
  font-size: 1.em;
}
/* ------------------------------
 注意喚起
------------------------------ */
.start {
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}
.start p {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 280px;
}
/* =====================
	電光掲示板
======================= */
.ledText {
  overflow: hidden;
  position: relative;
  margin-top: 50px;
  padding: 10px 0;
  margin-bottom: 150px;
  color: #eecb27;
  text-shadow:
    0 0 5px #000, 0 0 13px #000, 0 0 13px #000;
  font-size: 1.5em;
  font-weight: bold;
  background: #333333;
}
/* CSS3グラデーションでドット感を出す */
.ledText:after {
  content: ' ';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(#1c100e 1px, transparent 0px), linear-gradient(0, #1c100e 1px, transparent 1px);
  background-image: -webkit-linear-gradient(#1c100e 1px, transparent 0px), -webkit-linear-gradient(0, #1c100e 1px, transparent 1px);
  background-size: 2px 2px;
  z-index: 10;
}
/* CSS3アニメーションでスクロール */
.ledText span {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  -webkit-animation-name: marquee;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 20s;
  -moz-animation-name: marquee;
  -moz-animation-timing-function: linear;
  -moz-animation-iteration-count: infinite;
  -moz-animation-duration: 20s;
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 20s;
}
@keyframes marquee {
  from {
    transform: translate(0%);
  }
  99%, to {
    transform: translate(-100%);
  }
}