@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DotGothic16&family=IBM+Plex+Sans+JP:wght@100;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: #333;
  -webkit-text-size-adjust: 100%;
  background-color: #000;
}
a:link {
  text-decoration: underline;
  color: #ff682d;
}
a:visited {
  text-decoration: underline;
  color: #ff682d;
}
a:active {
  text-decoration: underline;
  color: #ff682d;
}
a:hover {
  text-decoration: none;
  color: #ff682d;
}
.dotTxt {
  font-family: "DotGothic16", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.nowrap {
  white-space: nowrap;
  font-weight: 400;
  color: #ff682d;
}
/* 画像関連 */
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: #000;
  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-color: #efedeb;
  scroll-behavior: smooth;
}
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: "Bebas Neue", sans-serif;
  font-weight: 400;
  padding: 20px;
  font-size: 45px;
  color: #000;
  position: relative;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  letter-spacing: 3px;
}
/* カッコの基本状態（非表示） */
h2::before, h2::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.1);
  opacity: 0;
  font-size: 1.5em;
  transition: all 1s ease;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 100;
}
/* 左カッコ */
h2::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 75%;
  width: 30px;
  height: 30px;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
}
/* 右カッコ */
h2::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 25%;
  width: 30px;
  height: 30px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}
/* 発動 */
h2.active::before, h2.active::after {
  opacity: 1;
  transform: translateY(-50%) rotate(180deg) scale(1);
}
@media(max-width:600px) {
  h2 {
    font-size: 35px;
    letter-spacing: 1px;
    padding: 20px 10px;
  }
  /* 左カッコ */
  h2::before {
    left: -20px;
    width: 20px;
    height: 20px;
  }
  h2::after {
    right: -20px;
    width: 20px;
    height: 20px;
  }
}
h3{
  text-align: center;
}
h3 span{
  border-bottom: 2px solid #000;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 130%;
}
/* =============================================== */
/* menu - メニュー */
/* ----------------------------------------------- */
/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 101;
  background-color: #ff682d;
  -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: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  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: #ff682d;
  -webkit-transition: all .2s;
  transition: all .2s;
}
/* =============================================== */
/* main - メイン */
/* ----------------------------------------------- */
#container {
  width: 100%;
}
#main {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.main-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  padding: 0;
  margin: auto;
}
.main-visual img{
  width: 100%;
  height: auto;
  display:block;

  opacity:0;
  transform:scale(1.05);
  filter:blur(6px);
  clip-path: inset(50% 0 50% 0);

  animation: revealCenter 1.2s ease-out forwards;
  animation-delay: .5s;
}

@keyframes revealCenter{
  to{
    opacity:1;
    transform:scale(1);
    filter:blur(0);
    clip-path: inset(0 0 0 0);
  }
}
/* 背景 */
.glitch-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* 共通 */
.glitch-layer {
  position: absolute;
  inset: -30px;
  background-image: url("../img/bgMain02.jpg");
  background-size: cover;
  background-position: center;
  will-change: transform, filter;
}

/* ベース（静止） */
.glitch-layer:nth-child(1) {
  filter: blur(0px);
}

/* 横方向に細かく震える */
.glitch-layer:nth-child(2) {
  opacity: 0.35;
  mix-blend-mode: lighten;
  filter: blur(1.5px);
  animation: shakeX 0.35s steps(6) infinite;
}

/* 縦方向＋スケールで震える */
.glitch-layer:nth-child(3) {
  opacity: 0.25;
  mix-blend-mode: overlay;
  filter: blur(3px);
  animation: shakeY 0.45s steps(5) infinite;
}

/* 横ブレ */
@keyframes shakeX {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(2px, 0); }
  40% { transform: translate(-2px, 0); }
  60% { transform: translate(3px, 0); }
  80% { transform: translate(-1px, 0); }
}

/* 縦ブレ＋微妙な拡大 */
@keyframes shakeY {
  0%, 100% { transform: translate(0, 0) scale(1.02); }
  25% { transform: translate(0, -3px) scale(1.03); }
  50% { transform: translate(0, 2px) scale(1.025); }
  75% { transform: translate(0, -2px) scale(1.03); }
}

/* =============================================== */
/* cast&staff - キャストスタッフ */
/* ----------------------------------------------- */
#cast {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5%;
}
.castList1 {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  padding: 20px 0 30px;
  margin: 0 auto;
}
.castList1 li {
  display: inline-block;
  text-align: center;
  width: 30%;
  line-height: 1.5;
  font-weight: 600;
  font-size: 24px;
  padding: 0 1% 40px;
  vertical-align: top;
}
@media(max-width:600px) {
  .castList1 li {
    display: block;
    width: 80%;
    text-align: center;
    margin: 0 auto;
  }
}
.castList1 img {
  width: 100%;
  max-width: 260px;
  margin-bottom: 0;
}
@media(max-width:600px) {
  .castList1 img {
    max-width: 360px;
  }
}
.role {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: #c53536;
}
.actor {
  line-height: 1;
  font-weight: 600;
  padding: 10px 0;
  font-size: 22px;
}
.more {
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 25px;
}
.full{
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 0.8em;
}
.full a:link {
  display: block;
  position: relative;
  padding: 3px 0 5px;
  text-align: center;
  text-decoration: none;
  margin: 0 auto;
  color: #c53536;
  background-color: #000;
  border: 1px solid #c53536;
  transition: all 0.3s;
  font-weight: 400;
  width: 5.5em;
}
.full a:visited {
  text-decoration: underline;
  color: #c53536;
  background-color: #000;
  border: 1px solid #c53536;
}
.full a:active {
  text-decoration: underline;
  color: #c53536;
  background-color: #000;
  border: 1px solid #c53536;
}
.full a:hover {
  text-decoration: none;
  background: #c53536;
  color: #fff;
  border: 1px solid #c53536;
}
#crew {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5% 10%;
}
.crewList {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  padding: 0;
  margin: 0 auto 30px;
}
.crewList li {
  display: inline-block;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
  font-size: 1em;
  padding: 0 0.3em;
}
@media(max-width:600px) {
  .crewList li {
    display: block;
    padding: 5px 0;
  }
}
/* =============================================== */
/* creative - スタッフ */
/* ----------------------------------------------- */
#creative {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5% 5% 10%;
}
.staffList {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  padding: 0;
  margin: 0 auto 30px;
}
.staffList li {
  display: block;
  text-align: center;
  width: 100%;
  line-height: 1.5;
  font-weight: 400;
  font-size: 0.8em;
  padding: 5px 0;
}
.job {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #777;
}
/* =============================================== */
/* info - 公演概要 */
/* ----------------------------------------------- */
#info {
  width: 100%;
  margin: 0 auto;
  padding: 5% 0;
  background-color: #000;
  color: #fff;
}
#info article {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
/* 見出し */
#info h2 {
  color: #fff;
}
/* 左カッコ */
#info h2::before {
  border-right: 1px solid #888;
  border-top: 1px solid #888;
}
/* 右カッコ */
#info h2::after {
  border-left: 1px solid #888;
  border-bottom: 1px solid #888;
}
.dateTxt {
  font-weight: 400;
  font-size: 20px;
  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: 21px;
  text-align: center;
  padding: 0;
  letter-spacing: 2px;
  line-height: 1.4;
}
@media(max-width:600px) {
  .dateTxt {
    font-size: 14px;
  }
  .dateTxt .large {
    font-size: 24px;
  }
}
h5 {
  font-size: 15px;
  font-weight: 600;
  padding: 30px 0 0;
  margin: 5px 0;
  color: #aaa;
  text-align: center;
}
#info p {
  text-align: center;
  padding: 5px 0;
}
.sche {
  margin: 40px auto;
  width: 100%;
  max-width: 615px;
  display: block;
}
.sche img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.cautionList01{
  padding: 15px;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  font-size: 88%;
  list-style: disc;
}
.cautionList01 li{
  padding-bottom: 5px;
  line-height: 1.4;
  color: #ddd;
}
@media(max-width:600px) {
  .cautionList01 {
    font-size: 80%;
  }
}
/* チケット */
.ticketBox {
  margin: 25px auto;
  padding: 0 5% 20px;
  width: 86%;
  max-width: 796px;
  background-color: #111;
  color: #fff;
  border: #444 1px solid;
}
@media(max-width:999px) {
  .ticketBox {
  }
}
.playguideList {
  list-style: none;
  padding: 20px 0;
  font-size: 90%;
}
@media(max-width:600px) {
  .playguideList {
    padding: 0;
    font-size: 85%;
  }
}
.playguideList li {
  border-top: 1px dotted #888;
  display: block;
  margin: 0 auto;
  padding: 25px 0;
  text-align: center;
}
.playguideList li:first-child {
  border-top: none;
}
.playguideList li span {
  font-weight: 600;
  border-bottom: 1px solid #fff;
  display: inline-block;
  margin-bottom: 15px;
  font-size: 110%;
  color: #fff;
}
.playguideList li a:link {
  display: block;
  position: relative;
  padding: 0.5em 1em 0.4em;
  text-align: center;
  text-decoration: none;
  margin: 10px auto 0;
  color: #c53536;
  background-color: #000;
  border: 1px solid #c53536;
  transition: all 0.3s;
  font-weight: 400;
  font-size: 90%;
  width: 10em;
}
.playguideList li a:visited {
  text-decoration: underline;
  color: #c53536;
  background-color: #000;
  border: 1px solid #c53536;
}
.playguideList li a:active {
  text-decoration: underline;
  color: #c53536;
  background-color: #000;
  border: 1px solid #c53536;
}
.playguideList li a:hover {
  text-decoration: none;
  background: #c53536;
  color: #fff;
  border: 1px solid #c53536;
}
/* =============================================== */
/* footer - フッター */
/* ----------------------------------------------- */
footer {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
  color: #ccc;
  text-align: center;
  background-color: #000;
}
#footer-inner {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 0;
  text-align: center;
  border-top: #333 1px solid;
}
.snsBtn {
  padding: 0;
  text-align: center;
}
.snsBtn li {
  font-size: 45px;
  font-weight: 400;
  padding: 0 10px;
  display: inline-block;
}
.snsBtn a:link {
  text-decoration: none;
  display: block;
  color: #fff;
  transition: all .3s ease;
}
.snsBtn a:visited {
  text-decoration: none;
  color: #fff;
}
.snsBtn a:active {
  text-decoration: none;
  color: #fff;
}
.snsBtn a:hover {
  text-decoration: none;
  color: #c53536;
}
p.privacy{
  margin: 10px 0 20px;
}
p.privacy a:link {
  text-decoration: underline;
  color: #fff;
  transition: all .3s ease;
}
p.privacy a:visited {
  text-decoration: underline;
  color: #fff;
}
p.privacy a:active {
  text-decoration: underline;
  color: #fff;
}
p.privacy a:hover {
  text-decoration: underline;
  color: #c53536;
}
#footer-inner P {
  padding: 0 0 10px;
  font-size: 14px;
}
@media(max-width:600px) {
  #footer-inner P {
    font-size: 12px;
  }
}
/* =============================================== */
/* 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: #c53536;
  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;
}
.linkBtn a:link {
  text-decoration: none;
  color: #aaa;
  padding: 5px 1.2em 3px;
  margin: 0 auto;
  line-height: 1;
  font-size: 12px;
  position: relative;
  top: -3px;
  border: 1px solid #aaa;
}
.linkBtn a:visited {
  text-decoration: none;
  color: #aaa;
  border: 1px solid #aaa;
}
.linkBtn a:active {
  text-decoration: none;
  color: #aaa;
  border: 1px solid #aaa;
}
.linkBtn a:hover {
  text-decoration: none;
  background-color: #c53536;
  color: #fff;
  border: 1px solid #c53536;
  transition: all .3s ease;
}