@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=LINE+Seed+JP:wght@400;700&family=Shippori+Mincho:wght@400;700&display=swap');
/* =============================================== */
/* basic - 共通基本設定 */
/* ----------------------------------------------- */
@media(max-width:600px) {
  .pc {
    display: none;
  }
}
@media(min-width:601px) {
  .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: "LINE Seed JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1em;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  color: #333;
  -webkit-text-size-adjust: 100%;
  background-color: #000;
}
a:link {
  text-decoration: underline;
  color: #c7000b;
}
a:visited {
  text-decoration: underline;
  color: #c7000b;
}
a:active {
  text-decoration: underline;
  color: #c7000b;
}
a:hover {
  text-decoration: none;
  color: #c7000b;
}
/* 画像関連 */
img {
  border: none;
  vertical-align: bottom;
}
/* 罫線 */
hr {
  height: 0;
  margin: 0 auto;
  padding: 0;
  border: 0;
  width: 100%;
  border-bottom: 2px dotted #715b4a;
}
.solid {
  border-top: 3px #999 solid;
}
.dotted {
  border-top: 3px #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);
}
/* リストタグひとつずつ表示 */
.fade-list li {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-list li.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: #6972ac;
  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);
}
/* 2段階ワイプ */
@keyframes wipe {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%); /* ここで全面を覆う */
  }
  100% {
    transform: translateX(100%); /* 右に抜ける */
  }
}
/* ページレイアウト */
#wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #fff;
  scroll-behavior: smooth;
}
section {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
}
article {
  width: 96%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 25px 2%;
  clear: both;
}
/* =============================================== */
/* menu - メニュー */
/* ----------------------------------------------- */
/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 101;
  background-color: #c7000b;
  -webkit-transition: all 3s ease-in-out;
  transition: all .3s ease-in-out;
}
@media(max-width:810px) {
  .menu-btn {
    width: 50px;
    height: 50px;
  }
}
@media(max-width:600px) {
  .menu-btn {
    width: 40px;
    height: 40px;
  }
}
.menu-btn-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  width: 50%;
  background: #000;
  -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: #000;
  position: absolute;
  left: 0;
  -webkit-transition: inherit;
  transition: inherit;
}
.menu-btn-line::before {
  top: -5px;
}
.menu-btn-line::after {
  top: 5px;
}
/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu {
  -webkit-transition: all .5s;
  transition: all .5s;
  visibility: visible;
  opacity: 1;
}
.open .menu-btn {
  border-color: #000;
}
.open .menu-btn-line {
  background-color: transparent;
}
.open .menu-btn-line::before, .open .menu-btn-line::after {
  top: 0;
  background: #000;
}
.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(20%);
  padding: 0;
  list-style-type: none
}
.menu li {
  width: 100%;
  height: 65px;
  line-height: 65px;
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
}
@media(max-width:400px) {
  .menu li {
    height: 50px;
    line-height: 50px;
    font-size: 1.6rem;
  }
}
.menu li a {
  display: block;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.menu li a:hover {
  color: #c7000b;
  -webkit-transition: all .2s;
  transition: all .2s;
}
/* =============================================== */
/* main - メイン */
/* ----------------------------------------------- */
#container {
  width: 100%;
}
#main {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 3px solid #c7000b;
}
/* 左上 */
.bg-left {
  position: absolute;
  top: 0;
  pointer-events: none;
  left: 0;
  width: 25vw; /* 調整OK */
  max-width: 349px;
}
/* 右上 */
.bg-right {
  position: absolute;
  top: 0;
  pointer-events: none;
  right: 0;
  width: 70vw; /* 調整OK */
  max-width: 723px;
}
@media(max-width:810px) {
  .bg-right {
    right:-20%;
	width: 85vw;
  }
}
@media(max-width:600px) {
  .bg-right {
    right:-30%;
	width: 100vw;
  }
}
/* 点レイヤー */
.dots {
  position: absolute;
  inset: 0;
}
/* 点 */
.dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.4);
}
@media(max-width:810px) {
  .dot {
    width: 6px;
    height: 6px;
  }
}
@media(max-width:600px) {
  .dot {
    width: 4px;
    height: 4px;
  }
}
/* 出現アニメ */
.dot.show {
  animation: dotIn 0.35s ease-out forwards;
  opacity: 1;
}
@keyframes dotIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  70% {
    opacity: 1;
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes dotOut {
  to {
    opacity: 0;
    transform: scale(0.3);
  }
}
.dot.hide {
  animation: dotOut 0.25s ease-in forwards;
}
.main-visual {
  width: 90%;
  max-width: 900px;
  padding: 200px 0 25px;
  margin: auto;
}
@media(max-width:600px) {
  .main-visual {
    padding: 150px 0 20px;
  }
}
.main-visual img{
  width: 100%;
  height: auto;
}
/* =============================================== */
/* copy - 舞台化決定 */
/* ----------------------------------------------- */
#copy{
  overflow: hidden;
  padding: 0;
  margin: 0;
}
#copy article{
  padding: 0;
  margin: 0 auto;
  width: 100%;
}

.copy-title{
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap; /* 改行させない */
  white-space: nowrap;

  font-size: clamp(32px, 11vw, 100px); /* かなり大きく */
  letter-spacing: 0.05em;
	z-index: 999;
	padding: 25px 0 50px;
  margin: 0 auto;
	color: #000;
}

/* 初期状態 */
.copy-title span{
  display: inline-block;
  opacity: 0;
  transform: scale(2);
  filter: blur(12px);
}

/* アニメーション発火 */
.copy-title.show span{
  animation: letterReveal 2s cubic-bezier(.2,.8,.2,1) forwards;
}

/* 遅延（9文字分） */
.copy-title span:nth-child(1){ animation-delay: 0.1s; }
.copy-title span:nth-child(2){ animation-delay: 0.18s; }
.copy-title span:nth-child(3){ animation-delay: 0.26s; }
.copy-title span:nth-child(4){ animation-delay: 0.34s; }
.copy-title span:nth-child(5){ animation-delay: 0.42s; }
.copy-title span:nth-child(6){ animation-delay: 0.50s; }
.copy-title span:nth-child(7){ animation-delay: 0.58s; }
.copy-title span:nth-child(8){ animation-delay: 0.66s; }
.copy-title span:nth-child(9){ animation-delay: 0.74s; }

/* アニメーション本体 */
@keyframes letterReveal{
  0%{
    opacity: 0;
    transform: scale(2);
    filter: blur(12px);
  }
  60%{
    opacity: 1;
    transform: scale(0.95); /* 少し縮みすぎて戻る感じ */
    filter: blur(2px);
  }
  100%{
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
/* !!!!を赤に 
.copy-title span:nth-child(n+6){
  color: #961a12;
}*/
/* !!!!を赤に */
.copy-title span:nth-child(odd){
  color: #c62a23;
}

/* =============================================== */
/* message - メッセージ */
/* ----------------------------------------------- */
#message {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5% 5%;
}
#message h2{
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 150%;
  background-image: url("../img/underline01.jpg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 15px;
  margin-bottom: 20px;
}
@media(max-width:600px) {
  #message h2 {
	background-size: 150%;
	background-position: bottom right;
    font-size: 125%;
    padding: 0 0 15px;
  }
}
#message h2 span{
  color: #c7000b;
} 
#message p{
  padding: 5px 15px;
} 
@media(max-width:600px) {
  #message p {
	padding: 5px 0;
  }
}
/* =============================================== */
/* detail - 続報のところ */
/* ----------------------------------------------- */
#detail {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5% 5%;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 125%;
}
/* =============================================== */
/* info - 公演概要 */
/* ----------------------------------------------- */
#info {
  width: 100%;
  margin: 0 auto;
  padding: 10% 0 5%;
  background-color: #000;
  color: #fff;
  background-image: url("../img/bgInfo.jpg");
  background-position: top;
  background-repeat: no-repeat;
}
@media(min-width:1920px) {
  #info {
    background-size: contain;
  }
}
@media(max-width:1000px) {
  #info {
    background-size: 150%;
  }
}
@media(max-width:600px) {
  #info {
    background-size: 200%;
	background-position: top left;
  }
}
#info article {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
/* 見出し */
.circle-title {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  margin-bottom: 50px;
}

.circle-title span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 30px;
  margin: 0 5px;
  font-weight: 700;
}
@media(max-width:600px) {
  .circle-title span {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
/* 奇数（赤） */
.circle-title span:nth-child(odd) {
  color: #c7000b;
  border: 3px double #c7000b;
}
/* 偶数（白） */
.circle-title span:nth-child(even) {
  color: #fff;
  border: 3px double #fff;
}

.dateTxt {
  font-weight: 400;
  font-size: 125%;
  text-align: center;
  padding: 15px 0 5px;
  letter-spacing: 2px;
  line-height: 1.4;
}
.dateTxt .large {
  font-size: 175%;
  font-weight: 600;
}
.venueTxt {
  font-weight: 400;
  font-size: 160%;
  text-align: center;
  padding: 0;
  letter-spacing: 2px;
  line-height: 1.2;
}
.venueTxt span{
  font-size: 55%;
}
@media(max-width:600px) {
  .dateTxt {
    font-size: 110%;
  }
  .dateTxt .large {
    font-size: 140%;
  }
  .venueTxt {
    font-size: 125%;
  }
}
h5 {
  font-size: 15px;
  font-weight: 600;
  padding: 30px 0 0;
  margin: 5px 0;
  color: #aebade;
  text-align: center;
}
#info p {
  text-align: center;
  padding: 5px 0;
}
.sche {
  margin: 30px auto;
  width: 100%;
  max-width: 615px;
  display: block;
}
.sche img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
/* チケット */
.ticketBox {
  margin: 25px auto;
  padding: 0 3% 20px;
  width: 90%;
  max-width: 800px;
  background-color: #3b4f8b;
  color: #fff;
}
@media(max-width:999px) {
  .ticketBox {
    width: 92%;
    padding: 0 2% 20px;
    margin: 30px auto 10px;
  }
}
.playguideList {
  list-style: none;
  padding: 20px 0;
  font-size: 90%;
}
@media(max-width:600px) {
  .playguideList {
    font-size: 85%;
  }
}
.playguideList li {
  border-top: 1px dotted #aebade;
  display: block;
  margin: 0 auto;
  padding: 25px 0;
  text-align: center;
}
.playguideList li:first-child {
  border-top: none;
}
.playguideList li span {
  font-weight: 600;
  border-bottom: 1px solid #3ab2cc;
  display: inline-block;
  margin-bottom: 15px;
  font-size: 110%;
  color: #71e6ff;
}
.playguideList li a:link {
  display: block;
  position: relative;
  padding: 0.5em 1em 0.4em;
  text-align: center;
  text-decoration: none;
  margin: 10px auto 0;
  color: #ff6c28;
  background-color: #1f326c;
  border: 1px solid #ff6c28;
  transition: all 0.3s;
  font-weight: 400;
  font-size: 90%;
  width: 10em;
}
.playguideList li a:visited {
  text-decoration: underline;
  color: #ff6c28;
  background-color: #1f326c;
  border: 1px solid #ff6c28;
}
.playguideList li a:active {
  text-decoration: underline;
  color: #ff6c28;
  background-color: #1f326c;
  border: 1px solid #ff6c28;
}
.playguideList li a:hover {
  text-decoration: none;
  background: #ff6c28;
  color: #fff;
  border: 1px solid #ff6c28;
}
/* =============================================== */
/* footer - フッター */
/* ----------------------------------------------- */
footer {
  width: 100%;
  margin: 0;
  padding: 20px 0;
  clear: both;
  color: #fff;
  text-align: center;
  background-color: #000;
  background-image: url("../img/bgInfo.jpg");
  background-position: top;
  background-repeat: no-repeat;
}
@media(min-width:1920px) {
  footer {
    background-size: contain;
  }
}
@media(max-width:1000px) {
  footer {
    background-size: 150%;
  }
}
@media(max-width:600px) {
  footer {
    background-size: 200%;
	background-position: top left;
  }
}
#footer-inner {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 0;
  text-align: center;
}
.snsBtn {
  padding: 15px 0 0;
  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: #c62a23;
}
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: #c62a23;
}
#footer-inner P {
  padding: 0;
  font-size: 13px;
}
/* =============================================== */
/* 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 - その他 */
/* ----------------------------------------------- */
.nowrap {
  white-space: nowrap;
  font-weight: 400;
  color: #c7000b;
}
/* ほか */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  line-height: 1;
  z-index: 99;
	display: none;
}
@media(max-width:600px) {
  #page-top {
    bottom: 5px;
    right: 5px;
  }
}
#page-top a {
  text-decoration: none;
  color: #c62a23;
  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;
}
.linkBtn a:link {
  text-decoration: none;
  color: #c7000b;
  padding: 5px 1.2em;
  margin: 0 auto;
  line-height: 1;
  font-size: 12px;
  position: relative;
  border: 1px solid #c7000b;
  border-radius: 50px;
}
.linkBtn a:visited {
  text-decoration: none;
  color: #c7000b;
  border: 1px solid #c7000b;
}
.linkBtn a:active {
  text-decoration: none;
  color: #c7000b;
  border: 1px solid #c7000b;
}
.linkBtn a:hover {
  text-decoration: none;
  background-color: #c7000b;
  color: #fff;
  border: 1px solid #c7000b;
  transition: all .3s ease;
}