@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@100;200;300;400;500;600;700&family=Squada+One&display=swap');
/* =============================================== */
/* basic - 共通基本設定 */
/* ----------------------------------------------- */
@media(max-width:600px) {
  .pc {
    display: none;
  }
}
@media(min-width:601px) {
  .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: #222222;
  color: #222222;
  -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;
}
/* 見出し */

/* =============================================== */
/* menu - メニュー */
/* ----------------------------------------------- */
/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
  position: fixed;
  top: 15px;
  left: 15px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 101;
  border: solid 2px #fff697;
  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 #fff697;
  }
}
.menu-btn-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  width: 50%;
  background: #fff697;
  -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: #fff697;
  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(0, 0, 0, .7);
  -webkit-transition: all .5s;
  transition: all .5s;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
}
.menu ul {
  transform: translateY(30%);
  padding: 0;
  list-style-type: none
}
.menu li {
  width: 100%;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-weight: 600;
  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;
  }
}
/* =============================================== */
/* main - メイン */
/* ----------------------------------------------- */
#container {
  width: 100%;
  padding-bottom: 40px;
  background-color: #1a6853;
  background-image: url("../img/bgShuriken.png");
}
#main {
  width: 100%;
  margin: 0;
  padding: 80px 0;
  background-image: url("../img/bgMain01.png"),url("../img/bgMain02.png"),url("../img/bgMain03.jpg");
  background-position: top right, bottom left, top center;
  background-repeat: no-repeat,no-repeat,repeat;
}
@media(max-width:600px) {
  #main {
    padding: 30px 0;
    background-size: 50%,50%,75px;
  }
}
h1 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
h1 img {
  width: 100%;
  filter: blur(50px);
  animation: blur-anim1 1s linear forwards;
}
@keyframes blur-anim1 {
  100% {
    filter: blur(0);
  }
}
/* =============================================== */
/* feed - フィード部分 */
/* ----------------------------------------------- */
#feed {
  width: 100%;
  margin: 0 auto;
  padding: 15px 0;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  background-color:#fff697;
}
#feed ul {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 3%;
}
#feed ul li {
  font-size: 100%;
  padding: 5px;
  border-top: 1px solid #000;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
}
#feed ul li:first-child {
  border-top: none;
}
#feed ul li span {
  display: inline-block;
  padding-right: 10px;
  color: #000;
}
#feed ul li a:link {
  text-decoration: underline;
  color: #000;
}
#feed ul li a:visited {
  text-decoration: underline;
  color: #000;
}
#feed ul li a:active {
  text-decoration: underline;
  color: #000;
}
#feed ul li a:hover {
  text-decoration: underline;
  color: #e50012;
}
@media(max-width:810px) {
  #feed{
    padding: 5px 0;
	}
  #feed ul li {
    font-size:88%;
	}
  #feed ul li span {
    display: block;
  }
}
/* =============================================== */
/* lead - リード文 */
/* ----------------------------------------------- */
#lead {
  width: 100%;
  margin: 0 auto;
  padding: 30px 0;
}
#lead p{
  width: 92%;
  max-width: 920px;
  margin: 0 auto;
  padding: 10px 4%;
  color: #fff;
  font-size: 120%;
  font-weight: 400;
}
#lead p.subhead{
  width: 96%;
  max-width: 960px;
  margin: 0 auto;
  font-size: 1.8em;
  font-weight: 600;
  color: #fff697;
  transform: rotate(-4deg);
  padding: 15px 2% 40px;
}
@media(max-width:600px) {
  #lead p{
    font-size: 100%;
  }
  #lead p.subhead {
    font-size: 1.4em;
    padding: 0 0 15px 5%;
  }
}
/* =============================================== */
/* accordion - アコーディオン */
/* ----------------------------------------------- */
.accordion {
  max-width: 1000px;
  position: relative;
  width: 94%;
  margin: 0 auto;
}
.accordion-item {
  margin-bottom: 30px;
}
.accordion-title {
  cursor: pointer;
  font-size: 100%;
  padding: 20px;
  background-color: #fff697;
  border: 3px solid #000;
  text-align: center;
  font-weight: 400;
  line-height: 1.3;
}
.accordion-title span{
  color: #000;
  font-size: 200%;
  font-weight: 600;
}
@media(max-width:600px) {
  .accordion-title span {
    font-size: 150%;
  }
}
.accordion-content {
  display: none;
  padding: 25px;
  background-color: #fff;
  border-left: 3px solid #000;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
  color: #000;
}
@media(max-width:640px) {
  .accordion-content {
    padding: 15px;
  }
}
.accordion-content p {
  line-height: 1.6;
}
/* タイトルの背景色 */
.accordion-item:nth-of-type(1) .accordion-title {}
.accordion-item:nth-of-type(2) .accordion-title {}
.accordion-item:nth-of-type(3) .accordion-title {}
/* コンテンツボックスの枠線 */
.accordion-item:nth-of-type(1) .accordion-content {}
.accordion-item:nth-of-type(2) .accordion-content {}
.accordion-item:nth-of-type(3) .accordion-content {}
/* 矢印 */
.accordion-title {
  position: relative;
}
.accordion-title::after {
  border-right: solid 2px #000;
  border-top: solid 2px #000;
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: rotate(135deg);
  transition: transform .3s ease-in-out, top .3s ease-in-out;
  width: 8px;
}
.accordion-title.open::after {
  top: 50%;
  transform: rotate(-45deg);
}
/* =============================================== */
/* info - 公演概要中身 */
/* ----------------------------------------------- */
h3{
  background-color: #1a6853;
  color: #fff;
  font-weight: 500;
  text-align: center;
  font-size: 15px;
  line-height: 1;
  padding: 8px 15px 5px;
  margin: 15px 0;
  border-top: 3px double #fff;
  border-bottom: 3px double #fff;
}
/* 星取表 */
.scheBox{
  width: 96%;
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 10px auto;
  font-weight: 500;
  font-size: 90%;
}
.scheBox th{
  border: 1px solid #ccc;
  text-align: center;
  padding: 5px;
  background-color: #d9ecd7;
  color: #1a6853;
}
.scheBox td{
  border: 1px solid #ccc;
  text-align: center;
  padding: 5px;
}
.red{
  color: #e50012;
  font-size: 1.5em;
}
/* 公演概要テキスト */
.accordion-content p{
  width: 96%;
  margin: 7px auto;
  text-align: center;
  font-size: 1.4em;
  font-weight: 500;
}
.accordion-content p.address{
  font-size: 0.9em;
  font-weight: 400;
}
@media(max-width:600px) {
  .accordion-content p{
    font-size: 1.2em;
  }
  .accordion-content p.address{
    font-size: 0.8em;
  }
}
/* 出演者 */
.castList1{
  width: 96%;
  margin: 10px auto;
}
.castList1 li{
  width: 100%;
}
.castList1 .role{
  width: 46%;
  margin: 0;
  padding: 1%;
  text-align: right;
  display: inline-block;
  color: #1a6853;
}
.castList1 .actor{
  width: 46%;
  margin: 0;
  padding: 1%;
  display: inline-block;
  font-weight: 600;
}
@media(max-width:600px) {
  .castList1 .role{
    font-size: 0.65em;
	width: 48%;
	vertical-align: middle;
    font-weight: 600;
  }
  .castList1 .actor{
	vertical-align: middle;
  }
}
.castList2{
  width: 96%;
  margin: 30px auto;
  text-align: center;
}
.castList2 li{
  display: inline-block;
  padding: 0 10px;
}
@media(max-width:600px) {
  .castList2{
    font-size: 90%;
  }
}
/* 入場料 */
.ticketBox{
  width: 96%;
  border-collapse: collapse;
  margin: 20px auto 10px;
  font-weight: 500;
  font-size: 100%;
}
.ticketBox th{
  border-top: 2px dotted #ccc;
  border-bottom: 2px dotted #ccc;
  text-align: center;
  padding: 5px;
  color: #1a6853;
  width: 50%;
}
.ticketBox td{
  border-top: 2px dotted #ccc;
  border-bottom: 2px dotted #ccc;
  text-align: center;
  padding: 5px;
  width: 50%;
}
@media(max-width:600px) {
  .ticketBox{
	font-size: 80%;
  }
  .ticketBox th{
	line-height: 1.2;
    width: 49%;
  }
  .ticketBox td{
	line-height: 1.2;
    width: 51%;
  }
}
.cautionList{
  width: 96%;
  margin: 10px auto 10px;
}
.cautionList li{
  list-style: circle;
  font-size: 90%;
  margin-left: 1em;
}
@media(max-width:600px) {
  .cautionList li{
	font-size: 80%;
  }
}
/* 購入ボタン */
.purchaseBox {
  border: 1px solid #e50012;
  margin: 40px auto;
  padding: 0 2% 20px;
  width: 92%;
  background-color: #fdeff0;
}
h5 {
  height: 0;
  text-align: center;
}
h5 span {
  color: #fff;
  padding: 5px 1.5em;
  margin: 0;
  position: relative;
  top: -2.5em;
  height: 0;
  font-size: 1em;
  background-color: #000;
  font-weight: 500;
}
.playguideList {
  list-style: none;
  padding: 0 0 10px;
}
.playguideList li {
  padding: 20px 0;
  border-top: 1px dotted #666;
  font-weight: 500;
}
.playguideList li span{
  display: block;
  padding: 0;
  font-weight: 400;
  font-size: 86%;
}
.playguideList li:first-child {
  border-top: none;
  padding-top: 0;
}
.purchase {
  display: block;
  margin: 0 auto;
  padding: 0;
  width: 90%;
  max-width: 500px;
  text-align: center;
  font-weight: 500;
}
.purchase a:link {
  display: block;
  position: relative;
  padding: 0.5em;
  text-align: center;
  text-decoration: none;
  border: 2px solid #bc2b2b;
  margin: 0 auto 10px;
  color: #fff;
  transition: all 0.3s;
  background: #990000;
  font-weight: 400;
  font-size: 85%;
	width:18em;
}
.purchase a:visited {
  text-decoration: underline;
  color: #fff;
  border: 2px solid #bc2b2b;
}
.purchase a:active {
  text-decoration: underline;
  border: 2px solid #bc2b2b;
  color: #fff;
}
.purchase a:hover {
  text-decoration: none;
  background: #bc2b2b;
  color: #fff;
  border: 2px solid #bc2b2b;
}
/* スタッフ */
.cautionList2{
  width: 92%;
  max-width: 920px;
  margin: 40px auto;
  color: #fff;
}
.cautionList2 li{
  list-style: disc;
  font-size: 92%;
  margin: 0 0 10px 1em;
  line-height: 1.4;
}
@media(max-width:600px) {
  .cautionList2 li{
	font-size: 86%;
  }
}

.crediteBox{
  width: 30em;
  border-collapse: collapse;
  margin: 50px auto 10px;
  font-weight: 500;
  font-size: 94%;
}
.crediteBox th{
  text-align: center;
  padding: 1%;
  margin: 1%;
  width: 8em;
  color: #fff697;
  font-weight: 400;
  border-top: 1px solid #2a7c66;
  border-bottom: 1px solid #2a7c66;
}
.crediteBox td{
  text-align: left;
  padding: 1%;
  margin: 1%;
  width: 22em;
  color: #fff;
  font-weight: 400;
  border-top: 1px solid #2a7c66;
  border-bottom: 1px solid #2a7c66;
}
@media(max-width:600px) {
  .crediteBox {
    font-size: 80%;
  }
  .crediteBox th{
    width: 5em;
  }
  .crediteBox td{
    width: 18em;
  }
}
/* =============================================== */
/* goods - グッズ */
/* ----------------------------------------------- */
h1#contentsTitle{
  text-align: center;
  padding: 50px 0;
}
.eng{
  display: block;
  font-family: "Squada One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.5em;
  padding: 0 0 5px;
  margin: 0;
  line-height: 1;
  color: #fff697;
}
.jap{
  display: block;
  font-size: 0.8em;
  padding: 0;
  margin: 0;
  line-height: 1;
  color: #fff;
}
#contents{
  max-width: 840px;
  position: relative;
  width: 84%;
  margin: 0 auto;
  padding: 5%;
  background-color: #fff;
}
#contents p{
  padding: 5px 10px;
}
article{
  padding-bottom: 25px;
}
h4{
  padding: 5px 10px;
  margin: 30px 0 10px;
  color: #2a7c66;
  border-top: 2px dotted #2a7c66;
  border-bottom: 2px dotted #2a7c66;
}
.goodsPhoto{
  text-align: center;
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  padding: 15px 0;
}
.goodsPhoto img{
  width: 100%;
  height: auto;
}
.goodsPrice{
  text-align: center;
  font-weight: 600;
  font-size: 120%;
}
.goodsDetail{
  font-size: 90%;
}
/* =============================================== */
/* footer - フッター */
/* ----------------------------------------------- */
footer {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
  background-color: #222;
  color: #aaa;
}
#footer-inner {
  width: 100%;
  margin: 0 auto;
  padding: 25px 0;
  text-align: center;
}
#footer-inner p {
  padding: 10px 0;
  font-size: 90%;
}
.snsBtn {
  padding: 0;
  text-align: center;
}
.snsBtn li {
  font-size: 50px;
  font-weight: 400;
}
.snsBtn a:link {
  text-decoration: none;
  color: #aaa;
  display: inline-block;
}
.snsBtn a:visited {
  text-decoration: none;
  color: #aaa;
}
.snsBtn a:active {
  text-decoration: none;
  color: #aaa;
}
.snsBtn a:hover {
  text-decoration: none;
  color: #fff;
}
.archiveList {
  text-align: center;
  padding: 35px 0;
  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 1.8em;
}
.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: #38d0a7;
}
@media(max-width:600px) {
  .archiveList {
    text-align: left;
  }
  .archiveList li {
    width: 39%;
    padding: 0 2% 0 25px;
    text-align: left;
    font-size: 70%;
  }
}
/* =============================================== */
/* 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: #fff697;
  text-align: center;
  display: block;
  opacity: 1;
  transition: all .3s ease;
  font-size: 42px;
}
@media(max-width:810px) {
  #page-top a {
    font-size: 40px;
  }
}
#page-top a:hover {
  text-decoration: none;
  opacity: .5;
}