@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;600&family=Train+One&display=swap');
/* =============================================== */
/* basic - 共通基本設定 */
/* ----------------------------------------------- */
@media(max-width:410px) {
  .pc {
    display: none;
  }
}
@media(min-width:411px) {
  .sp {
    display: none;
  }
}
img {
  pointer-events: none;
}
/* リセット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;
}
html {
  scroll-behavior: smooth;
}
ul {
  list-style-type: none;
}
a:link {
  text-decoration: underline;
  color: #f5ee39;
}
a:visited {
  text-decoration: underline;
  color: #f5ee39;
}
a:active {
  text-decoration: underline;
  color: #f5ee39;
}
a:hover {
  text-decoration: none;
  color: #f5ee39;
}
/* 画像関連 */
img {
  border: none;
  vertical-align: bottom;
}
/* 罫線 */
hr {
  height: 0;
  margin: 0 auto;
  padding: 0;
  border: 0;
  width: 100%;
  border-bottom: 1px solid #4080be;
}
.solid {
  border-top: 3px #4080be solid;
}
.dotted {
  border-top: 3px #4080be dotted;
}
.dashed {
  border-top: 1px #4080be dashed;
}
.double {
  border-top: 3px #4080be double;
}
/* =============================================== */
/* reveal - revealの動き設定 */
/* ----------------------------------------------- */
/* 共通（非表示の初期状態） */
.reveal {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
/* 上から出る */
.revealTop {
  transform: translateY(-30px);
}
.revealTop.show {
  opacity: 1;
  transform: translateY(0);
}
/* 下から出る */
.revealBottom {
  transform: translateY(30px);
}
.revealBottom.show {
  opacity: 1;
  transform: translateY(0);
}
/* =============================================== */
/* layout - ページレイアウト大枠 */
/* ----------------------------------------------- */
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;
  background-color: #2c2c2c;
  -webkit-text-size-adjust: 100%;
}
#wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#container {
  width: 100%;
}
section {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
}
article {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  clear: both;
}
header {
  width: 100%;
  height: 0;
}
/* =============================================== */
/* title - 見出し */
/* ----------------------------------------------- */
h2 {
  text-align: center;
  font-size: 3rem;
  font-family: "Train One", system-ui;
  font-weight: 400;
  font-style: normal;
}
@media(max-width:410px) {
  h2 {
    font-size: 2.2rem;
	line-height: 1.2;
  }
}
.neon {
  color: #fff;
  text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #0ff, 0 0 40px #0ff, 0 0 80px #0ff;
}
h3 {
  display: block;
  width: 96%;
  max-width: 960px;
  font-weight: 400;
  text-align: center;
  font-size: 1em;
  margin: 25px auto;
  padding: 10px 0 8px;
  line-height: 1.5;
  background-color: #2c2c2c;
  color: #f5ee39;
  border-top: 2px solid #f5ee39;
  border-bottom: 2px solid #f5ee39;
}
h4 {
  text-align: center;
  margin-top: 20px;
}
h4 span {
  color: #0ff;
  margin: 20px 0 15px;
  border: 2px solid #0ff;
  text-align: center;
  font-size: 14px;
  padding: 10px 2em;
  display: inline-block;
  font-weight: 400;
  border-radius: 6px;
  background-color: #2c2c2c;
}
h5 {
  height: 0;
  text-align: center;
}
h5 span {
  position: relative;
  top: -3.3em;
  color: #0ff;
  margin: 0;
  border: 2px solid #0ff;
  text-align: center;
  font-size: 14px;
  padding: 10px 2em;
  display: inline-block;
  font-weight: 400;
  border-radius: 6px;
  background-color: #2c2c2c;
}
/* =============================================== */
/* menu - メニュー */
/* ----------------------------------------------- */
/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
  position: fixed;
  top: 15px;
  left: 15px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 101;
  border: solid 2px #f5ee39;
  background-color: #2c2c2c;
  -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 #f5ee39;
  }
}
.menu-btn-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  width: 50%;
  background: #f5ee39;
  -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: #f5ee39;
  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: #f5ee39;
}
.open .menu-btn-line {
  background-color: transparent;
}
.open .menu-btn-line::before, .open .menu-btn-line::after {
  top: 0;
  background: #f5ee39;
}
.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(18%);
  padding: 0;
  list-style-type: none
}
.menu li {
  width: 100%;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-family: "Train One", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
}
@media(max-width:600px) {
  .menu ul {
    transform: translateY(16%);
  }
  .menu li {
    height: 50px;
    line-height: 50px;
    font-size: 1.5rem;
  }
}
.menu li.menuHome{
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.3rem;
  padding-top: 20px;
}
.menu li a {
  display: block;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  color: #fff;
  text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #0ff, 0 0 40px #0ff, 0 0 80px #0ff;
}
.menu li a:hover {
  -webkit-transition: all .2s;
  transition: all .2s;
  color: #fff;
  text-shadow: 0 0 5px #f5ee39, 0 0 10px #f5ee39, 0 0 20px #f5ee39, 0 0 40px #f5ee39, 0 0 80px #f5ee39;
}
/* =============================================== */
/* main - メイン */
/* ----------------------------------------------- */
#main {
  position: relative;
  width: 90%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 40px 5%;
  animation: bg-color 5s infinite;
  background-image: url("../img/bgMizutama.png");
}
.otherContainer #main {
  padding: 20px 5%;
}
@keyframes bg-color {
  0% {
    background-color: #35b041;
  }
  25% {
    background-color: #55c2e3;
  }
  50% {
    background-color: #e33590;
  }
  75% {
    background-color: #f5ee39;
  }
  100% {
    background-color: #35b041;
  }
}
h1 {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
}
h1 img {
  width: 100%;
  filter: blur(50px);
  animation: blur-anim1 1s linear forwards;
}
@keyframes blur-anim1 {
  100% {
    filter: blur(0);
  }
}

.logo{max-width: 600px;}
/* spot - スポットライト */
.spot {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  opacity: 0.9;
  mix-blend-mode: screen; /* 光が重なると加算っぽく */
  z-index: 0;
}

/* フィード部分 */
#feed {
  width: 100%;
  margin: 0 auto;
  background-color: #29396d;
  padding: 50px 0 70px;
}
@media(max-width:810px) {
  #feed {
    padding: 25px 0 35px;
  }
}
#feed ul {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 3%;
}
#feed ul li {
  font-size: 90%;
  padding: 12px;
  border-bottom: 1px solid #5063a0;
  color: #fff;
}
#feed ul li:first-child {
  border-top: 1px solid #5063a0;
}
#feed ul li span {
  display: inline-block;
  padding-right: 20px;
  color: #f5ee39;
}
#feed ul li a:link {
  text-decoration: none;
  color: #fff;
}
#feed ul li a:visited {
  text-decoration: none;
  color: #fff;
}
#feed ul li a:active {
  text-decoration: none;
  color: #fff;
}
#feed ul li a:hover {
  text-decoration: none;
  color: #fff;
  text-shadow: 0 0 5px #f5ee39, 0 0 10px #f5ee39, 0 0 20px #f5ee39, 0 0 40px #f5ee39, 0 0 80px #f5ee39;
}
@media(max-width:810px) {
  #feed ul li span {
    display: block;
  }
}
/* =============================================== */
/* cast - キャスト */
/* ----------------------------------------------- */
#cast {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  background-color: #29396d;
  border-bottom: #0ff 1px solid;
}
.castList {
  text-align: center;
  width: 96%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2% 40px;
}
.castList li {
  display: inline-block;
  width: 31.5%;
  padding: 0 0.5% 20px;
  vertical-align: top;
}
.photo {
  width: 100%;
  max-width: 200px;
  text-align: center;
  margin: 0 auto 5px;
}
.photo img {
  width: 100%;
  height: auto;
}
.role {
  color: #f5ee39;
  font-size: 90%;
  font-weight: 500;
}
.actor {
  font-size: 110%;
  font-weight: 500;
}
.chara {
  font-size: 80%;
  line-height: 1.4;
  text-align: left;
  padding: 5px 5px 20px;
  display: none;
}
@media(max-width:410px) {
  #cast li {
    width: 99%;
  }
}
/* =============================================== */
/* info - 公演概要 */
/* ----------------------------------------------- */
#tokyo, #osaka {
  width: 94%;
  margin: 0 auto;
  padding: 50px 3%;
  background-color: #000;
  color: #fff;
}
.dateVenueTxt {
  font-weight: 500;
  font-size: 130%;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.1em;
  padding: 0 0 20px 0.1em;
}
.sche {
  width: 100%;
  margin: 15px 0 0;
  padding-bottom: 15px;
  text-align: center;
}
.sche img {
  width: 450px;
  height: auto;
  margin: 0 auto;
}
@media(max-width:450px) {
  .sche img {
    width: 92%;
    height: auto;
  }
}
.sche p {
  font-size: 13px;
  height: auto;
  padding: 15px 0;
}
@media(max-width:810px) {
  .dateVenueTxt {
    font-size: 110%;
  }
}
/* チケット */
.ticketList {
  text-align: center;
  padding: 10px 0 20px;
  font-size: 108%;
}
.ticketList li {
  padding-bottom: 20px;
  line-height: 1.4;
}
.ticketList span{
  color: #0ff;
}
.ticketCautionList {
  list-style: disc;
  font-size: 90%;
  text-align: left;
  padding: 10px 0 20px 1em;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
.ticketCautionList li {
  padding: 3px 0;
  line-height: 1.5;
}
.tokutenList {
  padding: 20px 3% 40px;
  font-size: 85%;
  width: 94%;
  max-width: 860px;
  margin: 0 auto;
}
.tokutenList li {
  padding-bottom: 10px;
}
.ticketBox {
  border: 1px solid #0ff;
  margin: 40px auto;
  padding: 0 3% 20px;
  width: 90%;
  max-width: 800px;
  background-color: #2c2c2c;
  color: #fff;
  border-radius: 8px;
}
@media(max-width:999px) {
  .ticketBox {
    width: 92%;
    padding: 0 2% 20px;
    margin: 30px auto 10px;
  }
}
.playguideList {
  list-style: none;
  padding: 0 0 15px 0;
  font-size: 90%;
}
@media(max-width:810px) {
  .playguideList {
    font-size: 85%;
  }
}
.playguideList li {
  padding: 15px 0;
  border-top: 1px dotted #999;
}
.playguideList li:first-child {
  border-top: none;
}
.purchase {
  display: block;
  margin: 0 auto;
  padding: 10px 0;
  text-align: center;
  color: #0ff;
  font-weight: 400;
}
.purchase span {
  display: block;
  font-size: 13px;
  color: #fff;
}
@media(max-width:810px) {
  .purchase {
    width: 100%;
    padding: 20px 0;
    line-height: 1.4;
  }
}
.purchase a:link {
  display: block;
  position: relative;
  padding: 0.5em 1em 0.4em;
  text-align: center;
  text-decoration: none;
  border: 1px solid #f5ee39;
  margin: 15px auto 5px;
  color: #f5ee39;
  transition: all 0.3s;
  background: #000;
  font-weight: 400;
  border-radius: 100px;
  font-size: 13px;
  width: 10em;
}
.purchase a:visited {
  text-decoration: underline;
  color: #f5ee39;
  border: 1px solid #f5ee39;
}
.purchase a:active {
  text-decoration: underline;
  border: 1px solid #f5ee39;
  color: #f5ee39;
}
.purchase a:hover {
  text-decoration: none;
  background: #f5ee39;
  color: #000;
  border: 1px solid #f5ee39;
}
/* =============================================== */
/* news - ニュース */
/* ----------------------------------------------- */
.logo {
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
}
.logo img {
  width: 100%;
  height: auto;
}
#news {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  background-color: #29396d;
  /*background-color: #000;*/
}
#news article {
  width: 90%;
  max-width: 900px;
  padding: 3%;
  margin: 0 auto 100px;
}
@media(max-width:810px) {
  #news article {
    width: 94%;
  }
}
.newsDate {
  font-family: "Train One", system-ui;
  font-weight: 400;
  font-style: normal;
  color: #f5ee39;
  font-size: 160%;
  line-height: 1;
  padding: 0 2%;
  margin: 0;
}
.newsTitle {
  width: 96%;
  padding: 12px 2%;
  text-align: left;
  display: block;
  margin: 0 0 20px;
  color: #f5ee39;
  background-color: #252040;
  border-top: 2px solid #f5ee39;
  border-bottom: 2px solid #f5ee39;
  font-size: 100%;
}
#news p {
  width: 96%;
  padding: 10px 2%;
}
@media(max-width:810px) {
  .newsTitle {
    line-height: 1.4;
    padding: 6px 2% 5px;
  }
}
#news .belong {
  display: block;
  width: 96%;
  max-width: 900px;
  color: #2b55b5;
  padding: 7px 0 6px;
  margin: 15px auto 10px;
  line-height: 1;
  font-size: 90%;
  font-weight: 400;
  text-align: center;
  background-color: #fff;
  border-top: 1px solid #2b55b5;
  border-bottom: 1px solid #2b55b5;
}
.newsImg {
  width: 100%;
  max-width: 870px;
  margin: 0 auto 10px;
  padding: 10px 0 0;
}
.newsImg img {
  width: 100%;
  height: auto;
}
/* =============================================== */
/* goods - グッズ */
/* ----------------------------------------------- */
#goods {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  background-color: #29396d;
}
#goods article {
  width: 90%;
  max-width: 900px;
  padding: 3%;
  margin: 0 auto 40px;
}
@media(max-width:810px) {
  #goods article {
    width: 94%;
  }
}
.goodsPhoto {
  margin:0 auto 20px;
  padding-top: 10px;
}
.goodsPhoto img {
  width: 100%;
  hright: auto;
}
.goodsKoumoku {
  text-align: center;
}
.goodsKoumoku span{
  display: inline-block;
  padding: 5px 0;
  margin: 10px auto;
  line-height: 1;
  font-size: 120%;
  font-weight: 500;
  border-bottom: 2px solid #fff;
}
.goodsPrice {
  text-align: center;
  font-size: 120%;
}
.goodsDetail {
  text-align: center;
  font-size: 88%;
  padding: 10px 0;
}
.goodsSmall {
  text-align: center;
  font-size: 80%;
}
.goodsCautionList {
  list-style: disc;
  font-size: 80%;
  text-align: left;
  padding: 10px 0 10px 1em;
  width: 94%;
  margin: 0 auto;
}
.goodsCautionList li {
  padding: 3px 0;
  line-height: 1.5;
}
/* =============================================== */
/* notice - ご来場の皆様へ */
/* ----------------------------------------------- */
#titleNotice {
  padding-bottom: 40px;
}
@media(max-width:810px) {
  #titleNotice {
    padding-bottom: 10px;
  }
}
#titleNotice .titleE {
  color: #fff;
}
#titleNotice .titleJ {
  color: #fff;
}
#notice {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  background-color: #fff;
}
#notice article {
  width: 90%;
  max-width: 900px;
  padding: 3%;
  margin: 0 auto 40px;
}
@media(max-width:810px) {
  #notice article {
    width: 94%;
  }
}
#notice p {
  width: 96%;
  padding: 10px 2%;
}
h3.noticeTitle {
  width: 96%;
  padding: 15px 2%;
  text-align: center;
  display: block;
  margin: 0 0 20px;
  color: #fff;
  background-color: #252040;
  border-top: 3px double #fff;
  border-bottom: 3px double #fff;
  font-size: 100%;
}
.noticeKoumoku {
  display: inline-block;
  color: #252040;
  padding: 8px 1em;
  margin: 10px auto;
  line-height: 1;
  font-size: 88%;
  font-weight: 500;
  border-top: 1px dotted #252040;
  border-bottom: 1px dotted #252040;
  background-color: #f1f5fe;
}
.noticeList1 {
  list-style: decimal;
  font-size: 90%;
  padding: 10px 2%;
  margin: 0;
}
.noticeList1 li {
  padding: 0;
  margin: 0 0 10px 1.5em;
  line-height: 1.5;
}
.noticeList2 {
  list-style: circle;
  font-size: 90%;
  padding: 10px 2%;
  margin: 0;
}
.noticeList2 li {
  padding: 0;
  margin: 0 0 10px 1em;
  line-height: 1.5;
}
/* =============================================== */
/* footer - フッター */
/* ----------------------------------------------- */
footer {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
  background-color: #2c2c2c;
  color: #fff;
  position: relative;
  top: -1px;
  border-top: #444 solid 1px;
}
#footer-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
  text-align: center;
}
/* SNSボタン */
.snsBtn {
  padding: 15px 0;
  text-align: center;
}
.snsBtn li {
  font-size: 46px;
  font-weight: 400;
  padding: 0 10px;
  display: inline-block;
}
.snsBtn a:link {
  text-decoration: none;
  display: block;
  color: #fff;
}
.snsBtn a:visited {
  text-decoration: none;
  color: #fff;
}
.snsBtn a:active {
  text-decoration: none;
  color: #fff;
}
.snsBtn a:hover {
  text-decoration: none;
  color: #f5ee39;
}
#footer-inner p {
  padding: 10px 0;
  font-size: 90%;
}
.archiveList {
  text-align: center;
  padding: 30px 0 30px;
  margin: 0 20px;
  border-top: #999 dotted 1px;
}
.archiveList li {
  display: inline-block;
  background-image: url("../img/iconShuriken02.png");
  background-position: left;
  background-repeat: no-repeat;
  font-size: 85%;
  padding: 0 2em;
}
.archiveList li a:link {
  text-decoration: none;
  color: #fff;
}
.archiveList li a:visited {
  text-decoration: none;
  color: #fff;
}
.archiveList li a:active {
  text-decoration: none;
  color: #fff;
}
.archiveList li a:hover {
  text-decoration: none;
  color: #f5ee39;
}
@media(max-width:400px) {
  .archiveList {
    text-align: left;
  }
  .archiveList li {
    width: 38%;
    padding: 0 2% 0 25px;
    text-align: left;
	font-size: 65%;
  }
}
/* =============================================== */
/* 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:810px) {
  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:810px) {
  #page-top {
    bottom: 5px;
    right: 5px;
  }
}
#page-top a {
  text-decoration: none;
  color: #f5ee39;
  text-align: center;
  display: block;
  opacity: 1;
  transition: all .3s ease;
  font-size: 56px;
}
@media(max-width:810px) {
  #page-top a {
    font-size: 40px;
  }
}
#page-top a:hover {
  text-decoration: none;
  opacity: .5;
}
.ex-large {
  font-size: 200%;
}
@media(max-width:810px) {
  .ex-large {
    font-size: 140%;
  }
}
.large {
  font-size: 130%;
}
@media(max-width:810px) {
  .large {
    font-size: 120%;
  }
}
small {
  font-size: 13px;
}
.small {
  font-size: 13px;
}
.bold {
  font-weight: 600;
}
.left {
  float: left;
}
.right {
  float: right;
}
.txtCenter {
  text-align: center;
}
.txtRight {
  text-align: right;
}