@charset "UTF-8";
/* =====================================================
   GOLD STAR - Modern Website Design
   元のGOLD STARカラーを引き継いだモダンデザイン
   ===================================================== */

/* ---------- CSS Variables ---------- */
:root {
  /* 元GOLD STARの配色を継承しつつ、よりクリーンに調整 */
  --color-bg: #FAFAFA;           /* メイン背景（オフホワイト） */
  --color-bg-white: #FFFFFF;     /* コンテンツ背景（純白） */
  --color-bg-card: #FFFFFF;      /* カード背景 */
  --color-bg-section: #FCF9F2;   /* セクション背景（薄いクリーム） */
  
  --color-text: #333333;         /* メインテキスト */
  --color-text-muted: #666666;   /* サブテキスト */
  --color-text-light: #888888;   /* 薄いテキスト */
  
  /* ゴールド系アクセント（元サイトから） */
  --color-accent: #a8872d;       /* メインゴールド */
  --color-accent-light: #D5B96F; /* 明るいゴールド */
  --color-accent-pale: #e3cd92;  /* 薄いゴールド */
  --color-accent-bg: #66571E;    /* 濃い茶色 */
  
  --color-border: #e0d8c8;       /* ボーダー */
  --color-link: #0066cc;         /* リンク色 */
  
  --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  --font-accent: "Shippori Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "MS PMincho", serif;
  
  --transition-smooth: all 0.3s ease;
  --shadow-card: 0 2px 15px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg);
  /* ノイズテクスチャを追加して質感アップ */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  color: var(--color-text);
  line-height: 1.8;
  min-height: 100vh;
  overflow-x: hidden; /* 横スクロール防止 */
  width: 100%;
  position: relative;
}

a {
  color: var(--color-link);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--color-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.4;
}

.section-title {
  font-family: var(--font-accent);
  font-size: clamp(1.8rem, 4vw, 2.5rem); /* 少し大きく */
  text-align: center;
  margin-bottom: 3.5rem;
  color: var(--color-accent-bg);
  position: relative;
  letter-spacing: 0.1em;
  z-index: 1;
}

.section-title::before {
  /* 背景に巨大な薄い文字を配置 */
  content: attr(data-en);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Helvetica Neue", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(168, 135, 45, 0.05);
  z-index: -1;
  white-space: nowrap;
  letter-spacing: 0.05em;
  pointer-events: none;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  margin: 1.5rem auto 0;
}

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #b8a355 0%, #a89540 50%, #9a8735 100%); /* ゴールドグラデーション */
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1); /* ロゴを白に */
}

/* Navigation */
nav ul {
  display: flex;
  gap: 2rem;
}

nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9); /* 白に変更 */
  padding: 0.5rem 0;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-light); /* ゴールドのアンダーライン */
  transition: var(--transition-smooth);
}

nav a:hover {
  color: var(--color-accent-light); /* ホバー時はゴールド */
}

nav a:hover::after {
  width: 100%;
}

/* Header SNS Icons */
.header-sns {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.sns-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1); /* 半透明の白 */
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition-smooth);
}

.sns-icon:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
  color: var(--color-accent-bg);
  transform: translateY(-2px);
}

.sns-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001; /* メニューより上に表示 */
  position: relative;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  transform-origin: center;
}

/* ハンバーガー → × アニメーション */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2318 30%, #3d3520 50%, #2a2318 70%, #1a1a1a 100%);
  padding-top: 80px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* 微細なノイズテクスチャで質感を追加 */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
}

/* 装飾: ゴールドのコーナーライン */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

.hero::before {
  top: 100px;
  left: 40px;
  width: 120px;
  height: 120px;
  border-left: 1px solid var(--color-accent-light);
  border-top: 1px solid var(--color-accent-light);
  opacity: 0.4;
}

.hero::after {
  bottom: 40px;
  right: 40px;
  width: 120px;
  height: 120px;
  border-right: 1px solid var(--color-accent-light);
  border-bottom: 1px solid var(--color-accent-light);
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 3rem 2rem;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--color-accent-light);
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(213, 185, 111, 0.4);
  background: rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-accent);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

/* ゴールドのアンダーライン装飾 */
.hero-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent-light), transparent);
  margin: 1.5rem auto;
}

.hero-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

/* CTA Button */
.btn-primary {
  display: inline-block;
  padding: 1rem 3rem;
  background: transparent;
  color: var(--color-accent-light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  border: 1px solid var(--color-accent-light);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-accent-light);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-primary:hover {
  color: var(--color-accent-bg);
}

.btn-primary:hover::before {
  left: 0;
}

.btn-outline {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  background: transparent;
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  background: var(--color-accent);
  color: #fff;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
  z-index: 10;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--color-accent-light), transparent);
}

/* ---------- Section Layout ---------- */
section {
  padding: 5rem 1.5rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-white {
  background: var(--color-bg-white);
}

.section-cream {
  background: var(--color-bg);
}

/* ---------- News Section ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 横3列固定 */
  gap: 1.5rem;
}

.news-card {
  background: var(--color-bg-white);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.news-card a {
  color: inherit;
}

.news-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-content {
  padding: 1.2rem 1.5rem;
}

.news-card-date {
  font-size: 0.75rem;
  color: var(--color-accent);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.news-card-title {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
}

.news-card-category {
  display: inline-block;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  background: var(--color-accent-pale);
  color: var(--color-accent-bg);
  border-radius: 2px;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

/* View All Button */
.view-all {
  text-align: center;
  margin-top: 2.5rem;
}

/* ---------- Talent Section ---------- */
.talent-section {
  background: var(--color-bg-white);
}

.talent-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.category-label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--color-border);
  background: var(--color-bg-white);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.category-label.active,
.category-label:hover {
  color: var(--color-bg-white);
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.talent-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  cursor: pointer;
  background: #fff;
  border: none;
  padding: 1px; /* 白い境界線を強制的に作る */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
}

.talent-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 7px; /* 親より小さく */
  transition: var(--transition-smooth);
}

.talent-card-overlay {
  position: absolute;
  inset: 1px; /* パディングに合わせる */
  border-radius: 7px;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  transition: var(--transition-smooth);
}

.talent-card:hover {
  box-shadow: inset 0 0 0 1px #fff, 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.talent-card:hover img {
  transform: scale(1.08);
}

.talent-card:hover .talent-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(168, 135, 45, 0.1) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.talent-name {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.talent-role {
  font-size: 0.7rem;
  color: var(--color-accent-light);
  letter-spacing: 0.1em;
}

.talent-sns {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.8rem;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.talent-card:hover .talent-sns {
  opacity: 1;
  transform: translateY(0);
}

.talent-sns span {
  font-size: 0.8rem;
  padding: 0.3rem 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  color: #fff;
}

/* ---------- YouTube Section ---------- */
.youtube-section {
  background: var(--color-bg);
}

.youtube-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 横3列固定 */
  gap: 1.5rem;
}

.youtube-card {
  background: var(--color-bg-white);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.youtube-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.youtube-thumb {
  aspect-ratio: 3 / 1;
  position: relative;
  overflow: hidden;
}

.youtube-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.youtube-card:hover .youtube-thumb img {
  transform: scale(1.05);
}

.youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(168, 135, 45, 0.4);
}

.youtube-card:hover .youtube-play {
  transform: translate(-50%, -50%) scale(1.1);
}

.youtube-play::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 3px;
}

.youtube-title {
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text);
}

/* ---------- Fantia Section ---------- */
.fantia-section {
  background: var(--color-bg-section);
}

.fantia-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 横3列固定 */
  gap: 1.5rem;
}

.fantia-banner-large {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.fantia-banner-large:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-accent);
}

.fantia-visual {
  position: relative;
  aspect-ratio: 3/1;
  overflow: hidden;
}

.fantia-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.fantia-banner-large:hover .fantia-visual img {
  transform: scale(1.05);
}

.fantia-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.fantia-info {
  padding: 1.5rem;
  text-align: center;
}

.fantia-info h3 {
  font-size: 1.2rem;
  font-family: var(--font-accent);
  color: var(--color-accent-bg);
  margin-bottom: 0.5rem;
}

.fantia-info p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.btn-fantia {
  display: inline-block;
  padding: 0.6rem 2rem;
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  border-radius: 30px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  transition: var(--transition-smooth);
}

.fantia-banner-large:hover .btn-fantia {
  background: var(--color-accent);
  color: #fff;
}

/* ---------- Blog Section ---------- */
.blog-section {
  background: var(--color-bg-section);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 横3列固定 */
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.blog-card {
  text-align: center;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-card);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  object-position: center;
}

.blog-card-name {
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  color: var(--color-text);
  line-height: 1.4;
}

/* ---------- Footer ---------- */
footer {
  background: linear-gradient(135deg, #b8a355 0%, #a89540 50%, #9a8735 100%); /* ヘッダーと同じゴールドグラデーション */
  color: #fff;
  padding: 3rem 1.5rem 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-section h5 {
  font-size: 0.85rem;
  color: var(--color-accent-light);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.footer-section a:hover {
  color: var(--color-accent-light);
}

.footer-section p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-sns {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-sns .sns-icon {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.footer-sns .sns-icon:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
}

.footer-bottom {
  text-align: center;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 28px;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  nav ul {
    gap: 1.5rem;
  }
  
  .talent-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0.8rem 1rem;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #8B7355 0%, #6B5344 100%);
    padding: 5rem 2rem 2rem;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease-in-out;
    z-index: 999;
    overflow-y: auto;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  nav a {
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* オーバーレイ */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
  }
  
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .header-sns {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
  }
  
  .hero {
    min-height: 60vh;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  section {
    padding: 3.5rem 1rem;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .talent-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .youtube-grid {
    grid-template-columns: 1fr;
  }
  
  .fantia-container {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .talent-categories {
    gap: 0.5rem;
  }
  
  .category-label {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 50vh;
  }
  
  .hero-label {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-text {
    font-size: 0.85rem;
  }
  
  .talent-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
.fantia-visual {
  position: relative;
  aspect-ratio: 3/1; /* ここを修正 */
  overflow: hidden;
}
  
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-sns {
    justify-content: center;
  }
}

/* ---------- Utility Classes ---------- */
.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ---------- Animation ---------- */
.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Optional scroll animation class */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   TALENT DETAIL PAGE STYLES
   ===================================================== */

/* Talent Detail Hero */
.talent-hero {
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2318 30%, #3d3520 50%, #2a2318 70%, #1a1a1a 100%);
  padding-top: 80px;
  padding-bottom: 3rem;
  overflow: hidden;
}

.talent-hero-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
}

.talent-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.talent-hero-name {
  font-family: var(--font-accent);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.talent-hero-name-en {
  font-size: 0.85rem;
  color: var(--color-accent-light);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.talent-hero-role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.2em;
  padding: 0.3rem 1rem;
  border: 1px solid rgba(213, 185, 111, 0.4);
  display: inline-block;
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 2rem;
  background: var(--color-bg);
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.breadcrumb a {
  color: var(--color-text-muted);
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

.breadcrumb span {
  margin: 0 0.5rem;
  color: var(--color-text-light);
}

/* Talent Main Content */
.talent-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 4rem;
}

/* Talent Sidebar */
.talent-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.talent-photo-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.5rem;
}

.talent-photos-sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.talent-photos-sub img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.talent-photos-sub img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Talent SNS Links */
.talent-sns-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.talent-sns-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--color-text);
  transition: var(--transition-smooth);
}

.talent-sns-link:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.talent-sns-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Talent Profile */
.talent-profile {
  background: var(--color-bg-white);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-card);
}

.talent-profile h2 {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--color-accent-bg);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.talent-profile h2::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--color-accent);
  border-radius: 2px;
}

.profile-table {
  display: grid;
  gap: 1rem;
}

.profile-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--color-border);
}

.profile-row:last-child {
  border-bottom: none;
}

.profile-label {
  font-weight: 500;
  color: var(--color-accent-bg);
  font-size: 0.85rem;
}

.profile-value {
  color: var(--color-text);
  font-size: 0.95rem;
}

.profile-value a {
  color: var(--color-link);
}

.profile-value a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* Talent Highlights */
.talent-highlights {
  background: linear-gradient(135deg, var(--color-accent-pale) 0%, #f5edd5 100%);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  margin-bottom: 2rem;
}

.talent-highlights h3 {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--color-accent-bg);
  margin-bottom: 1rem;
}

.talent-highlights ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.talent-highlights li {
  color: var(--color-accent-bg);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* Works Section */
.works-section {
  background: var(--color-bg-white);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-card);
}

.works-section h2 {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  color: var(--color-accent-bg);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.works-section h2::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--color-accent);
  border-radius: 2px;
}

.works-category {
  margin-bottom: 2rem;
}

.works-category:last-child {
  margin-bottom: 0;
}

.works-category h3 {
  font-size: 1rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--color-accent);
}

.works-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.work-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  padding: 0.8rem 1rem;
  background: var(--color-bg);
  border-radius: 6px;
  font-size: 0.9rem;
}

.work-year {
  font-weight: 500;
  color: var(--color-accent-bg);
}

.work-title {
  color: var(--color-text);
}

.work-title a {
  color: var(--color-link);
}

.work-title a:hover {
  text-decoration: underline;
}

/* Back to Top Link */
.back-to-list {
  text-align: center;
  padding: 2rem;
}

.back-to-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--color-accent-bg);
  color: #fff;
  border-radius: 50px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: var(--transition-smooth);
}

.back-to-list a:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(168, 135, 45, 0.3);
}

/* Responsive for Talent Page */
@media (max-width: 1024px) {
  .talent-main {
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .talent-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  
  .talent-sidebar {
    position: static;
  }
  
  .talent-photo-main {
    max-width: 300px;
    margin: 0 auto 1.5rem;
  }
  
  .talent-photos-sub {
    max-width: 300px;
    margin: 0 auto 2rem;
  }
  
  .talent-sns-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .talent-sns-link {
    flex: 0 0 auto;
  }
  
  .talent-profile,
  .works-section {
    padding: 1.5rem;
  }
  
  .profile-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
  
  .work-item {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
  
  .work-year {
    font-size: 0.8rem;
  }
}
