@charset "utf-8";
.fluid img {
  width: 100%;
  height: auto;
}
.oh {
  overflow: hidden;
}
body {
  background-color: #000000;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}
p {
  text-align: center;
  font-weight: bold;
  font-size: 1.5em;
  margin: 1%;
}
.csr {
  cursor: pointer;
}
/* 背景設定 */
.bg-black {
  background-color: #000000;
}
.bg-a {
  background: #b70c16;
  background-image: url("bg.jpg");
  background-position: center center;
  background-repeat: repeat;
}
.bg-con {
  background-image: url("bgcon.png");
  background-position: center center;
  background-repeat: repeat;
}
/* 劇場リンク */
.theater-bg {
  border: none;
  background-color: #f6c602;
  color: #000000;
}
a:hover {
  text-decoration: none;
  opacity: 0.6;
  filter: alpha(opacity=60);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
/* アクション */
.shun {
  animation: shushun 0.1s forwards;
}
@keyframes shushun {
  0% {
    -webkit-transform: scale(1.0, 1.0) translate(-200%, 100%);
    opacity: 0;
  }
  95% {
    -webkit-transform: scale(1.0, 1.0) translate(3%, 0%);
  }
  100% {
    -webkit-transform: scale(1.0, 1.0) translate(0%, 0%);
    opacity: 1;
  }
}
/* ====== スクロール表示 ====== */
/* 大デバイス（デスクトップ, 992px 未満）
============================================== */
@media screen and (max-width: 991.98px) {} /* END */
/* 中デバイス（タブレット, 768px 未満）
============================================== */
@media screen and (max-width: 767.98px) {} /* END */
/* 小デバイス（縦向きモバイル, 576px 以上 デスクトップ, 992px 未満）
============================================== */
@media screen and (min-width: 576px) and (max-width: 991.98px) {} /* END */
/* 小デバイス（縦向きモバイル, 576px 以上）
============================================== */
@media screen and (min-width: 576px) {} /* END */