@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DotGothic16&family=IBM+Plex+Sans+JP:wght@100;400;600&display=swap');
/*
==================================================
【PC】上ナビタイプ 目次
==================================================
basic - 共通基本設定
header - ヘッダー
nav - メインナビゲーション
home - トップページ用
news - ニュースページ用
subnav - サブナビページ用
schedule-calendar - スケジュールカレンダー
schedule-chart - スケジュール星取表
401,404,406 - エラーページ
footer - フッター
clearfix - クリアフィックス設定
rollover - 画像ロールオーバー設定
==================================================
*/
/* =============================================== */
/* basic - 共通基本設定 */
/* ----------------------------------------------- */
/* 画像のプリント禁止 */
/*@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.5;
  color: #333;
  background-color: #000;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url('/replacement/bgBlack.jpg') top center / cover no-repeat;
  z-index: -1;
}
a:link {
  text-decoration: underline;
  color: #c53536;
  transition: all .3s ease;
}
a:visited {
  text-decoration: underline;
  color: #c53536;
}
a:active {
  text-decoration: underline;
  color: #c53536;
}
a:hover {
  text-decoration: none;
  color: #c53536;
}
/* 画像関連 */
figure {
  margin: 0;
  padding: 0;
}
figcaption {
  font-size: 80%;
  text-align: center;
  margin: 0;
  padding: 0 0 5px 0;
  color: #666;
}
img {
  border: none;
  vertical-align: bottom;
}
figure img {
  max-width: 100%;
  height: auto;
  width /***/ : auto; /* 親要素の100% */
}
.image-container {}
.movie-container {}
.music-container {}
/* 配置 */
.left {
  float: left;
  margin: 0 10px 10px 0;
}
.center {
  float: none;
  margin: 0 0 10px 0;
}
.right {
  float: right;
  margin: 0 0 10px 10px;
}
figure.left {
  text-align: left;
  margin: 5px 10px 10px 0;
}
figure.center {
  text-align: center;
  margin: 5px 0 10px 0;
}
figure.right {
  text-align: right;
  margin: 5px 0 10px 10px;
}
/* 罫線 */
hr {
  height: 0;
  margin: 15px 0;
  padding: 0;
  border: 0;
  width: 100%;
}
.solid {
  border-top: 1px #999 solid;
}
.dotted {
  border-top: 1px #999 dotted;
}
.dashed {
  border-top: 1px #999 dashed;
}
.double {
  border-top: 3px #999 double;
}
/* 下からふわっと */
.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}
/* 画像のマスクアニメ */
.reveal {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.reveal img {
  display: block;
  width: 100%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.15s ease 0.5s, transform 0.5s ease 0.5s;
}
.reveal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  transform: translateX(-100%);
  z-index: 2;
}
.reveal.is-show::before {
  animation: wipe 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.reveal.is-show img {
  opacity: 1;
  transform: scale(1);
}
@keyframes wipe {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%); /* ここで全面を覆う */
  }
  100% {
    transform: translateX(100%); /* 右に抜ける */
  }
}
/* ページレイアウト */
#wrapper {
  margin: 0;
  padding: 0;
  filter: blur(100px);
  animation: blur-anim2 .4s linear forwards;
}
@keyframes blur-anim2 {
  100% {
    filter: blur(0);
  }
}
#contents {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
}
#main-box {
  width: 900px;
  margin: 0 auto 100px;
  padding: 50px;
  background-color: #efedeb;
}
#home-1 #main-box {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: transparent;
}
#side-box {
  display: none;
}
/* メインコンテンツ部分(main-box内) */
article {
  margin: 0 auto;
  padding: 20px 0 20px 0;
  clear: both;
}
.subhead {
  background: #000000;
  /*box-shadow: 0px 0px 0px 5px #000;*/
  border-top: double 3px #efedeb;
  border-bottom: double 3px #efedeb;
  padding: 0.6em 0.5em 0.5em;
  margin-bottom: 30px;
  color: #fff;
  text-align: center;
  font-weight: 400;
  font-size: 110%;
  background-image: url('/replacement/subhead.jpg');
  background-size: cover;
  background-position: bottom right;
}
.packs {
  margin: 0;
  padding: 0 0 0 15px;
  width: calc(100% - 15px);
}
.column {
  margin: 0;
  padding: 0 15px 0 0;
  float: left;
}
/* バナー・ツイッター枠など(side-box内) */
.banner {
  width: 260px;
  margin: 0 auto 10px;
  padding: 0;
}
.twitter {
  margin: 0 auto 10px;
  background: #000;
}
/* ページトップ */
#pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  line-height: 1;
  z-index: 99;
}
#pagetop a {
  text-decoration: none;
  color: #999;
  text-align: center;
  display: block;
  opacity: 1;
  transition: all .3s ease;
  font-size: 56px;
}
#pagetop a:hover {
  text-decoration: none;
  color: #c53536;
}
/* 見出し */
.film {
  width: 1000px;
  height: 20px;
  background-image: url("/replacement/bgContentsTitle.png");
  background-position: bottom right;
  background-repeat: no-repeat;
  margin: 0 auto;
  padding: 0;
}
#contents-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  padding: 20px 0;
  font-size: 50px;
  color: #fff;
  position: relative;
  text-align: center;
  width: fit-content;
  margin: 50px auto;
  letter-spacing: 3px;
}
/* カッコの基本状態（非表示） */
#contents-title::before, #contents-title::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.1);
  opacity: 0;
  font-size: 1.5em;
  transition: all 1s ease;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 100;
}
/* 左カッコ */
#contents-title::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 75%;
  width: 30px;
  height: 30px;
  border-right: 1px solid #f01d1f;
  border-top: 1px solid #f01d1f;
}
/* 右カッコ */
#contents-title::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 25%;
  width: 30px;
  height: 30px;
  border-left: 1px solid #f01d1f;
  border-bottom: 1px solid #f01d1f;
}
/* 発動 */
#contents-title.active::before, #contents-title.active::after {
  opacity: 1;
  transform: translateY(-50%) rotate(180deg) scale(1);
}
@media(max-width:600px) {
  #contents-title {
    font-size: 35px;
    letter-spacing: 1px;
    padding: 20px 10px;
  }
  /* 左カッコ */
  #contents-title::before {
    left: -20px;
    width: 20px;
    height: 20px;
  }
  #contents-title::after {
    right: -20px;
    width: 20px;
    height: 20px;
  }
}
h3 {
  text-align: center;
}
h3 span {
  border-bottom: 2px solid #000;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 130%;
}
/* =============================================== */
/* header - ヘッダー */
/* ----------------------------------------------- */
/* ヘッダー大枠 */
header {
  width: 100%;
  margin: 0;
  padding: 0;
}
/* ヘッダー内部 */
#header-inner {
  width: 1000px;
  margin: 0 auto;
  padding: 0;
}
/* =============================================== */
/* nav - メインナビゲーション */
/* ----------------------------------------------- */
/* ナビ全体枠 */
nav {
  clear: both;
  width: 1000px;
  margin: 0 auto;
  padding: 0;
  line-height: 1;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
}
/* 第一階層 */
#main-menu {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
#main-menu::after {
  display: block;
  clear: both;
  content: '';
}
#main-menu li {
  position: relative;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  padding: 20px 0.5em 17px;
  font-size: 30px;
}
#main-menu li a:link {
  color: #999999;
  text-decoration: none;
  display: inline-block;
  transition: all .3s ease;
}
#main-menu li a:visited {
  color: #999999;
  text-decoration: none;
}
#main-menu li a:active {
  color: #999999;
  text-decoration: none;
}
#main-menu li a:hover {
  color: #fff;
  text-decoration: none;
}
/*#main-menu li a:hover::first-letter {
  color: #f01d1f;
}*/
/* =============================================== */
/* home - トップページ用 */
/* ----------------------------------------------- */
/* メインビジュアル */
#main-visual {
  width: 900px;
  margin: 0 auto;
  padding: 0;
}
/* ニュースフィード（main-box内） */
#news-feed-index {
  width: 100%;
  margin: 0;
  padding: 50px 0 70px;
  background: #333333;
}
.feedTitle {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  text-align: center;
  font-size: 65px;
  letter-spacing: 0.1em;
  background: linear-gradient(to bottom, #939393 0%, #333333 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
#news-feed-index ul {
  width: 800px;
  margin: 0 auto;
  padding: 0;
}
#news-feed-index ul li {
  border-bottom: 1px solid #525252;
}
#news-feed-index h2 {
  position: relative;
  margin: 0;
  padding: 1em 2.5em;
  font-size: 16px;
  font-weight: 400;
  clear: both;
  color: #bb3534;
}
#news-feed-index h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 25px;
  height: 25px;
  background-image: url('/replacement/icon01.svg');
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%) rotate(0deg);
  transition: transform .6s ease;
  animation: spin 4s linear infinite;
}
@keyframes spin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
#news-feed-index h2 a:link {
  text-decoration: none;
  color: #fff;
  transition: all .3s ease;
}
#news-feed-index h2 a:visited {
  text-decoration: none;
  color: #fff;
}
#news-feed-index h2 a:active {
  text-decoration: none;
  color: #fff;
}
#news-feed-index h2 a:hover {
  text-decoration: underline;
  color: #f01d1f;
}
.thumbnail {
  width: 80px;
  float: left;
  padding: 5px 10px 5px 0;
}
.news-txt {
  padding: 5px 0 5px 0;
  font-size: 80%;
}
/* =============================================== */
/* news - ニュースページ用 */
/* ----------------------------------------------- */
.news-page article {
  margin-bottom: 100px;
}
.date {
  font-size: 36px;
  display: block;
  color: #999;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  padding-left: 15px;
}
.news-page .subhead {
  text-align: left;
}
.headline {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 100%;
  padding-left: 5px;
}
.headline a:link {
  text-decoration: none;
  color: #fff;
  transition: all .3s ease;
}
.headline a:visited {
  text-decoration: none;
  color: #fff;
}
.headline a:active {
  text-decoration: none;
  color: #fff;
}
.headline a:hover {
  text-decoration: none;
  color: #f01d1f;
}
/* 記事内カテゴリー */
.article-category {
  display: none;
}
/* プレビュー・ネクスト */
#pager {
  text-align: center;
  clear: both;
  margin: 15px 0 30px;
  padding: 0;
}
#pager li {
  display: inline;
  margin: 0;
  padding: 0;
  font-size: 80%;
}
#pager li a:link {
  text-decoration: none;
  color: #fff;
  background: #999;
  margin: 0 1em;
  padding: 1em 1.2em;
  border-radius: 100px;
  transition: all .3s ease;
}
#pager li a:visited {
  text-decoration: none;
  color: #fff;
  background: #999;
}
#pager li a:active {
  text-decoration: none;
  color: #fff;
  background: #999;
}
#pager li a:hover {
  text-decoration: none;
  color: #fff;
  background: #000;
}
.disabled {
  display: none;
}
/* =============================================== */
/* caststaff - キャスト＆スタッフ */
/* ----------------------------------------------- */
.castList1 {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  padding: 20px 0 30px;
  margin: 0 auto;
}
.castList1 li {
  display: inline-block;
  text-align: center;
  width: 30%;
  line-height: 1.5;
  font-weight: 600;
  font-size: 24px;
  padding: 0 1% 40px;
  vertical-align: top;
}
.role {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: #c53536;
}
.actor {
  line-height: 1;
  font-weight: 600;
  padding: 10px 0;
  font-size: 22px;
}
.more {
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 25px;
}
.full {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 0.8em;
}
.full a:link {
  display: block;
  position: relative;
  padding: 4px 0;
  text-align: center;
  text-decoration: none;
  margin: 0 auto;
  color: #c53536;
  background-color: #000;
  border: 1px solid #c53536;
  transition: all 0.3s;
  font-weight: 400;
  width: 5.5em;
}
.full a:visited {
  text-decoration: underline;
  color: #c53536;
  background-color: #000;
  border: 1px solid #c53536;
}
.full a:active {
  text-decoration: underline;
  color: #c53536;
  background-color: #000;
  border: 1px solid #c53536;
}
.full a:hover {
  text-decoration: none;
  background: #c53536;
  color: #fff;
  border: 1px solid #c53536;
}
#crew {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5% 10%;
}
.crewList {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  padding: 0;
  margin: 0 auto 30px;
}
.crewList li {
  display: inline-block;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
  font-size: 1em;
  padding: 0 0.3em;
}
.staffList {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  padding: 0;
  margin: 0 auto 30px;
}
.staffList li {
  display: block;
  text-align: center;
  width: 100%;
  line-height: 1.5;
  font-weight: 400;
  font-size: 1em;
  padding: 5px 0;
}
.job {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #777;
  font-size: 0.8em;
}
/* =============================================== */
/* ticket - 公演概要 */
/* ----------------------------------------------- */
.dateTxt {
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  padding: 15px 0 5px;
  letter-spacing: 2px;
  line-height: 1.4;
}
.dateTxt .large {
  font-size: 30px;
  font-weight: 600;
}
.venueTxt {
  font-weight: 400;
  font-size: 21px;
  text-align: center;
  padding: 0;
  letter-spacing: 2px;
  line-height: 1.4;
}
.sche {
  margin: 40px auto;
  width: 100%;
  max-width: 615px;
  display: block;
}
.sche img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.cautionList01 {
  padding: 15px 0 15px 1.5em;
  margin: 0 auto;
  font-size: 90%;
  list-style: disc;
}
.cautionList01 li {
  padding-bottom: 5px;
  line-height: 1.4;
}
/* チケット */
.ticketBox {
  margin: 25px auto;
  padding: 0 5% 20px;
  width: 90%;
  border: #ccc 1px solid;
}
.playguideList {
  list-style: none;
  padding: 0;
  font-size: 100%;
}
.playguideList li {
  display: block;
  margin: 0 auto;
  padding: 25px 0;
  text-align: center;
}
.playguideList li:first-child {
  border-top: none;
}
.playguideList li a:link {
  display: block;
  position: relative;
  padding: 0.5em 1em 0.4em;
  text-align: center;
  text-decoration: none;
  margin: 15px auto 0;
  color: #c53536;
  border: 1px solid #c53536;
  transition: all 0.3s;
  font-weight: 400;
  width: 18em;
}
.playguideList li a:visited {
  text-decoration: underline;
  color: #c53536;
  border: 1px solid #c53536;
}
.playguideList li a:active {
  text-decoration: underline;
  color: #c53536;
  border: 1px solid #c53536;
}
.playguideList li a:hover {
  text-decoration: none;
  background: #c53536;
  color: #fff;
  border: 1px solid #c53536;
}
.linkBtn {
  text-align: center;
}
.linkBtn a:link {
  text-decoration: none;
  color: #c53536;
  padding: 5px 1.2em 3px;
  margin: 0 auto;
  line-height: 1;
  font-size: 12px;
  position: relative;
  top: -3px;
  border: 1px solid #c53536;
}
.linkBtn a:visited {
  text-decoration: none;
  color: #c53536;
  border: 1px solid #c53536;
}
.linkBtn a:active {
  text-decoration: none;
  color: #c53536;
  border: 1px solid #c53536;
}
.linkBtn a:hover {
  text-decoration: none;
  background-color: #c53536;
  color: #fff;
  border: 1px solid #c53536;
  transition: all .3s ease;
}
/* =============================================== */
/* goods - グッズ */
/* ----------------------------------------------- */
.goodsName{
  border-top:2px solid #000;
  font-weight:600;
  text-align:center;
  padding: 15px 0 0;
  font-size: 120%;
}
.buy {
  margin: 0;
  padding: 0 0 20px;
  text-align: center;
  font-size: 90%;
  line-height: 1;
  color: #fff;
}
.buyKaijo {
  display: inline-block;
  padding: 7px 1em 5px;
  margin: 0 1em;
  background-color: firebrick;
  line-height: 1;
}
.buyTusin {
  display: inline-block;
  padding: 7px 1em 5px;
  margin: 0 1em;
  background-color: cornflowerblue;
  line-height: 1;
}
.goodsPrice{
  font-weight:600;
  text-align:center;
  font-size: 120%;
  padding: 0 0 7px;
}
.goodsTxt{
  text-align:center;
}
.goodsList {
  list-style-position: outside;
  padding: 0 0 0 1.2em;
  font-size: 90%;
}
.goodsList li {
  padding: 5px 0;
}
/* =============================================== */
/* 401,404,406 - エラーページ */
/* ----------------------------------------------- */
.error-page .column {
  margin: 0;
  padding: 0 15px 50px 0;
}
.error-page .pack p {
  padding: 30px 0 0;
  text-align: center;
}
/* =============================================== */
/* footer - フッター */
/* ----------------------------------------------- */
/* フッター大枠 */
footer {
  width: 100%;
  margin: 0;
  padding: 80px 0;
  clear: both;
  color: #999;
  background: #000;
}
.footerLogo {
  width: 340px;
  margin: 0 auto;
}
.footerLogo img {
  width: 100%;
  height: auto;
}
.snsBtn {
  padding: 20px 0;
  width: 100%;
  text-align: center;
}
.snsBtn li {
  font-size: 45px;
  font-weight: 400;
  padding: 0 10px;
  display: inline-block;
}
.snsBtn a:link {
  text-decoration: none;
  display: block;
  color: #fff;
  transition: all .3s ease;
}
.snsBtn a:visited {
  text-decoration: none;
  color: #fff;
}
.snsBtn a:active {
  text-decoration: none;
  color: #fff;
}
.snsBtn a:hover {
  text-decoration: none;
  color: #c53536;
}
/* フッター内部 */
#footer-inner {
  width: 1000px;
  margin: 0 auto;
  padding: 0;
  clear: both;
  text-align: center;
}
/* 左部分(用途に合わせてバナー等) */
p.privacy {
  margin: 10px 0 20px;
}
p.privacy a:link {
  text-decoration: underline;
  color: #fff;
  transition: all .3s ease;
}
p.privacy a:visited {
  text-decoration: underline;
  color: #fff;
}
p.privacy a:active {
  text-decoration: underline;
  color: #fff;
}
p.privacy a:hover {
  text-decoration: underline;
  color: #c53536;
}
#footer-inner P {
  padding: 0 0 10px;
  font-size: 14px;
}
/* =============================================== */
/* 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);
}