/* ============================================================
   main.css  上田実規朗 カスタムテーマ
   山中崇スタイル: ミニマル / 全画面スライドショー / レスポンシブ
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:   #ffffff;
  --off:     #f5f4f1;
  --light:   #ebe8e2;
  --border:  #dedad3;
  --gray:    #888480;
  --ink2:    #3a3730;
  --ink:     #1a1916;
  --dark:    #111110;
  --fs-xs:   11px;
  --fs-sm:   13px;
  --fs-base: 15px;
  --fs-lg:   18px;
  --fs-xl:   24px;
  --lh:      1.85;
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-weight: 400;
  line-height: var(--lh);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 100%);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 32px; height: 60px; max-width: 1200px; margin: 0 auto;
}
.header-logo {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 15px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--white); transition: color 0.4s;
  display: flex; flex-direction: column; gap: 2px; line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.site-header.scrolled .header-logo { color: var(--ink); text-shadow: none; }
.header-logo small {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.site-header.scrolled .header-logo small { color: var(--gray); }

/* ナビ */
.global-nav { display: flex; align-items: center; gap: 32px; }
.nav-list { display: flex; gap: 28px; list-style: none; }
.nav-link {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.95); transition: color 0.25s;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.nav-link:hover { color: var(--white); }
.site-header.scrolled .nav-link { color: var(--ink2); text-shadow: none; }
.site-header.scrolled .nav-link:hover { color: var(--ink); }
.nav-right { display: flex; gap: 16px; align-items: center; }
.nav-sns-link {
  font-size: 13px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6); transition: color 0.25s;
  background: none; border: none; cursor: pointer;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
.nav-sns-link:hover { color: var(--white); }
.site-header.scrolled .nav-sns-link { color: var(--gray); }
.site-header.scrolled .nav-sns-link:hover { color: var(--ink); }

/* SNSアイコン（SVG）スタイル */
.nav-sns-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; padding: 0;
  opacity: 0.65; transition: opacity 0.25s;
  color: rgba(255,255,255,0.85);
}
.nav-sns-icon:hover { opacity: 1; }
.site-header.scrolled .nav-sns-icon { color: var(--ink2); opacity: 0.55; }
.site-header.scrolled .nav-sns-icon:hover { opacity: 1; }
.nav-sns-icon svg { width: 16px; height: 16px; display: block; }

/* Casting Access ボタン — SNSリンクと区別するため枠付きに */
.nav-casting-btn {
  font-size: var(--fs-xs); letter-spacing: 0.15em;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 5px 14px;
  transition: all 0.25s;
  background: none; cursor: pointer;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  white-space: nowrap;
  text-decoration: none; display: inline-block;
}
.nav-casting-btn:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.8);
}
.site-header.scrolled .nav-casting-btn {
  color: var(--ink);
  border-color: var(--border);
}
.site-header.scrolled .nav-casting-btn:hover {
  border-color: var(--ink);
}

/* 管理リンクは小さく目立たなく */
.nav-admin-link { opacity: 0.5; font-size: 10px; }

/* ハンバーガー（SPのみ表示） */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 10;
}
.hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--white); transition: all 0.3s;
}
.site-header.scrolled .hamburger span { background: var(--ink); }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── HERO SLIDESHOW ─────────────────────────────────────── */
.hero {
  position: relative; height: 100svh; min-height: 500px;
  overflow: hidden;
}
.slides { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 15%; /* 顔が上寄りになるよう上方向に寄せる */
  opacity: 0; transition: opacity 1s var(--ease);
}
.slide.active { opacity: 1; }
.slide--empty { background: var(--dark); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.5) 100%
  );
}
.hero-name {
  position: absolute; bottom: 80px; left: 40px;
  display: flex; flex-direction: column; gap: 6px;
}
.hero-name-ja {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: clamp(32px, 6vw, 60px); font-weight: 400;
  letter-spacing: 0.06em; color: var(--white); line-height: 1.1;
}
.hero-name-en {
  font-size: clamp(11px, 1.5vw, 14px); letter-spacing: 0.4em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
}
.slide-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer;
  padding: 0; transition: background 0.3s, transform 0.3s;
}
.dot.active { background: var(--white); transform: scale(1.3); }
.scroll-hint {
  position: absolute; bottom: 32px; right: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.5); font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; cursor: pointer;
  text-decoration: none; transition: color 0.3s;
}
.scroll-hint:hover { color: rgba(255,255,255,0.9); }
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%,100% { transform: scaleY(0.3); transform-origin: top; opacity: 0.3; }
  60% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* ── SECTIONS ───────────────────────────────────────────── */
.section { padding: 100px 0; }
.section--gray { background: var(--off); }
.section--dark { background: var(--dark); }
.section-inner {
  max-width: 900px; margin: 0 auto; padding: 0 40px;
}
.section-inner--narrow { max-width: 640px; }
.section-inner--2col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.section-title {
  font-family: 'Cormorant Garamond', 'Shippori Mincho B1', serif;
  font-size: clamp(22px, 3vw, 30px); font-weight: 300;
  letter-spacing: 0.18em; margin-bottom: 40px;
  color: var(--ink);
}
.section-title--light { color: var(--white); }
.section-title::after {
  content: ''; display: block; width: 32px; height: 1px;
  background: var(--border); margin-top: 12px;
}

/* ── NEWS ───────────────────────────────────────────────── */
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-item {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 24px; padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.news-item:first-child { border-top: 1px solid var(--border); }
.news-date {
  font-size: var(--fs-xs); letter-spacing: 0.1em;
  color: var(--gray); white-space: nowrap; padding-top: 2px;
}
.news-body { font-size: var(--fs-sm); line-height: 1.8; }
.news-body a { transition: opacity 0.2s; }
.news-body a:hover { opacity: 0.6; }
.news-meta { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; min-height: 0; }
.news-meta:empty { display: none; }
.news-new-badge {
  font-size: 9px; font-weight: 600; letter-spacing: 0.1em;
  color: #c0392b; border: 1px solid #c0392b;
  padding: 1px 6px; line-height: 1.6; white-space: nowrap;
  display: inline-block; vertical-align: middle; margin-left: 8px;
  animation: blink-news-new 1.2s ease-in-out infinite;
}
@keyframes blink-news-new {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.15; }
}
.news-cat-badge {
  font-size: 9px; color: #fff; padding: 2px 7px;
  letter-spacing: 0.08em; border-radius: 2px; white-space: nowrap;
}

/* ── PROFILE ────────────────────────────────────────────── */
.profile-photo-wrap { position: relative; }
.profile-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  object-position: top;
}
.profile-photo--empty {
  width: 100%; aspect-ratio: 3/4;
  background: var(--light);
}
.profile-name-ja {
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 22px; font-weight: 500; letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.profile-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; font-weight: 300; letter-spacing: 0.2em;
  color: var(--gray); font-style: italic; margin-bottom: 32px;
}
.profile-table { display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }
.profile-row {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 12px; padding: 10px 0;
  border-bottom: 1px solid var(--border); font-size: var(--fs-sm);
}
.profile-row:first-child { border-top: 1px solid var(--border); }
.profile-row dt { color: var(--gray); font-size: var(--fs-xs); letter-spacing: 0.1em; padding-top: 2px; }
.profile-row dd { line-height: 1.7; white-space: pre-line; }
.profile-career {
  font-size: var(--fs-sm); line-height: 2; color: var(--ink2);
  margin-bottom: 28px; text-align: justify;
}
.profile-sns { display: flex; gap: 20px; margin-bottom: 28px; }
.sns-link {
  font-size: var(--fs-xs); letter-spacing: 0.2em;
  color: var(--ink2); border-bottom: 1px solid var(--border);
  padding-bottom: 2px; transition: all 0.2s;
}
.sns-link:hover { color: var(--ink); border-bottom-color: var(--ink); }
.profile-history-btn {
  font-size: var(--fs-xs); letter-spacing: 0.15em;
  color: var(--gray); transition: color 0.2s;
}
.profile-history-btn:hover { color: var(--ink); }

/* ── BIOGRAPHY ──────────────────────────────────────────── */
.bio-tabs {
  display: flex; flex-wrap: wrap; gap: 0;
  border-bottom: 1px solid var(--border); margin-bottom: 40px;
}
.bio-tab {
  font-size: var(--fs-xs); letter-spacing: 0.18em;
  color: var(--gray); padding: 10px 20px; cursor: pointer;
  background: none; border: none; border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: all 0.2s;
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 300;
}
.bio-tab.active { color: var(--ink); border-bottom-color: var(--ink); }
.bio-tab:hover { color: var(--ink2); }
.bio-panel { display: none; }
.bio-panel.active { display: block; }
.bio-year-block { margin-bottom: 20px; }
.bio-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 300; color: var(--gray);
  letter-spacing: 0.08em; margin-bottom: 6px;
  padding-bottom: 5px; border-bottom: 1px solid var(--border);
}
.bio-works { list-style: none; }
.bio-work {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 5px 0; border-bottom: 1px solid rgba(224,219,211,0.5);
  font-size: var(--fs-sm); gap: 16px;
}
.bio-work--compact {
  padding: 4px 0;
}
.bio-work:last-child { border-bottom: none; }
.bio-work-title {
  font-family: 'Noto Serif JP', serif; font-weight: 300; flex: 1;
  line-height: 1.7; padding-top: 1px;
}
.bio-work-episode {
  font-size: var(--fs-xs); color: var(--ink2);
  margin-left: 8px; letter-spacing: 0.05em;
}
.bio-work-new {
  font-size: 9px; letter-spacing: 0.15em; font-weight: 700;
  color: #fff; background: #e53935;
  padding: 2px 6px; margin-right: 6px; margin-left: 0;
  vertical-align: middle; display: inline-block;
  border-radius: 2px;
  animation: blink-new 1.2s ease-in-out infinite;
}
@keyframes blink-new {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(229,57,53,0.8); }
  50%       { opacity: 0.25; box-shadow: none; }
}
.bio-work-link {
  color: inherit; text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}
.bio-work-link:hover { border-bottom-color: var(--ink); }
.bio-work-meta {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 2px; flex-shrink: 0;
}
.bio-work-venue  { color: var(--ink2); font-size: 11px; text-align: right; letter-spacing: 0.04em; }
.bio-work-role   { color: var(--ink);  font-size: 12px; }
.bio-work-director { color: var(--ink2); font-size: 11px; text-align: right; letter-spacing: 0.04em; line-height: 1.4; }

/* 舞台専用表示 */
.bio-work-meta--stage {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 2px; flex-shrink: 0;
}
.bio-work-stage-item {
  font-size: 11px; color: var(--ink2); white-space: nowrap;
  letter-spacing: 0.04em;
}
.bio-work-stage-label {
  color: var(--ink); font-size: 10px; letter-spacing: 0.05em;
}
.bio-empty { color: var(--gray); font-size: var(--fs-sm); padding: 20px 0; }

/* ジャンルラベル */
.bio-type-label {
  display: inline-block; font-size: 9px; font-weight: 600;
  padding: 2px 6px; border-radius: 2px; margin-right: 8px;
  letter-spacing: 0.06em; vertical-align: middle; flex-shrink: 0;
  color: #fff; white-space: nowrap;
}

/* ALLタブ：1行レイアウト */
.bio-works--all { margin: 0; padding: 4px 0 0; }
.bio-work--all-row {
  display: flex; align-items: baseline; gap: 0;
  padding: 4px 0; border-bottom: 1px solid rgba(224,219,211,0.5);
  font-size: var(--fs-sm); flex-wrap: nowrap;
}
.bio-work--all-row:last-child { border-bottom: none; }
.bio-all-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px; color: var(--gray); letter-spacing: 0.06em;
  margin-right: 10px; flex-shrink: 0; min-width: 36px;
}
.bio-all-title {
  flex: 1; min-width: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-family: 'Noto Serif JP', serif; font-weight: 300;
}
.bio-all-episode {
  font-size: var(--fs-xs); color: var(--ink2);
  margin-left: 6px; flex-shrink: 0; white-space: nowrap;
}
.bio-all-director {
  font-size: 11px; color: var(--gray);
  margin-left: 8px; flex-shrink: 0; white-space: nowrap;
}
.bio-all-meta {
  font-size: 11px; color: var(--ink2);
  margin-left: 16px; flex-shrink: 0; white-space: nowrap;
  text-align: right; min-width: 80px;
}

/* ── REEL ───────────────────────────────────────────────── */
.reel-wrap { max-width: 800px; margin: 0 auto; aspect-ratio: 16/9; }
.reel-wrap iframe { width: 100%; height: 100%; }

/* ── CASTING ────────────────────────────────────────────── */
.casting-desc {
  font-size: var(--fs-sm); line-height: 2.2; color: var(--ink2);
  margin-bottom: 36px;
}
.casting-btn {
  display: inline-block; font-size: var(--fs-xs); letter-spacing: 0.2em;
  color: var(--white); background: var(--ink);
  padding: 14px 36px; transition: background 0.2s;
}
.casting-btn:hover { background: var(--ink2); }

/* ── LOGIN ──────────────────────────────────────────────── */
.login-wrap { min-height: 100vh; display: flex; }
.login-left {
  flex: 1; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.login-left-bg {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg,transparent,transparent 79px,rgba(255,255,255,0.02) 80px),
              repeating-linear-gradient(90deg,transparent,transparent 79px,rgba(255,255,255,0.02) 80px);
}
.login-left-content { position: relative; padding: 60px; max-width: 480px; }
.ll-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 24px; font-weight: 400; color: #fff; line-height: 1.7; margin-bottom: 20px;
}
.ll-desc { font-size: 12px; line-height: 2.2; color: rgba(255,255,255,0.4); margin-bottom: 40px; }
.ll-steps { display: flex; flex-direction: column; }
.llstep {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.07);
}
.llstep:last-child { border-bottom: 1px solid rgba(255,255,255,0.07); }
.llstep-num { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: rgba(255,255,255,0.2); line-height: 1; min-width: 20px; }
.llstep-txt { font-size: 12px; color: rgba(255,255,255,0.38); line-height: 1.8; }
.login-right {
  width: 460px; background: var(--white);
  display: flex; align-items: center; justify-content: center; padding: 60px;
}
.login-form-wrap { width: 100%; }
.lf-title { font-family: 'Shippori Mincho B1', serif; font-size: 22px; margin-bottom: 4px; }
.lf-sub { font-size: 10px; letter-spacing: 0.25em; color: var(--gray); margin-bottom: 40px; text-transform: uppercase; }
.lf { margin-bottom: 24px; }
.lf label { display: block; font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.lf input {
  width: 100%; border: none; border-bottom: 1px solid var(--border);
  padding: 10px 0; font-size: 15px;
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 300;
  color: var(--ink); outline: none; background: transparent; transition: border-color 0.2s;
}
.lf input:focus { border-bottom-color: var(--ink); }
.lf input::placeholder { color: var(--border); font-size: 13px; }
.lf-submit {
  width: 100%; background: var(--ink); color: #fff; border: none;
  padding: 14px; font-size: 11px; letter-spacing: 0.25em;
  font-family: 'Zen Kaku Gothic New', sans-serif; cursor: pointer;
  margin-top: 8px; transition: background 0.2s;
}
.lf-submit:hover { background: var(--ink2); }
.lf-note { margin-top: 14px; font-size: 10px; color: var(--gray); text-align: center; }
.back-btn {
  font-size: 10px; letter-spacing: 0.2em; color: var(--gray);
  border-bottom: 1px solid var(--border); padding-bottom: 1px;
  transition: all 0.2s; background: none; border-top: none; border-left: none; border-right: none;
  cursor: pointer; font-family: 'Zen Kaku Gothic New', sans-serif; display: inline-block; margin-top: 28px;
}
.back-btn:hover { color: var(--ink); border-bottom-color: var(--ink); }
.login-error {
  background: #fef0f0; border-left: 3px solid #b32d2e; color: #8b1a1a;
  padding: 10px 14px; font-size: 13px; margin-bottom: 20px;
}

/* ── CASTING PROFILE ────────────────────────────────────── */
.casting-profile-wrap { max-width: 900px; margin: 0 auto; padding: 100px 40px; }
.casting-access-bar {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 20px; background: var(--off); border: 1px solid var(--border);
  margin-bottom: 48px; font-size: 12px; color: var(--ink2);
  flex-wrap: wrap;
}
.scope-label { font-size: 10px; border: 1px solid var(--border); padding: 2px 10px; color: var(--gray); }
.cp-section { margin-bottom: 72px; }
.cp-profile-grid { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: start; }
.badge { font-size: 9px; border: 1px solid var(--border); padding: 2px 8px; color: var(--gray); display: inline-block; }
.badge.cast { border-color: #2563a8; color: #2563a8; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  padding: 40px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-name { font-family: 'Shippori Mincho B1', serif; font-size: 15px; letter-spacing: 0.06em; }
.footer-copy { font-size: var(--fs-xs); color: var(--gray); letter-spacing: 0.1em; }

/* ── SINGLE POST ─────────────────────────────────────────── */
.single-wrap { max-width: 720px; margin: 0 auto; padding: 120px 40px 80px; }
.single-date { font-size: var(--fs-xs); color: var(--gray); letter-spacing: 0.1em; margin-bottom: 12px; }
.single-title { font-family: 'Shippori Mincho B1', serif; font-size: 24px; font-weight: 500; line-height: 1.6; margin-bottom: 40px; }
.single-content { font-size: var(--fs-base); line-height: 2.2; color: var(--ink2); }
.single-content figure { margin: 0 0 32px; }
.single-content figure img { width: 100%; height: auto; display: block; }
.single-content figcaption { font-size: 11px; color: var(--gray); margin-top: 6px; text-align: center; }
.single-content h3 { font-size: 15px; font-weight: 600; margin: 32px 0 8px; color: var(--ink); letter-spacing: 0.05em; padding-bottom: 6px; border-bottom: 1px solid var(--border); }
.single-content p { margin-bottom: 16px; }
.single-content ul { margin: 0 0 16px 1.4em; }
.single-content ul li { margin-bottom: 4px; }
.single-content a { color: var(--ink); border-bottom: 1px solid var(--border); }
.single-content a:hover { border-bottom-color: var(--ink); }
.single-content strong { color: var(--ink); }
.single-back { display: inline-block; margin-top: 48px; font-size: var(--fs-xs); color: var(--gray); border-bottom: 1px solid var(--border); padding-bottom: 2px; }

/* ── TOAST ──────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--ink); color: #fff; padding: 12px 20px;
  font-size: 12px; transform: translateY(60px); opacity: 0;
  transition: all 0.3s; pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── ADMIN ──────────────────────────────────────────────── */
.admin-wrap { display: grid; grid-template-columns: 200px 1fr; min-height: calc(100vh - 60px); }
.admin-nav {
  background: var(--off); border-right: 1px solid var(--border);
  padding: 32px 0; position: sticky; top: 60px; height: calc(100vh - 60px); overflow-y: auto;
}
.anav-lbl { font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gray); padding: 0 24px; margin-bottom: 8px; display: block; }
.anav-grp { margin-bottom: 8px; }
.anav-link {
  display: block; padding: 9px 24px; font-size: 12px; color: var(--ink2);
  cursor: pointer; border-left: 2px solid transparent; transition: all 0.15s;
  background: none; border-top: none; border-right: none; border-bottom: none;
  width: 100%; text-align: left; font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 300; letter-spacing: 0.04em;
}
.anav-link:hover { color: var(--ink); background: var(--light); }
.anav-link.active { color: var(--ink); border-left-color: var(--ink); background: var(--light); }
.admin-content { padding: 40px 48px; background: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* タブレット（〜900px） */
@media (max-width: 900px) {
  .section-inner--2col {
    grid-template-columns: 1fr; gap: 48px;
  }
  .profile-photo-wrap {
    max-width: 320px; margin: 0 auto;
  }
  .profile-text .section-title { margin-top: 0; }
  .cp-profile-grid { grid-template-columns: 1fr; }
  .login-wrap { flex-direction: column; }
  .login-left { min-height: 40vh; }
  .login-right { width: 100%; padding: 48px 32px; }
}

/* スマートフォン（〜640px） */
@media (max-width: 640px) {
  /* ヘッダー */
  .hamburger { display: flex; }
  .global-nav {
    position: fixed; inset: 0; top: 60px;
    background: rgba(26,25,22,0.97);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 40px;
    transform: translateX(100%); transition: transform 0.35s var(--ease);
  }
  .global-nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: center; gap: 20px; }
  .nav-link { font-size: 15px; color: rgba(255,255,255,0.8); }
  .nav-right { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .nav-sns-link { color: rgba(255,255,255,0.5); font-size: 13px; }
  .nav-sns-icon { width: 26px; height: 26px; color: rgba(255,255,255,0.6); opacity: 1; }
  .nav-sns-icon svg { width: 20px; height: 20px; }
  .nav-casting-btn { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.35); font-size: 13px; }

  /* ヒーロー */
  .hero-name { bottom: 60px; left: 24px; }
  .scroll-hint { display: none; }

  /* セクション */
  .section { padding: 72px 0; }
  .section-inner { padding: 0 24px; }
  .section-inner--narrow { padding: 0 24px; }

  /* NEWS */
  .news-item { grid-template-columns: 1fr; gap: 6px; }
  .news-date { padding-top: 0; }

  /* BIOGRAPHY */
  .bio-tab { padding: 10px 14px; font-size: 10px; }
  .bio-work { flex-direction: column; gap: 4px; }
  .bio-work-meta { align-items: flex-start; }

  /* FOOTER */
  footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }

  /* LOGIN */
  .login-left-content { padding: 40px 24px; }
  .login-right { padding: 40px 24px; }

  /* CASTING PROFILE */
  .casting-profile-wrap { padding: 80px 24px; }

  /* ADMIN */
  .admin-wrap { grid-template-columns: 1fr; }
  .admin-nav { position: static; height: auto; }
  .admin-content { padding: 24px; }

  /* SINGLE */
  .single-wrap { padding: 80px 24px 60px; }
}

/* 極小（〜375px） */
@media (max-width: 375px) {
  .hero-name-ja { font-size: 28px; }
  .section-title { font-size: 20px; }
}

/* ── BLOG ────────────────────────────────────────────────── */
.blog-wrap { padding: 100px 0 80px; }
.blog-inner { max-width: 960px; margin: 0 auto; padding: 0 40px; }
.blog-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px,4vw,36px); font-weight: 300;
  letter-spacing: 0.18em; margin-bottom: 24px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}

/* カテゴリタブ */
.blog-cat-tabs {
  display: flex; gap: 0; margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.blog-cat-tab {
  padding: 8px 20px; font-size: 12px; letter-spacing: 0.12em;
  color: var(--gray); text-decoration: none;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.blog-cat-tab:hover { color: var(--ink); }
.blog-cat-tab.active { color: var(--ink); border-bottom-color: var(--ink); font-weight: 500; }

/* カテゴリバッジ */
.blog-item-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.blog-cat-badge {
  font-size: 10px; color: #fff; padding: 2px 8px; letter-spacing: 0.08em;
  border-radius: 2px; white-space: nowrap;
}
.blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 40px;
}
.blog-item { display: flex; flex-direction: column; }
.blog-thumb {
  display: block; overflow: hidden;
  aspect-ratio: 16/9; margin-bottom: 20px;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-thumb:hover img { transform: scale(1.04); }
.blog-thumb-placeholder {
  aspect-ratio: 16/9; margin-bottom: 20px;
  background: linear-gradient(135deg, #f5f2ed 0%, #e8e3da 100%);
  display: flex; align-items: center; justify-content: center;
}
.blog-thumb-placeholder span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: 0.35em; color: var(--gray);
}
.blog-item-body { flex: 1; display: flex; flex-direction: column; }
.blog-date { font-size: 11px; letter-spacing: 0.12em; color: var(--gray); display: block; margin-bottom: 10px; }
.blog-title { font-family: 'Noto Serif JP', serif; font-size: 16px; font-weight: 400; line-height: 1.8; margin-bottom: 12px; color: var(--ink); }
.blog-title a { color: inherit; text-decoration: none; transition: opacity 0.2s; }
.blog-title a:hover { opacity: 0.6; }
.blog-excerpt { font-size: 13px; line-height: 1.9; color: var(--ink2); margin-bottom: 20px; flex: 1; }
.blog-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 0.15em;
  color: var(--ink); border-bottom: 1px solid var(--ink);
  padding-bottom: 3px; transition: opacity 0.2s; align-self: flex-start;
}
.blog-more:hover { opacity: 0.5; }
.blog-empty { color: var(--gray); font-size: var(--fs-sm); padding: 40px 0; }
.blog-pagination { margin-top: 64px; display: flex; justify-content: center; grid-column: 1/-1; }
.blog-pagination .nav-links { display: flex; gap: 8px; }
.blog-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; font-size: 13px;
  border: 1px solid var(--border); color: var(--ink2); transition: all 0.2s;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover { border-color: var(--ink); color: var(--ink); }
.blog-pagination .page-numbers.dots { border: none; }

/* single thumb */
.single-thumb { margin-bottom: 40px; }
.single-thumb img { width: 100%; height: auto; }
.single-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.single-nav-link { font-size: var(--fs-xs); letter-spacing: 0.1em; color: var(--gray); transition: color 0.2s; max-width: 45%; line-height: 1.7; }
.single-nav-link:hover { color: var(--ink); }

/* NEWS に「ブログを見る」リンク */
.news-more-link {
  display: inline-block; margin-top: 32px;
  font-size: var(--fs-xs); letter-spacing: 0.15em;
  color: var(--gray); border-bottom: 1px solid var(--border);
  padding-bottom: 2px; transition: all 0.2s;
}
.news-more-link:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* レスポンシブ */
@media (max-width: 640px) {
  .blog-wrap { padding: 80px 0 60px; }
  .blog-inner { padding: 0 24px; }
  .blog-list { grid-template-columns: 1fr; gap: 40px; }
  .blog-thumb { aspect-ratio: 16/9; }
  .blog-thumb-placeholder { aspect-ratio: 16/9; }
}
