@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Fontdiner+Swanky&family=LINE+Seed+JP:wght@400;700&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: "LINE Seed 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;
}
@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;
}
/* 下からふわっと */
.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);
}
/* ページレイアウト */
#wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #fff;
  background-image: url("../img/bg01.jpg");
}
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 8px;
  text-align: center;
  font-family: "Fontdiner Swanky", serif;
  font-weight: 400;
  font-size: 2em;
  letter-spacing: 0.2em;
  background-color: #283e27;
  color: #c8dbae;
  width: 100%;
  max-width: 1000px;
  line-height: 1;
  border-top: 3px double #c8dbae;
  border-bottom: 3px double #c8dbae;
}
@media(max-width:601px) {
  h2 {
    font-size: 1.6em;
  }
}
h3 {
  text-align: center;
  margin: 30px 0 10px
}
h3 span {
  color: #0f270f;
  font-size: 0.75em;
  font-weight: 700;
  background: repeating-linear-gradient(135deg, #c8dbae, #c8dbae 8px, #e2eac1 8px, #e2eac1 16px);
  padding: 0.5em 1.5em;
}
h4 {
  text-align: center;
  margin: 20px 0;
  background-color: #c8dbae;
  color: #10280f;
  font-weight: 600;
}
.gothic {
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
}
.english {
  font-family: "Fontdiner Swanky", serif;
  font-style: normal;
}
.koumoku{
  color: #000;
  font-weight: 600;
  padding: 0;
  margin: 20px 0 0;
}
.koumoku span{
  border-bottom: 2px solid #000;
}
/* =============================================== */
/* menu - メニュー */
/* ----------------------------------------------- */
/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
  position: fixed;
  top: 5px;
  left: 5px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 101;
  border: solid 2px #c8dbae;
  background-color: #10280f;
  -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 #c8dbae;
  }
}
.menu-btn-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  width: 50%;
  background: #c8dbae;
  -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: #c8dbae;
  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: #c8dbae;
}
.open .menu-btn-line {
  background-color: transparent;
}
.open .menu-btn-line::before, .open .menu-btn-line::after {
  top: 0;
  background: #c8dbae;
}
.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, .9);
  -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-family: "Fontdiner Swanky", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  border-bottom: 1px dotted #588454;
  letter-spacing: 0.1em;
}
.menu li:last-child {
  border-bottom: none;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0;
}
.menu li a {
  display: block;
  color: #c8dbae;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.menu li a:hover {
  color: #fff;
  -webkit-transition: all .2s;
  transition: all .2s;
}
/* =============================================== */
/* main - メイン */
/* ----------------------------------------------- */
#container {
  width: 100%;
  padding-bottom: 40px;
}
#main {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}
@media(max-width:601px) {
  #main {
    padding: 50px 0;
  }
  #main.other {
    padding: 20px 0 0;
  }
}
h1 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
.other h1 {
  width: 80%;
  max-width: 500px;
}
h1 img {
  width: 100%;
  filter: blur(50px);
  animation: blur-anim1 1s linear forwards;
}
@keyframes blur-anim1 {
  100% {
    filter: blur(0);
  }
}
.confetti {
  background-color: #e5c76a;
  height: 20px;
  opacity: .8;
  position: absolute;
  transform-origin: center;
  width: 20px;
  pointer-events: none;
  will-change: transform;
}
/* =============================================== */
/* feed - ニュースフィード */
/* ----------------------------------------------- */
#feed {
  width: 100%;
  margin: 0 auto;
  padding: 60px 0;
  background-color: #10280f;
  background-image: url(../img/shuriken.png);
  background-repeat: repeat;
}
@media(max-width:601px) {
  #feed {
    padding: 30px 0;
    background-size: 35px;
  }
}
#titleFeed {
  margin: 0;
  padding: 0 0 25px 0.2em;
  color: #c8dbae;
  text-align: center;
  font-family: "Fontdiner Swanky", serif;
  font-weight: 400;
  font-size: 2em;
  letter-spacing: 0.2em;
}
@media(max-width:601px) {
  #titleFeed {
    font-size: 1.6em;
    padding: 0 0 10px 0.2em;
  }
}
#feed ul {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 3%;
}
#feed ul li {
  font-size: 90%;
  padding: 6px 10px;
  border-bottom: 1px dotted #588454;
  color: #fff;
}
#feed ul li:first-child {
  border-top: 1px dotted #588454;
}
#feed ul li span {
  display: inline-block;
  padding-right: 10px;
  color: #a9fc69;
}
#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: #a9fc69;
}
@media(max-width:601px) {
  #feed ul li {
    font-size: 85%;
  }
  #feed ul li span {
    display: block;
  }
}
/* =============================================== */
/* lead - リード文 */
/* ----------------------------------------------- */
#lead {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 0;
}
#lead p {
  padding: 10px 3%;
  font-size: 108%;
}
#lead p span {
  font-weight: 700;
  border-bottom: 1px solid #000;
}
#lead p.small {
  font-size: 90%;
}
/* =============================================== */
/* cast - キャスト */
/* ----------------------------------------------- */
#cast {
  width: 100%;
  margin: 0 auto;
  padding: 30px 0;
}
.castList {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 25px 0;
  text-align: center;
}
.castList li {
  display: inline-block;
  width: 30%;
  padding-bottom: 30px;
}
@media(max-width:601px) {
  .castList li {
    display: block;
    width: 100%;
  }
}
.castList li img {
  width: 100%;
  max-width: 250px;
  height: auto;
}
.role {
  color: #497146;
  padding: 10px 0 0;
  line-height: 1;
}
@media(max-width:601px) {
  .role {
    padding: 15px 0 0;
  }
}
.actor {
  font-weight: 700;
  font-size: 1.3em;
  padding: 0;
}
.exCast {
  text-align: center;
  line-height: 1.5;
  padding: 30px 0;
}
@media(max-width:601px) {
  .exCast {
    font-size: 0.9em;
  }
}
.exCast span {
  font-weight: 700;
}
.stripe {
  height: 12px;
  width: 96%;
  max-width: 1000px;
  background: linear-gradient(-70deg, transparent 35%, #c8dbae 45%, #c8dbae 55%, transparent 65%);
  background-size: 8px 12px;
  border: none;
  margin: 20px auto;
}
.staffList {
  text-align: center;
  padding: 30px 0;
}
.staffList li {
  padding: 5px;
  font-weight: 400;
  font-size: 1em;
}
.staffList li span {
  font-weight: 700;
}
@media(max-width:601px) {
  .staffList li {
    font-size: 0.9em;
  }
}
/* =============================================== */
/* info - 公演概要 */
/* ----------------------------------------------- */
#info {
  width: 100%;
  margin: 0 auto;
  padding: 30px 0;
}
.dateVenueTxt {
  font-weight: 700;
  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;
}
@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: 480px;
  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;
}
/* =============================================== */
/* goods - グッズ */
/* ----------------------------------------------- */
#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%;
  }
}
#goods p {
  padding: 7px 0;
}
.goodsCautionList01 {
  list-style: disc;
  font-size: 90%;
  text-align: left;
  width: 96%;
  padding: 10px 2%;
  margin: 0 auto;
}
.goodsCautionList01 li {
}
.goodsBox {
  padding: 0 0 60px;
}
.goodsPhoto {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  padding: 50px 0 0;
}
.goodsPhoto img {
  width: 100%;
  hright: auto;
}
#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;
}
/* =============================================== */
/* news - ニュース */
/* ----------------------------------------------- */
#news {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
#news article {
  width: 90%;
  max-width: 900px;
  padding: 2% 5% 10%;
  margin: 0 auto;
}
@media(max-width:400px) {
  #news article {
    font-size: 90%;
  }
}
.newsTitle {
  width: 96%;
  padding: 0 2% 10px;
  text-align: left;
  display: block;
  margin: 0 0 5px;
  font-weight: 600;
  font-size: 20px;
  border-bottom: 3px solid #000;
}
.newsDate {
  font-family: "Fontdiner Swanky", serif;
  font-weight: 400;
  font-size: 18px;
  color: #3d69c5;
  display: block;
  text-align: right;
  margin: 0 0 25px;
}
#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;
}
/* =============================================== */
/* 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;
}
.snsBtn {
  padding: 15px 0;
  text-align: center;
}
.snsBtn li {
  font-size: 42px;
  font-weight: 400;
  padding: 0 10px;
  display: inline-block;
}
.snsBtn a:link {
  text-decoration: none;
  display: block;
  color: #bbb;
}
.snsBtn a:visited {
  text-decoration: none;
  color: #bbb;
}
.snsBtn a:active {
  text-decoration: none;
  color: #bbb;
}
.snsBtn a:hover {
  text-decoration: none;
  color: #fff;
}
#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;
  background-size: 15px;
  font-size: 72%;
  padding: 0 2em;
}
.archiveList li a:link {
  text-decoration: none;
  color: #bbb;
}
.archiveList li a:visited {
  text-decoration: none;
  color: #bbb;
}
.archiveList li a:active {
  text-decoration: none;
  color: #bbb;
}
.archiveList li a:hover {
  text-decoration: none;
  color: #fff;
}
@media(max-width:400px) {
  .archiveList {
    text-align: left;
    margin: 0 20px;
  }
  .archiveList li {
    width: 42%;
    padding: 0 0 0 20px;
    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: #c8dbae;
  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: 2em;
}
@media(max-width:810px) {
  .ex-large {
    font-size: 1.5em;
  }
}
.large {
  font-size: 1.5em;
}
@media(max-width:810px) {
  .large {
    font-size: 1.2em;
  }
}
.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;
}