@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;600&family=Sarina&family=Shippori+Mincho:wght@400;500;600&display=swap');
/* =============================================== */
/* basic - 共通基本設定 */
/* ----------------------------------------------- */
@media(max-width:810px) {
  .pc {
    display: none;
  }
}
@media(min-width:811px) {
  .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;
}
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;
  background-color: #222;
  color: #333;
  background-image: url("../img/bgWhite01.jpg");
  background-position: top center;
  -webkit-text-size-adjust: 100%;
}
@media(max-width:400px) {
  body {
    background-size: 40px;
  }
}
a:link {
  text-decoration: underline;
  color: #ff3333;
}
a:visited {
  text-decoration: underline;
  color: #ff3333;
}
a:active {
  text-decoration: underline;
  color: #ff3333;
}
a:hover {
  text-decoration: none;
  color: #ff3333;
}
/* 画像関連 */
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;
}
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;
}
/* 見出し */
h2 {
  margin: 30px auto;
  padding: 10px 0;
  text-align: center;
  font-family: "Sarina", cursive;
  font-weight: 400;
  font-size: 24px;
  background-color: #3d69c5;
  color:#fff799;
  width: 100%;
  max-width: 1000px;
  line-height: 1;
  border-bottom: 3px solid #fff799;
}
@media(max-width:810px) {
  h2 {
    font-size: 21px;
  }
}
@media(max-width:400px) {
  h2 {
    font-size: 18px;
  }
}
h3 {}

.gothic{
  font-family: "IBM Plex Sans JP", sans-serif;
  font-style: normal;
}
.mincho{
  font-family: "Shippori Mincho", serif;
  font-style: normal;
}
.english {
  font-family: "Sarina", cursive;
  font-style: normal;
}
/* =============================================== */
/* menu - メニュー */
/* ----------------------------------------------- */
/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
  position: fixed;
  top: 5px;
  left: 5px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 101;
  border: solid 2px #fff799;
  background-color: #3d69c5;
  -webkit-transition: all 3s ease-in-out;
  transition: all .3s ease-in-out;
}
@media(max-width:600px) {
  .menu-btn {
    width: 40px;
    height: 40px;
    border: solid 1px #fff799;
  }
}
.menu-btn-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  width: 50%;
  background: #fff799;
  -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: #fff799;
  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: #fff697;
}
.open .menu-btn-line {
  background-color: transparent;
}
.open .menu-btn-line::before, .open .menu-btn-line::after {
  top: 0;
  background: #fff697;
}
.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(28, 69, 148, .8);
  -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: 70px;
  line-height: 70px;
  text-align: center;
  font-weight: 400;
  border-bottom: 2px dotted #aaa;
}
.menu li:first-child {
  border-top: 2px dotted #aaa;
}
.menu li a {
  display: block;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.menu li a:hover {
  color: #fff697;
  -webkit-transition: all .2s;
  transition: all .2s;
}
@media(max-width:600px) {
  .menu li a {
    font-size: 1.2rem;
  }
}
.menu li.navX{
  border-bottom: none;
  padding-top: 20px;
}
.menu li.navX a {
  font-size: 2rem;
}
/* =============================================== */
/* main - メイン */
/* ----------------------------------------------- */
#container {
  width: 100%;
  padding-bottom: 40px;
}
#main {
  width: 100%;
  margin: 0;
  padding: 60px 0 40px;
  background-image: url("../img/bgCloud01.png");
  background-position: top center;
  background-repeat: no-repeat;
}
@media(min-width:2001px) {
  #main {
    background-size: contain;
  }
}
@media(max-width:810px) {
  #main {
    background-size: 165%;
  }
}
@media(max-width:400px) {
  #main {
    padding: 30px 0 20px;
  }
}
#mainOther {
  width: 100%;
  margin: 0;
  padding: 40px 0;
  background-image: none;
}
h1 {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
}
#mainOther h1 {
  width: 70%;
  max-width: 600px;
}
@media(max-width:400px) {
  #mainOther h1 {
    width: 100%;
  }
}
h1 img {
  width: 100%;
  filter: blur(50px);
  animation: blur-anim1 1s linear forwards;
}
@keyframes blur-anim1 {
  100% {
    filter: blur(0);
  }
}
/* フィード部分 */
#feed {
  width: 100%;
  margin: 0 auto;
  padding: 60px 0 90px;
  background-color: #555;
  background-image: url("../img/bgFeed.png");
  background-position: bottom;
  background-repeat: repeat-x;
}
@media(max-width:810px) {
  #feed {
    padding: 30px 0 50px;
    background-size: 40px;
  }
}
#titleFeed{
  margin: 0;
  padding: 0 0 30px;
  color: #fff;
  text-align: center;
  font-family: "Sarina", cursive;
  font-weight: 400;
  font-size: 24px;
}
@media(max-width:810px) {
  #titleFeed {
	padding: 0 0 15px;
    font-size: 18px;
  }
}
#feed ul {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 3%;
}
#feed ul li {
  font-size: 90%;
  padding: 12px;
  border-bottom: 1px dotted #999;
  color: #fff;
}
#feed ul li:first-child {
  border-top: 1px dotted #999;
}
#feed ul li span {
  display: inline-block;
  padding-right: 10px;
  color: #3af0fc;
}
#feed ul li a:link {
  text-decoration: underline;
  color: #fff;
}
#feed ul li a:visited {
  text-decoration: underline;
  color: #fff;
}
#feed ul li a:active {
  text-decoration: underline;
  color: #fff;
}
#feed ul li a:hover {
  text-decoration: none;
  color: #3af0fc;
}
@media(max-width:810px) {
  #feed ul li span {
    display: block;
  }
}
/* =============================================== */
/* lead - リード文 */
/* ----------------------------------------------- */
#lead {
  width: 100%;
  margin: 0 auto;
  padding: 30px 0;
}
.lead01{
  width: 90%;
  max-width: 900px;
  padding: 5px 5%;
  margin: 0 auto;
  /*font-family: "Shippori Mincho", serif;*/
  font-weight: 600;
  text-align: center;
  font-size: 1.3em;
  line-height: 1.4;
}
@media(max-width:400px) {
  .lead01 {
    padding: 2% 5%;
    font-size: 1.1em;
  }
}
/* =============================================== */
/* cast - キャスト */
/* ----------------------------------------------- */
#cast {
  width: 100%;
  margin: 0 auto;
  padding: 30px 0;
}
.castBox {
  text-align: center;
  width: 86%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2% 40px;
}
.castBox th{
  width: 49%;
  padding: 5px 1% 5px 0;
  text-align: right;
  font-weight: 600;
  color: #2b55b5;
}
.castBox td{
  width: 49%;
  padding: 5px 0 5px 1%;
  text-align: left;
  font-size: 140%;
  font-weight: 600;
}
@media(max-width:400px) {
  .castBox {
	width: 94%;
	padding: 0 0 20px;
  }
  .castBox th {
	font-size: 85%;
	vertical-align: center;
  }
  .castBox td {
	font-size: 120%;
	vertical-align: center;
  }
}
/* =============================================== */
/* info - 公演概要 */
/* ----------------------------------------------- */
#info {
  width: 100%;
  margin: 0 auto;
  padding: 30px 0;
}
.dateVenueTxt {
  font-weight: 500;
  font-size: 125%;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.1em;
  padding: 0 0 20px 0.1em;
}
.sche {
  width: 100%;
  margin: 0 0 30px;
  padding-bottom: 15px;
  text-align: center;
}
.sche img{
  width: 240px;
  height: auto;
  margin: 0 auto;
}
@media(max-width:810px) {
  .sche img{
    width: 180px;
	height: auto;
  }
}
.sche p {
  font-size: 90%;
  height: auto;
  padding: 15px 0;
}
h4 {
  text-align: center;
  margin-top: 20px;
}
.koumoku {
  color: #fff;
  margin-top: 20px;
  background-color: #2b55b5;
  text-align: center;
  font-size: 90%;
  line-height: 1;
  padding: 7px 1.5em 5px;
  margin: 0 auto 7px;
  display: inline-block;
  font-weight: 400;
}
@media(max-width:810px) {
  #osaka {
    background-size: 100px;
  }
  .dateVenueTxt {
    font-size: 110%;
  }
}
/* チケット */
.ticketList {
  text-align: center;
  padding: 20px 0 0;
  font-size: 108%;
}
.ticketList li {
  padding-bottom: 20px;
  line-height: 1.4;
}
.tokuten01{
  width: 260px;
  margin: 20px auto;
  text-align: center;
}
.tokuten01 img{
  width: 100%;
  height: auto;
}
.tokuten01 p{
  font-size: 90%;
  padding-top: 5px;
}
.ticketCautionList {
  list-style: disc;
  font-size: 90%;
  text-align: left;
  padding: 10px 0 30px 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 #2b55b5;
  margin: 40px auto;
  padding: 0 3% 20px;
  width: 90%;
  max-width: 800px;
  background-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: -2.5em;
  height: 0;
  font-size: 1em;
  background-color: #2b55b5;
  font-weight: 400;
}
.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: 0;
  width: 70%;
  text-align: center;
  color: #333;
  font-weight: 600;
  font-size: 110%;
}
.purchase span {
  font-weight: 400;
  display: block;
  font-size: 85%;
}
@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;
  margin: 5px auto;
  color: #fff;
  transition: all 0.3s;
  background: #1fb2c4;
  font-weight: 400;
  border-radius: 100px;
  font-size: 85%;
  width: 10em;
}
.purchase a:visited {
  text-decoration: underline;
  color: #fff;
}
.purchase a:active {
  text-decoration: underline;
  color: #fff;
}
.purchase a:hover {
  text-decoration: none;
  background: #234a9e;
  color: #fff;
}

.staffList{
  text-align: center;
  padding-bottom: 20px;
}
.staffList li{
  padding: 5px;
  font-weight: 400;
  font-size: 94%;
}
.staffList li span{
  color: #2b55b5;
  display: inline-block;
}
/* =============================================== */
/* news - ニュース */
/* ----------------------------------------------- */
#news {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
#news article{
  width: 90%;
  max-width: 900px;
  padding: 2% 5%;
  margin: 0 auto;
}
@media(max-width:400px) {
  #news article {
	font-size: 90%;
  }
}
.newsDate {
  color: #fff;
  font-size: 90%;
  line-height: 1;
  padding: 7px 10px 5px;
  margin: 0 0 5px 2%;
	background-color: #2b55b5;
	display: inline-block;
}
.newsTitle {
  width: 96%;
  padding: 0 2% 10px;
  text-align: left;
  display: block;
  margin: 0 0 20px;
  font-weight: 600;
  font-size: 20px;
  border-bottom: 3px solid #000;
}
#news p {
  width: 96%;
  padding: 10px 2%;
}
.newsImg {
  width: 96%;
  max-width: 900px;
  margin: 0 auto 10px;
  padding: 10px 0 0;
}
.newsImg img {
  width: 100%;
  height: auto;
}
/* =============================================== */
/* goods - グッズ */
/* ----------------------------------------------- */
.otherContainer {
  width: 100%;
  margin: 0;
  padding: 50px 0;
  background-image: url("../img/bgCloud01.png");
  background-position: top center;
  background-repeat: no-repeat;
}
@media(min-width:2001px) {
  .otherContainer {
    background-size: contain;
  }
}
@media(max-width:810px) {
  .otherContainer {
    background-size: 165%;
  }
}
@media(max-width:400px) {
  .otherContainer {
    padding: 30px 0 20px;
  }
}
#goods {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
#goods article{
  width: 90%;
  max-width: 900px;
  padding: 2% 5%;
  margin: 0 auto;
}
@media(max-width:400px) {
  #goods article {
	font-size: 90%;
  }
}
.goodsTitle {
  width: 96%;
  padding: 0 2% 10px;
  text-align: left;
  display: block;
  margin: 0 0 20px;
  font-weight: 600;
  font-size: 20px;
  border-bottom: 3px solid #000;
}
#goods p {
  width: 96%;
  padding: 10px 2%;
}
.goodsCautionList01 {
  list-style: disc;
  font-size: 100%;
  text-align: left;
  padding: 10px 0 20px 0.7em;
  width: 96%;
  margin: 0 auto;
}
.goodsCautionList01 li {
  padding: 0 0 20px;
  line-height: 1.6;
  font-size: 96%;
}
.goodsCautionList01 li span {
  font-weight: 600;
}
.goodsCautionList02 {
  list-style: circle;
  font-size: 85%;
  text-align: left;
  padding: 10px 0 20px 1em;
  width: 94%;
  margin: 0 auto;
}
.goodsCautionList02 li {
  padding: 0 0 10px;
  line-height: 1.5;
}
.goodsBox {
  padding: 0 0 60px;
}
.goodsPhoto {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
}
.goodsPhoto img {
  width: 100%;
  hright: auto;
}
#goods .goodsKoumoku{
  text-align: center;
  font-size: 140%;
  font-weight: 600;
  padding: 5px 0 10px;
  margin: 0;
  display: block;
  line-height: 1.4;
}
#goods .goodsPrice {
  text-align: center;
  font-size: 120%;
  padding: 0 0 12px;
  margin: 0;
  display: inline-block;
  line-height: 1.4;
}
#goods .goodsDetail {
  text-align: center;
  font-size: 85%;
  padding: 0 0 8px;
  margin: 0;
  display: inline-block;
  line-height: 1.3;
}

/* =============================================== */
/* notice - ご来場の皆様へ */
/* ----------------------------------------------- */
#notice {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
#notice article{
  width: 90%;
  max-width: 900px;
  padding: 2% 5%;
  margin: 0 auto;
}
@media(max-width:400px) {
  #notice article {
	font-size: 90%;
  }
}
#notice h5 {
  height: auto;
  text-align: left;
}
#notice h5 span {
  color: #fff;
  padding: 5px 1.5em 3px;
  margin: 0;
  position: relative;
  top: 0;
  height: auto;
  font-size: 1em;
  background-color: #2b55b5;
  font-weight: 400;
}
#notice p{
  padding: 0 1em 8px;
}
.noticeList1 {
  list-style: decimal;
  font-size: 100%;
  padding: 10px 1em;
  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% 1px;
  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: #222;
  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;
}
.footerLogo {
  width: 50%;
  max-width: 274px;
  margin: 20px auto;
  display: none;
}
.footerLogo img {
  width: 100%;
  height: auto;
}
.footerLogo a {
  display: block;
}
#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: 72%;
  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: #67c5cb;
}
@media(max-width:400px) {
  .archiveList {
    text-align: left;
  }
  .archiveList li {
    width: 38%;
    padding: 0 2% 0 25px;
    text-align: left;
  }
}
/* =============================================== */
/* 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: #1fb2c4;
  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: 80%;
}
.ex-small {
  font-size: 65%;
}
.bold {
  font-weight: 800;
}
.left {
  float: left;
}
.right {
  float: right;
}
.txtCenter {
  text-align: center;
}
.txtRight {
  text-align: right;
}