@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Henny+Penny&family=IBM+Plex+Sans+JP:wght@400;600&family=Shippori+Mincho:wght@400;600&display=swap');
/* =============================================== */
/* basic - 共通基本設定 */
/* ----------------------------------------------- */
@media(max-width:400px) {
  .pc {
    display: none;
  }
}
@media(min-width:401px) {
  .sp {
    display: none;
  }
}
img {
  pointer-events: none;
}
/* 画像のプリント禁止 
@media print {
  img {
    display: none !important;
  }
}*/
/* リセットcss */
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
  margin: 0;
  padding: 0;
}
html, h1, h2, h3, h4, dl, dt, dd, ul, li, p, img {
  margin: 0;
  padding: 0;
}
ul {
  list-style-type: none;
}
/* ボディ */
body {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1em;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  color: #fff;
  -webkit-text-size-adjust: 100%;
  background-color: #000;
}
a:link {
  text-decoration: underline;
  color: #b01702;
}
a:visited {
  text-decoration: underline;
  color: #b01702;
}
a:active {
  text-decoration: underline;
  color: #b01702;
}
a:hover {
  text-decoration: none;
  color: #b01702;
}
/* 画像関連 */
img {
  border: none;
  vertical-align: bottom;
}
/* 罫線 */
hr {
  height: 0;
  margin: 0 auto;
  padding: 0;
  border: 0;
  width: 100%;
  border-bottom: 1px solid #999;
}
.solid {
  border-top: 3px #999 solid;
}
.dotted {
  border-top: 3px #999 dotted;
}
.dashed {
  border-top: 1px 999 dashed;
}
.double {
  border-top: 3px #999 double;
}
/* ページレイアウト */
#wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  scroll-behavior: smooth;
  background-image: url("../img/bg13.jpg");
  background-position: center 175px;
  background-repeat: no-repeat;
}
@media(min-width:1920px) {
  #wrapper {
    background-size: contain;
  }
}
@media(max-width:810px) {
  #wrapper {
    background-position: center 100px;
    background-size: 240%;
  }
}
section {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
}
article {
  width: 96%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 25px 2%;
  clear: both;
}
/* 見出し */
h2 {
  display: flex;               /* 両方の要素を中央に配置 */
  flex-direction: column;      /* 縦に並べる */
  align-items: center;         /* 左右中央揃え */
  justify-content: center;     /* 上下中央揃え（必要なら） */
  width: 96%;
  max-width: 1000px;
  margin: 40px auto 20px;
  padding: 0;
  text-align: center;          /* 横書きテキスト内の中央揃え */
}
h2 span.titleE {
  display: block;
  line-height: 1;
  font-size: 2.2em;
  margin: 0;
  padding: 0;
  font-family: "Henny Penny", system-ui;
  font-weight: 400;
  text-shadow: 
    0 0 5px #fff,
    5px 0 15px #fefcc9,
    -10px -5px 8px #feec85,
    10px -20px 25px #ffae34,
    -10px -15px 15px #ec760c,
    0 -40px 35px #cd4606,
    5px -45px 40px #973716;
  animation: flicker 1.5s infinite;
}
@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
    text-shadow: 
      0 0 5px #fff,
      5px 0 15px #fefcc9,
      -10px -5px 8px #feec85,
      10px -20px 25px #ffae34,
      -10px -15px 15px #ec760c,
      0 -40px 35px #cd4606,
      5px -45px 40px #973716;
  }
  20%, 24%, 55% {
    opacity: 0.8;
    text-shadow: 70%;
  }
}
@media(max-width:600px) {
  h2 span.titleE {
    font-size: 1.6em;
  }
}
h2 span.titleJ {
  display: block;
  text-align: center;          /* 縦書きテキストを左右中央寄せ */
  line-height: 1;
  font-size: 0.65em;
  padding: 5px 0 15px;
  letter-spacing: 0.1em;
  color: #b7ab9c;
}
@media(max-width:400px) {
  h2 span.titleJ {
    font-size: 0.5em;
  }
}
/* 一文字ずつ表示するために文字を分割 */
.titleE span,
.titleJ span {
  display: inline-block;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}
/* 表示トリガー時の状態 */
.show span {
  transform: translateY(0);
  opacity: 1;
}

h3 {
  position: relative;
  display: inline-block;
  padding: 0 80px;
  font-family: "Henny Penny", system-ui;
  font-weight: 400;
  font-size: 30px;
}
h3.survivor:first-letter {
  color: #23d3ff;
}
h3.survivor:before, h3.survivor:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 60px;
  height: 1px;
  background-color: #23d3ff;
}
h3.hunter:first-letter {
  color: #fd297e;
}
h3.hunter:before, h3.hunter:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 60px;
  height: 1px;
  background-color: #fd297e;
}
h3.suit:before, h3.suit:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 60px;
  height: 1px;
  background-color: #fff;
}
h3:before {
  left: 0;
}
h3:after {
  right: 0;
}
@media(max-width:600px) {
  h3 {
    font-size:22px;
  }
}
@media(max-width:400px) {
  h3 {
    font-size:21px;
    letter-spacing: 0;
  }
}
h4 {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  background-color: #e2d7c8;
  border-top: 3px double #201607;
  border-bottom: 3px double #201607;
  color: #201607;
  text-align: center;
  font-size: 20px;
  line-height: 1;
  padding: 10px 0;
  margin: 15px 0 25px;
}
h5 {
}
/* =============================================== */
/* menu - メニュー */
/* ----------------------------------------------- */
/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
  position: fixed;
  top: 15px;
  left: 15px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 101;
  border: solid 2px #b01702;
  background-color: #000;
  -webkit-transition: all 3s ease-in-out;
  transition: all .3s ease-in-out;
}
@media(max-width:600px) {
  .menu-btn {
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    border: solid 1px #b01702;
  }
}
.menu-btn-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  width: 50%;
  background: #b01702;
  -webkit-transition: all 3s ease-in-out;
  transition: all .3s ease-in-out;
}
.menu-btn-line::before, .menu-btn-line::after {
  content: "";
  height: 1px;
  width: 100%;
  background: #b01702;
  position: absolute;
  left: 0;
  -webkit-transition: inherit;
  transition: inherit;
}
.menu-btn-line::before {
  top: -8px;
}
.menu-btn-line::after {
  top: 8px;
}
/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu {
  -webkit-transition: all .5s;
  transition: all .5s;
  visibility: visible;
  opacity: 1;
}
.open .menu-btn {
  border-color: #b01702;
}
.open .menu-btn-line {
  background-color: transparent;
}
.open .menu-btn-line::before, .open .menu-btn-line::after {
  top: 0;
  background: #b01702;
}
.open .menu-btn-line::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.open .menu-btn-line::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/*開いたメニュー*/
.menu {
  position: fixed;
  display: flex;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  -webkit-transition: all .5s;
  transition: all .5s;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
}
.menu ul {
  transform: translateY(26%);
  padding: 0;
  list-style-type: none
}
.menu li {
  width: 100%;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-family: "Stardos Stencil", system-ui;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2em;
  font-size: 1.5rem;
}
.menu li a {
  display: block;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.menu li a:hover {
  color: #b01702;
  -webkit-transition: all .2s;
  transition: all .2s;
}
/* =============================================== */
/* main - メイン */
/* ----------------------------------------------- */
#container {
  width: 100%;
}
#main {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 150px;
}
@media(max-width:810px) {
  #main {
    padding: 50px 0 30px;
  }
}
@media(max-width:400px) {
  #main {
    padding: 40px 0 15px;
  }
}
/* ロゴ */
h1 {
  width: 100%;
  max-width: 940px;
  height: auto;
  margin: 0 auto;
  padding: 0;
}
h1 img {
  width: 100%;
  height: auto;
  filter: blur(50px);
  animation: blur-anim1 1s linear forwards;
}
@keyframes blur-anim1 {
  100% {
    filter: blur(0);
  }
}
/* =============================================== */
/* intro - イントロ */
/* ----------------------------------------------- */
#intro {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  filter: blur(50px);
  animation: blur-anim1 1s linear forwards;
}
#intro p{
  font-size: 120%;
  padding: 0 15px 30px;
  line-height: 1.7;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  text-align: center;
}
@media(max-width:810px) {
  #intro p {
    padding: 30px 15px 0;
    font-size: 100%;
  }
}
@media(max-width:600px) {
  #intro p {
    font-size: 85%;
  }
}
/* =============================================== */
/* cast&staff - キャストスタッフ */
/* ----------------------------------------------- */
#cast{
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
}
/* キャスト */
.castList1 {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  padding: 30px 0;
  margin: 0 auto;
}
.castList1 li {
  display: inline-block;
  text-align: center;
  width: 100%;
  line-height: 1.5;
  font-weight: 400;
  font-size: 24px;
  padding: 0 1%;
}
@media(max-width:600px) {
  .castList1 li {
    width: 60%;
  }
}
.castList1 img {
  width: 100%;
  max-width: 250px;
  margin-bottom: 15px;
}
.castList2 {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  font-size: 180%;
  padding: 25px 0 75px;
  margin: 0 auto;
}
.castList2 li {
  display: inline-block;
  text-align: center;
  width: 22%;
  line-height: 1.5;
  padding: 0 1% 50px;
  font-weight: 400;
  font-size: 20px;
  vertical-align: top
}
@media(max-width:600px) {
  .castList2 li {
    width: 46%;
  }
}
.castList2 img {
  width: 100%;
  margin-bottom: 10px;
}
.castList3 {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  font-size: 180%;
  padding: 25px 0;
  margin: 0 auto;
}
.castList3 li {
  display: inline-block;
  text-align: center;
  width: 17%;
  line-height: 1.5;
  padding: 0 0.5% 40px;
  font-weight: 400;
  font-size: 15px;
}
.castList3 img {
  width: 100%;
  margin-bottom: 10px;
}
.role {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  padding-bottom: 8px;
  color: #b7ab9c;
}
@media(max-width:810px) {
  .role {
    font-size: 13px;
  }
}
.actor{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 1;
}
/* =============================================== */
/* info - 公演概要 */
/* ----------------------------------------------- */
#info {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 0;
}
#info article {
  padding: 20px 0 40px;
}
@media(max-width:600px) {
  #info article {
    padding: 20px 0;
  }
}
.dateTxt {
  font-weight: 400;
  font-size: 125%;
  text-align: center;
  padding: 15px 0 5px;
}
@media(max-width:400px) {
  .dateTxt {
    font-size: 115%;
  }
}
.venueTxt {
  font-weight: 400;
  font-size: 125%;
  text-align: center;
  padding: 0;
}
@media(max-width:400px) {
  .venueTxt {
    font-size: 115%;
  }
}
#info p{
  text-align: center;
  padding: 5px 0;
}
.sche {
  margin: 20px auto;
  width: 100%;
  max-width: 655px;
}
.sche img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
/* チケット */
.ticketBox {
  border: 1px solid #666;
  margin: 80px auto 20px;
  padding: 0 3% 20px;
  width: 90%;
  max-width: 800px;
  background-color: #333;
  color: #fff;
}
@media(max-width:999px) {
  .ticketBox {
    width: 92%;
    padding: 0 2% 20px;
    margin: 30px auto 10px;
  }
}
h5 {
  height: 0;
  text-align: center;
}
h5 span {
  color: #fff;
  padding: 5px 1.5em 3px;
  margin: 0;
  position: relative;
  top: -35px;
  height: 0;
  font-size: 16px;
  border: 1px solid #666;
  background-color: #000;
  font-weight: 400;
}

.playguideList {
  list-style: none;
  padding: 40px 0;
  font-size: 90%;
}
@media(max-width:600px) {
  .playguideList {
    font-size: 85%;
  }
}
.playguideList li {
  border-top: 1px dotted #999;
  display: block;
  margin: 0 auto;
  padding: 25px 0;
  text-align: center;
}
.playguideList li span {
  font-weight: 600;
  font-size: 110%;
  border-bottom: 2px solid #b01702;
  display: inline-block;
  margin-bottom: 10px;
}
.playguideList li a:link {
  display: block;
  position: relative;
  padding: 0.5em 1em 0.4em;
  text-align: center;
  text-decoration: none;
  margin: 10px auto 0;
  background: #000;
  color: #e11010;
  border: 1px solid #e11010;
  transition: all 0.3s;
  font-weight: 400;
  border-radius: 100px;
  font-size: 90%;
  width: 10em;
}
.playguideList li a:visited {
  text-decoration: underline;
  background: #000;
  color: #e11010;
  border: 1px solid #e11010;
}
.playguideList li a:active {
  text-decoration: underline;
  background: #000;
  color: #e11010;
  border: 1px solid #e11010;
}
.playguideList li a:hover {
  text-decoration: none;
  background: #b01702;
  color: #fff;
  border: 1px solid #e11010;
}
/* =============================================== */
/* staff - スタッフ */
/* ----------------------------------------------- */
#staff {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 50px;
}
.staffList01 {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  font-size: 100%;
  padding: 20px 0;
  margin: 0 auto;
}
.staffList01 li {
  display: block;
  text-align: center;
  line-height: 1.5;
  padding: 10px 0;
  font-weight: 400;
}
@media(max-width:600px) {
  .staffList01 {
    font-size: 90%;
  }
}
.staffList02 {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  font-size: 90%;
  padding: 10px 0;
  margin: 0 auto;
}
.staffList02 li {
  display: inline-block;
  text-align: center;
  line-height: 1.5;
  padding: 5px 10px;
  font-weight: 400;
}
@media(max-width:600px) {
  .staffList02 {
    font-size: 75%;
  }
  .staffList02 li{
    padding: 3px 5px;
  }
}
.job {
  font-size: 75%;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  display: block;
  color: #b7ab9c;
}
.staffList02 .job {
  display: inline-block;
}
/* =============================================== */
/* footer - フッター */
/* ----------------------------------------------- */
footer {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
  background-color: #000;
  color: #aaa;
  text-align: center;
  border-top: 1px solid #333;
}
#footer-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
  text-align: center;
  font-size: 90%;
}
.archiveList {
  text-align: center;
  padding: 10px 0;
}
.archiveList li {
  display: inline-block;
	margin: 5px 0;
}
.archiveList li a:link {
  display: block;
  text-decoration: none;
  color: #aaa;
  border: #888 1px solid;
  background-color: transparent;
  padding: 1em 2em;
  margin: 0.3em;
  line-height: 1;
  font-size: 90%;
}
@media(max-width:400px) {
  .archiveList li a:link {
    padding: 0.4em 0.7em;
	margin: 0 0.2em;
  }
}
.archiveList li a:visited {
  text-decoration: underline;
  color: #aaa;
}
.archiveList li a:active {
  text-decoration: underline;
  color: #aaa;
}
.archiveList li a:hover {
  background-color: #fff;
  color: #333;
}
.snsBtn {
  padding: 50px 0;
  text-align: center;
}
.snsBtn li {
  display: inline-block;
  width: 40px;
  margin: 0 15px;
  font-size: 40px;
  font-weight: 400;
}
.snsBtn li  a:link {
  color: #fff;
  text-decoration: none;
}
.snsBtn li  a:visited {
  color: #fff;
  text-decoration: none;
}
.snsBtn li  a:active {
  color: #fff;
  text-decoration: none;
}
.snsBtn li  a:hover {
  color: #b01702;
  text-decoration: none;
}
#footer-inner P {
  padding: 0 0 15px;
}
@media(max-width:400px) {
  #footer-inner P {
    font-size: 75%;
  }
}
.privacy a:link {
  color: #fff;
}
.privacy a:visited {
  color: #fff;
}
.privacy a:active {
  color: #fff;
}
.privacy a:hover {
  color: #fff;
}
/* =============================================== */
/* clearfix - クリアフィックス設定 */
/* ----------------------------------------------- */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}
/* =============================================== */
/* rollover - 画像ロールオーバー設定 */
/* ----------------------------------------------- */
a:hover img {
  -moz-opacity: 0.80;
  opacity: 0.80;
  filter: alpha(opacity=80);
}
nav a:hover img {
  -moz-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media(max-width:600px) {
  a:hover img {
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
/* =============================================== */
/* other - その他 */
/* ----------------------------------------------- */
/* ほか */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  line-height: 1;
  z-index: 99;
}
@media(max-width:600px) {
  #page-top {
    bottom: 5px;
    right: 5px;
  }
}
#page-top a {
  text-decoration: none;
  color: #b01702;
  text-align: center;
  display: block;
  opacity: 1;
  transition: all .3s ease;
  font-size: 56px;
}
@media(max-width:600px) {
  #page-top a {
    font-size: 40px;
  }
}
#page-top a:hover {
  text-decoration: none;
  opacity: .5;
}
/* =============================================== */
/* linkBtn - ボタン */
/* ----------------------------------------------- */
.linkBtn{
  text-align: center;
  padding: 10px 0;
}
.linkBtn a:link {
  text-decoration: none;
  color: #e11010;
  padding: 3px 0.75em;
  margin: 0 auto;
  line-height: 1;
  font-size: 0.6em;
  position: relative;
  top: -3px;
  border: 1px solid #e11010;
}
.linkBtn a:visited {
  text-decoration: none;
  color: #e11010;
  border: 1px solid #e11010;
}
.linkBtn a:active {
  text-decoration: none;
  color: #e11010;
  border: 1px solid #e11010;
}
.linkBtn a:hover {
  text-decoration: none;
  background-color: #e11010;
  color: #fff;
  border: 1px solid #e11010;
}