:root {
  --ink: #151515;
  --text: #eeeeee;
  --paper: url(../img/Ba.webp);
  --paper-dark: url(../img/Bl.webp);
    --paper-brown: url(../img/Br.webp);
  --paper-light: url(../img/Wh.webp);
  --blue: #b7aa92; /* neutral beige (temporary visual) */
  --orange: #1b1b1b; /* neutral black (temporary visual) */
  --yellow: #fff000;
  --line: rgba(21, 21, 21, 0.26);
  --jp: "IBM Plex Sans JP", sans-serif;
  --en: "Oswald", sans-serif;
  --display: "Ultra", serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--jp);
  letter-spacing: 0.025em;
  line-height: 1.75;
}
/* ========================================
   BASE
======================================== */

body.is-loading,
body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}


/* ========================================
   HERO LOGO：OPENING連動
======================================== */

/* オープニング中はHERO側のロゴを隠す */
body.is-loading .heroCopy__logo {
  visibility: hidden;
  opacity: 0;
}


/* ========================================
   OPENING
======================================== */

.opening {
  position: fixed;
  inset: 0;
  z-index: 500;

  display: grid;
  place-items: center;
  overflow: hidden;

  visibility: visible;
  pointer-events: auto;
}


/* ----------------------------------------
   背景
---------------------------------------- */

.openingBackdrop {
  position: absolute;
  inset: 0;
  z-index: 0;

  background: var(--paper);
  opacity: 1;

  will-change: opacity;
}

.opening.is-top-page.is-playing .openingBackdrop {
  animation:
    openingOut
    0.86s
    var(--ease-out)
    1.72s
    forwards;
}


/* ----------------------------------------
   組み立てロゴ
---------------------------------------- */

.assembleLogo {
  position: relative;
  z-index: 1;

  /* all3.svg の比率。縦に厚みのある新タイトルへ変更 */
  width: min(62vw, 820px);
  aspect-ratio: 570.53 / 193.39;

  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;

  will-change: transform, opacity;
}

.opening.is-top-page.is-playing .assembleLogo {
  animation:
    openingLogoToHero
    0.9s
    var(--ease-out)
    1.42s
    forwards;
}


/* ----------------------------------------
   各ロゴパーツ
   all2.svg内の完成位置と同じ比率で配置
---------------------------------------- */

.assembleWord {
  position: absolute;
  display: block;

  opacity: 0;
  will-change: transform, opacity, filter;
}

.assembleWord--the {
  top: 6.21%;
  left: 0;
  width: 25.93%;

  transform:
    translate3d(-34vw, -18vh, 0)
    rotate(-6deg)
    scale(0.9);
}

.assembleWord--four {
  top: 10.86%;
  left: 29.27%;
  width: 29.97%;

  transform:
    translate3d(10vw, -30vh, 0)
    rotate(5deg)
    scale(0.88);
}

.assembleWord--of {
  top: 10.34%;
  left: 61.00%;
  width: 16.22%;

  transform:
    translate3d(-14vw, 29vh, 0)
    rotate(-7deg)
    scale(0.88);
}

.assembleWord--us {
  top: 0;
  left: 80.45%;
  width: 19.58%;

  transform:
    translate3d(32vw, 16vh, 0)
    rotate(6deg)
    scale(0.9);
}


/* ----------------------------------------
   ロゴ組み立てアニメーション
---------------------------------------- */

.opening.is-playing .assembleWord--the {
  animation:
    assembleThe
    1.08s
    var(--ease-out)
    0.08s
    forwards;
}

.opening.is-playing .assembleWord--four {
  animation:
    assembleFour
    1.08s
    var(--ease-out)
    0.16s
    forwards;
}

.opening.is-playing .assembleWord--of {
  animation:
    assembleOf
    1.02s
    var(--ease-out)
    0.24s
    forwards;
}

.opening.is-playing .assembleWord--us {
  animation:
    assembleUs
    1.06s
    var(--ease-out)
    0.31s
    forwards;
}


/* ----------------------------------------
   サブページ用終了
---------------------------------------- */

.opening.is-sub-page.is-playing {
  animation:
    subPageOpeningOut
    0.72s
    var(--ease-out)
    1.62s
    forwards;
}

/* ----------------------------------------
   完了後
---------------------------------------- */

.opening.is-finished {
  display: none;
}


/* ========================================
   KEYFRAMES
======================================== */

@keyframes assembleThe {
  0% {
    opacity: 0;
    filter: blur(4px);
    transform:
      translate3d(-34vw, -18vh, 0)
      rotate(-6deg)
      scale(0.9);
  }

  14% {
    opacity: 1;
  }

  72% {
    filter: blur(0);
    transform:
      translate3d(1.4%, -7%, 0)
      rotate(-0.45deg)
      scale(1.015);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
  }
}

@keyframes assembleFour {
  0% {
    opacity: 0;
    filter: blur(4px);
    transform:
      translate3d(10vw, -30vh, 0)
      rotate(5deg)
      scale(0.88);
  }

  14% {
    opacity: 1;
  }

  72% {
    filter: blur(0);
    transform:
      translate3d(-1%, 6%, 0)
      rotate(0.35deg)
      scale(1.012);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
  }
}

@keyframes assembleOf {
  0% {
    opacity: 0;
    filter: blur(4px);
    transform:
      translate3d(-14vw, 29vh, 0)
      rotate(-7deg)
      scale(0.88);
  }

  14% {
    opacity: 1;
  }

  72% {
    filter: blur(0);
    transform:
      translate3d(2%, -8%, 0)
      rotate(-0.5deg)
      scale(1.018);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
  }
}

@keyframes assembleUs {
  0% {
    opacity: 0;
    filter: blur(4px);
    transform:
      translate3d(32vw, 16vh, 0)
      rotate(6deg)
      scale(0.9);
  }

  14% {
    opacity: 1;
  }

  72% {
    filter: blur(0);
    transform:
      translate3d(-2%, 7%, 0)
      rotate(0.45deg)
      scale(1.015);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
  }
}

@keyframes openingOut {
  0%,
  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes openingLogoToHero {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform:
      translate3d(
        var(--opening-move-x, 0),
        var(--opening-move-y, 0),
        0
      )
      scale(var(--opening-scale, 1));
  }
}

@keyframes subPageOpeningOut {
  0% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}


/* ========================================
   OPENING：スマートフォン
======================================== */

@media (max-width: 800px) {
  .assembleLogo {
    width: 90vw;
  }
}

/* ========================================
   HEADER / MENU
======================================== */

/* ----------------------------------------
   ヘッダー
---------------------------------------- */

.siteHeader {
  position: fixed;
  inset: 0 0 auto;
  z-index: 110;

  display: flex;
  align-items: flex-start;

  padding: 23px 29px;

  color: #fff;

  opacity: 0;
  transform: translateY(-15px);

  transition:
    opacity 0.8s ease,
    transform 1s var(--ease-out);
}

.page-ready .siteHeader {
  opacity: 1;
  transform: none;
}


/* ----------------------------------------
   スクロール後に表示するロゴ
---------------------------------------- */

.siteHeader__mark {
  display: block;
  width: 130px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;

  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s;
}

.siteHeader.is-scrolled .siteHeader__mark {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.siteHeader__mark img {
  display: block;
  width: 100%;
  height: auto;
filter:
  drop-shadow(0 0 2px rgba(34,34,34,.8))
  drop-shadow(0 0 5px rgba(34,34,34,.45));

}


/* ----------------------------------------
   メニューボタン
---------------------------------------- */

.menuButton {
  position: relative;

  width: 47px;
  height: 31px;
  margin-left: auto;
  padding: 0;

  border: 0;
  background: var(--yellow);

  cursor: pointer;
}

.menuButton span {
  position: absolute;
  right: 0;

  width: 36px;
  height: 2px;

  background: var(--ink);

  transition:
    top 0.4s var(--ease-out),
    transform 0.45s var(--ease-out),
    width 0.35s var(--ease-out);
}

.menuButton span:first-child {
  top: 9px;
}

.menuButton span:last-child {
  top: 20px;
  width: 25px;
}

.menuButton:hover span:last-child {
  width: 36px;
}

.menuButton.is-open span:first-child {
  top: 15px;
  transform: rotate(45deg);
}

.menuButton.is-open span:last-child {
  top: 15px;
  width: 36px;
  transform: rotate(-45deg);
}


/* ----------------------------------------
   メニューパネル
---------------------------------------- */

.menuPanel {
  position: fixed;
  inset: 0;
  z-index: 100;

  overflow: hidden;
  padding: 10vh 8vw 7vh;

  background: var(--paper-dark);
  color: var(--paper-light);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.45s ease,
    visibility 0.45s;
}

.menuPanel.is-open {
  opacity: 1;
  visibility: visible;
}


/* ----------------------------------------
   メニューナビ
---------------------------------------- */

.menuPanel nav {
  position: relative;
  z-index: 2;

  width: min(900px, 80vw);
  margin-top: 2vh;

  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.menuPanel nav a {
  display: block;

  padding: 11px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: #e8e3d9;

  opacity: 0;
  transform: translateX(-30px);

  transition:
    opacity 0.55s ease,
    transform 0.8s var(--ease-out),
    padding 0.35s var(--ease-out);
}

.menuPanel.is-open nav a {
  opacity: 1;
  transform: none;
}

.menuPanel.is-open nav a:nth-child(1) {
  transition-delay: 0.06s;
}

.menuPanel.is-open nav a:nth-child(2) {
  transition-delay: 0.1s;
}

.menuPanel.is-open nav a:nth-child(3) {
  transition-delay: 0.14s;
}

.menuPanel.is-open nav a:nth-child(4) {
  transition-delay: 0.18s;
}

.menuPanel.is-open nav a:nth-child(5) {
  transition-delay: 0.22s;
}

.menuPanel.is-open nav a:nth-child(6) {
  transition-delay: 0.26s;
}

.menuPanel nav a:hover {
  padding-left: 18px;color: var(--yellow);
}

.menuPanel nav strong {
  font: 400 clamp(18px, 4.5vw, 62px) / 1 var(--display);
  letter-spacing: 0.02em;
}


/* ----------------------------------------
   公式X
---------------------------------------- */

.menuPanel__foot {
  position: absolute;
  bottom: 7vh;
  left: 8vw;
  z-index: 2;

  margin: 0;
}

.menuPanel__foot svg {
  color: var(--yellow);
}


/* ----------------------------------------
   背景の帯
---------------------------------------- */

.menuPanel__bands i {
  position: absolute;
  top: -15vh;

  display: block;
  width: 32vw;
  height: 130vh;

  opacity: 0;

  transform:
    translateX(34vw)
    skewX(-21deg);

  transition:
    opacity 0.55s ease,
    transform 1s var(--ease-out);
}

.menuPanel__bands i:first-child {
  right: 17vw;
  background: var(--orange);
}

.menuPanel__bands i:last-child {
  right: -16vw;

  background: var(--blue);
  transition-delay: 0.08s;
}

.menuPanel.is-open .menuPanel__bands i {
  opacity: 0.9;
  transform: translateX(0) skewX(-21deg);
}


/* ========================================
   HEADER / MENU：スマートフォン
======================================== */

@media (max-width: 800px) {
  .siteHeader {
    padding: 16px 17px;
  }

  .siteHeader__mark {
    display: none;
  }

  .menuPanel {
    padding: 2vh 24px 30px;
  }

  .menuPanel nav {
    width: 100%;
    margin-top: 8vh;
  }

  .menuPanel nav a {
    padding: 15px 0;
  }

  .menuPanel nav strong {
    font-size: 27px;
  }

  .menuPanel__bands i {
    width: 35vw;
  }

  .menuPanel__foot {
    bottom: 30px;
    left: 24px;
  }
}


/* ========================================
   HERO
======================================== */

.hero {
  position: relative;
  min-height: max(100svh, 700px);
  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 17% 20%,
      rgba(0, 0, 0, 0.25),
      transparent 32%
    ),
    var(--paper);
}


/* ----------------------------------------
   背景図形
---------------------------------------- */

.heroFragment {
  position: absolute;
  z-index: -2;

  opacity: 0;
  will-change: transform;
}

.heroFragment--orange {
  top: -16vh;
  right: -8vw;
  z-index: 1;

  width: 43vw;
  height: 77vh;

  background: var(--paper-brown);
  clip-path: polygon(
    0 18%,
    100% 0,
    84% 100%,
    0 82%
  );

  transform:
    translate3d(18vw, var(--band-y, 0), 0)
    scale(1.08);
}

.heroFragment--blue {
  bottom: -10vh;
  left: -10vw;
  z-index: 1;

  width: 66vw;
  height: 42vh;

  background: var(--paper-dark);
  clip-path: polygon(
    15% 0,
    72% 14%,
    100% 100%,
    0 100%
  );

  transform:
    translate3d(-18vw, var(--band-y, 0), 0)
    scale(1.08);
}

.heroFragment--ink {
  top: -20vh;
  left: 50%;
  z-index: -1;

  width: 50vw;
  height: 145vh;

  background: var(--paper-light);
  transform: rotate(22deg) translateY(-18vh);
}


/* 背景図形の登場 */

.page-ready .heroFragment {
  opacity: 1;

  transition:
    opacity 0.55s ease,
    transform 1.55s var(--ease-out);
}

.page-ready .heroFragment--blue,
.page-ready .heroFragment--orange {
  transform:
    translate3d(0, var(--band-y, 0), 0)
    scale(1);
}

.page-ready .heroFragment--ink {
  transform: rotate(22deg) translateY(0);
}


/* ----------------------------------------
   メイン写真
---------------------------------------- */

.heroMedia {
  position: absolute;
  top: 8vh;
  right: 7vw;
  z-index: 2;

  width: min(57vw, 920px);
  height: 78vh;
  overflow: hidden;

   background: transparent;


  -webkit-clip-path: polygon(
    48% 0,
    52% 0,
    52% 100%,
    48% 100%
  );
  clip-path: polygon(
    48% 0,
    52% 0,
    52% 100%,
    48% 100%
  );

  opacity: 0;
}

.page-ready .heroMedia {
  opacity: 1;

  -webkit-clip-path: polygon(
    10% 0,
    100% 0,
    89% 100%,
    0 100%
  );
  clip-path: polygon(
    10% 0,
    100% 0,
    89% 100%,
    0 100%
  );

  transition:
    clip-path 1.55s var(--ease-out) 0.12s,
    opacity 0.2s ease 0.12s;
}


/* 写真ズーム */

.heroMedia .photoZoom {
  width: 100%;
  height: 100%;

  transform: scale(1.18);
}

.page-ready .heroMedia .photoZoom {
  transform: scale(1);

  transition:
    transform 2.3s var(--ease-out) 0.12s;
}

.heroMedia img {
  width: 100%;
  height: calc(100% + 52px);

  object-fit: cover;
  object-position: 40% 45%;

  transform:
    translate3d(
      0,
      calc(var(--photo-y, 0px) - 26px),
      0
    );

  filter:
    saturate(0.88)
    contrast(1.05);
}


/* PCのみ画像をさらに拡大 */

@media (min-width: 801px) {
  .heroMedia .photoZoom > img {
    scale: 1.3;
    translate: 0 12%;
    transform-origin: 52% 58%;
  }
}


/* 写真のカラーオーバーレイ */

.heroMedia::before {
  position: absolute;
  inset: 0;
  z-index: 2;

  content: "";

  background: linear-gradient(
    115deg,
    rgba(183, 170, 146, 0.22),
    transparent 43%,
    rgba(21, 21, 21, 0.10)
  );

  mix-blend-mode: multiply;
  pointer-events: none;
}


/* ----------------------------------------
   ロゴ・クレジット
---------------------------------------- */

.heroCopy {
  position: absolute;
  top: 45%;
  left: 6vw;
  z-index: 5;

  width: min(55vw, 790px);

}

.heroCopy__eyebrow {font-family: var(--display);
  margin: 10px 0 ;
filter:
  drop-shadow(0 0 2px rgba(34,34,34,.8))
  drop-shadow(0 0 5px rgba(34,34,34,.45));


}

.heroCopy__logo {
  width: 100%;
}

.heroCopy__logo img {
  width: 100%;

filter:
  drop-shadow(0 0 2px rgba(34,34,34,.8))
  drop-shadow(0 0 5px rgba(34,34,34,.45));
}

.heroCopy__credit {
  display: grid;
  grid-template-columns: auto auto auto auto;
  justify-content: center;
  align-items: baseline;
  gap: 12px;

  margin: 5px 0 0;
color:var(--yellow);
  font-size: 10px;
  letter-spacing: 0.08em;

filter:
  drop-shadow(0 0 2px rgba(34,34,34,.8))
  drop-shadow(0 0 5px rgba(34,34,34,.45));


}
.heroCopy__creditRow {
  display: contents;
}
.heroCopy__credit strong {
  font-size: 16px;
  letter-spacing: 0.08em;
}


/* ロゴまわりの登場 */

[data-hero-line] {
  opacity: 0;

  transform:
    translate3d(-30px, 25px, 0)
    skewX(-4deg);
}

[data-hero-logo] {
  opacity: 1;
  transform: none;
}

.page-ready [data-hero-line] {
  opacity: 1;
  transform: none;

  transition:
    opacity 0.7s ease 0.7s,
    transform 1s var(--ease-out) 0.7s;
}

.page-ready .heroCopy__credit {
  transform: none;
  transition-delay: 0.83s;
}


/* ----------------------------------------
   公演日程
---------------------------------------- */

.heroDates {
  position: absolute;
  bottom: 27px;
  left: 29px;
  z-index: 4;
  display: flex;
  gap: 46px;

color:#e7e1d8;
filter:
  drop-shadow(0 0 2px rgba(34,34,34,.8))
  drop-shadow(0 0 5px rgba(34,34,34,.45));

}

.page-ready .heroDates {
  transition-delay: 0.96s;
}

.heroDates p {
  display: grid;
  grid-template-columns: 50px auto;
  gap: 4px 12px;

  margin: 0;
}

.heroDates span {
  grid-row: 1 / 3;

  font-family: var(--en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.heroDates strong {
  font: 20px/1 var(--en);
  letter-spacing: 0.02em;
}

.heroDates small {
  font-size: 11px;
}


/* ========================================
   HERO：タブレット・小さめPC
======================================== */
/* HERO：iPad・タブレット */
@media
  (min-width: 801px)
  and (max-width: 1366px)
  and (hover: none)
  and (pointer: coarse) {

  .heroMedia {
    top: 9vh;
    right: -2vw;
    width: 74vw;
    height: 72vh;
  }

  .heroMedia .photoZoom > img {
    scale: 1;
    translate: 0 4%;
    transform-origin: center center;
    object-position: 43% 42%;
  }

  .heroCopy {
    top: 43%;
    left: 5vw;
    width: 63vw;
  }
}

/* ========================================
   HERO：スマートフォン
======================================== */

@media (max-width: 800px) {
  .hero {
    height: 100svh;
    min-height: 620px;
  }


  /* 写真 */

  .heroMedia {
    top: 68px;
    right: -8vw;

    width: 110vw;
    min-height: 450px;
  }

  .page-ready .heroMedia {
    -webkit-clip-path: polygon(
      13% 0,
      100% 0,
      83% 100%,
      0 100%
    );
    clip-path: polygon(
      13% 0,
      100% 0,
      83% 100%,
      0 100%
    );
  }

  .heroMedia img {
    object-position: 42% 46%;
  }


  /* ロゴ・クレジット */

  .heroCopy {
    top: 54%;
    bottom: auto;
    left: 6vw;

    width: 88vw;
  }

  .heroCopy__eyebrow {
    margin: 0;
  }

 
  .heroCopy__credit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;    font-size: 9px;
    letter-spacing: 0.08em;
    width: 100%;
    text-align: center;
  }

  .heroCopy__creditRow {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 12px;
  }
    .heroCopy__credit strong {
  font-size: 12px;
}
  /* 日程 */

  .heroDates {
    display: none;
  }
}


/* 小さいスマートフォン */

@media (max-width: 380px) {
  .heroCopy {
    top: 410px;
  }
}


/* ========== CONTENTS TITLES ========== */
.sectionTitle h2 {
  margin: 12px 0 20px;

  font-family: var(--display);
  font-size: clamp(38px, 5.2vw, 72px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0.025em;

  transform: scaleY(0.85);
}

.sectionTitle--light {
  color: var(--text);
}

.sectionTitle--dark {
  color: var(--paper-light);
}


/* ========================================
   SCROLL REVEAL & MOTION
======================================== */


.js [data-reveal] {
  opacity: 0;
  transform: translateY(56px);
  transition:
    opacity 0.85s ease var(--delay, 0ms),
    transform 1.15s var(--ease-out) var(--delay, 0ms);
}

.js [data-reveal].reveal--left {
  transform: translate3d(-46px, 24px, 0) rotate(-1.2deg);
}

.js [data-reveal].reveal--right {
  transform: translate3d(46px, 24px, 0) rotate(1.2deg);
}

.js [data-reveal].reveal--lead {
  transform: translate3d(-28px, 42px, 0) skewX(-5deg);
}

.js [data-reveal].is-inview {
  opacity: 1;
  transform: none;
}

/* セクション見出し：文字が少しずつ違う角度から収まる */
.js .sectionTitle[data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

.motionWord {
  display: inline-block;
  white-space: nowrap;
}

.motionChar {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 0.72em, 0) rotate(var(--char-tilt));
  transform-origin: 50% 85%;
  transition:
    opacity 0.45s ease calc(var(--delay, 0ms) + var(--char-index) * 28ms),
    transform 0.9s cubic-bezier(0.16, 1.24, 0.3, 1)
      calc(var(--delay, 0ms) + var(--char-index) * 28ms);
}

.sectionTitle.is-inview .motionChar {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0);
}

/* 人名まわりは、役名→名前→コメントの順に小さく動かす */
.js .personText[data-reveal] .role,
.js .personText[data-reveal] h3,
.js .personText[data-reveal] .comment,
.js .personText[data-reveal] details,
.js .directorText[data-reveal] .role,
.js .directorText[data-reveal] h3,
.js .directorText[data-reveal] .comment,
.js .directorText[data-reveal] details {
  opacity: 0;
  transform: translate3d(-18px, 18px, 0);
  transition:
    opacity 0.55s ease,
    transform 0.85s var(--ease-out);
}

.js .personText[data-reveal].is-inview .role,
.js .directorText[data-reveal].is-inview .role {
  opacity: 1;
  transform: none;
  transition-delay: 0.12s;
}

.js .personText[data-reveal].is-inview h3,
.js .directorText[data-reveal].is-inview h3 {
  opacity: 1;
  transform: none;
  transition-delay: 0.22s;
}

.js .personText[data-reveal].is-inview .comment,
.js .directorText[data-reveal].is-inview .comment {
  opacity: 1;
  transform: none;
  transition-delay: 0.34s;
}

.js .personText[data-reveal].is-inview details,
.js .directorText[data-reveal].is-inview details {
  opacity: 1;
  transform: none;
  transition-delay: 0.44s;
}

/* STAFFと会場情報も一項目ずつ軽くずらす */
.js .staff[data-reveal] dl > div,
.js .venues article[data-reveal] > * {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.5s ease,
    transform 0.75s var(--ease-out);
}

.js .staff[data-reveal].is-inview dl > div,
.js .venues article[data-reveal].is-inview > * {
  opacity: 1;
  transform: none;
}

.js .staff[data-reveal].is-inview dl > div:nth-child(2),
.js .venues article[data-reveal].is-inview > *:nth-child(2) {
  transition-delay: 0.08s;
}

.js .staff[data-reveal].is-inview dl > div:nth-child(3),
.js .venues article[data-reveal].is-inview > *:nth-child(3) {
  transition-delay: 0.16s;
}

.js .staff[data-reveal].is-inview dl > div:nth-child(4),
.js .venues article[data-reveal].is-inview > *:nth-child(4) {
  transition-delay: 0.24s;
}

.js .staff[data-reveal].is-inview dl > div:nth-child(5) {
  transition-delay: 0.32s;
}
.js .staff[data-reveal].is-inview dl > div:nth-child(6) {
  transition-delay: 0.4s;
}
.js .staff[data-reveal].is-inview dl > div:nth-child(7) {
  transition-delay: 0.48s;
}


.motionPhoto {
  transition:
    clip-path 1.45s var(--ease-out),
    opacity 0.2s ease;
}

.motionPhoto .photoZoom {
  transition: transform 2.2s var(--ease-out) 0.08s;
}

.motionPhoto img {
  transform: translate3d(0, var(--photo-y, 0), 0);
}


/* ========== NEWS ========== */
.news {
  display: grid;
  grid-template-columns: 35% 65%;
  padding: 60px 7vw;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.newsList {
  background: var(--paper-light);
  padding: 8px;
  border-top: 1px solid;
}

.newsList article {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid;
}

.newsList article::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transition: width 0.65s var(--ease-out);
}

.newsList article:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}


.newsList time {font: 13px/1 var(--display);
  display: inline-block;
  width: fit-content;
  padding: 3px 5px 2px;
  background: var(--yellow);
  color: var(--ink);
}

.newsList article::after {
  background: var(--yellow);
}

.newsList p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 800px) {
  .news {
    display: block;
    padding: 50px 6vw;
  }

  .newsList {
    padding: 8px 14px;
  }

  .newsList article {
    display: block;
    padding: 20px 0;
  }

  .newsList time {
    display: block;
    margin-bottom: 9px;
    font-size: 11px;
    line-height: 1;
  }

  .newsList p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
  }
}
/* ========================================
   INTRODUCTION
======================================== */

.introduction {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  padding: 5vh 5vw;
  background: var(--paper-dark);
}


/* ----------------------------------------
   背景のクロス帯
---------------------------------------- */

.crossBand {
  position: absolute;
  top: -20vh;
  z-index: -2;

  width: 32vw;
  height: 165vh;

  will-change: transform;
}

.crossBand--blue {
  top: 12vh;
  left: 72%;

  background: var(--blue);

  transform:
    translate3d(0, var(--band-y, 0), 0)
    skewX(-20deg);
}

.crossBand--orange {
  left: 42%;

  background: var(--orange);

  transform:
    translate3d(0, var(--band-y, 0), 0)
    skewX(-20deg);
}


/* ----------------------------------------
   白背景エリア
---------------------------------------- */

.introStatement-bg {
  width: 100%;
  margin-top: 60px;
  padding:
    clamp(58px, 7vw, 110px)
    clamp(30px, 6vw, 96px);

  background: var(--paper-light);
  box-shadow: 0 22px 70px rgba(21, 21, 21, 0.08);
}

.introStatement {
  position: relative;
  z-index: 2;

  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 0;
}


/* ----------------------------------------
   リード文
---------------------------------------- */

.introLead {
  margin: 0 0 clamp(68px, 9vh, 115px);

  font-size: clamp(40px, 5vw, 70px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.035em;
}


/* ----------------------------------------
   紹介ブロック
---------------------------------------- */

.introBlocks {
  border-top: 1px solid rgba(21, 21, 21, 0.58);
}

.introBlock {
  padding: clamp(62px, 8vh, 105px) 0;
  border-bottom: 1px solid rgba(21, 21, 21, 0.42);
}


/* 見出し */

.introBlock__heading {
  position: relative;

  width:100%;
  margin-bottom: clamp(42px, 5vw, 68px);
  padding-top: 25px;
}

.introBlock__heading::before {
  position: absolute;
  top: 0;
  left: 0;

  width: 72px;
  height: 5px;

  content: "";
  background: var(--orange);
}

.introBlock--cast .introBlock__heading::before {
  background: var(--blue);
}

.introBlock__label {
  margin: 0 0 25px;

color: #5b5b5b;
  background: var(--yellow);
 display: inline-block;
  font: 700 11px/1 var(--en);
  letter-spacing: 0.18em;
}

.introBlock--cast .introBlock__label {
color: #5b5b5b;
  background: var(--yellow);
}

.introBlock h4 {
  margin: 0;

  font-size: clamp(27px, 2.8vw, 40px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.025em;
}


/* 本文 */

.introBlock__body {

}

.introBlock__body p {
  margin: 0;

  font-size: clamp(15px, 1.1vw, 16px);
  line-height: 2.15;

  text-align: justify;
  text-justify: inter-ideograph;
}

.introBlock__body p + p {
  margin-top: 1.75em;
}


/* ========================================
   INTRODUCTION：スマートフォン
======================================== */

@media (max-width: 800px) {
  .introduction {
    padding: 60px 5px 145px;
  }


  /* 背景のクロス帯 */

  .crossBand {
    width: 56vw;
    height: 120%;
  }

  .crossBand--blue {
    left: 41%;
  }

  .crossBand--orange {
    left: 82%;
  }


  /* 白背景エリア */

  .introStatement-bg {
    margin-top: 35px;
    padding: 42px 6vw;
  }


  /* リード文 */

  .introLead {
    margin-bottom: 60px;
    font-size: 34px;
  }


  /* 紹介ブロック */

  .introBlock {
    padding: 52px 0;
  }

  .introBlock__heading {
    margin-bottom: 35px;
    padding-top: 19px;
  }

  .introBlock__heading::before {
    width: 58px;
    height: 4px;
  }

  .introBlock__label {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .introBlock h4 {
    font-size: 25px;
    line-height: 1.55;
  }


  /* 本文 */

  .introBlock__body {
    column-count: 1;
    column-rule: 0;
  }

  .introBlock__body p {
    font-size: 14px;
    text-align: left;
  }
}


/* ========================================
   STORY
======================================== */

.story {
  position: relative;
  overflow: hidden;
  padding: 14vh 8vw 18vh;
  background: var(--paper-light);
}


/* 背景の斜めライン */

.story::after {
  position: absolute;
  right: -8vw;
  bottom: 0;

  width: 34vw;
  height: 120vh;

  content: "";
  background: linear-gradient(
    var(--orange) 0 50%,
    var(--blue) 50% 100%
  );

  opacity: 0.68;
  transform: skewX(-20deg);
  pointer-events: none;
}


/* コンテンツ全体 */

.storyLayout {
  position: relative;
  z-index: 2;
}


/* リード文 */

.storyLead {
  margin: 0 0 clamp(68px, 9vh, 115px);

  font-size: clamp(40px, 5vw, 70px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.035em;
}


/* 本文エリア */

.storyText {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);
  align-items: start;
  gap: clamp(55px, 8vw, 120px);

  padding-top: 36px;
  border-top: 1px solid rgba(21, 21, 21, 0.34);
}


/* あらすじ */

.storyText__narrative p {
  margin: 0;

  font-size: clamp(15px, 1.1vw, 16px);
  line-height: 2.15;
}

.storyText__narrative p + p {
  margin-top: 1.8em;
}

.storyText__narrative .storyText__ending {
  margin-top: 2.6em;
  padding-left: 20px;

  border-left: 3px solid var(--yellow);
  font-weight: 600;
}


/* 問いかけ */

.storyText__questions {
  counter-reset: question;
}

.storyText__questions p {
  position: relative;
  margin: 0;
  padding: 24px 0 27px 54px;

  border-bottom: 1px solid rgba(21, 21, 21, 0.22);

  font-size: clamp(18px, 1.55vw, 20px);
  font-weight: 500;
}

.storyText__questions p:first-child {
  padding-top: 0;
}

.storyText__questions span {
  position: absolute;
  top: 30px;
  left: 0;

  color: var(--yellow);

  font-family: var(--en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.storyText__questions p:first-child span {
  top: 6px;
}

.storyText__questions p:nth-child(2) span {
  color: var(--yellow);
}


/* ========================================
   STORY：スマートフォン
======================================== */

@media (max-width: 800px) {
  .story {
    padding: 95px 24px 125px;
  }

  .story::after {
    right: -27vw;
    width: 58vw;
    opacity: 0.52;
  }

  .storyLead {
    margin-bottom: 60px;
    font-size: 34px;
  }

  .storyText {
    grid-template-columns: 1fr;
    gap: 58px;

    padding-top: 28px;
  }

  .storyText__narrative p {
    font-size: 14px;
  }

  .storyText__questions p {
    padding-left: 45px;
    font-size: 18px;
  }
}
/* ========================================
   CAST & STAFF
======================================== */

.people {
padding: 14vh 8vw 16vh;
  background: var(--paper);
}


/* ----------------------------------------
   CAST
---------------------------------------- */

.castGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 1500px);
  margin-inline: auto;
}

.person {
  position: relative;
  min-width: 0;
}


/* キャスト写真 */

.personPhoto {
  position: relative;

  /* 二人芝居なので以前より大きく */
  width: min(82%, 620px);
  aspect-ratio: 3 / 4;

  margin: 0 auto;
  overflow: hidden;
  background: transparent;
}


/* 写真オープニング */

.person--orange .personPhoto,
.person--blue .personPhoto {
  -webkit-clip-path: polygon(
    48% 0,
    52% 0,
    52% 100%,
    48% 100%
  );
  clip-path: polygon(
    48% 0,
    52% 0,
    52% 100%,
    48% 100%
  );
}

.person--orange .personPhoto.is-inview {
  -webkit-clip-path: polygon(
    0 0,
    100% 8%,
    88% 100%,
    0 92%
  );
  clip-path: polygon(
    0 0,
    100% 8%,
    88% 100%,
    0 92%
  );
}

.person--blue .personPhoto.is-inview {
  -webkit-clip-path: polygon(
    12% 8%,
    100% 0,
    100% 92%,
    0 100%
  );
  clip-path: polygon(
    12% 8%,
    100% 0,
    100% 92%,
    0 100%
  );
}


/* 写真ズーム */

.personPhoto .photoZoom,
.directorVisual .photoZoom {
  width: 100%;
  height: 100%;
}

.personPhoto .photoZoom {
  transform: scale(1.1);
}

.personPhoto.is-inview .photoZoom {
  transform: scale(1);
}


/* 写真本体 */

.personPhoto img,
.directorVisual img {
  display: block;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  filter: grayscale(1) contrast(1.06);
}


/* 写真ごとの位置調整が必要な場合だけ使用 */

.person--orange .personPhoto img {
  object-position: center center;
}

.person--blue .personPhoto img {
  object-position: center center;
}


/* 写真の色オーバーレイ */

.personPhoto::after {
  position: absolute;
  inset: 0;

  content: "";
  opacity: 0.17;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.person--orange .personPhoto::after {
  background: var(--orange);
}

.person--blue .personPhoto::after {
  background: var(--blue);
}


/* キャスト文章 */

.personText {
  padding: 6vh 7vw 9vh;
}

.people .role {
  margin: 0;
  display: inline-block;
  padding:0;
  background: var(--yellow);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.personText h3,
.directorText h3 {
  margin: 25px 0 5vh;

  font: 500 clamp(40px, 5vw, 68px) / 1 var(--jp);
  letter-spacing: -0.035em;
}

.personText h3 small,
.directorText h3 small {
  display: block;
  margin-top: 13px;

  font: 700 14px/1 var(--jp);
  letter-spacing: 0.27em;
}


/* コメント */

.people .comment {
  padding: 28px 26px 40px 32px;
  width: calc(100% + 4vw);
  margin-left: -2vw;
  margin-right: -2vw;
  background: var(--paper-light);

  clip-path: polygon(
    1.5% 0,
    100% 2%,
    98.5% 100%,
    0 97%
  );

  font-size: 16px;
  font-weight: 500;
}

.people .comment span {
  display: block;
  margin-bottom: 8px;

  font: 700 10px/1 var(--jp);
  letter-spacing: 0.25em;
}


/* プロフィール */

.people details {
  border-top: 1px solid;
  border-bottom: 1px solid;
}

.people summary {
  display: flex;
  justify-content: space-between;

  padding: 18px 0;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;

  cursor: pointer;
  list-style: none;
}

.people summary::-webkit-details-marker {
  display: none;
}

.people details > p {
  margin: 0;
  padding: 0 0 24px;

  font-size: 14px;
}


/* ----------------------------------------
   TRANSLATION / DIRECTION
---------------------------------------- */

.director {
  display: grid;
  grid-template-columns: minmax(280px, 38%) minmax(0, 62%);
  align-items: start;

  margin: 7vh 8vw 10vh;
  /*border-bottom: 1px solid;*/
}


/* 演出家写真 */

.directorVisual {
  position: relative;

  /*
   * CASTより一段小さく見せる。
   * 写真比率はCASTと同じ縦長。
   */
  width: min(82%, 440px);
  aspect-ratio: 3 / 4;

  margin-inline: auto;
  overflow: hidden;

  -webkit-clip-path: polygon(
    48% 0,
    52% 0,
    52% 100%,
    48% 100%
  );
  clip-path: polygon(
    48% 0,
    52% 0,
    52% 100%,
    48% 100%
  );
}

.directorVisual.is-inview {
  -webkit-clip-path: polygon(
    4% 0,
    100% 0,
    96% 92%,
    8% 100%,
    0 12%
  );
  clip-path: polygon(
    4% 0,
    100% 0,
    96% 92%,
    8% 100%,
    0 12%
  );
}

.directorVisual .photoZoom {
  transform: scale(1.1);
}

.directorVisual.is-inview .photoZoom {
  transform: scale(1);
}

.directorVisual img {
  object-position: center center;
}


/* 演出家文章 */

.directorText {
  padding: 7vh 6vw 9vh;
}


/* ----------------------------------------
   STAFF CREDIT
---------------------------------------- */

.staff {
  width: min(100%, 920px);
  margin: 60px auto 0;
}

.staff dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(40px, 7vw, 110px);

  margin: 0;
  padding: 0;
}

.staff dl > div {
  display: grid;
  grid-template-columns: 9.5em minmax(0, 1fr);
  align-items: baseline;

  min-height: 64px;
  padding: 18px 4px 16px;

  border-bottom: 1px solid rgba(28, 27, 25, 0.28);
}

.staff dt,
.staff dd {
  margin: 0;
}

.staff dt {
  position: relative;

  padding-left: 17px;

  color: var(--ink);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.staff dd {
  color: var(--ink);

  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

/* 最後が1件だけの場合 */

.staff dl > div:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: calc(
    (100% - clamp(40px, 7vw, 100px)) / 2
  );
}


/* ========================================
   CAST & STAFF：tablet
======================================== */
@media (min-width: 801px) and (max-width: 1100px) {

  .people {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .castGrid {
    width: 100%;
    gap: 0;
  }
  .personPhoto {
    width: 78%;
  }

  .personText {
    padding: 40px 2vw 70px;
  }
    
  .director {
    grid-template-columns: 34% 66%;
    margin: 7vh 0 10vh;
  }
  .directorVisual {
    width: 90%;
  }

  .directorText {
    padding: 50px 2vw 70px;
  }
  .personText h3,
  .directorText h3 {
    font-size: 52px;
  }

  .people .comment {
    width: calc(100% + 2vw);
    margin-left: -1vw;
    margin-right: -1vw;
    padding: 22px 18px 28px;
    font-size: 15px;
    line-height: 1.8;
  }
}


/* ========================================
   CAST & STAFF：スマートフォン
======================================== */
@media (max-width: 800px) {
  .people {
    padding: 95px 20px 120px;
  }


  /* CAST */

  .castGrid {
    grid-template-columns: 1fr;
  }

  .personPhoto {
  width: 86%;
  height: auto;
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  }

  .personText {
    padding: 45px 24px 90px;
  }

  .personText h3,
  .directorText h3 {
    font-size: 38px;
  }

.people .comment {
  width: calc(100% + 8vw);
  margin-left: -4vw;
  margin-right: -4vw;

  padding: 24px 18px 28px;
  font-size: 14px;
  line-height: 1.85;

  clip-path: polygon(
    2% 0,
    100% 1%,
    98% 100%,
    0 98%
  );
}
  /* DIRECTOR */

  .director {
    grid-template-columns: 1fr;
    margin: 0 24px 105px;
  }

  .directorVisual {
    width: 80%;
  }

  .directorText {
    padding: 58px 0  24px;
  }


  /* STAFF */

  .staff {
    width: 82%;
    margin-top: 40px;
  }

  .staff dl {
    display: block;
  }

  .staff dl > div,
  .staff dl > div:last-child:nth-child(odd) {
    display: grid;
    grid-template-columns: 7em minmax(0, 1fr);

    width: 100%;
    min-height: auto;
    padding: 15px 2px 13px;
  }

  .staff dt {
    padding-left: 14px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .staff dd {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0.04em;
  }
}
/* ========================================
   SCHEDULE & TICKETS
======================================== */

.ticket {
  position: relative;
  z-index: 1;
  overflow: clip;
  padding: 14vh 8vw 16vh;
  background: var(--paper-light);
}

/* 背景の斜め図形 */
.ticket::before {
  position: absolute;
  right: -15%;
  bottom: -70%;
  z-index: -1;
  width: 40%;
  height: 190%;
  content: "";
  background: var(--paper);
  opacity: 0.48;
  mix-blend-mode: multiply;
  transform: skewX(-20deg);
  pointer-events: none;
}


/* ----------------------------------------
   TOKYO / OSAKA ナビ
---------------------------------------- */

.venueNav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: clamp(50px, 7vw, 90px) auto
    clamp(60px, 8vw, 110px);
}

.venueNav a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  width: min(220px, 42vw);
  min-height: 60px;

  color: #fff;
  background: var(--orange);

  font-family: var(--en);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-decoration: none;

  clip-path: polygon(
    6% 0,
    100% 8%,
    94% 100%,
    0 90%
  );

  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.venueNav a:nth-child(2) {
  background: var(--blue);

  clip-path: polygon(
    0 8%,
    94% 0,
    100% 90%,
    6% 100%
  );
}

.venueNav a::after {
  width: 8px;
  height: 8px;
  content: "";

  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;

  transform: translateY(-3px) rotate(45deg);
}

.venueNav a:hover {
  filter: brightness(1.08);
  transform: translateY(-4px);
}


/* ----------------------------------------
   公演情報
---------------------------------------- */

.venues {
  display: grid;
  grid-template-columns: 1fr;

  width: min(100%, 1080px);
  margin: 0 auto;

  border-top: 1px solid var(--ink);
}

.venues article {
  position: relative;
  overflow: hidden;

  width: 100%;
  padding:
    clamp(55px, 7vw, 95px)
    clamp(20px, 4vw, 65px);

  border-bottom: 1px solid var(--ink);
  scroll-margin-top: 100px;
}


/* 地域名：TOKYO / OSAKA */
.venues article > span {


  font-family: var(--en);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.23em;  display: inline-block;
  padding: 0;
  background: var(--yellow);
}


/* 公演名：東京公演 / 大阪公演 */
.venues h3 {
  margin: 12px 0 clamp(38px, 5vw, 70px);

  font-family: var(--jp);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}


/* 公演日程 */
.venues article > time {
  display: block;

  font-family: var(--display);
  font-size: clamp(28px, 4.2vw, 58px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.venues article > time small {
  display: inline-block;
  margin: 0 7px;

  font-family: var(--en);
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.13em;
}


/* 会場名 */
.venues .venueName {
  margin: 28px 0 50px;

  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.06em;
}




/* ----------------------------------------
   公演スケジュール（星取表）
---------------------------------------- */

.performanceSchedule {
  margin: clamp(36px, 5vw, 64px) 0 52px;
}

.performanceSchedule__sp {
  display: none;
}


/* PC */

.scheduleTable {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: rgba(255, 255, 255, 0.24);
}

.scheduleTable th,
.scheduleTable td {
  height: 56px;
  padding: 6px 2px;

  border-bottom: 1px solid rgba(21, 21, 21, 0.2);

  text-align: center;
  vertical-align: middle;
}

.scheduleTable thead th {
  border-top: 1px solid rgba(21, 21, 21, 0.55);
  border-bottom-color: rgba(21, 21, 21, 0.55);

  font-family: var(--en);
  font-weight: 600;
}

.scheduleTable thead b {
  display: block;

  font-size: clamp(17px, 1.6vw, 24px);
  line-height: 1;
}

.scheduleTable thead small {
  display: block;
  margin-top: 7px;

  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.scheduleTable tbody th,
.scheduleTable__corner {
  width: 76px;

  font-family: var(--en);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;

  white-space: nowrap;
}


/* 公演あり：東京・大阪、通常・特典付きで共通 */
.scheduleTable td i,
.scheduleSp__row i {
  display: block;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin: 0;
  border-radius: 50%;
  background: var(--ink);
}


/* 休演日 */

.scheduleTable .is-closed {
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0 5px,
      rgba(21, 21, 21, 0.05) 5px 6px
    );
}

.scheduleTable .closedChar {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}


/* 土日祝 */

.scheduleTable .is-sat,
.scheduleSp__date .is-sat {
  color: var(--yellow);
}

.scheduleTable .is-sun,
.scheduleTable .is-holiday,
.scheduleSp__date .is-sun,
.scheduleSp__date .is-holiday {
  color: var(--yellow);
}

.scheduleTable--osaka {
  width: min(420px, 100%);
}


/* ========================================
   公演スケジュール：スマートフォン
======================================== */

@media (max-width: 800px) {
  .performanceSchedule {
    margin: 30px 0 40px;
  }

  .performanceSchedule__pc {
    display: none;
  }

  .performanceSchedule__sp {
    display: block;

    width: 100%;
    overflow: hidden;

    border-top: 1px solid rgba(21, 21, 21, 0.55);
  }


  /* 列構成 */

  .scheduleSp__head,
  .scheduleSp__row {
    display: grid;
    grid-template-columns:
      minmax(82px, 1.35fr)
      repeat(4, minmax(42px, 1fr));

    align-items: stretch;
  }

  .performanceSchedule__sp--osaka .scheduleSp__head,
  .performanceSchedule__sp--osaka .scheduleSp__row {
    grid-template-columns:
      minmax(82px, 1.35fr)
      repeat(3, minmax(54px, 1fr));
  }


  /* 見出し */

  .scheduleSp__head {
    background: var(--paper-dark);
    color: var(--text);
  }

  .scheduleSp__head span {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;
    padding: 5px 2px;

    border-right: 1px solid rgba(255, 255, 255, 0.16);

    font-family: var(--en);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;

    white-space: nowrap;
  }




  /* 各日 */

  .scheduleSp__row {
    border-bottom: 1px solid rgba(21, 21, 21, 0.2);
  }

  .scheduleSp__row > span {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;

    border-right: 1px solid rgba(21, 21, 21, 0.1);
  }

  .scheduleSp__head span:last-child,
  .scheduleSp__row > span:last-child {
    border-right: 0;
  }


  /* 日付 */

  .scheduleSp__date {
    justify-content: flex-start !important;
    gap: 6px;

    padding-left: 10px;

    font-family: var(--en);
    font-size: 19px;
    font-weight: 600;
    line-height: 1;
  }

  .scheduleSp__date small {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }


  /* 休演日 */

  .scheduleSp__row--closed {
    background:
      repeating-linear-gradient(
        -45deg,
        transparent 0 5px,
        rgba(21, 21, 21, 0.04) 5px 6px
      );
  }

  .scheduleSp__closedChar {
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
  }
}

/* ----------------------------------------
   チケット情報
---------------------------------------- */

.ticketInfo {
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.35);
}

.ticketInfo > div {
  display: grid;
  grid-template-columns: minmax(190px, 28%) 1fr;

  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.ticketInfo dt,
.ticketInfo dd {
  margin: 0;
  padding: 22px 24px;

  font-size: 15px;
}

.ticketInfo dt {
  font-weight: 700;
}

.ticketInfo dd {
  border-left: 1px solid rgba(0, 0, 0, 0.35);
}

.ticketInfo dd small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
}

.ticketInfo time {
  font-family: var(--jp);
  font-size: inherit;
  letter-spacing: inherit;
}


/* ========================================
   SCHEDULE & TICKETS：スマートフォン
======================================== */

@media (max-width: 800px) {
  .ticket {
    padding: 95px 24px 125px;
  }


  /* ナビ */

  .venueNav {
    gap: 8px;
    margin: 42px auto 60px;
  }

  .venueNav a {
    gap: 12px;
    width: calc(50% - 4px);
    min-height: 52px;

    font-size: 14px;
    letter-spacing: 0.12em;
  }

  .venueNav a::after {
    width: 7px;
    height: 7px;
  }


  /* 公演情報 */

  .venues {
    width: 100%;
  }

  .venues article {
    padding: 52px 2px 58px;
    scroll-margin-top: 80px;
  }

  .venues article > span {
    font-size: 25px;
  }

  .venues h3 {
    margin: 10px 0 36px;
    font-size: 14px;
  }

  .venues article > time {
    font-size: clamp(23px, 7.2vw, 29px);
    white-space: nowrap;
  }

  .venues article > time small {
    margin: 0 3px;

    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .venues .venueName {
    margin: 23px 0 38px;
    font-size: 15px;
  }


  /* チケット情報 */

  .ticketInfo > div {
    display: block;
  }

  .ticketInfo dt,
  .ticketInfo dd {
    padding: 15px 12px;
    font-size: 14px;
  }

  .ticketInfo dt {
    padding-bottom: 5px;
  }

  .ticketInfo dd {
    padding-top: 0;
    border-left: 0;
  }
}

/* ========================================
   FOOTER
======================================== */

.siteFooter {
  position: relative;
  display: flex;
  align-items: center; /* flex-endから変更 */
  justify-content: space-between;
  gap: 60px;
  overflow: hidden;
  padding: 60px 7vw;
  background: var(--paper);

}

.siteFooter__logo {
  position: relative;
  z-index: 2;
  display: block;
  width: min(40vw, 450px);
  height: auto;
}

.footerRight {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  flex: 0 0 auto;
  text-align: right;
}

.footerRight p.meigi {
  padding: 5px;
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.14em;
  white-space: nowrap;
}
.footerRight p.copyright {
  padding: 5px;
  margin: 0;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.14em;
  white-space: nowrap;
}
.footerX {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footerX:hover {
  color: var(--yellow);
  transform: rotate(-8deg) scale(1.12);
}

.footerX svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

@media (max-width: 800px) {
  .siteFooter {
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 80px 24px 28px;
    text-align: center;
  }

  .siteFooter__logo {
    width: min(100%, 390px);
  }

  .footerRight {
    align-items: center;
    gap: 22px;
    width: 100%;
    text-align: center;
  }
}



/* ----------------
 * e.t.c
/*----------------*/
.pc {display: block !important;}
.sp {display: none !important;}

@media (max-width: 800px) {
.pc {display: none !important;}
.sp {display: block !important;}
} /*end*/

.mt-2,
.pt-2 {
  padding-top: 1em;
}
.mt-3,
.pt-3 {
  padding-top: 1.5em;
}

/* ========================================
   2026-07-29 color adjustment
======================================== */

/* Schedule weekdays: calm blue / red */
.scheduleTable .is-sat,
.scheduleSp__date .is-sat {
  color: #5f7482;
}

.scheduleTable .is-sun,
.scheduleTable .is-holiday,
.scheduleSp__date .is-sun,
.scheduleSp__date .is-holiday {
  color: #9a6863;
}

/* Osaka button uses the same color as Tokyo */
.venueNav a:nth-child(2) {
  background: var(--orange);
}

/* STORY numbering: yellow label with gray text */
.storyText__questions span,
.storyText__questions p:nth-child(2) span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 22px;
  padding: 4px 6px;
  color: #5b5b5b;
  background: var(--yellow);
  line-height: 1;
}


/* ========================================
   公演スケジュール：特典マーク・注記
======================================== */

/* 通常の●と特典付き●を、東京・大阪で完全に同じ大きさにする */
.performanceMark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  vertical-align: middle;
  line-height: 1;
}

.scheduleTable td .performanceMark > i,
.scheduleSp__row .performanceMark > i {
  display: block;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin: 0;
  border-radius: 50%;
  background: var(--ink);
}

/* ☆・★は共通位置 */
.performanceMark__event {
  position: absolute;
  top: -7px;
  right: -8px;
  z-index: 1;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-family: var(--jp);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.scheduleNotes {
  margin: -34px 0 52px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  line-height: 1.8;
}

.scheduleNotes li {
  display: flex;
  align-items: baseline;
  gap: 0.25em;
}

.scheduleNotes__mark {
  flex: 0 0 1.2em;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 800px) {
  /* SPでも通常・特典付きの●を同サイズにする */
  .scheduleTable td i,
  .scheduleSp__row i,
  .scheduleTable td .performanceMark > i,
  .scheduleSp__row .performanceMark > i {
    width: 12px;
    height: 12px;
    flex-basis: 12px;
  }

  .performanceMark {
    width: 12px;
    height: 12px;
  }

  .performanceMark__event {
    top: -6px;
    right: -7px;
    font-size: 8px;
  }

  .scheduleNotes {
    margin: -24px 0 40px;
    font-size: 11px;
    line-height: 1.7;
  }
}

@media (min-width: 801px) {

  /* 東京PC：各セル内の●を中央に固定 */
  .performanceSchedule--tokyo .scheduleTable td {
    position: relative;
    text-align: center;
    vertical-align: middle;
  }

  .performanceSchedule--tokyo .scheduleTable td > i,
  .performanceSchedule--tokyo .scheduleTable td > .performanceMark {
    margin-left: auto;
    margin-right: auto;
  }

  /* 通常の●と特典付き●の基準サイズを統一 */
  .performanceSchedule--tokyo .scheduleTable td > i,
  .performanceSchedule--tokyo .performanceMark,
  .performanceSchedule--tokyo .performanceMark > i {
    width: 15px;
    height: 15px;
  }

  .performanceSchedule--tokyo .scheduleTable td > i {
    display: block;
  }

  .performanceSchedule--tokyo .performanceMark {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .performanceSchedule--tokyo .performanceMark__event {
    top: -7px;
    right: -8px;
  }
}

/* ========================================
   2026-07-31 yellow accent adjustment
   News / Ticket / Profile
======================================== */


/* 「開演」の文字だけ黄色背景 */
.scheduleTable__corner,
.scheduleSp__head span:first-child {
  background: transparent;
}

.scheduleTable__corner > span{
  display: inline-block;
  padding: 3px 8px;
  background: var(--yellow);
  color: var(--ink);text-align: center;
  line-height: 1;
}

.scheduleSp__head > span:first-child {
  display: inline-block;
  padding: 12px 0 0;
  background: var(--yellow);
  color: var(--ink);text-align: center;
  line-height: 1;
}




/* PROFILE：＋を黄色にし、開閉の手掛かりを強める */
.people summary {
  position: relative;
  transition:
    padding-left 0.35s var(--ease-out),
    background-color 0.35s ease;
}

.people summary:hover {
  padding-left: 10px;
  background: rgba(254, 227, 0, 0.08);
}

.people summary > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-left: 16px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 17px;
  line-height: 1;
  transition:
    transform 0.55s var(--ease-out),
    background-color 0.3s ease;
}

.people details[open] summary > span {
  transform: rotate(180deg);
}

/* details本文：JSの高さアニメーションと併用 */
.people details > p {
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.34s ease,
    transform 0.5s var(--ease-out);
}

.people details.is-closing > p,
.people details:not([open]) > p {
  opacity: 0;
  transform: translateY(-8px);
}

.people details.is-opening > p {
  opacity: 0;
  transform: translateY(-8px);
}

@media (max-width: 800px) {



  .people summary > span {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    font-size: 15px;
  }
  .people details {
    width: calc(100% + 4vw);
    margin-left: -2vw;
    margin-right: -2vw;
  }

  .people summary {
    padding-left: 8px;
    padding-right: 8px;
  }

  .people details > p {
    padding: 6px 8px 28px;
    font-size: 13px;
    line-height: 1.75;  background: rgba(255, 255, 255, 0.38);
  }
    
    
}

.venueName__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

.venueName__link::after {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  content: "";
  background-color: var(--yellow);

  /* 外部リンクアイコン */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.5 5H19V10.5' fill='none' stroke='%23181818' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19 5L11 13' fill='none' stroke='%23181818' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M16 13.5V18C16 18.55 15.55 19 15 19H6C5.45 19 5 18.55 5 18V9C5 8.45 5.45 8 6 8H10.5' fill='none' stroke='%23181818' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 15px;

  transition: transform 0.25s ease;
}

.venueName__link:hover::after {
  transform: translate(2px, -2px);
}


.nowrap{
    white-space: nowrap;
}

/* ========================================
   2026-08-03 TITLE all3 adjustment
======================================== */
.heroCopy__logo img,
.siteHeader__mark img,
.siteFooter__logo {
  height: auto;
}

@media (max-width: 800px) {
  .heroCopy {
    top: 50%;
  }

  .heroCopy__eyebrow {
    margin-top: 10px;
  }
}


.originalProduction{
    font-family: var(--en);
  width: min(100%, 920px);
  margin: 70px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(21, 21, 21, 0.28);
}


.originalProduction p{
  margin: 0;

  color: #333;
  font-size: 13.5px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}


@media (max-width: 800px){
  .originalProduction{
    width: 82%;
    margin-top: 50px;
    padding-top: 24px;
  }



  .originalProduction p{
    font-size: 12px;
    line-height: 1.55;
  }

}

/* ========================================
   2026-08-10 PRE-SALE NOTICE
======================================== */
.newsNotice {
  position: relative;
  grid-column: 2;
  overflow: hidden;
  margin-top: 22px;
 border: 0;
  background: var(--yellow);
  box-shadow: none;


}



.newsNotice__head {
  display: block;
  padding: 22px 24px 14px;
  border-bottom: 0;
}

.newsNotice__head span {
  display: none;
}

.newsNotice__head strong {
  display: block;
  font-size: clamp(22px, 2.4vw, 34px) ;
    font-weight: 700;
  letter-spacing: 0.03em;
}

.newsNotice__body {
  padding: 0 24px 24px;
}

.newsNotice__period {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
  font-weight: 600;
}

.newsNotice__period b {
  flex: 0 0 auto;
  padding: 5px 8px 4px;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 11px;
}

.newsNotice__period span {
  font-size: 17px;
  letter-spacing: 0.02em;
}

.newsNotice__note {
  margin: 18px 0;
  font-size: 11px;
  line-height: 1.65;
}

.newsNotice__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: min(100%, 430px);
  min-height: 54px;
  overflow: hidden;
  padding: 13px 58px 13px 18px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    color 0.25s var(--ease-out),
    transform 0.25s var(--ease-out);
    
      clip-path: polygon(
    0 0,
    100% 2%,
    97% 100%,
    3% 96%
  );
}

.newsNotice__btn span {
  position: relative;
  z-index: 2;
}

.newsNotice__btn::before {
  position: absolute;
  inset: 0 100% 0 0;
  z-index: 1;
  content: "";
  background: var(--yellow);
  transition: right 0.38s var(--ease-out);
}

.newsNotice__btn::after,
.floatingBanner::after {
  position: absolute;
  top: 50%;
  content: "";
  width: 28px;
  height: 12px;
  background-color: currentColor;
  clip-path: polygon(
    0 70%, 72% 70%, 72% 35%,
    100% 70%, 72% 100%, 72% 78%, 0 78%
  );
  transform: translateY(-50%);
  transition: transform 0.28s var(--ease-out);
}

.newsNotice__btn::after {
  right: 18px;
  z-index: 2;
}

.newsNotice__btn:hover {
  color: var(--ink);
  transform: translateY(-2px);
}

.newsNotice__btn:hover::before {
  right: 0;
}

.newsNotice__btn:hover::after,
.floatingBanner:hover::after {
  transform: translate(5px, -50%);
}

/* ----------------------------------------
   FLOATING PRE-SALE
---------------------------------------- */
.floatingBanner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  max-width: 224px;
  min-height: 74px;
  overflow: hidden;
  padding: 13px 46px 12px 18px;
  background: var(--yellow);
  color: var(--ink);
  filter: drop-shadow(5px 5px 5px var(--ink));
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.55s var(--ease-out),
    box-shadow 0.3s ease;
    
          clip-path: polygon(
    0 0,
    100% 2%,
    97% 100%,
    3% 96%
  );
}

.page-ready .floatingBanner {
  opacity: 1;
  transform: none;

  transition-delay:
    2s,
    2s,
    0s;
}

.floatingBanner:hover {
  background: var(--ink);
  color: var(--yellow);
  box-shadow: 7px 7px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.floatingBanner::after {
  right: 16px;
}

.floatingBanner span {
  grid-column: 1;
  font: 700 15px / 1.25;
  letter-spacing: 0.03em;
}

.floatingBanner strong {
  grid-column: 1;
  font: 700 18px / 1.15;
  letter-spacing: 0.04em;
}


@media (max-width: 800px) {
  .newsNotice {
    margin: 18px 0 8px 0;
  }

  .newsNotice::before {
    width: 64px;
    height: 64px;
  }

  .newsNotice__head {
    padding: 18px 17px 10px;
  }

  .newsNotice__head strong {
    font-size: 17px;
  }

  .newsNotice__body {
    padding: 0 17px 18px;
  }

  .newsNotice__period {
    gap: 9px;
    margin-bottom: 13px;
  }

  .newsNotice__period span {
    font-size: 14px;
  }

    .newsNotice__btn span {
    font-size: 16px;
  }
        
  .newsNotice__note {
    font-size: 10px;
  }

  .floatingBanner {
    left: 5px;
    bottom: 5px;
    width: 60%;
    min-height: 50px;
    padding: 8px 30px 6px 14px;
    box-shadow: 2px 2px 0 var(--ink);
      
  }

  .floatingBanner span {
    font-size: 13px;
  }

  .floatingBanner strong {
    font-size: 16px;
  }
}


/* ========================================
   2026-08-24 TICKET GUIDE BUTTONS
======================================== */
.ticketGuide {
  margin-top: 24px;
}

.ticketGuide__label {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ticketGuide__buttons {
  display: grid;
  gap: 10px;
  width: min(100%, 520px);
}

.ticketGuide__btn {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  overflow: hidden;
  padding: 12px 58px 12px 18px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--text);
  clip-path: polygon(0 0, 100% 3%, 98% 100%, 2% 97%);
  transition:
    color 0.28s var(--ease-out),
    transform 0.28s var(--ease-out);
}

.ticketGuide__btn::before {
  position: absolute;
  inset: 0 100% 0 0;
  z-index: 0;
  content: "";
  background: var(--yellow);
  transition: right 0.38s var(--ease-out);
}

.ticketGuide__btn::after {
  position: absolute;
  top: 50%;
  right: 18px;
  z-index: 1;
  width: 28px;
  height: 12px;
  content: "";
  background: currentColor;
  clip-path: polygon(0 70%, 72% 70%, 72% 35%, 100% 70%, 72% 100%, 72% 78%, 0 78%);
  transform: translateY(-50%);
  transition: transform 0.28s var(--ease-out);
}

.ticketGuide__btn span,
.ticketGuide__btn small {
  position: relative;
  z-index: 1;
}

.ticketGuide__btn span {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ticketGuide__btn small {
  display: block;
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.ticketGuide__btn:hover {
  color: var(--ink);
  transform: translateY(-2px);
}

.ticketGuide__btn:hover::before {
  right: 0;
}

.ticketGuide__btn:hover::after {
  transform: translate(5px, -50%);
}

@media (max-width: 800px) {
  .ticketGuide {
    margin-top: 20px;
  }

  .ticketGuide__label {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .ticketGuide__btn {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;

    min-height: 56px;
    padding: 10px 44px 10px 14px;
  }

  .ticketGuide__btn span {
    font-size: 13px; /* 14pxの90% */
    white-space: nowrap;
  }

  .ticketGuide__btn small {
    font-size: 8.5px;
    white-space: nowrap;
  }
}
