/* CSS Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  background-color: transparent !important; /* 常に透明 */
  backdrop-filter: none !important;         /* ぼかし効果オフ */
  box-shadow: none !important;              /* 影不要 */
}

.header.is-scrolled {
  background-color: transparent !important;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 7rem;
}

.header__logo-link {
    color: #fff;
    text-decoration: none;
}

/* ヘッダータイトル（不使用） */
.header__title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
}


/* ナビゲーション（上部メニュー） */
.nav__list{
  display:flex;
  list-style:none;
  gap:3rem;
  margin:0;
  padding:0;
}

.header .nav__link{
  color:#fff;
  text-decoration:none;
  font-weight:500;
  font-size:1.8rem;
  letter-spacing:.05em;
  position:relative;
  display:inline-block;
  padding:.2rem 0;            /* 下線のための余白 */
  transition: color .2s ease;
  -webkit-text-fill-color: currentColor; 
}

.header .nav__link::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-.5rem;
  height:.2rem;
  background:#eaef56;
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .2s ease;
}

.header .nav__link:hover,
.header .nav__link:focus-visible{
  color:#eaef56;
}
.header .nav__link:hover::after,
.header .nav__link:focus-visible::after{
  transform: scaleX(1);
}

.header .nav__link--active{
  color:#eaef56;
}
.header .nav__link--active::after{
  transform: scaleX(1);
}

body.is-scrolling .header .nav__link:not(.nav__link--active):hover{
  color:#fff;
}
body.is-scrolling .header .nav__link:not(.nav__link--active):hover::after{
  transform: scaleX(0);
}


/* ハンバーガーメニュー */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 2.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger__line {
    width: 100%;
    height: 0.3rem;
    background-color: #fff;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger--active .hamburger__line:nth-child(1) {
    transform: rotate(45deg) translate(0.6rem, 0.6rem);
}

.hamburger--active .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger--active .hamburger__line:nth-child(3) {
    transform: rotate(-45deg) translate(0.6rem, -0.6rem);
}

/* モバイル用メニュー */
.mobile-nav{
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.mobile-nav.mobile-nav--active{
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__panel{
  width: clamp(360px, 70vw, 720px); 
  max-width: none;                 
  height: 100%;
  background: #002b5c;
  padding: 7rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform .35s ease;
}

.mobile-nav.mobile-nav--active .mobile-nav__panel{
  transform: translateX(0);
}

.mobile-nav__list{
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.mobile-nav__link{
  display: block;
  padding: 1.2rem 0;
  font-size: 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: #fff;
  text-decoration: none; 
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }

    .header__container{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* 右寄せ */
    height: 6rem;              /* 既にあるなら合わせる */
  }

  .hamburger{
    position: absolute;
    right: 1.6rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10001; /* mobile-navより上に */
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    padding: 10px;                 /* 中の3本線の余白 */
    justify-content: center;
    gap: 6px;                      /* 3本線の間隔 */
    z-index: 10003;
  }

 .hamburger__line{
    background-color: #003174;     /* 線は濃い色に */
    height: 2px;                   /* 少し細く */
    border-radius: 999px;
  }

  .mobile-nav__item--social{
    margin-top: 2rem;
  }
  .mobile-nav__social{
    display: flex;
    justify-content: center;
    gap: 1.2rem;
  }
  .mobile-nav__social a{
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
  }
  .mobile-nav__social img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .9;
  }
  .mobile-nav__social a:hover img{
    opacity: .7;
  }

  .mobile-nav__logo {
  display: flex;
  place-items: center;
  margin-top: 3rem;
}

  .mobile-nav__logo img{
  max-width: 50px;
  margin: 0 auto 1.5rem;
}
}


/* ボタン */
.btn{
  display: inline-flex;          
  align-items: center;          
  justify-content: center;       
  vertical-align: middle;        
  box-sizing: border-box;        
  line-height: 1;                
  min-width: 280px;
  height: 60px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.6rem;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: none;
  font-family: 'Noto Serif JP', serif;
  background-color: #eaef56;
  color: #002b5c;
  border: none;
  margin-top: 2rem;
}

.btn:hover,
.btn:focus {
  background-color: #eaef56;
  transform: translateY(-0.2rem);
  box-shadow: 0 0.4rem 0.8rem rgba(212, 175, 55, 0.3);
}

.btn--full{
  width: 100%;      /*ボタンを幅いっぱいにするとき*/
}


/* セクションタイトルとサブタイトル */
.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    color: #fff;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 0.3rem;
    background-color: #eaef56;
}

.sub__section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
    position: relative;
}

.sub__section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 0.2rem;
    background-color: #eaef56;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.8rem;
  }
  .sub__section-title {
    font-size: 2.4rem;
  }
}


/* ヒーロー */

:root { --header-h: 64px; } 

.hero {
  margin: 0;
  padding: 0;
  background: #111; /* 背景は黒など任意 */
}

.hero__frame {
  width: 100%;
  margin: 0;
}

.hero__poster {
  width: 100%;   /* ← 横幅に合わせて縮小拡大 */
  height: auto;  /* ← 縦横比を保持したまま */
  display: block;
}

@media (max-width: 768px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
}

/* ヒーロースライダー */
.hero-slider{
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto; 
}

.hero-track{
  display: flex;           
  flex-wrap: nowrap;       
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.hero__frame{
  flex: 0 0 100%;
  margin: 0;               
  height: 100%;
}

.hero__poster{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-arrow{
  position:absolute; 
  top:50%; 
  transform:translateY(-50%);
  width:54px; 
  height:54px; 
  border-radius:50%;
  background:rgba(0,0,0,.5); 
  border:0; 
  color:#fff;
  display:flex; 
  align-items:center; 
  justify-content:center;
  padding:0; 
  z-index:2; 
  cursor:pointer;
}

.hero-arrow svg{ 
    width:30px; /* ← 矢印の大きさ */
    height:30px; 
    display:block; 
}

.hero-prev{ left:20px; } 
.hero-next{ right:20px; }


/* ニュース */
.news {
    background-color: #232323;
    padding: 0;
}

.news__container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 3rem;
}

.news__list {
    max-width: 80rem;
    margin: 0 auto;
}

.news__item {
    display: flex;
    padding: 2rem 0;
    border-bottom: 0.1rem solid #e0e0e0;
}

.news__item:last-child {
    border-bottom: none;
}

.news__date {
    flex-shrink: 0;
    width: 15rem;
    font-weight: 700;
    color: #eaef56;
    font-size: 1.4rem;
}

.news__text {
    flex: 1;
    font-size: 1.3rem;
    line-height: 1.6;
    color: #fff;
}


/* イントロ */
.intro {
  background: #003174; 
  --intro-gap: 7rem; /* ニュース・ボタン・トピックスの間の余白 */
}

.intro__container {
    max-width: 120rem;
    margin: 0rem auto;
    padding: 0 2rem 0 2rem;
    column-gap: clamp(1rem, 2vw, 2.4rem);    
}

.intro__buttons{
  display: flex;
  justify-content: center;  
  margin: 0 auto var(--intro-gap);     
  flex-wrap: wrap;          
  gap: 15rem;
}

.intro__buttons .btn{
  display: inline-flex;          
  align-items: center;           /* 縦中央 */
  justify-content: center;       /* 横中央 */
  padding: 0 3rem;              
  min-width: 280px;
  height: 80px;
  background-color: #eaef56;
  color: #002b5c;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.8rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 0.8rem 1.6rem rgba(0,0,0,0.3);
  gap: 0.5em;                    
  margin-top: var(--intro-gap);
}

.intro__buttons .btn svg{
  width: 1em;
  height: 1em;
  stroke-width: 3;
  display: block;          
}

.intro__buttons .btn:hover,
.intro__buttons .btn:focus {
  background-color: #d4d93a;
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0,0,0,0.35);
}

.intro__buttons .btn:hover svg{
  transform: translateX(4px);
}

.intro__topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2列固定 */
  margin: var(--intro-gap) auto;
  gap: 3rem;
  padding: 0 2rem;
  width: min(1100px, 100%); 
  justify-content: center; 
}

.intro__topic {
  margin: 0;
}

.intro__topic a{
  display: block;
}

.intro__topic-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.intro__title-wrapper {
  margin-top: var(--intro-gap);
  margin-bottom: 6rem;
}

.intro__title-img {
  max-width: 70%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.intro__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.intro__visual img {
  max-width: 500px;
  width: 100%;
  height: auto;
  align-self: end;
  margin-bottom: -6px;
}

.intro__text {
  max-width: 600px;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2.5;
  color: #eaef56;
  font-family: 'Noto Sans JP',sans-serif;
  font-weight: 300;
}

@media (max-width: 768px) {
  .intro__content {
    flex-direction: column;     /* 縦並び */
  }
  .intro__text {
    order: 1;   /* 文字を先に */
    text-align: center;
    font-size: 1.3rem;
  }
  .intro__visual {
    order: 2;   /* 写真を後に */
    width: 70%;
  }
  .intro__buttons{
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .intro__title-img {
    max-width: 100%;
    height: auto;
  }
  .intro__topics{
    grid-template-columns: 1fr;
    gap: 1.6rem;
    max-width: 520px;    /* 1列時の見た目を整えるなら */
  }
}

.intro + .divider{
  margin-top: 0;
}


/*  パララックス区切り */

.divider {
  position: relative;
  height: 30vh; 
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed; /* ←パララックス感を出す */
}

@media (max-width: 768px){
  .divider{
    height: 18vh;                
    background-attachment: scroll;
    background-size: 110%; /* 少しズーム感 */
  }
}


/* 作品紹介 */

.works{
  background:#003174;        
  color:#fff;
  padding: clamp(4rem,6vw,6rem) 0; /* 上下余白 */
}

.works__container {
  max-width: 100rem;
  margin: 0 auto;                /* ページ中央に寄せる */
  padding: 2rem;                 /* 左右にバランスよく余白 */
  display: grid;
  grid-template-columns: 1.2fr 1fr;  /* 左テキスト : 右画像 */
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  justify-content: center;       /* グリッド全体を中央寄せ */
  margin-top: 10rem;
  margin-bottom: 5rem;
}

.works__text {
  max-width: 100%;               /* ← 80%をやめると中央寄せが自然に見える */
  text-align: left;
  margin: 0 auto;                /* グリッド内で中央に */
}

.works__title{
  font-family: 'Noto Serif JP', serif; 
  font-weight: 700;
  font-size: clamp(2.6rem, 3.8vw, 4.0rem);
  line-height: 1.0;
  color:#eaef56;                     
  margin: 0 0 1.6rem;
}

.works__lead{
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1.8;
  color:#eaef56;
  margin: 0 0 clamp(2.8rem, 3.5vw, 3.5rem);
}

.works__body p{
  margin: 0 0 1.2em;
  font-size: 1.3rem;
  line-height: 1.8;
  letter-spacing: .02em;
}

.works__meta{
  opacity:.9;
}

.works__images{
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: clamp(1.6rem, 2.4vw, 2.4rem);
  align-items: center;
}

.works__figure{
  margin:0;
  aspect-ratio: 16/9;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
  background:#111;
  width: 100%;    
  max-width: 400px;
}

.works__img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.works__trailer {
  margin-top: 4rem;
  text-align: center;
  place-items: center;  
  grid-column: 1 / -1;   
}

.works__trailer-video {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  justify-content: center;
  align-items: center;
}

.works__trailer-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 768px){
  .works__container{
    grid-template-columns: 1fr;
  }
  .works__images{
    display: grid;             
    grid-template-columns: 1fr;
    justify-items: center;     
  }
  .works__figure{
    width: min(92vw, 520px);   
    margin: 0 auto;            
  }
  .works__container {
    margin-top: 3rem;
  }
  .work-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


/* 上映情報 */

.screening {
    padding: 8rem 0;
    background: #003174;
}

.screening__container {
    max-width: 100rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.screening__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    max-width: 105rem;
    margin: 0 auto;
}

.screening__note{
  max-width: 1100px;
  margin: 0 auto clamp(2.4rem, 4vw, 3rem);
  padding: 0 2rem;
  line-height: 1.8;
  color: #eaef56;
  opacity: .95;
}

.screening__newtitle{
  max-width: 1100px;
  margin: 5rem auto 2rem clamp(2.4rem, 4vw, 3rem);
  padding: 0 2rem;
  color: #eaef56;
  opacity: .95;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
}

.screening-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 0.1rem solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.screening-card:hover {
    transform: translateY(-0.5rem);
    background-color: rgba(255, 255, 255, 0.08);
}

.screening-card__title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #eaef56;
}

.screening-card__info {
    width: 100%;     
    text-align: left;
}

.screening-card__info p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #fff;
}

.screening-card__venue {
    font-weight: 700;
}
.screening-card__date {
    font-weight: 700;
    color: #eaef56 !important;
}

.screening-card__note {
    font-weight: 700;
    font-size: 1.6rem !important;
    color: #eaef56 !important;
    text-align: left;
}

.screening__region{
  max-width: 1100px;
  margin: 10rem auto clamp(3rem, 5vw, 4.5rem);
  padding: 0 2rem;
}
.screening__region-title{
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  font-weight: 800;
  font-family: 'Noto Serif JP', serif;
  color: #eaef56;
  margin: 4rem 0 1rem;
}

/* 表スタイル */
.screening__table{
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  border-radius: .6rem;
  overflow: hidden;
}
.screening__table thead th{
  background: #eaef56;
  color: #003174;
  font-weight: 700;
  text-align: left;
  padding: 1.1rem 1.4rem;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
}
.screening__table tbody td{
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,.25);
  font-size: clamp(1.2rem, 1.2vw, 1.35rem);
  vertical-align: top;
  color: #fff;
}
.screening__table tbody tr:last-child td{
  border-bottom: 1px solid rgba(255,255,255,.35); /* 最後に強めの線 */
}
.thead--mobile { display: none; }

@media (max-width: 768px) {
  .thead--desktop { display: none; }
  .thead--mobile  { display: table-row; }
}

/* 劇場リンク */
.screening__table a{
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.4);
  transition: color .2s ease, border-color .2s ease;
}
.screening__table a:hover,
.screening__table a:focus{
  color: #eaef56;
  border-color: #eaef56;
}

/* 地区トグル */
.screening-toggle{
  margin: 2rem 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: .8rem;
  background: rgba(255,255,255,.05);
  overflow: hidden;
}

.screening-toggle__summary{
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 1.4rem;
  color: #eaef56;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 1.9rem;
}

.screening-toggle__summary::-webkit-details-marker{
  display: none;
}

.screening-toggle__summary::after{
  content: "▾";
  float: right;
  transition: transform .2s ease;
}

.screening-toggle[open] .screening-toggle__summary::after{
  transform: rotate(180deg);
}

.screening-toggle__body{
  padding: 0 1.6rem 1.6rem;
  overflow-x: auto;
}

@media (max-width: 768px){
  .screening__note{ 
    font-size: 1.3rem;
  }

}


/* 出演者 */

.cast {
    padding: 2rem 0;
    background-color: #003174;
}

.cast__container {
    max-width: 100rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.cast__section {
    margin-bottom: 6rem;
}

.cast__section:last-child {
    margin-bottom: 0;
}

.cast__grid{
  max-width: 1200px;
  margin: 0 auto clamp(4rem,6vw,6rem);
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.6rem, 2.4vw, 3rem);
  justify-items: center;
}

.cast-card{ width: 100%; text-align: center; }

.cast-card__name{
  font-family:'Noto Serif JP', serif;
  font-weight: 300;
  color:#eaef56;
  font-size: clamp(1.8rem, 1.8vw, 2rem);
  margin: 0 0 1rem;
}

.cast-card__figure{
  margin:0;
  width: 100%; 
  aspect-ratio: 1 / 1;                 /* 正方形にトリミング */
  max-width: 230px;                    /* スクショっぽい大きさ */
  overflow: hidden;
  margin-bottom: 2rem;
}

.cast-card__img{
  width:100%; height:100%;
  object-fit: cover; object-position: center;
  display:block;
  border-radius: .4rem;
}

.cast-feature{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;  /* ← 右寄りに見えるなら左列も少し狭く */
  column-gap: 0rem;               /* ← gap を小さめに（列間だけ） */
  row-gap: 0rem;                                        /* ← 上下の余白はゼロに */
  align-items: end;
}

.cast-feature__figure{
  margin: 0;                 
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: .4rem;
  max-width: 280px;         
}

.cast-feature__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cast-feature__name{
  font-family:'Noto Serif JP', serif;
  font-weight: 300;
  color:#eaef56;
  font-size: clamp(2.0rem, 2.2vw, 2.6rem);  /* ← ほんの少しだけ小さく */
  margin: 0 0 .6rem;                       /* ← 見出し下の余白を小さく */
}

.cast-feature__bio{
  margin: 0;                                /* ← p の外側余白を消す */
  font-size: 1.3rem;
  line-height: 1.85;                        /* ← 行送りは読みやすさ確保の範囲で */
  letter-spacing: .02em;
  opacity: .95;
  color: #fff;
  text-align: justify;
  text-align-last: left;
}

@media (max-width: 768px){
  .cast__grid{ grid-template-columns: repeat(2, 1fr); }
  .cast-card__figure{ max-width: 420px; margin: 0 auto; }
  .cast-feature{
    grid-template-columns: 1fr;
    row-gap: 1.6rem;
    padding: 0; 
  }
  .cast-feature__figure{
    width: 70%;
    max-width: 360px;       /* 280px縛りを解除 */
    margin: 0 auto;        /* 中央寄せ */
  }
  .cast-feature__body{
    max-width: 70ch;       /* 長文読みやすく */
    margin: 0 auto;        /* 中央寄せ */
  }

  .cast-feature__name{
  text-align: center;
  }
}


/* スタッフ */

.cast__container {
    max-width: 90rem;
    margin: 5rem auto;
    padding: 0 2rem;
}

.staff__section {
    margin-bottom: 6rem;
}

.staff__section:last-child {
    margin-bottom: 0;
}

.staff-feature{
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: minmax(200px, 240px) 1fr;  /* ← 右寄りに見えるなら左列も少し狭く */
  column-gap: 7rem;               /* ← gap を小さめに（列間だけ） */
  row-gap: 0rem;                                        /* ← 上下の余白はゼロに */
  align-items: end;
  margin-bottom: 7rem;
}

.staff-feature__figure{
  margin: 0;                 
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: .4rem;
  max-width: 240px;         
}

.staff-feature__img{
  width: 100%;
  height: 100%;
  max-width: 240px;         
  object-fit: cover;
  display: block;
}

.staff-feature__role{
  font-family:'Noto Serif JP', serif;
  font-weight: 200;
  color:#eaef56;
  font-size: clamp(1.2rem, 1.6vw, 2.0rem);  
  margin: 0;                       /* ← 見出し下の余白を小さく */
}

.staff-feature__name{
  font-family:'Noto Serif JP', serif;
  font-weight: 300;
  color:#eaef56;
  font-size: clamp(2.0rem, 2.2vw, 2.6rem);  /* ← ほんの少しだけ小さく */
  margin: 0 0 .6rem;                       /* ← 見出し下の余白を小さく */
}

.staff-feature__bio{
  margin: 0;                                /* ← p の外側余白を消す */
  font-size: 1.3rem; /* ← ほんの少し小さめ */
  line-height: 1.85;                        /* ← 行送りは読みやすさ確保の範囲で */
  letter-spacing: .02em;
  opacity: .95;
  color: #fff;
  text-align: justify;
  text-align-last: left;
}

@media (max-width: 768px){
  .staff-feature{
    grid-template-columns: 1fr;   
    column-gap: 0;
    row-gap: 1.6rem;              
    margin-bottom: 5rem;
    justify-items: center;        
  }
  .staff-feature__figure{
    width: 70%;                   
    max-width: 360px;             
    margin: 0 auto;
  }
  .staff-feature__img{
    width: 100%;
    height: 100%;
    max-width: none;              
  }
  .staff-feature__role{
    font-size: 1.5rem;           
    text-align: center;
  }
  .staff-feature__name{
    text-align: center;
  }

}


/* メディア */

.media {
    padding: 8rem 0;
    background-color: #003174;
}

.media__container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}


.media__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.media-card {
  display: block;
  background: #fff;
  border-radius: .8rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  text-decoration: none;
  color: inherit;
  transition: transform .3s, box-shadow .3s;
}

.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

.media-card__figure {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.media-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-card__body {
  padding: 1rem 1.2rem;
}

.media-card__title {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  margin: 0 0 .6rem;
  color: #002244;
}

.media-card__meta {
  font-size: 1.2rem;
  color: #555;
  margin: 0;
}

@media (max-width: 768px){
  .media__grid{
    display: grid !important;     
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100%;
    max-width: none;               
  }
  .media-card{
    min-width: 0;                  
  }
  .media-card__title{
    overflow-wrap: anywhere;       
    word-break: break-word;
  }
}



/* 自主上映 */

.hosting {
    padding: 8rem 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
}

.hosting__container {
    max-width: 120rem;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.hosting__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 110rem;
    margin: 0 auto;
}

.hosting__info {
    color: #fff;
}

.hosting__info-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #eaef56;
}

.hosting__description {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #ccc;
}

.hosting__details,
.hosting__benefits {
    margin-bottom: 3rem;
}

.hosting__details-title,
.hosting__benefits-title,
.hosting__achievements-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #eaef56;
}

.hosting__details-list,
.hosting__benefits-list,
.hosting__achievements-list {
    list-style: none;
    padding-left: 0;
}

.hosting__details-list li,
.hosting__benefits-list li,
.hosting__achievements-list li  {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #ccc;
    position: relative;
    padding-left: 2rem;
}

.hosting__details-list li::before,
.hosting__benefits-list li::before,
.hosting__achievements-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #eaef56;
    font-weight: 700;
}

/* 自主上映チラシ */
.hosting__flyer {
  margin-top: 5rem;  /* ご案内文との間隔 */
}

.flyer-card {
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.8rem;
  padding: 1.6rem;
}

.flyer-thumb {
  display: flex;    
  gap: 1rem;                  /* 表裏の間隔 */
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.flyer-thumb img {
  width: 140px;               /* 1枚ずつの幅 */
  aspect-ratio: 210 / 297;
  object-fit: cover;
  border-radius: 0.4rem;
  background: #111;
}

.flyer-title {
  margin: 0 0 .2rem;
  font-weight: 700;
  color: #fff;
  font-size: 1.8rem;
}

.flyer-note {
  margin: 0 0 1.0rem;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.75);
}

.flyer-meta{
  display: flex;
  flex-direction: column;
  align-items: center;   /* ← 横中央 */
  text-align: center;
  width: 100%;
}

.flyer-actions{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* サブリンク（プレビュー表示） */
.flyer-view {
  font-size: 1.3rem;
  color: #eaef56;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 768px) {
  .flyer-card {
    flex-direction: column;
    align-items: center;
  }
  .flyer-thumb {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;   
  }
  .hosting__content {
      grid-template-columns: 1fr;
      gap: 4rem;
  }
}

/* 自主上映のお問い合わせ */

.hosting__form {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 0.1rem solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 3rem;
}

.hosting__form-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #eaef56;
}

.form__group {
    margin-bottom: 2rem;
}

.form__label {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.form__required {
    color: #ff6b6b;
}

.form__input,
.form__textarea,
.form__select {
    width: 100%;
    padding: 1.2rem;
    border: 0.1rem solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: inherit;
    font-size: 1.4rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    outline: none;
    border-color: #eaef56;
    background-color: rgba(255, 255, 255, 0.15);
}

.form__textarea {
    resize: vertical;
    min-height: 8rem;
}

.form__select option {
    background-color: #333;
    color: #fff;
}

.form__input--error,
.form__textarea.form__input--error {
  border-color: #ff6b6b !important;
}

.form__error {
  margin-top: .6rem;
  font-size: 1.2rem;
  color: #ff6b6b;
}

.form__message {
  margin-top: 2rem;
  padding: 1.2rem 1.4rem;
  border-radius: .6rem;
  font-size: 1.4rem;
  line-height: 1.6;
}

.form__message--success {
  border: 1px solid rgba(234,239,86,.6);
  background: rgba(234,239,86,.12);
  color: #eaef56;
}

.form__message--error {
  border: 1px solid rgba(255,107,107,.6);
  background: rgba(255,107,107,.12);
  color: #ffb3b3;
}


/* 総合お問い合わせ */

.contact {
    padding: 8rem 0;
    background-color: #003174;
}

.contact__container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact__content {
    text-align: center;
    gap: 6rem;
    max-width: 110rem;
    margin: 0 auto;
}

.contact__info {
    background-color: #003174;
    border-radius: 1rem;
    padding: 3rem;
    height: fit-content;
}

.contact__info-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
}

.contact__details p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #fff;
}

.contact__company {
    font-weight: 700 !important;
    color: #fff !important;
}

@media (max-width: 768px) {
    .contact__content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}


/* フッター */

.footer {
  background: #111;        
  color: #fff;            
  padding: 3.5rem 2rem;      /* 上下余白 */
  text-align: center;      /* 中央揃え */
}

.footer__content {
  max-width: 900px;
  margin: 0 auto;
}

.footer__credit {
  font-size: 1.5rem;
  font-weight: 300;
  color: #eaef56;          /* 黄色 */
  margin: 0 0 1.8rem;
}

.footer__note {
  font-size: 1.3rem;
  color: #ccc;
  align-self: center;
  margin: 0 0 2rem;
}

.footer__logo img{
  display: block;
  max-width: 40px;
  margin: 0 auto 1.5rem;
}

.footer__copy {
  font-size: 1.3rem;
  color: #aaa;
  margin: 0;
}



/* SNS */
.social-fixed {
  position: fixed;
  top: 3.5rem;
  right: 2rem;       /* 画面右からの距離 */
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
  gap: 1rem;         /* アイコン間の余白 */
  z-index: 9999;      /* 常に前面 */
}

.social-fixed a {
  display: block;
  width: 40px;
  height: 40px;
}

.social-fixed img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1); /* 白アイコンにする例 */
  transition: opacity 0.3s;
}

.social-fixed img:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
.social-fixed{
    display: none;
  }
}


/* スクロールで要素をフェードイン */
[data-reveal]{
  opacity: 0;
  transform: translateY(8px);   /* 移動 */
  transition: opacity 0.8s ease, transform 0.8s ease; /* 時間 */
  will-change: opacity, transform;
}

.is-visible[data-reveal]{
  opacity: 1;
  transform: none;
}


/* 動き少なめの場合 */
@media (prefers-reduced-motion: reduce) {
  .hero-track,
  [data-reveal],
  .nav__link::after,
  .btn {
    transition: none !important;
  }
}