@charset "utf-8";
:root{
  --bg:#fbfbfa;
  --text:#111;
  --sub:#555;
  --line:#d2cbc3;

  /* Layout */
  --wrap: 980px;        /* ページ全体の最大幅 */
  --measure: 80ch;      /* 本文の行長（海外の劇場系で多い） */
  --gutter: 24px;

  /* Accent */
  --wine-r:107;
  --wine-g:45;
  --wine-b:45;

  /* Fonts */
  --font-serif: "Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif;
  --font-mincho: "Shippori Mincho B1",serif;
  --font-sans: ui-sans-serif,system-ui,-apple-system,"Hiragino Sans","Noto Sans JP",sans-serif;
}

html{ font-size:16px; scroll-behavior:smooth; }
@media(max-width:768px){ html{ font-size:15px; } }

html,body{ height:100%; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-serif);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

/* 背景：中央白場＋3ポイント（全体共通） */
html::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
  opacity:0.35;
  background:
    radial-gradient(circle at 18% 22%,
      rgba(var(--wine-r),var(--wine-g),var(--wine-b),.42) 0%,
      rgba(var(--wine-r),var(--wine-g),var(--wine-b),.16) 38%,
      rgba(var(--wine-r),var(--wine-g),var(--wine-b),0) 70%),
    radial-gradient(circle at 84% 18%,
      rgba(var(--wine-r),var(--wine-g),var(--wine-b),.28) 0%,
      rgba(var(--wine-r),var(--wine-g),var(--wine-b),.10) 42%,
      rgba(var(--wine-r),var(--wine-g),var(--wine-b),0) 74%),
    radial-gradient(circle at 24% 86%,
      rgba(var(--wine-r),var(--wine-g),var(--wine-b),.24) 0%,
      rgba(var(--wine-r),var(--wine-g),var(--wine-b),.08) 46%,
      rgba(var(--wine-r),var(--wine-g),var(--wine-b),0) 78%),
    radial-gradient(ellipse at 50% 45%,
      rgba(251,251,250,1) 0%,
      rgba(251,251,250,1) 44%,
      rgba(251,251,250,.85) 62%,
      rgba(251,251,250,0) 82%);
}
body > *{ position:relative; z-index:1; }

/* =========================
   Layout primitives
   ========================= */
.wrap{
  max-width:var(--wrap);
  margin:0 auto;
  padding:0 var(--gutter);
}
.section{ padding:8.5rem 0; }
@media(max-width:768px){ .section{ padding:6.8rem 0; } }

/* 本文：幅を決め、左から始める（ブロック自体は中央のまま） */
.prose{
  margin:22px auto 0;
  max-width:var(--measure);
  font-family:var(--font-mincho);
  font-size:1rem;
  line-height:2.0;
  text-align:left;
}
@media(max-width:768px){
  .prose{ max-width: 100%; font-size:1.0rem; line-height:2.0; }
}

/* セクション見出し：公的・ラベル風 */
.section-title{
  margin:0 auto 2.25rem;
  font-family:var(--font-mincho);
  font-weight:600;
  font-size:2rem;
  letter-spacing:.26em;
  text-transform:uppercase;
  color:var(--sub);
  text-align:center;
}
@media(max-width:768px){
.section-title{  font-size:1.7rem;letter-spacing:0; }
}
/* 補助ラベル（中央線付き）：必要な場面だけ中央に */
.sg-kicker{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  color:var(--sub);
  font-family:var(--font-sans);
  font-size:0.75rem;
  letter-spacing:.14em;
  margin:0 auto 22px;text-align: center;
}
.sg-kicker::before,
.sg-kicker::after{
  content:"";
  height:1px;
  background:var(--line);
  width:90px;
}

/* =========================
   HERO
   ========================= */
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  opacity: 0;
  filter: blur(8px);
  transform: scale(1.02);
  animation: heroReveal 2.2s ease-out forwards;

  position:relative;
}
@keyframes heroReveal{
  to{ opacity:1; filter:blur(0); transform:scale(1); }
}
.hero__question{
  font-family:var(--font-mincho);
  line-height:1.45;
  margin:0;
}
.hero__q1{ font-size:1.35rem; display:block; }
.hero__q2{ font-size:1.6rem; display:block; margin-top:.18em; letter-spacing:.02em; }
@media(max-width:768px){
  .hero__q1{ font-size:1.05rem; }
  .hero__q2{ font-size:1.2rem; }
}
.hero__logo img{
  width:600px;
  max-width:90%;
  height:auto;
  display:block;
  margin:22px auto 0;
}
@media(max-width:768px){ .hero__logo img{ max-width:80%; } }
.hero__credit{
  margin-top:18px;
  color:var(--sub);
  font-size:0.875rem;
  line-height:1.9;
  font-family:var(--font-sans);
}

/* HERO 告知スタンプ */
.hero-orbit{
  position:absolute;
  right:10vw;
  top:60%;
  transform:translateY(-50%);
  width:190px;
  height:190px;
  display:block;
  text-decoration:none;
  color:inherit;
  z-index:2;
  filter:drop-shadow(0 10px 22px rgba(0,0,0,.08));
}
.hero-orbit__svg{
  width:100%;
  height:100%;
  display:block;
  animation: orbitSpin 12s linear infinite;
  transform-origin:50% 50%;
}
@keyframes orbitSpin{ to{ transform:rotate(360deg); } }
.hero-orbit__text{
  font-family:var(--font-sans);
  font-size:12px;
  letter-spacing:.12em;
 fill: rgba(107,45,45,.58); /* ←赤茶に */
}
.hero-orbit__center{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  text-align:center;
  gap:.2em; /* ←ここで行間コントロール */
  background:rgba(251,251,250,.55);
  backdrop-filter:saturate(140%) blur(6px);
  border:1px solid rgba(210,203,195,.9);
  border-radius:999px;
  transform:scale(.76);
}
.hero-orbit__top{
  display:block;
  font-family:var(--font-sans);
  font-size:.86rem;
  letter-spacing:.14em;
  color: rgba(107,45,45,.78);
  line-height:1.1;
}
.hero-orbit__sub{
  display:block;
   margin-top:0; /* 削除 */
  font-family:var(--font-sans);
  font-size:.72rem;
  letter-spacing:.10em;
  color: rgba(107,45,45,.62);
}
@media (hover:hover){
  .hero-orbit:hover .hero-orbit__center{ transform:scale(.78); }
  .hero-orbit:hover .hero-orbit__svg{ animation-duration:9s; }
}
@media (max-width:768px){
  .hero-orbit{
    position:static;
    transform:none;
    margin:18px auto 0;
    width:154px;
    height:154px;
  }
}

@media(min-width:769px){ 
    .intro .lead,.intro .smartphone-stop,.intro .lead-sub,.intro p{ margin-left:auto;margin-right:auto;text-align: center; } 
}
@media(max-width:768px){ 
    .intro .lead,.intro .intro p{ margin-left:auto;margin-right:auto;text-align: center; } 
}


/* =========================================================
   TOPICS / NEWS
========================================================= */
.topics-content{
  margin: 0 auto;
  max-width: var(--measure);
  text-align: left;
}

.news-list{
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

.news-item{
  position: relative;
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1rem;

  margin: 0;
  padding: 0 0 0 1rem;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  align-items: start;
}

.news-item::before{
  content:"";
  position: absolute;
  left: 0;
  top: .15rem;
  bottom: .15rem;
  width: 1px;
  background: rgba(var(--wine-r),var(--wine-g),var(--wine-b),.55);
}

.news-date{
  color: rgba(var(--wine-r),var(--wine-g),var(--wine-b),.82);
  font-family: var(--font-sans);
  letter-spacing: .12em;
  font-size: .78rem;
  line-height: 1.4;
  white-space: nowrap;
}

.news-title{
  color: rgba(17,17,17,.88);
  font-family: var(--font-serif);
  font-size: .98rem;
  line-height: 1.9;
  display: inline-block;
  text-decoration: none;
}

.news-title:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  color: rgba(var(--wine-r),var(--wine-g),var(--wine-b),.88);
}

.latest_more{
  margin-top: 2.2rem;
  display: flex;
  justify-content: flex-end;
}

.latest_more a{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  color: rgba(17,17,17,.72);
  font-family: var(--font-sans);
  letter-spacing: .14em;
  font-size: .74rem;
  text-transform: uppercase;
  padding: .35rem 0;
  text-decoration: none;
}

.latest_more a::before{
  content:"";
  width: 5.5rem;
  height: 1px;
  background: rgba(var(--wine-r),var(--wine-g),var(--wine-b),.55);
}

.latest_more a:hover{
  color: rgba(var(--wine-r),var(--wine-g),var(--wine-b),.9);
}

.latest_more a:hover::before{
  background: rgba(var(--wine-r),var(--wine-g),var(--wine-b),.82);
}

@media (max-width: 768px){
  .topics-content{
    max-width: 100%;
  }

  .news-list{
    gap: 1.4rem;
  }

  .news-item{
    grid-template-columns: 1fr;
    gap: .35rem;
    padding-left: .85rem;
  }

  .news-item::before{
    top: .1rem;
    bottom: .1rem;
  }

  .news-date{
    font-size: .72rem;
    letter-spacing: .1em;
  }

  .news-title{
    font-size: .92rem;
    line-height: 1.8;
  }

  .latest_more{
    margin-top: 1.6rem;
    justify-content: flex-start;
  }

  .latest_more a{
    font-size: .7rem;
    gap: .7rem;
  }

  .latest_more a::before{
    width: 4.2rem;
  }
}
/* =========================
   INTRO / STORY
   ========================= */

.intro__rule{
  margin:2rem auto 0;
  width:min(520px,72%);
  height:1px;
  background:var(--line);
  opacity:.9;
}

/* 段落間：紙面っぽく */
.prose p{ margin:0 0 1.15em; }
.prose p:last-child{ margin-bottom:0; }

.lead{
  font-family:var(--font-mincho);
  font-size:1.45rem;
  line-height:1.55;
  margin:0 0 3.2em;
}


.smartphone-stop{
  font-family:var(--font-mincho);
  font-size:1.35rem;
  line-height:1.6;
  margin:2.8em auto 3.6em;text-align: center;

}
.lead-sub{
  font-family:var(--font-mincho);
  font-size:1.15rem;
  line-height:1.75;
  margin:3em 0 1.4em;

  border-bottom:1px solid rgba(155,155,155,.5);
  padding-bottom:.3em;
}

.note{
  display:block;
  margin-top:.4em;
  font-size:.85rem;
  line-height:1.8;
  color:var(--sub);
  font-family:var(--font-sans);
}
.comment-label{
  text-align:center;
  font-family:var(--font-sans);
  margin:0 0 1.6rem;
}

.comment-label__main{
  display:block;
  font-size:.72rem;
  letter-spacing:.32em;
  color:rgba(17,17,17,.45);
}

.comment-label__sub{
  display:block;
  margin-top:.35em;
  font-size:.55rem;
  letter-spacing:.18em;
  color:rgba(17,17,17,.35);
}


/* COMMENT tab */
.commentTab{
  max-width: var(--measure);
  margin: 0 auto;  text-align: center;   /* 中央配置 */
}

.commentTab__btn{
  list-style: none;
  cursor: pointer;
  user-select: none;

  display: inline-flex;
  align-items: center;
  gap: .6em;

  padding: .85em 1.15em;
  border: 1px solid var(--line);
  border-radius: 999px; /* 角丸 */
  background: rgba(251,251,250,.65);
  backdrop-filter: saturate(140%) blur(6px);

  font-family: var(--font-sans);
  font-size: .78rem;
  letter-spacing: .18em;
  color: rgba(17,17,17,.78);
  text-transform: uppercase;
}

/* summaryの標準三角を消す */
.commentTab__btn::-webkit-details-marker{ display:none; }
.commentTab__btn::marker{ content:""; }

/* 右端に小さな矢印 */
.commentTab__btn::after{
  content:"";
  width: .55em;
  height: .55em;
  border-right: 1px solid rgba(17,17,17,.55);
  border-bottom: 1px solid rgba(17,17,17,.55);
  transform: rotate(45deg);
  transition: transform .22s cubic-bezier(.22,.61,.36,1);
  opacity: .8;
}

/* open時は矢印を上向きに */
.commentTab[open] > .commentTab__btn::after{
  transform: rotate(225deg);
}

/* 本文 */
.commentTab__body{
  margin-top: 1.2rem;text-align: left;
}

.commentTab__body p{
  margin: 0 0 1.15em;
}
.commentTab__body p:last-child{
  margin-bottom: 0;
}

@media (hover:hover){
  .commentTab__btn:hover{
    transform: translateY(-1px);
  }
}


/*cast*/
.cast-item .person__img{
  width:200px;
  max-width:70%;
  display:block;
  margin:1rem auto; /* 写真は中央 */
}
.person2__img{
  width:360px;text-align: center;
  max-width:82%;
  display:block;
  margin:0 auto; /* ティモフェイ・クリャービン */
}
.person__role{
  margin:10px 0 0;
  color:var(--sub);
  font-size:0.8125rem;
  line-height:1.9;
  font-family:var(--font-sans);
  text-align:center; /* ラベルは中央 */
}
.person__name{
  margin:0;
  font-family:var(--font-mincho);
  font-size:1.75rem;
  text-align:center; /* 名前は中央 */
}
#staff .person__name{
  margin:0;
  font-family:var(--font-mincho);
  font-size:1.7rem;
  text-align:center; /* 名前は中央 */
}
.cast-extra{
  margin:2em auto 0;}

.cast-extra__list{
  list-style:none;
  margin:0 auto;
  padding:0;
  max-width:760px;

  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:18px 28px;

  font-family:var(--font-mincho);
  font-size:1.25rem;
  line-height:1.9;
  text-align:center;
}

.cast-extra__list li{
  white-space:nowrap;
}

.cast-extra__break{
  flex-basis:100%;
  width:0;
  height:0;
  margin:0;
  padding:0;
  font-size:0;
  line-height:0;
}

/* SPは1名ずつ */
@media (max-width:768px){
	
	.cast-extra{
  margin:6em auto 0;}
	
  .cast-extra__list{
    display:block;
    max-width:none;
    text-align:center;
  }

  .cast-extra__list li{
    display:block;
    margin:0 0 .35em;
  }

  .cast-extra__break{
    display:none;
  }
	
	#staff .person__name{

  font-size:1.6rem;

}
	
	
}/**/



.cast-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:48px 24px;
  margin-top:2rem;
}

.cast-item{
  text-align:center;
}


/* ボタン */
.comment-trigger{
  margin:10px 0 0;
  text-align:center;
}

.comment-btn{border-radius: 10px;
  font-family:var(--font-sans);
  font-size:.8rem;letter-spacing: .05;
  padding:8px 18px;
  border:1px solid var(--line);
  background:transparent;
  cursor:pointer;
}

/* ===== モーダル ===== */
.comment-modal{
  position:fixed;
  inset:0;
  z-index:100;
  opacity:0;
  pointer-events:none;
  transition:opacity .4s ease;
}

.comment-modal.is-open{
  opacity:1;
  pointer-events:auto;
}

.comment-modal__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.4);
}

/* 中身 */
.comment-modal__inner{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:min(680px, 88%);
  background:#fff;
  padding:40px 32px;
  box-shadow:0 20px 60px rgba(0,0,0,.2);
}

/* CLOSE */
.comment-modal__close{
  position:absolute;
  top:14px;
  right:16px;
  font-size:.7rem;
  letter-spacing:.14em;
  border:none;
  background:none;
  cursor:pointer;
}

/* 本文 */
.comment-modal__body{
  font-family:var(--font-mincho);
  font-size:1rem;
  line-height:2.05;text-align: left;
}



/* SP */
@media(max-width:768px){
  .cast-grid{
    grid-template-columns:1fr;
    gap:40px;
  }
}


/* =========================
   Person blocks (写真は中央)
   ========================= */
.person{ }


/* quoteは左起点（幅固定） */
.quote{
  margin:22px auto 0;
  max-width:var(--measure);
  font-family:var(--font-mincho);
  font-size:1rem;
  line-height:2.0;
  text-align:left;
}
@media(max-width:768px){ .quote{ max-width:100%; font-size:1.05rem; } }

/* キャスト（3人） */
.cast-more{
  margin:2.2rem auto 0;
  max-width:var(--measure);
  padding-top:1.5rem;
}

.cast-more .person__name{ margin:0 0 4rem; }



.staff-credit{text-align: center;
  margin:56px auto 0;
 max-width:680px;
  padding-top:22px;
  border-top:1px solid var(--line);

  font-family:var(--font-sans);
  font-size:0.9rem;
  line-height:2;
  color:var(--sub);
}

/* PC：流し */
.staff-credit span{
  display:inline;
  margin-right:.8em;
}

/* SP：役職ごと改行 */
@media(max-width:768px){
	.staff-credit{  font-size:.88rem;}
  .staff-credit span{
    display:block;
    margin:0 0 .35em;
  }
}







/* =========================
   Schedule / Information
   ========================= */
.schedule{ padding: 0;}

/*東京公演エリア囲み*/
.performance{
  margin:2.6rem auto 0;
  max-width:var(--measure);
  padding-top:1.6rem;
}

/*東京公演などみだし*/
.performance__headline{font-weight: 700;padding-bottom: 1rem;
 font-family:var(--font-sans);
  color:var(--sub);
  font-size:1.4rem;
  line-height:1.85;margin:1rem auto;text-align: center;
	border-bottom:1px solid var(--line);
}

/*公演日程*/
.performance__periodText{
  display:block;font-weight: 700;
}


/*テキストエリア*/
.performance__dl{
  margin:0;
  display:grid;
  grid-template-columns:8.5rem 1fr;
  row-gap:0.8rem;
  column-gap:1rem;
  font-family:var(--font-sans);
  font-size:1rem;
  line-height:1.9;
  /*color:rgba(17,17,17,.88);*/
}
.performance__dl dt{ color:var(--sub); }
.performance__note{
  font-family:var(--font-sans);
  color:var(--sub);
  font-size:1rem;
  line-height:1.85;margin:1rem auto;text-align: center;
}



/* 各行に下線 */
.performance__dl dt,
.performance__dl dd{
  padding:1rem 0;
  border-bottom:1px solid var(--line);
}



@media(max-width:768px){

  .performance__dl{
    grid-template-columns:1fr;
  }

  .performance__dl dt{
    margin-top:1.2rem;
    font-size:1rem;
    letter-spacing:.08em;
  }

  .performance__dl dd{
    margin:0 0 .8rem;
  }


	

  .performance__dl dd{
    border-bottom:none;
    padding:.6rem 0;
  }
	
	
}

/* 販売窓口リンク */

  .ticketVendors{
    margin: 0;padding: 0;
  }


.ticketVendor{
  display:inline-flex;
  align-items:center;
  gap:10px;

  text-decoration:none;
  color:inherit;

  padding-bottom:4px;
  border-bottom:1px solid rgba(17,17,17,.3);

  transition:color .25s ease, border-color .25s ease;
}

/* 矢印 */
.ticketVendor__arrow{
  position:relative;
  width:28px;
  height:6px;
  flex:0 0 auto;
  transition:transform .35s cubic-bezier(.22,.61,.36,1);
}

/* 線 */
.ticketVendor__arrow::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:100%;
  height:1px;
  background:currentColor;
  transform:translateY(-50%);
}

/* 先端（小さく） */
.ticketVendor__arrow::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  width:6px;
  height:6px;
  border-top:1px solid currentColor;
 transform:translateY(-50%) rotate(45deg);
}

/* hover（控えめに動く） */
@media (hover:hover){
  .ticketVendor:hover .ticketVendor__arrow{
    transform:translateX(4px);
  }

  .ticketVendor:hover{
    color:rgba(0,0,0,.5);
    border-color:rgba(0,0,0,.5);
  }
}




/* 1行ずつ */
.ticketBlock{list-style: none; /* 点を消す */
  margin-bottom:.8rem;
  font-family:var(--font-sans);
  font-size:1rem;  font-weight: 700;
  line-height:1.7;
}
/* リンク */
.ticketVendor{
  text-decoration:none;
  border-bottom:1px solid rgba(0,0,0,.3);
  padding-bottom:2px;
  color:inherit;
}
.ticketVendor{
  background: linear-gradient(
    transparent 60%,
    rgba(255,255,255,.6) 60%
  );
  padding: 0 .2em;
  display:inline-flex;
}
.ticketVendor:hover{
  opacity:.7;
}


/* 補足テキスト */
.ticketMetaText{
  font-size:.9rem;
  color:var(--sub);
  line-height:1.6;
}

/* TEL */
.ticketTel{
  font-size:1rem;
}

.ticketTel span{
  display:block;
  font-size:.8rem;
  color:var(--sub);
}



/*  */
.ticketMetaMain{
  display:flex;
  align-items: baseline;          /* ←ここが肝：文字と■を同じ基準に */
  gap:12px;

  padding:8px 0;
  border-left:6px solid transparent;

  font-size:15px;
  font-weight:700;
}

/* ■ */
.ticketMetaMain::before{
  content:"";
  width:5px;
  height:5px;
  background:#999;
  flex:0 0 auto;

  position: relative;             /* ←微調整のため */
  top: -0.3em;                   /* ←ベースラインに対してほんの少し上げる */
}

.ticketMetaMain .ticketMetaLine{ margin:0; }
.ticketMetaMain .ticketTel{ margin:0; padding-left:0; }


/* チケット注釈まわり */
dd.ticketNotes{
  margin: 0;
  line-height: 1.9;
}

/* ※行そろえ */
dd.ticketNotes .noteLine{
  display: block;
  padding-left:2.5em;
  text-indent: -1em;
}

/* 見出し */
dd.ticketNotes .noteHead{
  display: block;
  margin-top: 1.2em;
  padding-left:2.5em;
  text-indent: -1em;
}

/* 下の説明 */
dd.ticketNotes .noteSub{
  display: block;
  padding-left:2.5em;
  text-indent: -1em;
}


.performance a{
  color: rgba(80,80,80,1);      /* 本文トーンに合わせる */
  text-decoration: none;
  border-bottom: 1px solid rgba(80,80,80,0.4);
  transition: all .25s ease;
}

/* hover：ちょい浮かせる */
.performance a:hover{
  color: rgba(20,20,20,1);
  border-bottom: 1px solid rgba(20,20,20,1);
  background: rgba(0,0,0,0.04); /* ほんのり紙に乗る感じ */
}

/* active（スマホタップ時の気持ちよさ） */
.performance a:active{
  background: rgba(0,0,0,0.08);
}


@media(max-width:768px){

  .ticketVendors{
    display:block;
  }

  .ticketBlock{
    margin-bottom:.8rem;
  }
	
/* 補足テキスト */
.ticketMetaText{
  font-size:0.9rem;

}

	
	/* ※行そろえ */
dd.ticketNotes .noteLine{
  padding-left:1em;
  text-indent: -1em;
}

/* 見出し */
dd.ticketNotes .noteHead{
  padding-left:1em;
  text-indent: -1em;
}

/* 下の説明 */
dd.ticketNotes .noteSub{
  padding-left:1em;
  text-indent: -1em;
}

	
	
}

/* =========================
   Reveal
   ========================= */
.reveal{
  opacity:0;
  filter:blur(10px);
  transform:translateY(16px);
  transition:
    opacity .85s cubic-bezier(.22,.61,.36,1),
    filter .85s cubic-bezier(.22,.61,.36,1),
    transform .85s cubic-bezier(.22,.61,.36,1);
  will-change:opacity,filter,transform;
}
.reveal.is-in{
  opacity:1;
  filter:blur(0);
  transform:translateY(0);
}

/* =========================
   Footer
   ========================= */
footer{
  padding:6.5rem 0 5rem;
  text-align:center;
  font-size:0.8125rem;
  color:var(--sub);
  font-family:var(--font-sans);
}

/* 追加：画像deco（2枚固定） */
.bg-deco{
  position:fixed;
  pointer-events:none;
  z-index:0;
  opacity:.34;
  filter:blur(12px);
  animation-timing-function:ease-in-out;
  animation-iteration-count:infinite;
  animation-direction:alternate;
  will-change:transform;
}
.bg-deco-1{
  top:-14vh;
  left:-18vw;
  width:min(900px,72vw);
  opacity:.50;
  animation-name:decoFloat1;
  animation-duration:12s;
}
.bg-deco-2{
  bottom:-8vh;
  right:-8vw;
  width:min(720px,58vw);
  opacity:.68;
  transform:rotate(90deg);
  animation-name:decoFloat2;
  animation-duration:14s;
  animation-delay:-6s;
}
@keyframes decoFloat1{
  0%{ transform:translate3d(0,0,0) rotate(0deg); }
  100%{ transform:translate3d(2vw, 10vh, 0) rotate(4deg); }
}
@keyframes decoFloat2{
  0%{ transform:translate3d(0,0,0) rotate(90deg); }
  100%{ transform:translate3d(-2vw, -10vh, 0) rotate(94deg); }
}
@media(max-width:768px){
  .bg-deco{ filter:blur(10px); }
  .bg-deco-1{ width:78vw; left:-22vw; top:-12vh; opacity:.52; }
  .bg-deco-2{ width:62vw; right:-22vw; bottom:-22vh; opacity:.46; }
}

.site-footer{
  padding:5rem 0 3rem;
  text-align:center;
  font-family:var(--font-sans);
  color:var(--sub);
}

/* 名義全体 */
.footer-credit{
  max-width:720px;
  margin:0 auto 2.5rem;
  font-size:.75rem;
  line-height:1.9;
}

/* ラベル */
.credit-label{
  display:inline-block;
  color: rgba(0,0,0,0.8);
  font-size:.7rem;
  letter-spacing:.12em;
  margin-bottom: 0.5em;
  position:relative;
}

.credit-label::after{
  content:"";
  display:block;
  width:2.5em;           /* ←長さ調整ここ */
  height:1px;
  background:rgba(0,0,0,.3);
  margin:.4em auto 0;    /* ←中央に */
}
/* 行 */
.credit-line{
  margin-bottom:1.2rem;
}

/* 助成ブロック */

/* ロゴ */
.credit-logo-bunka{
  width:42px;
  height:auto;
  margin-top:2px;
}
.credit-logo-tmt{
  width:160px;
  height:auto;
  margin-top:2px;
}
/* テキスト */
.credit-text{
  display:inline-block;
  line-height:1.7;
}

/* SNS */
.footer-sns{
  margin:4rem 0 1.5rem;
}

.footer-sns .sns-row{
  display:flex;
  justify-content:center;
  gap:30px;
}

.footer-sns .sns-ico{
  width:22px;
  height:22px;
  opacity:.7;
}

.footer-sns .sns-ico:hover{
  opacity:1;
  transform:translateY(-2px);
}

/* コピー */
.copyright{margin-top:30px;
  font-size:.7rem;
  opacity:.7;
}
/* =========================
   Utility
   ========================= */
.pc { display: none; }
@media (min-width: 992px) { .pc { display: block; } }
.sp { display: none; }
@media (max-width: 767px) { .sp { display: block; } }





/* ========= 星取表 ========= */
/*星取エリア囲み*/
.scheduleMount{
  margin-top: 1.2rem;
}


.scheduleGroup{ 
  margin:0;
}

.schedulePc{padding:5px;
  display:block;
	background-color:#eee9e7;
}

.schedulePc__head,
.schedulePc__row{
  display:grid;
  grid-template-columns: 56px repeat(var(--cols), 38px);
  align-items:center;
}
.schedulePc__row::before{
  content:"";
  position:absolute;
  left:56px;
  right:0;
  top:50%;
  height:1px;
  background:rgba(68,88,122,.55);
  transform:translateY(-50%);
}
.schedulePc__head{
  margin-bottom:.45rem;
}

.schedulePc__headCell{
  text-align:center;
  color:var(--text);
}

.schedulePc__date{
  font-size:0.8rem;
  line-height:1;
}

.schedulePc__weekday{
  margin-top:.22rem;
  font-size:.8rem;
  line-height:1;
}

.schedulePc__row{
  position:relative;
  min-height:42px;
}

.schedulePc__row::before{
  content:"";
  position:absolute;
  left:56px;
  right:0;
  top:50%;
  height:1px;
  background:rgba(0,0,0,0.9);
  transform:translateY(-50%);
}

.schedulePc__time{
  position:relative;
  z-index:1;
  padding-right:10px;
  text-align:left;
  font-size:.95rem;
}

.schedulePc__cell{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:center;
	background-color:#eee9e7;
}


/* ベース記号＋追加記号を重ねる */
/* ベース */
.scheduleMarkWrap{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px;
  height:18px;
}

/* メイン */
.scheduleMark{
  display:inline-block;
  width:15px;
  height:15px;
  position:relative;
}

/* ○ */
.scheduleMark--circle::before{
  content:"";
  position:absolute;
  inset:0;
  border:1.2px solid currentColor;
  border-radius:50%;
}

/* ◇ */
.scheduleMark--diamond::before{
  content:"";
  position:absolute;
  inset:2px;
  border:1.2px solid currentColor;
  transform:rotate(45deg);
}

/* ☆ */
.scheduleMark--star::before{
  content:"☆";
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  font-size:18px;
  line-height:1;
}

/* 休演 */
.scheduleMark--closed{
  font-size:.8rem;
  line-height:1;
}

/* ===== サブマーク共通 ===== */
.scheduleMarkSub{
  position:absolute;
  display:block;
  line-height:1;
  font-family:var(--font-sans);
  pointer-events:none;
}

/* ※ */
.scheduleMarkSub--noteA::before{
  content:"※";
  font-size:9px;
}

/* ＊ */
.scheduleMarkSub--noteB::before{
  content:"＊";
  font-size:9px;
}

/* ===== 複数配置（ここが重要） ===== */

/* 1個目 */
.scheduleMarkSub:nth-child(2){
  top:-11px;
  right:-8px;
}

/* 2個目 */
.scheduleMarkSub:nth-child(3){
 top:2px;
  right:-8px;
}

/* 3個目 */
.scheduleMarkSub:nth-child(4){
  top:-6px;
  left:-4px;
}

/* SP微調整 */
@media (max-width:768px){
  .scheduleMarkSub:nth-child(2){

  }
  .scheduleMarkSub:nth-child(3){

  }
  .scheduleMarkSub:nth-child(4){
    top:-5px;
    left:-3px;
  }
}
/*PC休演*/
.scheduleMark--closed{color:  rgba(0,0,0,.5);
  width:auto;
  height:auto;
  font-size:.8rem;
  letter-spacing:.08em;
  line-height:1;
}

/*PC前半割/平日夜割*/
.scheduleLegend{
  display:flex;
  justify-content:flex-end;
  gap:1rem;
  margin-top:.85rem;
  font-family:var(--font-sans);
  font-size:.82rem;
}

.scheduleLegend__item{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
}



/* ========= 星取表 見出しと赤色 ========= */

/* PC左上の月見出し */
.schedulePc__month{
  text-align:center;
  font-family:var(--font-sans);
  font-size:1.05rem;
  line-height:1;
}

/* 日・祝を赤く */
.schedulePc__headCell.is-red,
.scheduleSp__cell.is-red{
  color:rgba(146,0,2,0.5);
}

/* PCの日付まわり少し締める */
.schedulePc__date{
  font-size:0.95rem;
  line-height:1;
}

.schedulePc__weekday{
  margin-top:.24rem;
  font-size:.82rem;
  line-height:1;
}





/* 祝・日だけ少し強めに */
.scheduleSp__cell--date.is-red .scheduleSp__date,
.scheduleSp__cell--date.is-red .scheduleSp__weekday,
.schedulePc__headCell.is-red .schedulePc__date,
.schedulePc__headCell.is-red .schedulePc__weekday{
  color:rgba(146,0,2,0.5);
  font-weight:500;
}


.scheduleNote{
  position:absolute;
  top:-4px;
  right:5px;
  font-size:.9rem;
  line-height:1;
  opacity:.9;
}
.scheduleNoteText{
  margin-top: .45rem;
  font-size: .9rem;
  line-height: 1.6;
  color: var(--sub);
  font-family: var(--font-sans);
}


/* ======== SP ======== */
.scheduleSp{
  display:none;
  margin-top:.8rem;
  border-top:1px solid rgba(68,88,122,.25);
  border-left:1px solid rgba(68,88,122,.25);
}

.scheduleSp__head,
.scheduleSp__row{
  display:grid; 
  grid-template-columns: 62px 34px repeat(var(--cols), minmax(48px, 1fr));
}

.scheduleSp__cell{  position: relative;
  min-height:44px;
  border-right:1px solid rgba(68,88,122,.25);
  border-bottom:1px solid rgba(68,88,122,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:rgba(255,255,255,.18);
}

/* SP 左上の月見出し */
.scheduleSp__cell--month{
  font-family:var(--font-sans);
  font-size:1rem;
}

/*開演時間*/
.scheduleSp__cell--head{
  font-family:var(--font-sans);
  font-size:1rem;
  color:var(--text); 
}

.scheduleSp__cell--date{
  flex-direction:column;
  gap:.08rem;
  color:var(--text);
}

/* SP 日付セル */
.scheduleSp__date{
  font-size:1rem;
  line-height:1;
}

.scheduleSp__weekday{
  font-size:.78rem;
  line-height:1;
}


.scheduleSp__empty{

}




@media (max-width:768px){
  .schedulePc{
    display:none;
  }

  .scheduleSp{
    display:block;
  }
	
	

  .scheduleLegend{
    justify-content:flex-start;
    flex-wrap:wrap;
    gap:.7rem 1rem;
    font-size:.9rem;
  }
}



/* =========================
   Global nav
   ========================= */
section[id]{ scroll-margin-top:88px; }

.gNav{
  position:fixed;
  top:0;
  right:0;
  left:0;
  z-index:80;
  pointer-events:none;
}

.gNav__brand,
.gNav__toggle,
.gNav__panel{
  pointer-events:auto;
}

.gNav__brand{
  position:absolute;
  z-index:110;
  left:20px;
  top:18px;
  color: rgba(var(--wine-r),var(--wine-g),var(--wine-b),.65);
  mix-blend-mode:multiply;
  text-decoration:none;
  font-family:var(--font-sans);
  font-size:.74rem;
  letter-spacing:.28em;
}

.gNav__toggle{
  position:absolute;
  z-index:120;
  right:18px;
  top:12px;
  width:66px;
  height:66px;
  border:0;
  background: rgba(251,251,250,.35); /* 紙寄り */
  backdrop-filter:saturate(140%) blur(8px);
  border-radius:999px;
  cursor:pointer;
}

.gNav__label{
  position:absolute;
  left:50%;
  bottom:12px;
  transform:translateX(-50%);
  font-family:var(--font-sans);
  font-size:.52rem;
  letter-spacing:.22em;
  color: rgba(var(--wine-r),var(--wine-g),var(--wine-b),.55);
}

.gNav__line{
  position:absolute;
  left:50%;
  width:24px;
  height:1px;
  background: rgba(var(--wine-r),var(--wine-g),var(--wine-b),.85);
  transform-origin:center center;
  transition:
    transform .32s cubic-bezier(.22,.61,.36,1),
    opacity .24s ease,
    width .24s ease,
    background .24s ease;
}

.gNav__line--1{ top:20px; transform:translateX(-54%); width:22px; }
.gNav__line--2{ top:27px; transform:translateX(-46%); width:26px; }
.gNav__line--3{ top:34px; transform:translateX(-52%); width:18px; }

.gNav.is-open .gNav__toggle{
 background: rgba(251,251,250,.7);
}

.gNav.is-open .gNav__line{
 background: rgba(var(--wine-r),var(--wine-g),var(--wine-b),.9);
}

.gNav.is-open .gNav__line--1{
  transform:translateX(-50%) translateY(7px) rotate(42deg);
  width:25px;
}

.gNav.is-open .gNav__line--2{
  opacity:0;
  transform:translateX(-25%);
  width:10px;
}

.gNav.is-open .gNav__line--3{
  transform:translateX(-50%) translateY(-7px) rotate(-42deg);
  width:25px;
}

.gNav__panel{
  position:fixed;
  z-index:90;
  inset:0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(var(--wine-r),var(--wine-g),var(--wine-b),.08),
      transparent 60%
    ),
    linear-gradient(
      to bottom,
      rgba(251,251,250,.94),
      rgba(248,244,242,.98)
    );
  backdrop-filter:saturate(130%) blur(12px);
  opacity:0;
  visibility:hidden;
  transition:opacity .28s ease, visibility .28s ease;
}

.gNav.is-open .gNav__panel{
  opacity:1;
  visibility:visible;
}

.gNav__panelInner{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:22px;
}

.gNav__panelInner a{
  position:relative;
  color:rgba(80,80,80,1);
  text-decoration:none;
  font-family:var(--font-sans);
  font-size:clamp(.92rem, 1vw, 1.05rem);
  letter-spacing:.22em;
  transition:.3s ease;
}

.gNav__panelInner a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:100%;
  height:1px;
  background:currentColor;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .3s ease;
}

.gNav__panelInner a:hover{
  color:#333;
}

.gNav__panelInner a:hover::after{
  transform:scaleX(1);
}