@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;600&family=Pridi:wght@400;600&display=swap');
/* =============================================== */
/* basic - 共通基本設定 */
/* ----------------------------------------------- */
@media(max-width:600px) {
  .pc {
    display: none;
  }
}
@media(min-width:601px) {
  .sp {
    display: none;
  }
}
img {
  pointer-events: none;
}
/* 画像のプリント禁止 
@media print {
  img {
    display: none !important;
  }
}*/
/* リセット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;
  color: #fff;
  -webkit-text-size-adjust: 100%;
  background-color: #000;
}
a:link {
  text-decoration: underline;
  color: #92ce4e;
}
a:visited {
  text-decoration: underline;
  color: #92ce4e;
}
a:active {
  text-decoration: underline;
  color: #92ce4e;
}
a:hover {
  text-decoration: none;
  color: #92ce4e;
}
/* 画像関連 */
img {
  border: none;
  vertical-align: bottom;
}
/* 罫線 */
hr {
  height: 0;
  margin: 0 auto;
  padding: 0;
  border: 0;
  width: 100%;
  border-bottom: 2px dotted #715b4a;
}
.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);
}
/* リストタグひとつずつ表示 */
.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);
}
/* 画像のマスクアニメ */
.reveal {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.reveal img {
  display: block;
  width: 100%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.15s ease 0.5s, transform 0.5s ease 0.5s;
}
/* マスク */
.reveal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #92ce4e;
  transform: translateX(-100%);
  z-index: 2;
}
/* 発火 */
.reveal.is-show::before {
  animation: wipe 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
/* 表示時 */
.reveal.is-show img {
  opacity: 1;
  transform: scale(1);
}
/* 2段階ワイプ */
@keyframes wipe {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%); /* ここで全面を覆う */
  }
  100% {
    transform: translateX(100%); /* 右に抜ける */
  }
}
/* ページレイアウト */
#wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-image: url("../img/bg00.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  scroll-behavior: smooth;
}
@media(min-width:1920px) {
  #wrapper {
    background-size: contain;
  }
}
@media(max-width:810px) {
  #wrapper {
    background-size: 180%;
  }
}
section {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
}
article {
  width: 96%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 25px 2%;
  clear: both;
}
/* 見出し */
h2 {
  font-family: "Pridi", serif;
  font-weight: 600;
  font-style: italic;
  text-align: center;
  padding: 0 0 20px 7px;
  margin-bottom: 20px;
  letter-spacing: 7px;
  font-size: 42px;
  color: #fff;
}
@media(max-width:600px) {
  h2 {
    font-size: 31px;
    letter-spacing: 4px;
  }
}
h2 span {
  padding: 0 10px 10px;
  background: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' width='20' height='10' viewBox='0 0 20 10'>\<polyline points='0,10 10,0 20,10' fill='none' stroke='yellowgreen' stroke-width='1'/>\</svg>") repeat-x bottom;
}
/* =============================================== */
/* menu - メニュー */
/* ----------------------------------------------- */
/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 101;
  background-color: #92ce4e;
  -webkit-transition: all 3s ease-in-out;
  transition: all .3s ease-in-out;
}
@media(max-width:810px) {
  .menu-btn {
    width: 50px;
    height: 50px;
  }
}
@media(max-width:600px) {
  .menu-btn {
    width: 40px;
    height: 40px;
  }
}
.menu-btn-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  width: 50%;
  background: #000;
  -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: #000;
  position: absolute;
  left: 0;
  -webkit-transition: inherit;
  transition: inherit;
}
.menu-btn-line::before {
  top: -5px;
}
.menu-btn-line::after {
  top: 5px;
}
/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu {
  -webkit-transition: all .5s;
  transition: all .5s;
  visibility: visible;
  opacity: 1;
}
.open .menu-btn {
  border-color: #000;
}
.open .menu-btn-line {
  background-color: transparent;
}
.open .menu-btn-line::before, .open .menu-btn-line::after {
  top: 0;
  background: #000;
}
.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(20%);
  padding: 0;
  list-style-type: none
}
.menu li {
  width: 100%;
  height: 65px;
  line-height: 65px;
  text-align: center;
  font-family: "Pridi", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
@media(max-width:400px) {
  .menu li {
    height: 50px;
    line-height: 50px;
    font-size: 1.6rem;
  }
}
.menu li a {
  display: block;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.menu li a:hover {
  color: #92ce4e;
  -webkit-transition: all .2s;
  transition: all .2s;
}
/* =============================================== */
/* main - メイン */
/* ----------------------------------------------- */
#container {
  width: 100%;
}
#main {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
/* ロゴ */
h1 {
  width: 100%;
  max-width: 740px;
  height: auto;
  margin: 0 auto;
  padding: 0;
}
h1 img {
  width: 100%;
  height: auto;
  filter: blur(50px);
  animation: blur-anim1 1s linear forwards;
}
@keyframes blur-anim1 {
  100% {
    filter: blur(0);
  }
}
/* =============================================== */
/* intro - イントロ */
/* ----------------------------------------------- */
#intro {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5% 5% 10%;
}
#intro h3 {
  font-size: 150%;
  padding: 20px 0;
  line-height: 1.7;
  border-top: 1px solid #92ce4e;
  margin: 30px 0 10px;
  font-weight: 600;
  font-style: italic;
  color: #fff;
}
@media(max-width:600px) {
  #intro h3 {
    font-size: 115%;
  }
}
.nowrap {
  white-space: nowrap;
  font-weight: 600;
}
/* =============================================== */
/* story - ストーリー */
/* ----------------------------------------------- */
#story {
  width: 90%;
  margin: 0 auto;
  padding: 10% 5%;
  background-image: url("../img/bgStory00.jpg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media(max-width:810px) {
  #story {
    padding: 15% 5%;
  }
}
@media(max-width:600px) {
  #story {
    padding: 20% 5%;
  }
}
#story article {
  /*background-color: rgba(145,131,114,0.4);*/
  background-color: rgba(255, 255, 255, 0.2);
  width: 90%;
  padding: 5%;
  margin: 25px auto;
}
@media(max-width:600px) {
  #intro h3 {
    font-size: 115%;
  }
}
#story p {
  padding: 10px 0;
}
/* =============================================== */
/* cast&staff - キャストスタッフ */
/* ----------------------------------------------- */
#cast {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5% 5% 0;
}
@media(max-width:810px) {
  #cast {
    padding: 10% 5% 0;
  }
}
@media(max-width:600px) {
  #cast {
    padding: 20% 5% 0;
  }
}
.castList1 {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  padding: 0 0 30px;
  margin: 0 auto;
}
.castList1 li {
  display: inline-block;
  text-align: center;
  width: 100%;
  line-height: 1.5;
  font-weight: 600;
  font-size: 24px;
  padding: 0 0 30px;
}
.castList1 img {
  width: 100%;
  max-width: 260px;
  margin-bottom: 0;
}
.role {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  padding-bottom: 8px;
  color: #c9c2ba;
}
@media(max-width:810px) {
  .role {
    font-size: 13px;
  }
}
.actor {
  line-height: 1;
}
/* =============================================== */
/* creative - スタッフ */
/* ----------------------------------------------- */
#creative {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5%;
}
@media(max-width:810px) {
  #creative {
    padding: 10% 5%;
  }
}
@media(max-width:600px) {
  #creative {
    padding: 20% 5%;
  }
}
.staffList1 {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  padding: 0 0 50px;
  margin: 0 auto;
}
.staffList1 li {
  display: inline-block;
  text-align: center;
  width: 100%;
  line-height: 1.5;
  font-weight: 400;
  font-size: 20px;
  padding: 0 0 25px;
}
.staffList1 img {
  width: 100%;
  max-width: 260px;
  margin-bottom: 15px;
}
.job {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  padding-bottom: 8px;
  color: #c9c2ba;
}
.staff {
  line-height: 1;
}
/* =============================================== */
/* info - 公演概要 */
/* ----------------------------------------------- */
#info {
  width: 100%;
  margin: 0;
  padding: 5% 0;
  background-color: #c9c2ba;
  background-color: #e9e3dc;
  color: #333;
}
@media(max-width:810px) {
  #info {
    padding: 10% 0;
  }
}
@media(max-width:600px) {
  #info {
    padding: 20% 0;
  }
}
#info h2 {
  color: #000;
}
#info h2 span {
  padding: 0 10px 10px;
  background: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' width='20' height='10' viewBox='0 0 20 10'>\<polyline points='0,10 10,0 20,10' fill='none' stroke='black' stroke-width='1'/>\</svg>") repeat-x bottom;
}
#info article {
  width: 90%;
  max-width: 1000px;
  padding: 0 5%;
  margin: 50px auto;
}
h4 {
  color: #fff;
  background-color: #000;
  text-align: center;
  font-weight: 400;
  margin: 0 0 20px;
  padding: 5px 0;
  border-top: 3px double #c9c2ba;
  border-bottom: 3px double #c9c2ba;
}
.dateTxt {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  padding: 15px 0 5px;
  letter-spacing: 2px;
  line-height: 1.4;
}
.dateTxt .large {
  font-size: 30px;
  font-weight: 600;
}
.venueTxt {
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  padding: 0;
  letter-spacing: 2px;
  line-height: 1.4;
}
h5 {
  font-size: 14px;
  font-weight: 600;
  padding: 30px 0 0;
  margin: 5px 0;
  color: #000;
  text-align: center;
}
h5 span {
  border-bottom: 2px solid #000;
  padding: 0 5px;
}
#info p {
  text-align: center;
  padding: 5px 0;
}
.sche {
  margin: 20px auto;
  width: 100%;
  max-width: 655px;
}
.sche img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
/* チケット */
.ticketBox {
  border: 1px solid #666;
  margin: 80px auto 20px;
  padding: 0 3% 20px;
  width: 90%;
  max-width: 800px;
  background-color: #333;
  color: #fff;
}
@media(max-width:999px) {
  .ticketBox {
    width: 92%;
    padding: 0 2% 20px;
    margin: 30px auto 10px;
  }
}
.playguideList {
  list-style: none;
  padding: 40px 0;
  font-size: 90%;
}
@media(max-width:600px) {
  .playguideList {
    font-size: 85%;
  }
}
.playguideList li {
  border-top: 1px dotted #999;
  display: block;
  margin: 0 auto;
  padding: 25px 0;
  text-align: center;
}
.playguideList li span {
  font-weight: 600;
  font-size: 110%;
  border-bottom: 2px solid #92ce4e;
  display: inline-block;
  margin-bottom: 10px;
}
.playguideList li a:link {
  display: block;
  position: relative;
  padding: 0.5em 1em 0.4em;
  text-align: center;
  text-decoration: none;
  margin: 10px auto 0;
  background: #000;
  color: #e11010;
  border: 1px solid #e11010;
  transition: all 0.3s;
  font-weight: 400;
  border-radius: 100px;
  font-size: 90%;
  width: 10em;
}
.playguideList li a:visited {
  text-decoration: underline;
  background: #000;
  color: #e11010;
  border: 1px solid #e11010;
}
.playguideList li a:active {
  text-decoration: underline;
  background: #000;
  color: #e11010;
  border: 1px solid #e11010;
}
.playguideList li a:hover {
  text-decoration: none;
  background: #92ce4e;
  color: #fff;
  border: 1px solid #e11010;
}
/* =============================================== */
/* footer - フッター */
/* ----------------------------------------------- */
footer {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
  background-color: #000;
  color: #aaa;
  text-align: center;
  border-top: 1px solid #333;
}
#footer-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
  text-align: center;
}
#footer-inner P {
  padding: 0 0 15px;
  font-size: 80%;
}
@media(max-width:600px) {
  #footer-inner P {
    font-size: 64%;
  }
}
/* =============================================== */
/* 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:600px) {
  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:600px) {
  #page-top {
    bottom: 5px;
    right: 5px;
  }
}
#page-top a {
  text-decoration: none;
  color: #92ce4e;
  text-align: center;
  display: block;
  opacity: 1;
  transition: all .3s ease;
  font-size: 56px;
}
@media(max-width:600px) {
  #page-top a {
    font-size: 40px;
  }
}
#page-top a:hover {
  text-decoration: none;
  opacity: .5;
}
/* =============================================== */
/* linkBtn - ボタン */
/* ----------------------------------------------- */
.linkBtn {
  text-align: center;
  padding: 10px 0;
}
.linkBtn a:link {
  text-decoration: none;
  color: #92ce4e;
  padding: 3px 0.75em;
  margin: 0 auto;
  line-height: 1;
  font-size: 11px;
  position: relative;
  top: -3px;
  background-color: #000;
  border: 1px solid #92ce4e;
}
.linkBtn a:visited {
  text-decoration: none;
  color: #92ce4e;
  background-color: #000;
  border: 1px solid #92ce4e;
}
.linkBtn a:active {
  text-decoration: none;
  color: #92ce4e;
  background-color: #000;
  border: 1px solid #92ce4e;
}
.linkBtn a:hover {
  text-decoration: none;
  background-color: #92ce4e;
  color: #000;
  border: 1px solid #000;
  transition: all .3s ease;
}
/* =============================================== */
/* modal - モーダルウィンドウ */
/* ----------------------------------------------- */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.6rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  color: #fff;
}
/* モーダル背景 */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
/* モーダル表示状態 */
.modal.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
/* モーダルの中身*/
.modal-content {
  background: #000;
  padding: 1rem;
  width: 80vw;
  max-width: 720px;
  max-height: 60vh;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  overflow: auto;
}
.modal-content h3 {
  font-size: 150%;
  padding: 10px 0;
  margin: 10px 40px 10px 15px;
  border-top: 1px solid #92ce4e;
  font-weight: 600;
  color: #fff;
  text-align: left;
}
.message {
  font-size: 94%;
  padding: 10px 15px;
}
.message p {
  padding: 0 0 15px;
  text-align: left;
}
.profile {
  clear: both;
  font-size: 80%;
  padding: 15px;
  line-height: 1.5;
  color: #ccc;
  border-top: 1px dotted #aaa;
  border-bottom: 1px dotted #aaa;
  text-align: left;
}
/* アニメーション*/
.modal.active .modal-content {
  animation: fadeInScale 0.4s ease forwards;
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* modalのボタン01 */
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
.button01 {
  border: 1px solid #92ce4e;
  text-align: center;
  font-family: "Pridi", serif;
  font-weight: 400;
  font-size: 14px;
  padding: 7px 2em 7px;
  margin: 10px 15px;
  background-color: none;
  color: #92ce4e;
  border-radius: 50px;
}
.button01:hover {
  background-color: #92ce4e;
  color: #000;
  transition: all .3s ease;
}
/* =============================================== */
/*  固定SNS（右下） 
/* ----------------------------------------------- */
.social-float {
  position: fixed;
  right: 8px;
  bottom: 16px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.sns-label {
  font-family: var(--font-sans);
  font-size: 0.45rem;
  letter-spacing: 0;
  color: var(--sub);
  opacity: .85;
  writing-mode: vertical-rl;
  text-orientation: upright; /* ← mixed から変更 */
  display: inline-block; /* ← 重要 */
  text-align: center;
}
.sns-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.sns-ico {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  backdrop-filter: saturate(160%) blur(8px);
  transition: transform .2s cubic-bezier(.22, .61, .36, 1), opacity .2s;
}
.sns-ico:hover {
  transform: translateY(-1px);
  opacity: 0.82;
}
.sns-ico img {
  width: 20px;
  height: 20px;
  display: block;
}
@media(max-width:768px) {
  .social-float {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }
  .sns-ico {
    width: 20px;
    height: 30px;
  }
  .sns-ico img {
    width: 20px;
    height: 20px;
  }
}