@charset "utf-8";

:root{
  --bg:#f2f5fb;
	
  --text:#1f2f4a;
  --sub:#345283;
  --logocolor:#717071;
  --main:#171c61; /* チラシ色 */
  --line:#c9d3e4;

  --wrap: 980px;
  --measure: 80ch;
  --gutter: 24px;

  --wine-r:46;
  --wine-g:62;
  --wine-b:96;

  --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;
}


body > *{
  position:relative;
  z-index:1;
}


a{
  color:#171c61;
  text-decoration:none;
  transition:all .25s ease;
}

a:hover{
  color:#0f144a; /* 少し締める */  text-decoration:none;
  background:rgba(23,28,97,.06); /* うっすら乗せる */
}

a:active{
  background:rgba(23,28,97,.12);
}

/* =========================
   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;
  text-align:left;
}

@media (max-width:768px){
  .prose{
    max-width:100%;
    font-size:1rem;
    line-height:2;
  }
}



.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(--main);
  text-align:center;
}


.section-sub{
  display:block;
  margin-top:.6rem;
  font-size:.8rem;
  letter-spacing:.18em;
  color:var(--sub);
}


@media (max-width:768px){
  .section-title{ font-size:1.9rem;letter-spacing:.1em; }
#schedule .section-title{ font-size:1.7rem;}	
	
}

.nora-n{
  display:inline-block;
  width:.72em;
  height:1em;
  vertical-align:-0.04em;
  margin:0 .02em;
}

.nora-o{
  display:inline-block;
  width:.5em;
  height:1.1em;
  vertical-align:-0.02em;margin-right: 5px;
}
.nora-a{
  display:inline-block;
  width:.88em;
  height:.72em;
  margin:0 .02em;
  vertical-align:.02em;margin-right: 5px;
}
.nora-n svg,.nora-o svg,.nora-a svg{
  width:100%;
  height:100%;
}





.sg-kicker{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  color:var(--sub);
  font-family:var(--font-sans);
  font-size:.75rem;
  letter-spacing:.14em;
  margin:0 auto 22px;
  text-align:center;
}

.sg-kicker::before,
.sg-kicker::after{
  content:"";
  width:90px;
  height:1px;
  background:var(--line);
}

/* =========================
   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;
  text-decoration:none;
  font-family:var(--font-sans);
  font-size:.74rem;
  letter-spacing:.28em;
  mix-blend-mode:multiply;
}

.gNav__toggle{
  position:absolute;
  z-index:120;
  right:18px;
  top:12px;
  width:66px;
  height:66px;
  border:0;
  background:rgba(244,247,251,.14);
  backdrop-filter:saturate(130%) blur(8px);
  border-radius:999px;
  cursor:pointer;
}

.gNav__label{color: #1f2f4a;
  position:absolute;
  left:50%;
  bottom:12px;
  transform:translateX(-50%);
  font-family:var(--font-sans);
  font-size:.52rem;
  letter-spacing:.22em;
}

.gNav__line{
  position:absolute;
  left:50%;
  width:24px;
  height:1px;
  background:rgba(31,47,74,.82);
  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(244,247,251,.72);
}

.gNav.is-open .gNav__line{
  background:rgba(31,55,96,.88);
}

.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:linear-gradient(to bottom, rgba(241,245,252,.96), rgba(236,241,248,.98));
  backdrop-filter:saturate(125%) 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{
  text-decoration:none;
  font-family:var(--font-sans);
  font-size:clamp(.92rem, 1vw, 1.05rem);
  letter-spacing:.22em;
}

.gNav__panelInner a:hover{
}

/* =========================
   HERO / heroText / hook
   ========================= */
.hero{
  min-height:90vh;
  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--visual{
  position:relative;
  overflow:hidden; 
}

/*背景色*/
.hero--visual,.schedule,.heroText{background: #f9f9f9;}

.hero__bg{
  position:absolute;
  inset:0;
  z-index:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px;
}

.hero__bg img{margin:0;padding:0;
  width:auto;
  height:auto;
  max-width:min(1120px, 92vw);
  max-height:78vh;
  object-fit:contain;
  display:block;
}

.hero__shade{
  position:absolute;
  inset:0;
  z-index:1;
}

.hero-orbit{
  position:absolute;
  right:32px;
  bottom:40px;
  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:.18em;
  fill:rgba(68,88,122,.58);
}

@media (hover:hover){
  .hero-orbit:hover .hero-orbit__svg{
    animation-duration:9s;
  }
}


.heroText{
  position: relative;
  text-align: center;
  padding: 0 0 2rem;
}


.hero__question{
  font-family:var(--font-mincho); color:var(--sub);
  line-height:1.45;
  margin:0;
  text-shadow:none;
}


	
.hero__q1{
  display:block;
  font-size:1.1rem;
}

.hero__q2{
  display:block;
  margin-top:.18em;
  font-size:1.4rem;
  letter-spacing:.02em;
}

.hero__logo{
  margin:0 0 .8rem;
}

.hero__logo img{
  width: min(420px, 58vw);
  max-width: 78%;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: .68;
}
.hero__credit{margin-top:.8rem;
color: var(--logocolor);
  font-size:.87rem;
  line-height:1.65;
  font-family:var(--font-serif);
  background:none;
  padding:0;
  border-radius:0;
  backdrop-filter:none;
}




.hook{
  padding:2.8rem 0 2.8rem;
  text-align:center;  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0) 0%,
      rgba(242,245,251,.7) 60%,
      #f2f5fb 100%
    );
}

.hook__main{
  margin:0 0 1rem;
  font-family:var(--font-mincho);
  font-size:1.55rem;
  line-height:1.7;
  letter-spacing:.05em;
}

.hook__sub{
  margin:0;
  font-family:var(--font-mincho);
  font-size:1rem;
  line-height:1.9;
  letter-spacing:.06em;
  color:var(--sub);
}
@media (max-width:768px){
  .hero__logo{
    margin: 0 0 .9rem;
  }

  .hero__logo img{
    width:min(280px,62vw);
    max-width:72%;
    opacity:.8;
  }
}

/* =========================
   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;
  align-items:start;
}

.news-item::before{
  content:"";
  position:absolute;
  left:0;
  top:.15rem;
  bottom:.15rem;
  width:1px;
background: rgba(23,28,97,.6);
}

.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;
  white-space:nowrap;padding-top: 5px;
}

.news-title{
  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: var(--main);
}

.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;
  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);
}

/* =========================
   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-top:3em;
margin-bottom: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;
  font-family:var(--font-sans);
}


.story{
  background: rgba(68,88,122,.06);
  padding:10rem 0;
}
.story .prose{
  font-size:1.05rem;
  line-height:2.1;
}


.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;
}

.comment-label__sub{
  display:block;
  margin-top:.35em;
  font-size:.55rem;
  letter-spacing:.18em;
}

/* 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;
  text-transform:uppercase;
}

.commentTab__btn::-webkit-details-marker{ display:none; }
.commentTab__btn::marker{ content:""; }

.commentTab__btn::after{
  content:"";
  width:.55em;
  height:.55em;
  border-right:1px solid rgba(31,47,74,.55);
  border-bottom:1px solid rgba(31,47,74,.55);
  transform:rotate(45deg);
  transition:transform .22s cubic-bezier(.22,.61,.36,1);
  opacity:.8;
}

.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); }
}





/* =========================
   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:.7rem;
  color:var(--sub);
  font-family:var(--font-sans);
}



/* =========================
   Deco / SNS
   ========================= */
.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); }
}

.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:.8rem;
  line-height:1.9;
}
.footer-logo{
  max-width:300px;
  margin:0 auto 2.5rem;
}

/* ラベル */
.credit-label{
  display:inline-block;
  font-size:.65rem;
  letter-spacing:.12em;
}

/* 行 */
.credit-line{
  margin-bottom:1.2rem;
}

/* 助成ブロック */

/* ロゴ */
.credit-logo-bunka{
  width:40px;
  height:34px;
  margin:2px 0 0 ;
}
.credit-logo-tmt{
  width:120px;
  height:auto;
  margin:10px 0 20px;
}
/* テキスト */
.credit-text{
  display:inline-block;
  line-height:1.7;
}

/* SNS */
.footer-sns{
  margin:2rem 0 1.5rem;
}

.footer-sns .sns-row{
  display:flex;
  justify-content:center;
  gap:16px;
}

.footer-sns .sns-ico{
  width:26px;
  height:26px;
  opacity:.7;
}

.footer-sns .sns-ico:hover{
  opacity:1;
  transform:translateY(-2px);
}

/* コピー */
.copyright{
  font-size:.7rem;
  opacity:.7;
}


@media (max-width:768px){
.footer-logo{
  max-width:200px;
  margin:0 auto 2.5rem;
}
}

/* =========================
   Utility
   ========================= */
.pc{ display:none; }
.sp{ display:none; }

@media (min-width:992px){
  .pc{ display:block; }
}

@media (max-width:767px){
  .sp{ display:block; }
}

/* =========================
   Responsive
   ========================= */
@media (min-width:769px){
  .intro .lead,
  .intro .smartphone-stop,
.lead-sub,
  .intro p{
    margin-left:auto;
    margin-right:auto;
    text-align:center;
  }
}

@media (max-width:768px){
  .gNav__brand{
    left:14px;
    top:16px;
  }

  .gNav__toggle{
    right:12px;
    top:10px;
    width:58px;
    height:58px;
  }

  .gNav__label{
    bottom:10px;
    font-size:.48rem;
  }

.hero{
  min-height:auto;
	
}


  .hero--visual{
    background:none;
  }

  .hero__bg{
    position:relative;
    inset:auto;
    display:block;
    padding:0;
    width:100%;
    height:auto;
  }

  .hero__bg img{
    width:100%;
    height:auto;
    max-width:100%;
    max-height:none;
    object-fit:contain;
    display:block;
  }


  .hero-orbit{
    position:static;   /* ← absolute解除 */
    margin:24px auto 0; /* ← 下に余白つけて中央寄せ */
    width:120px;
    height:120px;
  }

	.heroText{
  padding: 2rem 0 2rem;
}

	
  .hero__q1{ font-size:1rem; }
  .hero__q2{ font-size:1.18rem; }

  .hero__credit{
    font-size:.78rem;
    line-height:1.7;
  }

  .hook{
    padding:3.2rem 0 2.2rem;
  }

  .hook__main{
    font-size:1.22rem;
  }

  .hook__sub{
    font-size:.94rem;
  }

  .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 .lead,
  .intro p{
    margin-left:auto;
    margin-right:auto;
    text-align:center;
  }

  .performance__dl{
    grid-template-columns:1fr;
    row-gap:.4rem;
  }

  .performance__dl dt{
    font-size:.7rem;
    letter-spacing:.08em;
    margin-top:.8rem;
  }

  .performance__dl dd{
    margin:0 0 .6rem;
  }

	
  .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;
  }

  .social-float{
    right:12px;
    bottom:12px;
    gap:8px;
  }

  .sns-ico{
    width:20px;
    height:30px;
  }

  .sns-ico img{
    width:20px;
    height:20px;
  }
}

.intro{
  position: relative;
  overflow: visible;
}





/* =========================
   Person blocks
   ========================= */


.person__img{
  width:200px;
  max-width:70%;
  display:block;
  margin:1rem auto;

  transition: filter .6s ease, transform .6s ease;
}



.person__img[data-modal-open]:hover{
  opacity:.7; transform: scale(1.01);
}

.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;
  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.4rem;
  text-align:center; /* 名前は中央 */
}
.cast-extra{
  margin:5em 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;
}
@media (max-width:768px){
  .cast-grid{
    grid-template-columns:1fr;
    gap:40px;
  }
}/**/

.cast-item{
  text-align:center;
}


/* ===== ボタン ===== */
.comment-trigger{
  margin:10px 0 0;
  text-align:center;
  display:flex;
  justify-content:center;
  gap:10px;
}
.staff-comment-trigger{
  margin-top: 18px;
  text-align: center;
}
.comment-btn{border-radius: 10px;
  font-family:var(--font-sans);color:var(--sub);
  font-size:.8rem;letter-spacing: .05;
  padding:8px 18px;
  border:1px solid var(--line);
  background:transparent;
  cursor:pointer;transition: all .25s ease;
}
.comment-btn[href^="#movie"]{
  opacity:.7;
}
.comment-btn:hover{
  transform: translateY(-1px);
  border-color: var(--main);
  background: rgba(23,28,97,.05);
}

/* ===== モーダル ===== */
.comment-modal{
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .38s ease;
}

.comment-modal.is-open{
  opacity: 1;
  pointer-events: auto;
}

.comment-modal__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(12,16,24,.32), rgba(12,16,24,.48));
  backdrop-filter: blur(4px);
}

/* 中身 */
.comment-modal__inner{
  position: absolute;
  top: 50%;
  left: 50%;
transform: translate(-50%, -50%);
  width: min(760px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  background:
    linear-gradient(to bottom, rgba(255,255,255,.98), rgba(248,248,246,.98));
  border: 1px solid rgba(201,211,228,.9);
  box-shadow:
    0 24px 70px rgba(16,22,34,.18),
    0 2px 10px rgba(16,22,34,.06);
  opacity: 0;
  transition:
    transform .42s cubic-bezier(.22,.61,.36,1),
    opacity .42s ease;
	display: flex;
  flex-direction: column; /* ←重要 */
  overflow: hidden;
}

.comment-modal.is-open .comment-modal__inner{
  transform: translate(-50%, -50%);
  opacity: 1;
}

/* 上部にうっすらライン */
.comment-modal__inner::before{
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(68,88,122,.15),
    rgba(68,88,122,.45),
    rgba(68,88,122,.15)
  );
}

/* 閉じる */
.comment-modal__close{
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  font-size: .7rem;
  letter-spacing: .14em;
  border: none;
  background: none;
  color: var(--sub);
  cursor: pointer;
  transition: opacity .25s ease, transform .25s ease;
}

.comment-modal__close:hover{
  opacity: .7;
  transform: translateY(-1px);
}

/* 本体 */
.comment-modal__body{
  max-height: calc(100vh - 40px);
  padding: 42px 36px 34px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;

  font-family: var(--font-mincho);
  font-size: 1rem;
  line-height: 2.05;
  text-align: left;

  scrollbar-width: thin;
  scrollbar-color: rgba(68,88,122,.45) rgba(68,88,122,.08);
}

.comment-modal__body::-webkit-scrollbar{
  width: 10px;
}

.comment-modal__body::-webkit-scrollbar-track{
  background: rgba(68,88,122,.08);
}

.comment-modal__body::-webkit-scrollbar-thumb{
  background: rgba(68,88,122,.38);
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.7);
}

/* 名前 */
.comment-modal__name{
  margin: 0 0 1.3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,211,228,.8);
  font-family: var(--font-mincho);
  font-size: 1.7rem;
  line-height: 1.45;
  text-align: center;
  color: var(--text);
}

/* 役名も入れる場合 */
.comment-modal__role{
  display: inline-block;
  margin-top: .45rem;
  font-family: var(--font-sans);
  font-size: .72rem;
  letter-spacing: .16em;
  color: var(--sub);
}

/* ブロック */
.comment-modal__profile,
.comment-modal__comment{
  margin-top: 1.6rem;
}

.comment-modal__heading{
  margin: 0 0 .9rem;
  font-family: var(--font-sans);
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--sub);
  text-align: center;
}

.comment-modal__profile p,
.comment-modal__comment p{
  margin: 0 0 1.1em;
}

.comment-modal__profile p:last-child,
.comment-modal__comment p:last-child{
  margin-bottom: 0;
}


/* SP */
@media (max-width: 768px){
  .comment-modal__inner{
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
  }

  .comment-modal__close{
    top: 14px;
    right: 14px;
    font-size: .65rem;
  }

  .comment-modal__body{
    max-height: calc(100vh - 20px);
    padding: 38px 18px 22px;
    font-size: .96rem;
    line-height: 1.92;
  }

  .comment-modal__name{
    font-size: 1.35rem;
    padding-bottom: .85rem;
    margin-bottom: 1rem;
  }

  .comment-modal__role{
    font-size: .65rem;
    letter-spacing: .14em;
  }

  .comment-modal__profile,
  .comment-modal__comment{
    margin-top: 1.2rem;
  }
}/**/


/* =========================
   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:780px;
  padding-top:22px;
  border-top:1px solid var(--line);


  font-size:0.9rem;
  line-height:2;
  color:var(--sub);
}

/* PC：流し */
.staff-credit span{
  display:inline;
margin-right: 0.6em;
}

.staff-credit .role {
  font-weight: 600;
  letter-spacing: 0.04em;  color: #1f3a6d;
}

/* SP：役職ごと改行 */
@media(max-width:992px){
	.staff-credit{  font-size:.88rem;}
  .staff-credit span{
    display:block;
    margin:0 0 .35em;
  }
}







/* =========================
   Schedule / Information
   ========================= */
 .schedule{padding:10rem 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:0 .2em 2px;
  border-bottom:1px solid rgba(0,0,0,.3);

  background:linear-gradient(
    transparent 60%,
    rgba(255,255,255,.6) 60%
  );

  transition:all .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;
}

/* 補足テキスト */
.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{font-size: .8rem;
  margin: 0;
  line-height: 1.9;
}

/* ※行そろえ */
dd.ticketNotes .noteLine{
  display: block;
 padding-left:3.5em;
  text-indent: -.5em;
}

/* 見出し */
dd.ticketNotes .noteHead{
  display: block;
  margin-top: 1.2em;
 padding-left:3.5em;
  text-indent: -1em;
}

/* 下の説明 */
dd.ticketNotes .noteSub{
  display: block;
 padding-left:3.5em;
  text-indent: -1em;
}


.performance a{
  text-decoration: none;
  border-bottom: 1px solid rgba(80,80,80,0.4);
  transition: all .25s ease;
}

/* hover：ちょい浮かせる */
.performance a:hover{
  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 .noteHead{
  padding-left:1em;
  text-indent: -1em;
}

/* 下の説明 */
dd.ticketNotes .noteSub{
  padding-left:1em;
  text-indent: -1em;
}

	
	
}

/* ========= 星取表 ========= */
/*星取エリア囲み*/
.scheduleMount{
  margin-top: 1.2rem;
}


.scheduleGroup{ 
  margin:0;
}

.schedulePc{padding:5px;
  display:block;
	background-color:#f2f5fb;
}

.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:#f2f5fb;
}


/* ベース記号＋追加記号を重ねる */
/* ベース */
.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{background:  #f2f5fb;
  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;
  }
}/**/

.person__tagline{
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: .75rem;
  letter-spacing: .08em;
  color: var(--sub);
  text-align: center;
  opacity: .8;
}

.ticketPrimary{
  margin: 3rem auto 2rem;
  text-align: center;
}

.ticketPrimary__label{
  font-family: var(--font-sans);
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--sub);
}

.ticketPrimary__date{
  margin-top: .4rem;
  font-family: var(--font-mincho);
  font-size: 1.6rem;
  letter-spacing: .05em;
  color: var(--text);
}

.ticketPrimary__note{
  margin-top: .4rem;
  font-size: .8rem;
  color: var(--sub);
}


.detailsPoints{
  margin: 3rem auto;
  max-width: var(--measure);
}

.detailsPoint{
  margin-bottom: 1.8rem;
  text-align: center;
}

.detailsPoint h4{
  font-family: var(--font-sans);
  font-size: .8rem;
  letter-spacing: .2em;
  color: var(--sub);
}

.detailsPoint p{
  margin-top: .4rem;
  font-family: var(--font-mincho);
  font-size: 1.1rem;
}



.endingLine{
  margin: 5rem auto 2rem;
  text-align: center;
}

.endingLine p{
  font-family: var(--font-mincho);
  font-size: 1.2rem;
  letter-spacing: .05em;
  color: var(--text);
}

.storyOutro{
  margin: 4.4rem auto 0;
  max-width: var(--measure);
  text-align: center;

  font-family: var(--font-mincho);
  font-size: 1.05rem;
  line-height: 1.9;
  letter-spacing: .04em;

  color: var(--text);
  opacity: .9;
}



/* 60秒SPOT */
.movie-main{
  background:#f9f9f9;
}

.movie-lead{
  margin:0 0 2rem;
  text-align:center;
  font-family:var(--font-mincho);
  font-size:1.1rem;
  letter-spacing:.22em;
  color:var(--sub);
}

.movie-vertical{
  position:relative;
  display:block;
  max-width:300px;
  margin:5rem auto;
  box-shadow:0 18px 50px rgba(0,0,0,.12);
  background:#000;
}

.movie-vertical img{
  display:block;
  width:100%;
  aspect-ratio:9 / 16;
  object-fit:cover;
}


/* SPECIAL MOVIE */
.movie-cast{
  background:rgba(68,88,122,.04);
}

/*.movie-cast__grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:34px 36px;
  max-width:900px;
  margin:3.5rem auto 0;
}*/


.movie-cast__grid{
    display:grid;
  grid-template-columns:repeat(auto-fit, 200px);
  justify-content:center;

  gap:34px 30px;

  max-width:920px;
  margin:3.5rem auto 0;
}


.movie-cast__item{
  display:block;
  color:inherit;
  text-decoration:none;
  scroll-margin-top:100px;
}

.movie-cast__item:hover{
  background:none;
}

/* SPECIAL MOVIE：4本を縦サムネ表示 */
.movie-cast__thumb{
  position:relative;
  display:block;
  width:160px;
  margin:0 auto;
  background:#000;
  overflow:hidden;
}
.movie-cast__thumb img{
  display:block;
  width:100%;
  aspect-ratio:9 / 16;
  object-fit:cover;
  object-position:center center;
}

.movie-cast__thumb--vertical{
  width:200px;
  margin:0 auto;
}

.movie-cast__thumb--vertical img{
  aspect-ratio:9 / 16;
}

.movie-cast__name{
  margin:.75rem 0 0;
  font-family:var(--font-mincho);
  font-size:.95rem;
  letter-spacing:.04em;
  text-align:center;
  color:var(--text);
}

/* 30秒SPOTだけ中央・少し大きめ */
.movie-cast__item--spot{
  grid-column:1 / -1;
  justify-self:center;
  margin-top:1.8rem;
}

.movie-cast__item--spot .movie-cast__thumb,
.movie-cast__thumb--vertical{
  width:170px;
}


.movie-spot-label{
  text-align:center;
  margin-top:.5rem;
  font-size:.75rem;
  letter-spacing:.15em;
  color:var(--sub);
}



/* 再生ボタン */
.movie-play{
  position:absolute;
  left:50%;
  top:50%;
  width:64px;
  height:64px;
  transform:translate(-50%, -50%);
  border-radius:50%;
  border:1px solid rgba(255,255,255,.85);
  background:rgba(0,0,0,.25);
  backdrop-filter:blur(2px);
}

.movie-play::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-35%, -50%);
  width:0;
  height:0;
  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
  border-left:14px solid #fff;
}
@media (hover:hover){
  .movie-cast__item img,
  .movie-vertical img{
    transition:opacity .3s ease, transform .5s ease;
  }

	  .movie-vertical{
    width:200px;
    max-width:200px;
  }

	
	
  .movie-cast__item:hover img,
  .movie-vertical:hover img{
    opacity:.82;
    transform:scale(1.015);
  }
}


/* SP */
@media (max-width:768px){
  .movie-vertical{
    max-width:300px;
    margin:4rem auto;
  }

  .movie-cast__grid{
    grid-template-columns:repeat(2, 1fr);
    gap:32px 20px;
    max-width:360px;
  }
	
  .movie-cast__item--spot{
      grid-template-columns:1fr;
    margin-top:.5rem;
  }


}/**/
