@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Belanosima:wght@400;600;700&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: #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 {
  border: none;
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
  background: repeating-linear-gradient(
    -45deg,              /* 右上がり */
    #549338,
    #549338 3px,         /* 元6px → 半分 */
    #f3eee1 3px,
    #f3eee1 6px
  );
}
.stripe {
  height: 8px; /* 高さを2倍程度に */
  background: repeating-linear-gradient(
    -45deg,              /* 右上がり */
    #549338,
    #549338 3px,         /* 元6px → 半分 */
    #f3eee1 3px,
    #f3eee1 6px
  );
}
.solid {
  border-top: 1px #549338 solid;
}
.dotted {
  border-top: 2px #549338 dotted;
}
.dashed {
  border-top: 1px #549338 dashed;
}
.double {
  border-top: 3px #549338 double;
}
/* ページレイアウト */
#wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #f3eee1;
}
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: "Belanosima", sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0 0 12px 3px;
  line-height: 1;
  font-size: 42px;
  letter-spacing: 3px;
}
h2 .titleJ {
  display: block;
  font-weight: 400;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
  text-align: center;
}
@media(max-width:810px) {
  h2 {
    margin: 0 0 20px;
	padding-bottom: 35px;
  }
  h2 .titleE {
    font-size: 30px;
  }
  h2 .titleJ {
    font-size: 16px;
  }
}
h3 {
  text-align: center;
  margin: 40px auto 20px;
  padding: 10px 0;
  color: #417d3a;
  background-color: #f4f8f2;
  border-top: 2px solid #71a25d;
  border-bottom: 2px solid #71a25d;
  width: 100%;
  max-width: 900px;
  font-weight: 600;
  line-height: 1;
}
@media(max-width:810px) {
  h3 {
    font-size: 90%;
  }
}
h4 {
  display: block;
  width: 10em;
  font-size: 85%;
  font-weight: 400;
  text-align: center;
  margin: 30px auto 10px;
  padding: 8px 0 6px;
  line-height: 1;
  background-color: #417d3a;
  color: #f3eee1;
  border-top: 3px double #f3eee1;
  border-bottom: 3px double #f3eee1;
}
/* 下からふわっと */
.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);
}
/* リストタグひとつずつ表示 */
.fade-list li {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-list li.is-show {
  opacity: 1;
  transform: translateY(0);
}
/* =============================================== */
/* 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-family: "Belanosima", sans-serif;
  font-weight: 400;
  font-size: 31px;
}
.menu li.japMenu{
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
}
.menu li a {
  display: block;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.menu li a:hover {
  color: #af7dff;
  -webkit-transition: all .2s;
  transition: all .2s;
}
#container {
  width: 100%;
}
/* =============================================== */
/* main - ビジュアル部分 */
/* ----------------------------------------------- */
#main {
  position: relative;
  width: 100%;
  background-image: url("../img/cloud02.png"), url("../img/bgGreen01.jpg");
  background-repeat: no-repeat, repeat;
  background-position: top center, top center;
  margin: 0;
  padding: 40px 0;
  overflow: hidden;
}
@media(max-width:810px) {
  #main {
    background-size: 150%, 250px;
  }
}
#main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/cloud01.png");
  background-repeat: repeat;
  /* ★重要：タイルサイズを固定 */
  background-size: 400px 400px;
  /* 初期位置 */
  background-position: 0 0;
  animation: cloudFlow 10s linear infinite;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}
#main > * {
  position: relative;
  z-index: 1;
}
/* ★background-positionを動かす */
@keyframes cloudFlow {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 400px -400px;
  }
}
@media(max-width:810px) {
  #main::before {
    background-size: 200px 200px;
  }
}
h1 {
  width: 90%;
  max-width: 800px;
  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: 20px 0 70px;
}
@media(max-width:810px) {
  #feed {
    padding: 50px 0;
  }
}
#titleFeed {
  background-image: url("../img/contentsTitleGreen.png");
  background-position: bottom center;
  background-repeat: no-repeat;
}
@media(max-width:810px) {
  #titleFeed {
    background-size: 60%;
  }
}
#feed .titleE {
  color: #417d3a;
}
#feed .titleJ {
  color: #71a25d;
}
#feed ul {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 3%;
}
#feed ul li {
  font-size: 100%;
  padding: 5px 10px;
  color: #000;
}
#feed ul li span.feedDate {
  display: inline-block;
  color: #8e5edc;
  border-bottom: 2px solid #8e5edc;
  width: 15%;
  text-align: center;
  padding-bottom: 3px;
}
#feed ul li span.feedTxt {
  display: inline-block;
  color: #666666;
  border-bottom: 2px solid #ccc;
  width: 82%;
  padding: 0 1.5% 3px;
}
#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: #8e5edc;
}
@media(max-width:810px) {
  #feed ul li span.feedDate {
    display: block;
    border-bottom: none;
    text-align: left;
    padding: 0;
  }
  #feed ul li span.feedTxt {
    display: block;
    border-bottom: 1px dotted #999;
    text-align: left;
    padding: 0 0 8px;
    width: 100%;
  }
}
/* =============================================== */
/* 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;
}
@media(max-width:810px) {
  #titleInfo {
    background-size: 60%;
  }
}
#info .titleE {
  color: #417d3a;
}
#info .titleJ {
  color: #71a25d;
}
#info article{
  width: 90%;
  margin: 0 auto;
  padding: 5%;
}
.dateVenueTxt {
  font-weight: 400;
  font-size: 120%;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.1em;
  padding: 0 0 20px 0.1em;
}
@media(max-width:600px) {
  .dateVenueTxt {
    font-size: 100%;
  }
}
.access a:link {
  display: inline-block;
  position: relative;
  top: -4px;
  padding: 0.1em 0.5em;
  text-align: center;
  text-decoration: none;
  margin: 0 0 0 10px;
  color: #fff;
  transition: all 0.3s;
  background: #8e5edc;
  font-weight: 400;
  border-radius: 50%;
  font-size: 16px;
  letter-spacing: 0;
}
@media(max-width:600px) {
  .access a:link {
    font-size: 12px;
    top: -3px;
  }
}
.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: 730px;
  margin: 15px auto;
}
.sche img{
  width: 100%;
  height: auto;
}
/* チケット */
.ticketList {
  text-align: center;
  padding: 25px 0;
}
.ticketList li {
  padding-bottom: 10px;
  line-height: 1.4;
}
.ticketList span{
  font-weight: 600;
}
.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 #8e5edc;
  margin: 40px auto;
  padding: 20px 3%;
  width: 90%;
  max-width: 800px;
  background-color: #f6f2f8;
  border-radius: 8px;
}
@media(max-width:999px) {
  .ticketBox {
    width: 92%;
    padding: 0 2% 20px;
    margin: 30px auto 10px;
  }
}
.playguideList {
  list-style: none;
  padding: 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: #8e5edc;
  font-weight: 400;
}
.purchase span {
  display: block;
  font-size: 13px;
  color: #333;
}
@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: 15px auto 5px;
  color: #f6f2f8;
  transition: all 0.3s;
  background: #8e5edc;
  font-weight: 400;
  border-radius: 100px;
  font-size: 13px;
  width: 10em;
}
.purchase a:visited {
  text-decoration: underline;
  color: #f6f2f8;
}
.purchase a:active {
  text-decoration: underline;
  color: #f6f2f8;
}
.purchase a:hover {
  text-decoration: none;
  background: #a276e8;
  color: #fff;
}
/* =============================================== */
/* cast - キャスト */
/* ----------------------------------------------- */
#cast {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  background-color: #75851b;
  background-image: url("../img/bgGreen01.jpg");
}
#titleCast {
  background-image: url("../img/contentsTitleWhite.png");
  background-position: bottom center;
  background-repeat: no-repeat;
}
@media(max-width:810px) {
  #titleCast {
    background-size: 60%;
  }
}
#cast .titleE {
  color: #fff;
}
#cast .titleJ {
  color: #fff;
}
#cast ul {
  text-align: center;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 2%;
}
#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;
  background-color: #417d3a;
  color: #f3eee1;
  padding: 10px 0;
  margin: 0 auto 20px;
  line-height: 1;
  font-size: 94%;
  font-weight: 400;
  text-align: center;
  border-top-right-radius: 10px;
  border-bottom: 6px double #71a25d;
}
.photo{
  width: 100%;
  max-width: 250px;
  margin: 0 auto 15px;
}
.photo img{
  width: 100%;
  height: auto;
}
.role {
  color: #fdff37;
  font-size: 90%;
  font-weight: 400;
}
.actor {
  color: #fff;
  font-size: 120%;
  font-weight: 400;
}
.chara {
  font-size: 80%;
  line-height: 1.4;
  text-align: left;
  padding: 5px 5px 20px;
}
@media(max-width:400px) {
  #cast li {
    width: 80%;
  }
}
/* =============================================== */
/* footer - フッター */
/* ----------------------------------------------- */
footer {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
  background-color: #333;
  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:600px) {
  .archiveList {
    text-align: left;
  }
  .archiveList li {
    width: 42%;
    padding: 0 0 0 6%;
    text-align: left;
    font-size: 75%;
  }
}
/* =============================================== */
/* 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: "Belanosima", sans-serif;
  font-weight: 400;
  font-style: normal;
}