@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Sans+JP:wght@400;500;600;700&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: #333;
  color: #333;
  -webkit-text-size-adjust: 100%;
}
a:link {
  text-decoration: underline;
  color: #cf2935;
}
a:visited {
  text-decoration: underline;
  color: #cf2935;
}
a:active {
  text-decoration: underline;
  color: #cf2935;
}
a:hover {
  text-decoration: none;
  color: #cf2935;
}
/* 画像関連 */
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;
  background-image: url("../img/bgPaper.jpg");
  background-size: 250px;
}
section {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
}
article {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  clear: both;
}
/* 見出し */
h2 {
  margin: 50px 0;
  text-align: center;
  padding-bottom: 50px;
}
h2 .titleE {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0 0 8px 3px;
  line-height: 1;
  font-size: 48px;
  letter-spacing: 3px;
}
h2 .titleJ {
  display: block;
  font-weight: 600;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 15px;
  text-align: center;
}
@media(max-width:810px) {
  h2 {
    margin: 0 0 30px;
  }
  h2 .titleE {
    font-size: 38px;
  }
  h2 .titleJ {
    font-size: 16px;
  }
}
h3 {
  text-align: center;
  margin: 40px auto 20px;
  padding: 10px 0 8px;
  color: #75851b;
  border-top: 1px solid #91a424;
  border-bottom: 1px solid #91a424;
  width: 94%;
  max-width: 900px;
  font-size: 94%;
  font-weight: 500;
  line-height: 1;
}
h4 {
  display: block;
  width: 10em;
  font-size: 85%;
  font-weight: 400;
  text-align: center;
  margin: 20px auto 10px;
  padding: 10px 0 8px;
  line-height: 1;
  background-color: #f4f0e5;
  color: #bf9e69;
  border-top: 1px solid #bf9e69;
  border-bottom: 1px solid #bf9e69;
}
/* =============================================== */
/* menu - メニュー */
/* ----------------------------------------------- */
header {
  width: 100%;
  height: 0;
}
/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
  position: fixed;
  top: 15px;
  left: 15px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 101;
  border: solid 2px #fff;
  background-color: #8e5edc;
  -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 #fff;
  }
}
.menu-btn-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  width: 50%;
  background: #fff;
  -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: #fff;
  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: #fff;
}
.open .menu-btn-line {
  background-color: transparent;
}
.open .menu-btn-line::before, .open .menu-btn-line::after {
  top: 0;
  background: #fff;
}
.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, .80);
  -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
}
@media(max-width:600px) {
  .menu ul {
    transform: translateY(20%);
  }
}
.menu li {
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-weight: 700;
}
.menu li a {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.menu li a:hover {
  color: #fdff37;
  -webkit-transition: all .2s;
  transition: all .2s;
}
#container {
  width: 100%;
}
/* =============================================== */
/* main - ビジュアル部分 */
/* ----------------------------------------------- */
#main {
  width: 100%;
  background-image: url("../img/bgCloud.png");
  background-position: top center;
  background-repeat: no-repeat;
  margin: 0;
  padding: 40px 0;
}
@media(max-width:810px) {
  #main {
    background-size: 180%;
    padding: 30px 0;
  }
}
@media(max-width:410px) {
  #main {
    padding: 20px 0;
  }
}
h1 {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  border: 1px solid #fdf797;
}
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 70px;
  background-color: #91a424;
  background-image: url("../img/bgMoyo01.png");
  background-size: 81px;
}
@media(max-width:810px) {
  #feed {
    padding: 50px 0;
  }
}
@media(max-width:410px) {
  #feed {
    background-size: 40px;
  }
}
#titleFeed{
  padding-bottom: 0;
}
#feed .titleE {
  color: #fff;
}
#feed .titleJ {
  color: #fff;
}
#feed ul {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 3%;
}
#feed ul li {
  font-size: 100%;
  padding: 12px;
  border-bottom: 2px dotted #fdff37;
  color: #fff;
}
#feed ul li:first-child {
  border-top: 2px dotted #fdff37;
}
#feed ul li span {
  display: inline-block;
  padding-right: 10px;
  color: #fdff37;
}
#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: underline;
  color: #fdff37;
}
@media(max-width:410px) {
  #feed ul li span {
    display: block;
  }
}
/* =============================================== */
/* intro - はじめに */
/* ----------------------------------------------- */
#intro {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
}
#titleIntro{
  background-image: url("../img/contentsTitleGreen.png");
  background-position: bottom center;
  background-repeat: no-repeat;
}
#intro .titleE {
  color: #75851b;
}
#intro .titleJ {
  color: #91a424;
}
#intro p{
  width: 94%;
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 0;
  font-weight: 500;
  text-align: center;
}
/* =============================================== */
/* info - 公演概要 */
/* ----------------------------------------------- */
#info {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
}
#titleInfo{
  background-image: url("../img/contentsTitleGreen.png");
  background-position: bottom center;
  background-repeat: no-repeat;
}
#info .titleE {
  color: #75851b;
}
#info .titleJ {
  color: #91a424;
}
.dateVenueTxt {
  font-weight: 600;
  font-size: 130%;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.1em;
  padding: 0 0 20px 0.1em;
}
@media(max-width:410px) {
  .dateVenueTxt {
    font-size: 125%;
	letter-spacing: 0;
  }
}
.access a:link {
  display: inline-block;
  position: relative;
  top:-4px;
  padding: 0.3em;
  text-align: center;
  text-decoration: none;
  margin: 0 0 0 10px;
  color: #fff;
  transition: all 0.3s;
  background: #8e5edc;
  font-weight: 400;
  border-radius: 100px;
  font-size: 12px;
  width: 7em;
  letter-spacing: 0;
}
.access a:visited {
  text-decoration: none;
  background: #8e5edc;
  color: #fff;
}
.access a:active {
  text-decoration: none;
  background: #8e5edc;
  color: #fff;
}
.access a:hover {
  text-decoration: none;
  background: #a97ef0;
  color: #fff;
}
.sche {
  width: 90%;
  max-width: 600px;
  margin: 15px auto 0;
  padding-bottom: 15px;
}
@media(max-width:810px) {
  .sche {
    max-width: 460px;
  }
}
.sche img {
  width: 100%;
  height: auto;
}
.sche p {
  font-size: 85%;
  height: auto;
  padding: 8px 0;
  font-weight: 500;
}
.tokutenBox{
  padding: 15px 0;
}
.tokutenBox img{
  width: 100%;
  height: auto;
  max-width: 470px;
  padding: 5px 0;
}
.purple {
  color: #8e5edc;
  font-size: 110%;
  font-weight: 700;
}
@media(max-width:810px) {
  #info {
    background-size: 100px;
  }
  .dateVenueTxt {
    font-size: 110%;
  }
}
/* チケット */
.ticketList {
  text-align: center;
  padding: 10px 0 20px;
  font-size: 115%;
  font-weight: 500;
}
.ticketList li {}

.ticketCautionList {
  list-style: disc;
  font-size: 85%;
  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;
}

.ticketBox {
  border: 1px solid #91a424;
  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 1em 3px;
  margin: 0;
  position: relative;
  top: -2.5em;
  height: 0;
  font-size: 1em;
  background-color: #91a424;
  font-weight: 400;
}
.playguideList {
  list-style: none;
  padding: 0 0 15px 0;
  font-size: 90%;
}
.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:999px) {
  .purchase {
    width: 96%;
    padding: 0 2%;
    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: #8e5edc;
  font-weight: 400;
  border-radius: 100px;
  font-size: 85%;
  width: 8em;
}
.purchase a:visited {
  text-decoration: none;
  background: #8e5edc;
  color: #fff;
}
.purchase a:active {
  text-decoration: none;
  background: #8e5edc;
  color: #fff;
}
.purchase a:hover {
  text-decoration: none;
  background: #a97ef0;
  color: #fff;
}
/* =============================================== */
/* cast - キャスト */
/* ----------------------------------------------- */
#cast {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  background-color: #75851b;
}#titleCast{
  background-image: url("../img/contentsTitleWhite.png");
  background-position: bottom center;
  background-repeat: no-repeat;
}
#cast .titleE {
  color: #fff;
}
#cast .titleJ {
  color: #fff;
}

#cast ul {
  text-align: center;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2% 40px;
}
#cast li {
  display: inline-block;
  width: 31.5%;
  padding: 0 0.5% 20px;
  vertical-align: top;
}
#cast li.belong {
  display: block;
  width: 100%;
  max-width: 900px;
  color: #fff;
  padding: 9px 0 7px;
  margin: 0 auto 20px;
  line-height: 1;
  font-size: 90%;
  font-weight: 400;
  text-align: center;
  border-top: 2px dotted #fff;
  border-bottom: 2px dotted #fff;
}
.photo {
  width: 100%;
  max-width: 300px;
  text-align: center;
  margin: 0 auto 5px;
}
.photo img {
  width: 100%;
  height: auto;
}
.role {
  color: #fdff37;
  font-size: 90%;
  font-weight: 400;
}
.actor {
  color: #fff;
  font-size: 120%;
  font-weight: 600;
}
.chara {
  font-size: 80%;
  line-height: 1.4;
  text-align: left;
  padding: 5px 5px 20px;
}
@media(max-width:400px) {
  #cast li {
    width: 80%;
  }
}
/* スタッフ */
#staff {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  background-color: #fefce7;
}
#staff .titleE {
  color: #65926a;
}
#staff .titleJ {
  color: #7b9e47;
}
#staff ul {
  text-align: center;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2% 40px;
}
#staff li {
  padding: 0 15px 25px;
  line-height: 1.4;
  vertical-align: top;
}
#staff li span {
  display: block;
  color: #65926a;
  font-size: 85%;
  font-weight: 500;
  padding: 0 0 5px;
}
@media(max-width:810px) {
  #staff li span {
    font-size: 80%;
  }
}
/* =============================================== */
/* news - お知らせ */
/* ----------------------------------------------- */
#news {
  width: 100%;
  margin: 0 auto;
  padding: 25px 0 50px;
}
#titleNews{
  background-image: url("../img/contentsTitleGreen.png");
  background-position: bottom center;
  background-repeat: no-repeat;
}
#news .titleE {
  color: #75851b;
}
#news .titleJ {
  color: #91a424;
}
#news article{
  padding: 0 0 80px;
}
#news h3.subhead{
  width: 96%;
  max-width: 960px;
  color: #fff;
  text-align: left;
  padding: 10px 2%;
  font-size: 105%;
  background-color: #91a424;
  background-image: url("../img/bgMoyo01.png");
  margin-top: 0;
}
#news p{
  width: 96%;
  max-width: 960px;
  padding: 1% 2%;
}
#news p.newsDate{
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  padding: 0 2%;
  margin: 0;
  font-size: 2em;
  color: #91a424;
}
.newsList{
  list-style: disc;
  margin: 0;
  width: 94%;
  max-width: 940px;
  padding: 0 2% 1% 4%;
}
.newsList li {
  padding: 0 0 6px;
  line-height: 1.5;
}
@media(max-width:410px) {
  .newsList {
    width: 90%;
    padding: 0 2% 1% 8%;
  }
  .newsList li {
  }
}
/* =============================================== */
/* goods - グッズ */
/* ----------------------------------------------- */
#goods {
  width: 100%;
  margin: 0 auto;
  padding: 25px 0 50px;
}
#goods .titleE {
  color: #75851b;
}
#goods .titleJ {
  color: #91a424;
}
#goods article{
  padding: 0 0 80px;
}
.goodsList01{
  padding: 0.5em 0.5em 0.5em 2em;
  list-style: circle;
}
.goodsList01 li{
  font-size: 90%;
  padding: 5px 0;
}
.items{
  text-align: center;
}
.goodsChart{
  width: 96%; max-width: 750px;
  margin: 2%;
  text-align: left;
}
.goodsChart img{
  width: 100%;
  height: auto;
}
.goodsPhoto{
  margin: 0 auto 10px;
}
.goodsPhoto img{
  width: 100%;
  height: auto;
}
.goodsPhoto01{width: 60%; max-width: 470px;}
.goodsPhoto02{width: 90%; max-width: 900px;}
/* =============================================== */
/* footer - フッター */
/* ----------------------------------------------- */
footer {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
  background-color: #444;
  color: #fff;
  position: relative;
  top: -1px;
}
#footer-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 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: #fff;
}
.snsBtn a:visited {
  text-decoration: none;
  color: #fff;
}
.snsBtn a:active {
  text-decoration: none;
  color: #fff;
}
.snsBtn a:hover {
  text-decoration: none;
  color: #fdff37;
}
#footer-inner p {
  padding: 10px 0;
  font-size: 90%;
}
.archiveList {
  text-align: center;
  padding: 30px 0 30px;
  margin: 0 10px;
  border-top: #aaa dotted 1px;
}
.archiveList li {
  display: inline-block;
  background-image: url("../img/iconShuriken02.png");
  background-position: left;
  background-repeat: no-repeat;
  font-size: 80%;
  padding: 8px 1.8em;
}
.archiveList li a:link {
  text-decoration: none;
  color: #aaa;
}
.archiveList li a:visited {
  text-decoration: none;
  color: #aaa;
}
.archiveList li a:active {
  text-decoration: none;
  color: #aaa;
}
.archiveList li a:hover {
  text-decoration: none;
  color: #fff;
}
@media(max-width:410px) {
  .archiveList {
    text-align: left;
  }
  .archiveList li {
    width: 42%;
    padding: 0 0 0 6%;
    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: #8e5edc;
  text-align: center;
  display: block;
  opacity: 1;
  transition: all .3s ease;
  font-size: 56px;
  margin: 0;
  padding: 0;
}
@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;
}
.english {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}