@charset "utf-8";
 :root{
      --bg: #0a0a0a;
      --text: #e9cdb1;
      --line: rgba(255,255,255,0.12);
      --header-h: 56px;
  --container: 1100px;

    }

    html, body { height: 100%; }
    body{font-family: "Shippori Mincho", serif;font-weight: 400;
      margin: 0;
      color: var(--text);
       background: var(--bg);
font-size:  16px;
    }
    *, *::before, *::after{ box-sizing: border-box; }
    a{ color: inherit; text-decoration: none; }


.cast-card-prof,.cast-card-prof-hana,.newsletter p {   font-family: "IBM Plex Sans JP", sans-serif;}

/* 本文・リスト・スパンは読みやすさ重視のゴシック */
p { 
  font-size: 1.1rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-align: justify;
  padding: 0 2rem 0.8rem;
}
  @media (max-width: 768px){
p{font-size: 1rem; 
  padding:0 .5rem .5rem;letter-spacing: 0;text-align: left;
}
    }

.text-center{ margin: auto;text-align: center;  }

.caption,footer{ font-family: "Special Elite", system-ui;letter-spacing: 0.2em;}
.overlayMenu,h1,.title,nav,.cast-card-comment span,#schedule .city{   font-family: "EB Garamond", serif;letter-spacing: 0.2em;}
/* 見出し・キャッチコピーは雰囲気重視 */
h3, .catch {font-family: "Shippori Mincho", serif;font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
}


    /* ===== Header（常に透明） ===== */
    .site-header{
      width: 100%;
      position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 40;
      display: grid; align-items: center;
      background: transparent !important; backdrop-filter: none !important;
      box-shadow: none !important; border: none !important;
      pointer-events: none; /* 背景は透過クリック */
    }
    .nav{
      pointer-events: auto;
      height: 100%;
      display: flex; align-items: center; justify-content: space-between;
      padding:0 .9rem;
      width: 100%; max-width: none; margin: 0; /* 画面端に合わせる */
    }

  /* スマホ：ぼかし背景OFF。ビジュアルのみ画面いっぱい */
    @media (max-width: 992px){
    .nav{
      padding:0rem .9rem 0;
    }
    }


    .brand{
      font-size: 1rem; letter-spacing: .03em;
    }
    .brand a{ display: inline-block; padding: .4rem .6rem; border-radius: .6rem; background: transparent; }
    .links{ display: none; }

    .burger, .close{
      display: inline-grid; place-items: center;
      width: 40px; height: 40px; border-radius: 10px;
      border: 3px solid rgba(255,255,255,0.5);
      background: rgba(20,20,20,0.35);
      color: #fff; cursor: pointer;
      transition: transform .16s ease, background .25s ease, border-color .25s ease;
    }
    .burger:hover, .close:hover{
      transform: translateY(-1px);
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.28);
    }
    .burger svg, .close svg{ width: 18px; height: 18px; }

    /* ===== Fullscreen Menu ===== */
    .overlay{
      position: fixed; inset: 0; z-index: 60;
      display: grid; grid-template-rows: auto 1fr;
      background: rgba(8,8,8,0.92);
      opacity: 0; pointer-events: none; transform: scale(1.015);
      transition: opacity .32s ease, transform .32s ease;
    }
    .overlay.open{ opacity: 1; pointer-events: auto; transform: scale(1); }
    .overlay-top{
      display: flex; align-items: center; justify-content: space-between;
      padding: .6rem .9rem; height: var(--header-h);
      width: 100%; max-width: none; margin: 0; /* 画面端に合わせる */
    }
    .overlay-main{ display: grid; place-items: center; padding: 1.25rem; }
    .menu{ display: grid; gap: 1.1rem; text-align: center; transform: translateY(4px); opacity: .98; animation: menuIn .38s ease .04s both; }
    .menu a{
      font-size: clamp(1.5rem, 4.5vw, 2.4rem);
      letter-spacing: .06em;
      opacity: .94;
      transition: opacity .2s ease, transform .2s ease;
    }
    .menu a:hover{ opacity: 1; transform: translateY(-2px); }
    .muted{ color: #1e782b; font-size: .8rem; letter-spacing: .2em; margin-top: .4rem; }
    @keyframes menuIn{
      from{ transform: translateY(12px); opacity: 0; }
      to  { transform: translateY(4px);  opacity: .98; }
    }

    /* ===== Loader（黒背景・白文字 ／ タイプライター） ===== */
    .loader{
      position: fixed; inset: 0; z-index: 50;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center;
      background: #000; color: #fff;
      transition: opacity 1.0s ease;
    }
    .loader.hidden{ opacity: 0; pointer-events: none; }

    .loader svg{ width: 46px; height: 46px; display: block; margin: 0 auto; }
    .spin{ animation: spin 1.4s linear infinite; transform-box: view-box; transform-origin: 50% 50%; }
    @keyframes spin{ from{ transform: rotate(0deg);} to{ transform: rotate(360deg);} }

    .caption{
      margin-top: .9rem; font-size: .82rem; letter-spacing: .22em; color: #fff;
    }
    .caret{ display:inline-block; width:.6ch; text-align:left; animation: blink 1.1s steps(1,end) infinite; }
    @keyframes blink{ 0%,100%{opacity:0;} 50%{opacity:1;} }

    /* ===== HERO（PC:中央1000px／SP:幅いっぱい） ===== */
    .hero{
      position: relative;
      min-height: 100vh;
      display: flex; justify-content: center; align-items: center;
      overflow: hidden;
      opacity: 0; filter: blur(12px);
      transition: opacity 900ms ease, filter 1400ms ease;
      will-change: opacity, filter;
    }
    body.has-loaded .hero{ opacity: 1; filter: blur(0); }

    .hero img{
      display: block; width: 100%; height: auto; max-width: 1000px; position: relative; z-index: 2;
    }
    /* PC限定：周囲をぼかして広げる（主役は中央の鮮明画像） */
    .hero::before{
      content: ""; position: absolute; inset: 0; z-index: 1;
      background: url("../img/rough_251020.jpg") center/cover no-repeat;
      filter: blur(30px) brightness(0.3); transform: scale(1.2);
    }
    /* スマホ：ぼかし背景OFF。ビジュアルのみ画面いっぱい */
    @media (max-width: 768px){
      .hero::before{ display: none; }
      .hero{ min-height: auto; }
      .hero img{ max-width: none; width: 100%; height: auto; }
    }

   

#intro .container,#story .container,#schedule .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}


      /* ==============================
   SCHEDULE セクション
============================== */
#schedule {
  background: rgba(255, 255, 255, 0.03);
  padding: 5rem 0;
}

#schedule .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;text-align: center;
}

#schedule .cards {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 860px) {
  #schedule .cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

#schedule article {
  background: rgba(24, 24, 27, 0.45);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.4rem 1.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#schedule article:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

#schedule .city {
  font-size:1.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

#schedule h3 {
  margin: 0.3rem 0;
  font-size: 1.6rem;
}

#schedule .venue {
  color: #d4d4d8;
  font-size: 1.6rem;margin: auto;text-align: center;
}

#schedule .btn-ticket {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  margin: 0.8rem auto 0;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  font-size: 0.9rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

#schedule .btn-ticket:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

#schedule .note {

  font-size: 0.9rem;
  margin-top: 1.25rem;
  text-align: center;
}

      
   
    /* ===== Scroll Reveal（ブラーイン） ===== */
    .reveal{
      opacity: 0; filter: blur(12px); transform: translateY(12px);
      transition: opacity 800ms ease, filter 1000ms ease, transform 800ms ease;
      will-change: opacity, filter, transform;
      transition-delay: var(--reveal-delay, 0ms);
    }
    .reveal.is-visible{ opacity: 1; filter: blur(0); transform: none; }
    .reveal.fade-up{ transform: translateY(16px); }
    .reveal.fade-left{ transform: translateX(16px); }
    .reveal.fade-right{ transform: translateX(-16px); }
    .reveal.scale-in{ transform: scale(.96); }

    /* ===== Content ===== */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

/* スマホ・タブレット対応 */
@media (max-width: 1024px) {
  :root {
    --container: 48rem; /* 約768px */
  }
}

@media (max-width: 768px) {
  :root {
    --container: 36rem; /* 約576px */
  }
}

@media (max-width: 480px) {
  :root {
    --container: 100%; /* スマホはフル幅で */
  }
}



    .section{ padding: 5rem 0; }
    .title{ margin:0 auto 1.2rem;font-weight: 400; font-size: clamp(1.4rem, 2.8vw, 1.9rem);text-align: center;}

    .news-list{ list-style:none; padding:0; margin:auto;width: 88%;}
    .news-item{ display:flex; justify-content:space-between; align-items:center; gap:.75rem; padding:.9rem 0; border-bottom:1px solid var(--line); }
    .news-item .date{ color:#dec59d; margin-right:1rem; font-size:.95rem;}
@media (max-width: 768px) {
 .news-item .date{ display: block;}
}


    .site-footer{ font-size: 0.82rem; background: rgba(24,24,27,.5); border-top: 1px solid var(--line); padding: 3rem 0 6rem; margin-top: 3rem;}
    .footer-grid{ text-align: center;margin: auto;}
      

         #intro,#sns,#caststaff{background-image: url("../img/1.jpg");
             background-repeat: repeat;}
#sns{color: #e8c79e;}


h2{font-size: clamp(1.6rem, 2.4vw, 2rem);}
h3{margin:2rem auto;text-align: center;font-size: clamp(1.3rem, 2vw, 1.8rem);color: #fdf0d8;}

#story,#schedule{background: #051e08;}

#intro p,#story p{}

@media (max-width: 768px) {
#intro h3{font-size: 1.1rem;  letter-spacing: 0;}
}


/* ========== CAST & STAFF ========== */


.cast-section .title {width: 100%;
  margin-bottom: 2.4rem;
}

.cast-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 各「行」コンテナ */
.cast-row {
  display: flex;
  flex-wrap: wrap;
gap: 0;
}

/* 共通カードスタイル（9人分すべて） */
.cast-card {/*border: 1px solid #ff3300;*/
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  /* どのカードも同じ見た目に */
  padding: 1rem;
  gap: 0.7rem;
 border-radius: 1rem;
height: 100%; /* ← grid の中で高さが揃う */
}

/* ★ 全キャスト写真のサイズを完全固定で統一 ★ */
.cast-card img {margin: auto;
  width: 260px;
  height: 260px;          /* ← 全員この高さに統一（PC用） */


  margin-bottom: .7rem;
}


/* 名前・テキスト */
.cast-card-name {
  margin: 0 auto .25rem;
  font-size: 2rem;color:  #fdf0d8;font-weight: 600;
}
.cast-card-prof {width: 300px;padding: 0.5rem;
  margin: auto;
  font-size: .88rem;letter-spacing: 0;
  line-height: 1.4;
}
.cast-card-prof-hana {width: 100%;padding: 0.5rem;
  margin: auto;
  font-size: .88rem;letter-spacing: 0;
  line-height: 1.4;
}
/* 花總まり*/
.cast-card--featured {
  padding: 1.3rem 1.3rem 1.4rem;
}
.cast-card-comment {
  margin: .2rem 0 1rem;
  line-height: 1.9;
      background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);color:  #fdf0d8;padding: 2rem;
}


.cast-card-profile {
  margin: 0;
}
.cast-card-profile dt {
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .25rem;
}
.cast-card-profile dd {
  margin: 0;
line-height: 1.4;
}

/* PC時の横幅制御
   2列行 → half
   3列行 → third
   1列行 → full
*/
.cast-card--half {
  flex: 0 0 50%;
}
.cast-card--third {
 flex: 0 0 33.333%;
}
.cast-card--full {
  flex: 0 0 100%;
}

/* スマホは全部一列 */
@media (max-width: 992px) {
  .cast-row {
    flex-direction: column;
  }
  .cast-card,
  .cast-card--half,
  .cast-card--third,
  .cast-card--full {padding:1.5rem 0;
    flex: 0 0 100%;
  }
    
    
    
    .cast-card-comment {padding: 1rem;line-height: 1.6;
}
 
}
   /* スマホは全部一列 */
@media (max-width: 768px) { 
    .cast-card-comment {padding: 0.5rem;line-height: 1.6;}
}


/* 名前・テキスト */

#staff{
  margin: 6rem auto 0;text-align: center;
}
.staff-name {line-height: 1.4;
  margin: 0 auto 2rem;text-align: center;
  font-size: 1.5rem;color:  #fdf0d8;font-weight: 600;
}
.staff-name span{display: block;width: 100%;font-size: 0.88rem;
}


/*-------------------------------------------------------------------*/
.mt-1, .pt-1 {
    padding-top: 0.5em;
}
.mt-2, .pt-2 {
    padding-top: 1em;
}
.mt-3, .pt-3 {
    padding-top: 1.5em;
}
.mt-4, .pt-4 {
    padding-top: 2em;
}
.mt-5, .pt-5 {
    padding-top: 2.5em;
}
.mb-1, .pb-1 {
    padding-bottom: 0.5em;
}
.mb-2, .pb-2 {
    padding-bottom: 1em;
}
.mb-3, .pb-3 {
    padding-bottom: 1.5em;
}
.mb-4, .pb-4 {
    padding-bottom: 2em;
}
.mb-5, .pb-5 {
    padding-bottom: 2.5em;
}
/* ------------------------------------------------------------------- 
 * e.t.c
/*-------------------------------------------------------------------*/
.pc {
    display: block !important;
}
.sp {
    display: none !important;
}
/* ------------------------------------------------------------------- 
 * responsive:
 *  e.t.c
 * ------------------------------------------------------------------- */
@media screen and (max-width: 992px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
} /*end*/


/* ===== Newsletter（メルマガ） ===== */


.newsletter {
  text-align: center;
  padding: 2.2rem 1rem 0;
  margin:0 auto 2rem;
  border-radius: 1rem;
  background: rgba(0,0,0,0.24);
  backdrop-filter: blur(6px);
}

.newsletter h3 {
  margin: 0 0 .6rem;
  font-size: 1.25rem;
  letter-spacing: .04em;

}

.newsletter p {
  margin: 0 auto 1.1rem;
text-align: center;
  font-size: .9rem;
}

.newsletter-btn {font-weight: 600;
  display: inline-block;
  padding: .65rem 1.2rem;
  border-radius: .75rem;
  border: 1px solid #d6c48b;
  background: linear-gradient(
    180deg,
    #f7e9c9 0%,
    #e8c79e 50%,
    #e8c79e 100%
  );
  color: #4a3f2a;
  font-size: 1.2rem;
  letter-spacing: .04em;
  transition: background .25s ease, transform .2s ease;
}

.newsletter-btn:hover {
  background: linear-gradient(
    180deg,
    #fff4dd 0%,
    #f7e9c9 50%,
    #e5d6aa 100%
  );
  transform: translateY(-2px);
}


 /* フッターバナー------------------------ */
 #newsletter-banner {
  z-index: 999;
  position: fixed;
  bottom: 0;
  right: 0;
  background: #fffae6;
  padding: 15px 20px;
  border-radius: 10px 0 0 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(100%);
  display: flex;
  align-items: center;

  animation: showBanner 1s ease forwards;
  animation-delay: 7s; /* 7秒後 */
}

@keyframes showBanner {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#newsletter-banner input[type="checkbox"] {
  display: none; /* チェックボックスを画面上から完全に消す */
}

#closeBanner:checked ~ .banner-inner {
  display: none; /* クリックで消える */
}
.banner-inner {color: #333;margin: auto;}
.banner-cta {
  background: #c93a57;
  color:#F9F9F9;
  padding: 6px 10px;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
}

.banner-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}
