@charset "utf-8";

/* =========================================================
   RESET / BASE 
========================================================= */

html { box-sizing: border-box; -webkit-text-size-adjust: 100%;scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: inherit; }

html, body { width: 100%; overflow-x: hidden; }

body{
  margin: 0;
 background:#0c0c0c;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #eee;
  font-size: 1em;
  line-height: 1.75;
  word-wrap: break-word;
}

h1,h2,h3,h4,p,dl,dd { margin: 0; }
ul,ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; outline: none; }
img { max-width: 100%; height: auto; display: block; }
button,input,select,textarea { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; }


/* =========================================================
   1) UTIL
========================================================= */
#container{
  overflow-x: hidden;
  z-index: 1;
  position: relative;
}

/* Loader */
.loader{
  width: 46px;
  height: 46px;
  border: 3px solid rgba(255,255,255,.2);
  border-top-color: #ceac56;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loader::before,
.loader::after{ display:none; }
@keyframes spin{ to { transform: rotate(360deg); } }

/* Font family group */


.Poem,.mincho,.personCard__head
{font-family: "Noto Serif JP", serif;}
    
    
h1,h2,.en-sub,.en,
#g-nav,.intro-profile h4,figcaption,.movieItem__cap,
.news-date,
.intro-lead,.about-lead,.tourItem__date,.tourMain__date,.ticketTel,.jrTok_title,
.copyright,.footer-logo,.follow{
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.2em;
}

/* Headings */
h2{
  color:#ba8d2f;
  font-size: 2rem;
  margin: 0 0 50px 0;
  text-transform: uppercase;
}



/* Text size system */
p{ font-size: 1rem; line-height: 1.8; }
.is-textL{ font-size: 1.4rem; }
.is-textM{ font-size: 1.1rem; }
.is-textS{ font-size: 0.88rem; line-height: 1.7; }
figcaption{ font-size: 0.7rem;opacity: 0.7; margin: auto;text-align: center;}
.en-sub{
  margin-top: 2em;
  font-size: 0.8em;
  opacity: 0.75;
  line-height: 1.5;
}

    

/* =========================================================
   3) TOPICS / NEWS
========================================================= */
.topics-content{
width: min(1000px, 90%);
  margin: 0 auto;
  text-align: left;
}

.news-list{
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 64px;
}

.news-item{
  position: relative;
  padding-left: 22px;
  display: grid;
  grid-template-columns: 140px 1fr; /* date / title */
  gap: 18px;

  margin: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.news-item::before{
  content:"";
  position:absolute;
  left:0;
  top:2px;
  bottom:2px;
  width:2px;
  background:#ba8d2f;
  opacity:.95;
}

.news-date{
  color:#ba8d2f;
  letter-spacing:.12em;
  font-size:14px;
  line-height:1.1;
  opacity:.95;
  white-space: nowrap;
}

.news-title{
  color: rgba(255,255,255,.86);
  font-size:14px;
  line-height:1.9;
  display:inline-block;
}
.news-title:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* MORE */
.latest_more{
  margin-top: 34px;
  display:flex;
  justify-content:flex-end;
}
.latest_more a{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:14px;
  color: rgba(255,255,255,.82);
  letter-spacing:.14em;
  font-size:14px;
  padding: 6px 2px;
}
.latest_more a::before{
  content:"";
  width:92px;
  height:1px;
  background:#ba8d2f;
  opacity:.95;
}
.latest_more a:hover{ color: rgba(255,255,255,.95); }
.latest_more a:hover::before{ opacity:1; }


@media (max-width: 1024px){

  .news-list{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .news-item{
    grid-template-columns: 1fr;   /* ← 1カラムにする */
    gap: 6px;                     /* DATEとTITLEの間 */
  }

  .news-date{
    font-size:12px;
  }

  .news-title{
    font-size:14px;
    line-height:1.7;
  }
    
    
}/**/



/* =========================================================
   4) SECTIONS: NEWS / INTRO / ABOUT (band + padding)
========================================================= */
#news{
  padding: 10% 0 5% 10%;
  position: relative;
}
#intro{
  padding: 5% 0 10% 10%;
  position: relative;
}
#about{
  padding: 5% auto 10%;
}

#about h2{
  padding: 0 0 0 10%;
}
.about-lead{
  padding: 0 0 30px 0;
}
/* band */
#intro::before,
#news::before{
  content:"";
  position:absolute;
  pointer-events:none;
  z-index:0;
  width: 86%;
  height: 300px;
  top: 250px;
  background: rgba(255,255,255,.10);
}
#news::before{ right:0;    top: 200px;height: 300px; }
#intro::before{ left:0; top:400px; height:500px; }


#news > *, #intro > *{
  position: relative;
  z-index: 1;
}

#intro .intro-area{
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 10%;
  padding: 0 0 0 15%;
  position: relative;
}
#about .about-area{
  width: min(1000px, 90%);
  margin: 0 auto;   /* ←中央配置 */
  padding:80px 0 0 0;text-align: center;
}
#intro .intro-area section{ width:69%; }
#about .about-area section{ width:100%; }

#intro .intro-area section h3{
  font-size:1.5rem;
  margin: 0 0 30px 0;
}

.intro-area h3 img{
  max-width: 820px; /* 今より少し小さく */
  width: 100%;
}



/* JEAN PH */
#intro .intro-img-wrapper{
  position:relative;
  overflow:hidden;
  width:30%;
  height:60vh;
}
#intro .intro-img{
  height:60vh;
  background:url("../img/01.jpg") no-repeat center;
  background-size:cover;
}



/* JEAN PROFILE language toggle */
.profileLang{
  display:flex;
  gap:14px;
  margin: 8px 0 16px;
}

.profileLang__btn{
  font-family:"Oswald", sans-serif;
  letter-spacing:.14em;
  font-size:13px;
  background:none;
  border:0;
border-top:1px solid transparent;
  color:#eee;
  opacity:.45;
  cursor:pointer;
  transition:.3s;
}

.profileLang__btn.is-active{
  opacity:1;
  border-color:#ba8d2f;
}

.profileText__jp,
.profileText__en{
  display:none;
}

.profileText__jp.is-active,
.profileText__en.is-active{
  display:block;
}





/* Intro/About layout */
.intro-profile{ opacity:.8; line-height:1.5; margin-top:5%; }
.intro-profile__row p{ line-height:1.5; }





@media (max-width:1024px){
    
      /* sections: left/right 5% (= width 90%) */
  #news,
  #intro{
    padding-left: 5% !important;
    padding-right: 5% !important;
  }

      /* section bands off */
  #intro::before,
  #news::before{
    display: none !important;
  }
    
    
  /* NEWS container follows section padding */
  .topics-content{
    width: 100% !important;
    margin: 0 !important;
  }

  /* intro/about stack */
  #intro .intro-area,
  #about .about-area{
    padding: 0 !important;
    margin-top: 8%;
    display: block;
  }

  #intro .intro-area section,
  #about .about-area section{
    width: 100% !important;
  }


/* JEAN PH */
  #intro .intro-img-wrapper{
    width: 100% !important;
    height: 40vh;
    margin: 30px 0 40px 0;
  }
  #intro .intro-img{
    height: 40vh;
    background-position: right;
  }



    
}/**/




/* =========================================================
  poem
========================================================= */

.Poem{
  max-width: 60ch;
  margin: 0 auto;
  padding: 8px 10px 80px;

  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 2;

  color: rgba(255,255,255,.86);
  letter-spacing: .05em;

  text-align: center;
}

.Poem ruby{  line-height: 1;
}

.Poem rt{  line-height: 1;
  font-size: .6em;
  letter-spacing: 0;
}


/* ENは少し詰めてもいい */
.Poem--en{
  line-height: 1.85;     /* ほんの少し広げる */
  letter-spacing: .01em; /* 英語は詰めすぎない */
}


@media (max-width: 768px){
  .Poem--en{
    text-align: left;
    line-height: 1.7;
  }
}/**/

/* =========================================
   ABOUT Essay ＝ PERSONS 統一デザイン
========================================= */

.aboutEssay{
  width: 100%;
  max-width: 1000px;
  margin: clamp(34px, 6vw, 90px) auto 0;
  padding: clamp(18px, 3vw, 28px);
  border-top: 1px solid rgba(255,255,255,.14);
}

.aboutEssay__details{margin: auto;text-align: center;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 12px;
}
@media (max-width: 768px){
.aboutEssay__details{margin: 0;text-align: left;
  }
}/**/
/* summary = personsと同じ */
.aboutEssay__summary{
  cursor: pointer;
  list-style: none;

  display: inline-flex;
  align-items: baseline;
  gap: 12px;

  padding: 6px 2px;
  line-height: 1;

  font-family: "Oswald", sans-serif;
  letter-spacing: .14em;
  color: rgba(255,255,255,.82);
}


/* 金ライン */
.aboutEssay__summary::before{
  content:"";
  width: 92px;
  height: 1px;
  background:#ba8d2f;
  opacity:.95;
  transition: width .4s cubic-bezier(.22,.8,.3,1);
}

/* hoverで伸びる */
.aboutEssay__summary:hover::before{
  width: 160px;
}

.aboutEssay__lead{text-align: center;
  max-width: 100%;
  margin: 0 auto 28px;

  font-size: 18px;
  line-height: 1.9;
  letter-spacing: .06em;

  color: rgba(255,255,255,.88);
}


/* テキスト */
.aboutEssay__more{
  font-size: 14px;
}

/* ▼ */
.aboutEssay__chev{
  color:#ba8d2f;
  font-size: 12px;
  opacity:.8;
  display:inline-block;
  transform: translateY(-0.06em);
  transition: transform .18s ease;
}

/* hover */
.aboutEssay__summary:hover{
  color: rgba(255,255,255,.95);
}
.aboutEssay__summary:hover::before{
  opacity:1;
}

/* open時 */
.aboutEssay__details[open] .aboutEssay__chev{
  transform: translateY(-0.06em) rotate(180deg);
}

/* 本文 */
.aboutEssay__body{
  overflow:hidden;
  height:auto; /* personsはJS制御だがここは自然開閉 */
  padding-top: 10px;
}

.aboutEssay__text{text-align: left;
  max-width: 100%;
  font-size: 15px;
  line-height: 2;
  letter-spacing: .05em;
  color: rgba(255,255,255,.82);
}



.aboutEssay__text p{
  margin: 0 0 1.2em;
}

.aboutEssay__subhead{
  margin-top: 1.8em;
  padding-top: 1.2em;
  border-top: 1px solid rgba(255,255,255,.12);
  letter-spacing: .08em;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px){
.aboutEssay__lead{margin: 0 0 28px;text-align: left;}

  }/**/  
    

/* =========================================================
 JEAN x 5
========================================================= */

.jrMonoHero{margin-top: 100px;
  display: block;
  width: 100%;
}

.jrMonoHero__inner{
  width: min(1920px, 100%);
  margin: 0 auto;
}

.jrMonoHero img{
  display: block;
  width: 100%;
  height: auto;
}

.jrMonoHero{
  opacity: 1;
  transform: translateY(20px);
  transition: 2s ease;
}

.jrMonoHero.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   PERSONS
========================================================= */

#persons.persons{
  width: 100%;
  padding: 200px 0;
  margin: 0;
}

/* Card */
#persons .personCard{
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: clamp(34px, 6vw, 90px) auto 0;
  padding: clamp(18px, 3vw, 28px);
  border-top: 1px solid rgba(255,255,255,.14);
}

/* Layout */
#persons .personCard__grid{
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(18px, 3vw, 46px);
  align-items: center;
}

/* Photo (size) */
#persons .personCard__photo{
  margin: 0 auto;
  width: 100%;
  max-width: 260px; /* PC写真のサイズ */
}
#persons .personCard__photo img{
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* Text */
#persons .personCard__body{
  width: 100%;
}

#persons .personCard__role{
  margin: 0 0 6px;
  opacity: .85;
}

#persons .personCard__name{
  margin: 0 0 14px;
  font-size: 1.5rem;
  line-height: 1.35;
}

#persons .personCard__en{
  display: inline-block;
  margin-left: 10px;
  font-size: 12px;
  letter-spacing: .06em;
  opacity: .75;
}

/* Language block */
#persons .personLang{
  margin-top: 6px;
}

/* Panels (smooth switch)
   ※ JSで hidden を切り替える想定。CSSはフェードだけ担当 */
#persons [data-person-lang] [data-lang-panel]{
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}

#persons [data-person-lang] [data-lang-panel].is-active{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Summary */
#persons .personCard__summary p{
  color: rgba(255,255,255,.8);
}

#persons .personCard__highlights{
  margin-top: 12px;
  display: grid;
  gap: 6px;
  padding-left: 1.2em;
}

#persons .personCard__highlights li{
  color: rgba(255,255,255,.80);
}

/* Text size tuning (あなたの確定版) */
#persons .personCard__summary .is-textS{
  font-size: 15.5px;
}

#persons .personCard__bioBody .is-textS{
  font-size: 14.5px;  color: rgba(255,255,255,.8);
}

/* BIO details */
#persons .personCard__bio{
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 12px;
}

/* =========================================
   PERSONS：details summary を MORE 風に
========================================= */
/* PERSONS: details summary = latest_more風（MOREだけ） */
#persons .personCard__bioSummary{
  cursor: pointer;
  list-style: none;

  display: inline-flex;
  align-items: baseline;   /* 文字の高さズレ防止 */
  gap: 12px;

  padding: 6px 2px;
  line-height: 1;

  font-family: "Oswald", sans-serif;
  letter-spacing: .14em;
  color: rgba(255,255,255,.82);
}

/* 左の金ライン */
#persons .personCard__bioSummary::before{
  content:"";
  width: 92px;
  height: 1px;
  background:#ba8d2f;
  opacity:.95;
}

/* MORE（主役） */
#persons .personCard__more{
  font-size: 14px;
}

/* ▼ */
#persons .personCard__chev{color:#ba8d2f;
  font-size: 12px;
  opacity: .8;
  display: inline-block;
  transform: translateY(-0.06em);
  transition: transform .18s ease;
}

/* hover */
#persons .personCard__bioSummary:hover{
  color: rgba(255,255,255,.95);
}
#persons .personCard__bioSummary:hover::before{
  opacity: 1;
}

/* open時の回転（既存があれば不要。無ければこれ） */
#persons .personCard__bio[open] .personCard__chev{
  transform: translateY(-0.06em) rotate(180deg);
}

/* BIO body (smooth open/close) */
#persons .personCard__bioBody{
  overflow: hidden;
  height: 0;                 /* JSで制御 */
  transition: height .34s ease;
  padding-top: 10px;         /* 見た目の余白はここに固定でOK */
}


@media (min-width: 769px){

  /* even card alternate layout (PC only) */
  #persons .personCard:nth-of-type(even) .personCard__grid{
    grid-template-columns: 1.25fr 1fr;
  }

  #persons .personCard:nth-of-type(even) .personCard__photo{
    order: 2;
  }

  #persons .personCard:nth-of-type(even) .personCard__body{
    order: 1;
  }

}

/* Responsive */
@media (max-width: 768px){
  #persons.persons{
    padding: 0 5%;
    margin: 70px 0 90px;
  }

  #persons .personCard{
    padding: 16px 0 0;
  }

  /* always stack + hard place items */
  #persons .personCard__grid{
    display: grid;
    grid-template-columns: 1fr;    justify-items: stretch; /* 明示 */
  }

    
  #persons .personCard__photo{
    width: 100%;max-width: 80%;
    margin: 0 auto;
  }
#persons .personCard__photo img{
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;object-position: center 30%; 
}
  #persons .personCard__body{
    grid-column: 1;
    grid-row: 2;
    width: 100%;
  }

  #persons .langTabs{
    margin-bottom: 8px;
  }

  #persons .personCard__summary .is-textS{ font-size: 15px; }
  #persons .personCard__bioBody .is-textS{ font-size: 14.25px; }
}


/* =========================================================
   FRAME (grad + copy)
========================================================= */
.frame{
  position: relative;
  padding: 80px 0;
}
.frame__inner{
  position: relative;
  margin: 0 auto;
}
.frame__surface{
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  isolation: isolate;
}

/* PC only width constrain */
@media (min-width: 1024px){
  .frame__surface{
 width: min(1000px, 90%);
    margin: 0 auto;
  }
}

.frame__grad{
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(120deg,
    #070503 0%,
    #201106 16%,
    #4a2b0f 34%,
    #7a4719 52%,
    #ba8d2f 68%,
    #7a4719 86%,
    #070503 100%
  );
  animation: frameGradMove 26s linear infinite;
  z-index: 0;
}

.frame__surface::after{
  content:"";
  position:absolute;
  inset:-40% -60%;
  background:
    radial-gradient(160px 160px at 25% 35%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(220px 220px at 70% 60%, rgba(255,255,255,.06), transparent 65%);
  mix-blend-mode: soft-light;
  opacity: .7;
  animation: frameGlowMove 40s linear infinite;
  z-index: 1;
}

@keyframes frameGradMove{
  0%   { transform: translateX(0); }
  100% { transform: translateX(28%); }
}
@keyframes frameGlowMove{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-18%); }
}
.frame__copy{
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  width: min(900px, 92vw);
  overflow:hidden;
  pointer-events:none;
  z-index:3;

  /* 追加：箱の中で左右寄せできるように */
  display:flex;
}

/* 上段：左寄せ（今まで通り） */
.frame__copy--top{
  top: -24px;
  justify-content:flex-start;
}

/* 下段：右寄せ（ここが本命） */
.frame__copy--bottom{
  bottom: -24px;
  justify-content:flex-end;
}

/* img共通 */
.frame__copy img{
  width:auto;
  height: clamp(28px, 3.6vw, 48px);
  max-width:none;
  display:block;
  opacity:0;
  will-change: transform, opacity;
}

/* 下段だけ少し小さめにしたい場合（任意：今の意図を残す） */
.frame__copy--bottom img{
  height: clamp(28px, 3.4vw, 46px);
}

/* 削除：右寄せはtranslate不要 */
.frame__copy--bottom img{
  transform: none;
}



.frame.js-scroll-intro.is-active .frame__copy--top img{
  animation: frameInL2R 2.6s cubic-bezier(.22,.8,.3,1) forwards;
}
.frame.js-scroll-intro.is-active .frame__copy--bottom img{
  animation: frameInR2L 2.9s cubic-bezier(.22,.8,.3,1) forwards;
  animation-delay: .12s;
}
@keyframes frameInL2R{
  0% { opacity:0; transform: translateX(-24%); }
  100% { opacity:1; transform: translateX(0%); }
}
@keyframes frameInR2L{
  0% { opacity:0; transform: translateX(24%); }
  100% { opacity:1; transform: translateX(0%); }
}

/* SP: copyの箱を広げる（左右に余白ちょい残し） */
@media (max-width: 768px){
  .frame__copy img{
    max-width: 100%;
    height: auto;              /* 縮めるなら高さ固定を解除 */
  }
}

/* ===== CREDITS BAND ===== */
.creditsBand{padding: 2% 0;margin: auto;
}

.creditsBand__inner{
  width: min(1000px, 90%);
  margin: 0 auto;
}

/* 上段の主要クレジット：4項目をコンパクトに */
.creditsCore{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 0;
}

.creditsCore__row{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: baseline;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,.10);
}

.creditsCore__row dt{
  font-size: 0.9rem;
  letter-spacing: .12em;
  opacity: .75;
  white-space: nowrap;
}

.creditsCore__row dd{
  margin: 0;
  font-size: 1rem;
  letter-spacing: .04em;
}

/* STAFF */
.creditsStaff{
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.creditsStaff__ttl{
  font-family: "Oswald", sans-serif;
  letter-spacing: .14em;
  margin: 0 0 10px;
  opacity: .8;
}

.creditsStaff__dl{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 18px;
  margin: 0;
}

.creditsStaff__row{
  display: grid;
  grid-template-columns: 9em 1fr;
  gap: 10px;
  align-items: baseline;
  padding: 4px 0;
}

.creditsStaff__row dt{
  font-size:  0.8rem;
  letter-spacing: .10em;
  opacity: .72;
}

.creditsStaff__row dd{
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: .03em;
  opacity: .92;
}

/* ============================
   CREDITS LOGOS: PC=左右 / SP=段積み
============================ */
.creditsLogos{
  margin-top: 28px;
  padding: 34px 26px;
  background:#eee;
  display: grid;
  gap: 18px;
}
.creditsLogos img{
  transition: transform .35s ease, opacity .35s ease;
}

.creditsLogos img:hover{
  transform: translateY(-4px);
  opacity: .8;
}
/* PC：左右（ラベル｜ロゴ列） */
.logoGroup{
  display: grid;
  grid-template-columns: 8.2em 1fr; /* ラベル幅 */
  gap: 14px 18px;
  align-items: center;
}

/* ラベル */
.logoGroup__label{font-weight: 600;
  margin: 30px 0;
  font-size:0.9rem;
  letter-spacing: .12em;
  opacity: .9;
  color:#333;
  white-space: nowrap;
}

/* ロゴ列 */
.logoRow{
  display:flex;
  flex-wrap: wrap;
  align-items:center;
  gap: 30px 30px;
}

/* ロゴ大きめ（見えるように） */
.logoSvg{ height: auto; width:160px; display:block; opacity:1; }
.logoSvg--lg{ height: auto; width:180px; }

/* 後援/企画制作のテキスト */
.logoText{
  margin: 2px 0 6px;

  letter-spacing: .04em;
  color:#111;
  opacity: .85;
}
/* responsive */
@media (max-width: 1024px){
   .creditsBand{ padding:80px 0 30px;
} 
      .creditsLogos{
    padding: 28px 18px;
    gap: 16px;margin: 50px auto 50px;text-align: center;
  }
  .logoGroup{
    grid-template-columns: 1fr; /* ←段積み */
    align-items: center;
    gap: 8px;margin: auto;text-align: center;
  }
  .logoRow{
    gap: 10px;margin: auto;text-align: center;
  }

  .creditsCore{ grid-template-columns: 1fr;}
  .logoText{ white-space: normal;margin: auto;text-align: center; }
  .creditsStaff__dl{ grid-template-columns: 1fr; }
  .creditsStaff__row{ grid-template-columns: 9.5em 1fr; }

    
      /* 企画制作ブロックだけ：縦に積んで中央寄せ */
  .logoGroup:last-child .logoRow{
    display: flex;
    flex-direction: column;
    align-items: center;   /* ← img を確実に中央へ */
    justify-content: center;
    text-align: center;
    gap: 10px;
  }

  /* テキストも中央・改行を安定させる */
  .logoGroup:last-child .logoText{
    margin: 0 auto;
  }

  /* img単体でも念のため中央寄せ */
  .logoGroup:last-child .logoSvg{
    display: block;
    margin: 0 auto;
  }

  /* <br> が flex だと邪魔になりがちなのでSPでは消す（任意だけど安定） */
  .logoGroup:last-child br.sp{
    display: none;
  }
    
    
}


/* =========================================================
   6) OPENING
========================================================= */
#opening{
  position: fixed;
  width:100%;
  height:100%;
  background:#000;
  z-index:9999999;
  text-align:center;
  color:#fff;
}
#opening-logo{
  position:absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
}
#opening, #opening-logo{ transition: opacity .6s ease; }
#opening.is-hidden{
  opacity:0;
  pointer-events:none;
  visibility:hidden;
  transition: opacity .6s ease, visibility 0s linear .6s;
}

/* Page transition */
.openingbg1, .openingbg2{ display:none; }
body.appear .openingbg1,
body.appear .openingbg2{ display:block; }

body.appear .openingbg1{
  animation: PageAnime 1.4s ease-in-out forwards;
  content:"";
  position:fixed;
  z-index:999;
  width:100%;
  height:100vh;
  bottom:50%;
  left:0;
  transform: scaleY(1);
  background-color:#ba8d2f;
}
@keyframes PageAnime{
  0%{ transform-origin:top; transform:scaleY(1); }
  100%{ transform-origin:top; transform:scaleY(0); }
}

body.appear .openingbg2{
  animation: PageAnime2 1.4s ease-in-out forwards;
  content:"";
  position:fixed;
  z-index:999;
  width:100%;
  height:100vh;
  top:50%;
  left:0;
  transform: scaleY(1);
  background-color:#ba8d2f;
}
@keyframes PageAnime2{
  0%{ transform-origin:bottom; transform:scaleY(1); }
  100%{ transform-origin:bottom; transform:scaleY(0); }
}



/* =========================================================
   MOVIE / COMMENT  (#movie)
   - scalable grid (2col -> 1col)
   - custom thumb + play button
   - fits black + gold tone (#ba8d2f)
========================================================= */

.movieSection{
  padding: 120px 0 100px;
}

/* ===== MOVIE TITLE ===== */
.movieSection__title{
  margin:56px auto 56px;
  text-align: center;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: .32em;
  font-weight: 600;
  color: rgba(186,141,47,.95); /* 金寄り */
  position: relative;
}

/* 細いラインを下に */
.movieSection__title::after{
  content:"";
  display:block;
  width:60px;
  height:1px;
  margin:18px auto 0;
  background: rgba(186,141,47,.6);
}
/* inner */
.movieSection__inner{
  width: min(1100px, 92vw);
  margin: 0 auto;
}

/* list (増えてもOK) */
.movieSection__list{
  display: grid;
  grid-template-columns: 1fr;     /* デフォは1カラム */
  gap: 44px 40px;
  justify-items: center;          /* 1件の時に中央寄せ */
}


@media (max-width: 992px){
  .movieSection{
    padding: 76px 0;
  }
  .movieSection h2{
    margin-bottom: 38px;
  }
    /* 2件以上になったら2カラムにしたい場合（幅で切替） */
  .movieSection__list{  
    gap: 32px 28px;
  }
}

@media (max-width: 768px){
  .movieSection{
    padding: 62px 0;
  }
  .movieSection h2{
    margin-bottom: 28px;
  }
  .movieSection__list{
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* item */
.movieItem{
      width: 100%;
  max-width: 760px;   /* 好みで 720〜820px くらい display: block;*/
  
}

.movieItem__cap{margin: auto;text-align: center;
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.78);
  line-height: 1.6;  letter-spacing:.14em;
}

.movieItem__type{
  display:inline-block;
  margin-right:6px;
  font-size:11px;
  letter-spacing:.18em;
  color:rgba(186,141,47,.9);
}

.movieItem__time{
  margin-left:8px;
  font-size:12px;
  color:rgba(255,255,255,.6);
}

/* embed box (16:9) */
.movieSection__embed{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border-radius: 2px; /* 角はほぼ立てて“硬め”に */
}

/* iframe fill */
.movieSection__embed iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== custom thumb mode ===== */
.movieSection__embed.is-thumb{
  background: #000;
}

/* button reset */
.movieThumb{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 1px solid rgba(186,141,47,.55); /* #ba8d2f */
  background: transparent;
  cursor: pointer;
  display: block;
  -webkit-tap-highlight-color: transparent;
}

/* thumb image */
.movieThumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.001); /* edge gap prevention */
}

/* subtle dark veil */
.movieThumb::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.12),
    rgba(0,0,0,.38)
  );
  pointer-events: none;
}

/* play ring */
.movieThumb__play{
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(92px, 22vw);
  height: min(92px, 22vw);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 1.5px solid rgba(186,141,47,.9);
  background: rgba(0,0,0,.42);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.25) inset;
}

.movieThumb__play::after{
  content: "";
  position: absolute;
  left: 54%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent rgba(186,141,47,.95);
}

/* minimal motion only on hover-capable devices */
@media (hover:hover){
  .movieThumb:hover img{
    opacity: .92;
  }
  .movieThumb:hover .movieThumb__play{
    background: rgba(0,0,0,.58);
  }
}

/* focus */
.movieThumb:focus-visible{
  outline: 2px solid rgba(186,141,47,.9);
  outline-offset: 4px;
}

/* optional: caption tighter on small */
@media (max-width: 768px){
  .movieItem__cap{
    margin-top: 10px;
    font-size: 13px;
  }
}

/* if you ever want 3 columns on wide screens, uncomment:
@media (min-width: 1200px){
  .movieSection__list{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
*/

/* =========================================================
   KV
========================================================= */
#visual-area{
  display:flex;
  width:100%;
  height:100vh;
  background:#0c0606;
}

/* left photo */
#visual-area #slider-area{
  width:50%;
  height:100%;
  position:relative;
  overflow:hidden;
}
#visual-area .kvImage{
  width:100%;
  height:100%;
}
#visual-area .kvImage img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* right logo area */
#visual-area h1.heroTitle{
  width:50%;
  height:100%;
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  top:0;
  padding:0;
  margin:0;
  background:transparent;
}

#visual-area .heroLogoWrap{
  position:relative;
  width:min(92%, 860px);
  height:auto;
  display:block;
  background:#ba8d2f;

  /* Rakuda rail (used by JS) */
  --rakuda-rail-top: 12%;
  --rakuda-rail-nudge-ratio: 0;
}
#visual-area .heroLogoWrap > img{
  position:relative;
  width:100%;
  height:auto;
  display:block;
  object-fit:initial;
}


/* =========================================================
   RAKUDA (KV)
========================================================= */

#visual-area .heroLogoWrap{
--rakuda-w: clamp(130px, 10vw, 210px);
  --rakuda-h: calc(var(--rakuda-w) * 0.5);
  --rakuda-move: calc(100% - var(--rakuda-w));

  /* 既存のアニメ用変数は残す */
  --rakuda-lap: 90s;
  --rakuda-step: 1.1s;
}
#visual-area .heroLogoWrap .rakudaStage{
  position:absolute;
  left:0;
  width:100%;
  height:0;
  top: var(--rakuda-rail-y);
  pointer-events:none;
  z-index:10;
}

#visual-area .heroLogoWrap .rakudaWalk{
  position:absolute;
  left:0;
  bottom:0;
  width: var(--rakuda-w);
  height: var(--rakuda-h);
  display:block;

  opacity:0;
  transform: translateY(140%);
  will-change:left, transform, opacity;
  z-index:10;

  animation:
    rakuda-in .9s cubic-bezier(.22,.8,.3,1) forwards,
    rakuda-leg var(--rakuda-lap) linear infinite alternate;

  animation-delay: 2.2s, 4s;
}

@keyframes rakuda-in{
  0%{ opacity:0; transform: translateY(140%); }
  100%{ opacity:1; transform: translateY(0); }
}
@keyframes rakuda-leg{
  0%,6%   { left: 0; }
  94%,100%{ left: var(--rakuda-move); }
}

#visual-area .heroLogoWrap .rakudaWalk__inner,
#visual-area .heroLogoWrap .rakudaWalk__flip{
  position:relative;
  width:100%;
  height:100%;
  display:block;
}

#visual-area .heroLogoWrap .rakudaWalk__flip{
  transform-origin:50% 50%;
  animation: rakuda-face calc(var(--rakuda-lap) * 2) steps(1,end) infinite;
  animation-delay: 4s;
}
@keyframes rakuda-face{
  0%,49.999%   { transform: scaleX(1); }
  50%,100%     { transform: scaleX(-1); }
}

#visual-area .heroLogoWrap .rakudaWalk__svg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}
#visual-area .heroLogoWrap .rakudaWalk__svg.is-a{
  animation: rakuda-frame-a var(--rakuda-step) steps(1,end) infinite;
}
#visual-area .heroLogoWrap .rakudaWalk__svg.is-b{
  animation: rakuda-frame-b var(--rakuda-step) steps(1,end) infinite;
}
@keyframes rakuda-frame-a{ 0%,49%{opacity:1;} 50%,100%{opacity:0;} }
@keyframes rakuda-frame-b{ 0%,49%{opacity:0;} 50%,100%{opacity:1;} }

/* credit */
.kvCredit{
  position:absolute;
  bottom:18px;
  left:22px;
  font-size:0.65rem;
  letter-spacing:.08em;
  color: rgba(255,255,255,.55);
  z-index:20;
  pointer-events:none;
}

/* PC */
@media (min-width:1024px){

  /* 下寄せ */
  #visual-area h1.heroTitle{
    align-items: flex-end;
    justify-content: center; /* 横中央は維持 */
  }

  /* 横幅制限解除 */
  #visual-area .heroLogoWrap{
    width: 100%;
    max-width: none;
  }

}/**/


/* =========================================
   rakuda LINE
========================================= */

/* PC 基準（1440まで） */
@media (min-width:1024px){
  #visual-area .heroLogoWrap{ --rakuda-rail-nudge-px: -26px; }
}

/* PC1441以上だけ、少し上げる（=よりマイナス） */
@media (min-width:1441px){
  #visual-area .heroLogoWrap{ --rakuda-rail-nudge-px: -32px; }
}
@media (min-width:1800px){
  #visual-area .heroLogoWrap{ --rakuda-rail-nudge-px: -36px; }
}

/*iPadを縦*/
@media (min-width:769px) and (max-width:1024px) and (orientation:portrait){
  #visual-area .heroLogoWrap{ --rakuda-rail-nudge-px: -26px; }
}

/*iPadを横*/
@media (min-width:769px) and (max-width:1024px) and (orientation:landscape){
  #visual-area .heroLogoWrap{ --rakuda-rail-nudge-px: -20px; }
}

/**/
@media (max-width:768px){
  #visual-area .heroLogoWrap{
    --rakuda-rail-nudge-px: -12px;
  }
}


/* =========================================================
   ABOUT rakuda (frame)
========================================================= */
.frame__rakudaLane .frameRakuda{
  position:absolute;
  left:-18%;
  bottom:6%;
  width:72px;
  height:42px;
  opacity:0;
  transform: translateY(10px);
  will-change: left, transform, opacity;
}

.frame__rakudaLane .frameRakuda__inner,
.frame__rakudaLane .frameRakuda__flip{
  position:relative;
  width:100%;
  height:100%;
  display:block;
}
.frame__rakudaLane .frameRakuda__svg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

.frame__rakudaLane .frameRakuda__svg.is-a{ animation: frameRakudaFrameA .7s steps(1,end) infinite; }
.frame__rakudaLane .frameRakuda__svg.is-b{ animation: frameRakudaFrameB .7s steps(1,end) infinite; }

@keyframes frameRakudaFrameA{ 0%,49%{opacity:1;} 50%,100%{opacity:0;} }
@keyframes frameRakudaFrameB{ 0%,49%{opacity:0;} 50%,100%{opacity:1;} }

.frame.js-scroll-intro.is-active .frame__rakudaLane .frameRakuda{
  animation:
    frameRakudaIn .8s cubic-bezier(.22,.8,.3,1) forwards,
    frameRakudaMove 42s linear infinite;
  animation-delay: 0s, .9s;
  opacity:1;
}
@keyframes frameRakudaIn{
  from{ opacity:0; transform: translateY(12px); }
  to  { opacity:1; transform: translateY(0); }
}
@keyframes frameRakudaMove{
  0%,6%   { left: -18%; }
  94%,100%{ left: 110%; }
}



/* =========================================
   Tablet & SP layout fix (<=1024px)
   NEWS / INTRO / ABOUT
========================================= */
@media (max-width: 1024px){
 /* 画面中央に「比率固定のKV」を置く（上下は黒余白OK） */
  #visual-area{
    display: grid;
    grid-template-rows: 56fr 44fr; /* 上/下の比率はここで調整 */
    width: 100vw;                  /* ← 常に幅いっぱい */
    aspect-ratio: 1447 / 2048;     /* ← 比率FIX */
    height: calc(100vw * (2048 / 1447)); /* ← 幅から高さを作る（下は溢れてOK） */
    margin: 0;
    background: #000;
  }
  /* 上：写真 */
  #visual-area #slider-area{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
  }

  #visual-area .kvImage{
    height: 100%;
    position: relative;
  }

  #visual-area .kvImage img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* 顔位置（下げるほど口元が見える） */
    object-position: center 47%;
  }

  /* SP 下：ロゴ */
  #visual-area h1.heroTitle{
  width: 100%;
  height: 100%;
  display: flex;              /* ← blockをやめる */
  align-items: center;        /* 縦中央 */
  justify-content: center;    /* 横中央 */
  background: #ba8d2f;
 
  }
/* ロゴ幅 */
#visual-area .heroLogoWrap{
  width: 100%;
  max-width: none;
}
 

  .kvCredit{
    left: auto;
    right: 12px;
    bottom: 20px;
    font-size: 0.5rem;
    letter-spacing: .06em;
    z-index: 5;
    text-align: right;
  }
    
  }    
    
    






/* =========================================================
   LANG TABS (GLOBAL unified)
   - pill tabs inside an outline (JP/EN in a line)
   - used for INTRO / ABOUT / PERSONS
========================================================= */

.langTabs{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  margin: 18px 0 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
}

.langTabs__btn{
  appearance: none;
  border: 0;
  background: transparent;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.70);
  letter-spacing: .10em;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  transition: opacity .22s ease, transform .22s ease, background-color .22s ease;
}

.langTabs__btn:hover{
  opacity: .92;
  transform: translateY(-1px);
}

.langTabs__btn.is-active{
  opacity: 1;
  color: rgba(255,255,255,.95);
  background: rgba(255,255,255,.14);
    position: relative; 
}

/* gold underline */
.langTabs__btn.is-active::after{
  content: "";
  position: absolute;
  left: 30%;
  right: 30%;
  bottom: 4px;      /* ← 少し内側 */
  height: 1px;
  background: #ba8d2f;
  border-radius: 1px;
}

.langTabs__btn:focus-visible{
  outline: 2px solid rgba(255,255,255,.45);
  outline-offset: 2px;
}

/* panels: JS manages hidden, CSS keeps it safe */
.langPanel{ display: none;  opacity:0;
  transition:opacity .3s ease; }
.langPanel.is-active{   display:block;
  opacity:1;}

@media (max-width: 768px){
  .langTabs{ margin: 14px 0 12px; }
  .langTabs__btn{ padding: 8px 12px; font-size: 12px; }
}
