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

:root {
  --pink:       #FF6478;
  --blue-dark:  #006096;
  --blue-light: #43BCFF;
  --base:       #EAE6E0;        /* トンマナ背景色 */
  --white:      #FFFFFF;
  --text:       #314A55;
  --warm:       #EAE6E0;
  --dark:       #0d1117;
  --border:     rgba(49,74,85,0.10);
}

html { scroll-behavior: auto; scrollbar-gutter: stable; }

/* 明朝体を使いたい箇所に付与（見出しの一部強調など） */
.font-serif { font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', serif; }

/* モバイルのみ改行を有効化（中央寄せ・長文テキストの構造的な折り返し制御用） */
.u-sp-br { display: none; }
@media (max-width: 767px) {
  .u-sp-br { display: inline; }
}

/* ── ページローダー（初期読み込み中の全画面カバー） ── */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--base);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
#page-loader.is-hidden { opacity: 0; pointer-events: none; }
.page-loader-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 3px solid rgba(255,100,120,0.22);
  border-top-color: var(--pink);
  animation: page-loader-spin 0.8s linear infinite;
}
@keyframes page-loader-spin { to { transform: rotate(360deg); } }

/* ── NAV brand ── */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 301;
  pointer-events: auto;
}
.nav-internship {
  font-size: clamp(12px, 2.5vw, 16.5px);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #EB3CA2;
  white-space: nowrap;
  transition: none;
}
body.menu-open .nav-internship { color: rgba(255,255,255,0.75); }

/* 全体の行間ベース */
body { line-height: 1.9; overflow-x: hidden; } /* aboutus.html の横いっぱい写真(100vw)がスクロールバーを作らないためのセーフガード */

/* ── CONCEPT MOVIE トリガー ── */
.movie-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
}
.movie-trigger {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #12181f;
  cursor: pointer;
}
.movie-spin-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.movie-spin-text {
  position: absolute;
  top: 0; left: 0;
  width: 200px;
  height: 200px;
  animation: spinText 10s linear infinite;
}
.movie-spin-text--mob { display: block; }
.movie-spin-text--pc  { display: none; }
@media (min-width: 768px) {
  .movie-spin-text--mob { display: none; }
  .movie-spin-text--pc  { display: block; }
}
@keyframes spinText {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.movie-play-btn {
  position: relative;
  z-index: 1;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: #FF6478;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 8px 32px rgba(255,100,120,0.40);
  transition: transform 0.28s, box-shadow 0.28s;
}
.movie-trigger:hover .movie-play-btn {
  transform: scale(1.1);
  box-shadow: 0 12px 44px rgba(235,60,162,0.56);
}
.movie-embed { position: absolute; inset: 0; }
.movie-embed iframe { width: 100%; height: 100%; display: block; }

/* ── 動画 ComingSoon（非公開中の一時的な見せ方。解除は.movie-wrapから
     "movie-wrap--comingsoon" クラスを外すだけでOK） ── */
.movie-comingsoon { display: none; }
.movie-wrap--comingsoon .movie-trigger {
  filter: blur(8px) brightness(0.55);
  pointer-events: none;
  transition: filter 0.3s;
}
.movie-wrap--comingsoon .movie-comingsoon {
  display: flex;
  position: absolute;
  inset: 0;
  z-index: 3;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(13,17,23,0.32);
}
.movie-comingsoon-badge {
  display: inline-block;
  padding: 8px 28px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(255,100,120,0.40);
}
.movie-comingsoon-sub {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* ── VOICES 新レイアウト ── */
#voices { background: transparent; padding: 140px 10%; }
.voices-inner { max-width: 1100px; margin: 0 auto; }
.voices-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900; color: var(--text);
  margin-bottom: 10px; line-height: 1.15;
}
.voices-subtitle {
  font-size: clamp(13px, 1.8vw, 21px); color: rgba(49,74,85,0.68);
  display: flex; align-items: baseline; gap: 0.5em; margin-bottom: 56px;
}
.voices-tri { color: #FF6478; font-size: 1.5em; }
.voices-tri--nudge { position: relative; top: 0.10em; }
.voices-subtitle--onDark { color: #ffffff; }

/* パネル共通 */
.voices-panels { display: flex; flex-direction: column; gap: 40px; }

.voice-panel {
  position: relative;
  padding-top: 28px;   /* 写真が上にはみ出る分 */
  padding-left: 20px;  /* 写真が左にはみ出る分 */
  display: flex;
  flex-direction: column;
}

/* 写真：左上に絶対配置、カードの外に食み出す */
.vp-photo {
  position: absolute;
  top: 0; left: 0;
  width: 46%;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  z-index: 2;
  background: var(--warm);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}
.vp-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vp-photo-img--voices2 { object-position: 50% 60%; }
.vp-photo-img--voices3 { object-position: 15% 50%; }

/* カード：写真と重なるよう左にパディング */
.vp-card {
  position: relative; z-index: 1;
  border-radius: 16px;
  background: var(--pink);
  cursor: pointer;
  padding: 24px 24px 28px 50%;
  min-height: 190px;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center; gap: 12px;
}

/* 反転：写真を右上に */
.voice-panel--rev {
  padding-left: 0;
  padding-right: 20px;
}
.voice-panel--rev .vp-photo {
  left: auto; right: 0;
}
.voice-panel--rev .vp-card {
  padding-left: 24px;
  padding-right: 50%;
}

.vp-title { font-size: clamp(14px, 1.8vw, 19px); font-weight: 800; color: var(--white); line-height: 1.4; }
.vp-desc  { font-size: 12.5px; color: rgba(255,255,255,0.88); line-height: 1.85; }

/* 詳しく見るボタン */
.vp-btn {
  display: inline-flex; align-items: center; gap: 11px;
  text-decoration: none; color: var(--text);
  font-size: 13px; font-weight: 700; margin-top: 4px; width: fit-content;
}
.vp-btn-circle {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid var(--text); overflow: hidden; flex-shrink: 0;
}
.vp-btn-fill {
  position: absolute; inset: 0;
  background: var(--text);
  transform: translateX(-100%);
  border-radius: 50%;
}
.vp-btn-circle svg {
  position: relative; z-index: 1;
  width: 17px; height: 17px;
  stroke: var(--text); stroke-width: 1.8; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Voices / Information：パネルが#FF6478の不透明背景のため、地の文・ボタンは白基調に */
.vp-card .vp-btn,
.info-card .vp-btn { color: var(--white); }
.vp-card .vp-btn-label,
.info-card .vp-btn-label { color: var(--white); }
.vp-card .vp-btn-circle,
.info-card .vp-btn-circle { border: none; background: var(--white); }
.vp-card .vp-btn-fill,
.info-card .vp-btn-fill { background: var(--pink); transition: transform 0.4s ease; }
.vp-card .vp-btn-circle svg,
.info-card .vp-btn-circle svg { stroke: var(--pink); transition: stroke 0.4s ease; }
.vp-card .vp-btn:hover .vp-btn-fill,
.info-card .vp-btn:hover .vp-btn-fill { transform: translateX(0); }
.vp-card .vp-btn:hover .vp-btn-circle svg,
.info-card .vp-btn:hover .vp-btn-circle svg { stroke: var(--white); }

/* Movie / Contents のボタン：枠無し白丸＋ホバーで塗りつぶし */
.movie-more .vp-btn,
.contents-more .vp-btn { color: #2C2C2C; }
.movie-more .vp-btn-label,
.contents-more .vp-btn-label { color: #2C2C2C; }
.movie-more .vp-btn-circle,
.contents-more .vp-btn-circle { border: none; background: var(--white); }
.movie-more .vp-btn-fill,
.contents-more .vp-btn-fill { background: var(--pink); transition: transform 0.4s ease; }
.movie-more .vp-btn-circle svg,
.contents-more .vp-btn-circle svg { stroke: var(--pink); transition: stroke 0.4s ease; }
.movie-more .vp-btn:hover .vp-btn-fill,
.contents-more .vp-btn:hover .vp-btn-fill { transform: translateX(0); }
.movie-more .vp-btn:hover .vp-btn-circle svg,
.contents-more .vp-btn:hover .vp-btn-circle svg { stroke: var(--white); }

/* 中間幅: カードを独立した2列レイアウトにして、写真の過度な拡大を防ぐ */
@media (min-width: 500px) and (max-width: 1259px) {
  .voices-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: 48px 32px;
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (min-width: 640px) and (max-width: 1259px) {
  /* 2列時は3枚目も同じ幅で中央に置く */
  .voice-panel:last-child {
    grid-column: 1 / -1;
    width: calc((100% - 32px) / 2);
    justify-self: center;
  }
  /* 写真位置を揃え、カードを独立した見た目にする */
  .voice-panel--rev { padding-left: 20px; padding-right: 0; }
  .voice-panel--rev .vp-photo { left: 0; right: auto; }
  .voice-panel--rev .vp-card { padding-left: 50%; padding-right: 24px; }
}

/* 広い画面のみ3カラム横並び */
@media (min-width: 1260px) {
  .voices-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 28px;
    align-items: stretch;
  }
  /* PC では反転リセット（すべて写真が左上） */
  .voice-panel--rev { padding-left: 20px; padding-right: 0; }
  .voice-panel--rev .vp-photo { left: 0; right: auto; }
  .voice-panel--rev .vp-card  { padding-left: 50%; padding-right: 24px; }
}

/* ── ベン図 ── */
.venn-wrap { display: flex; justify-content: center; margin: 56px 0 40px; }
.venn-wrap img { width: 100%; max-width: 460px; height: auto; display: block; }

/* ── CONTENTS テキスト＋ボタン ── */
.contents-text {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text);
  line-height: 1.95;
  text-shadow: 0 0 12px rgba(234,230,224,0.9), 0 0 24px rgba(234,230,224,0.7), 0 2px 4px rgba(234,230,224,0.8);
}
.contents-more { display: flex; justify-content: flex-end; }

/* ── MOVIE 詳しく見るボタン ── */
.movie-more { display: flex; justify-content: flex-end; margin-top: 24px; }

/* ── AIM SVG オーバーレイ ── */
#aim-svg-wrap {
  position: fixed;
  top: 50%; left: 65%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: clamp(442px, 67.6vw, 1014px);
  opacity: 0;
  pointer-events: none;
}
#aim-svg {
  width: 100%; height: auto; overflow: visible;
  filter: drop-shadow(0 0 8px rgba(255,100,120,0.15));
}

body {
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  color: var(--text);
  background: #EAE6E0;
  overflow-x: hidden;
}

/* ─── CANVAS ─── */
#hero-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: block;
  z-index: 1;
  will-change: filter;
}
#scene-overlay {
  position: fixed;
  inset: 0;
  background: rgba(234,230,224,0.50);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

/* ─── NAV ─── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.45s, padding 0.45s, box-shadow 0.45s;
  pointer-events: none;
}
#nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 40px;
  box-shadow: 0 1px 20px rgba(0,96,150,0.08);
}
/* 画面最上部にいる間だけ背景をわずかに暗くして視認性を上げる（scrolledとは別状態） */
#nav.at-top {
  background: rgba(13,17,23,0.24);
}
/* 背景が暗くなる分、ハンバーガー（閉じている状態）のバーを白くして視認性を確保 */
#nav.at-top .hamburger span { background: #FFFFFF; }

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}
.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.nav-logo .logo-white { display: none; }
.nav-logo .logo-pink  { display: block; }
body.menu-open .nav-logo .logo-pink  { display: none; }
body.menu-open .nav-logo .logo-white { display: block; }

/* nav 右側グループ */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 301;
  pointer-events: auto;
}

/* ENTRY ボタン — 常時表示 */
.nav-entry-btn {
  display: block;
  padding: 9px 22px;
  border-radius: 100px;
  background: #FF6478;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.nav-entry-btn:hover { opacity: 0.85; }

/* ─── HAMBURGER ─── */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  position: relative;
  z-index: 301;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1),
              opacity 0.3s ease,
              width 0.35s ease,
              background 0.35s ease;
}
body.menu-open .hamburger span { background: #FFFFFF; }
.hamburger span:nth-child(1) { width: 26px; }
.hamburger span:nth-child(2) { width: 20px; }
.hamburger span:nth-child(3) { width: 14px; }
.hamburger:hover span { width: 26px; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); width: 26px; }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); width: 26px; }

/* ─── MENU OVERLAY ─── */
/* モバイル: 全画面 */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: #1e1e1e;
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s cubic-bezier(0.23,1,0.32,1);
  overflow-y: auto;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mmenu-body {
  padding: 100px 36px 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mmenu-section {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}

.mmenu-head {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  cursor: pointer;
  transition: color 0.22s;
}
.mmenu-head:hover { color: #FF6478; }

.mmenu-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  margin-bottom: 14px;
  line-height: 1.7;
}

.mmenu-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.mmenu-links a {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.22s;
}
.mmenu-links a:hover { color: #FF6478; }

/* モバイルでは外部リンク列を非表示 */
.mmenu-ext-col { display: none; }

/* PC: 全画面・3カラム */
@media (min-width: 768px) {
  .mmenu-body {
    padding: 90px 8% 60px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 240px;
    gap: 28px 48px;
    align-content: start;
  }
  .mmenu-head { font-size: 28px; }
  .mmenu-ext-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mmenu-section { break-inside: avoid; }
}

/* ─── SECTION 共通 ─── */
section { position: relative; z-index: 10; }

.sec-label {
  display: block;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--text);
  margin-bottom: 10px;
}
.sec-label--onDark { color: #FFFFFF; }

.section-title {
  font-size: clamp(26px, 3.8vw, 56px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 20px;
}
.section-desc {
  font-size: 15px;
  line-height: 2.1;
  color: rgba(49,74,85,0.68);
  max-width: 560px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--pink);
  color: white;
  text-decoration: none;
  padding: 16px 38px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 28px rgba(255,100,120,0.30);
  transition: opacity 0.2s;
  cursor: pointer;
}
/* ヘッダーのENTRYボタン（.nav-entry-btn）と同じopacityベースのhoverに統一 */
.btn-primary:hover { opacity: 0.85; }
.btn-ghost {
  display: inline-block;
  border: 1.5px solid rgba(49,74,85,0.28);
  color: var(--text);
  text-decoration: none;
  padding: 16px 38px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: rgba(234,230,224,0.60);
  transition: border-color 0.28s, background 0.28s;
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: var(--text);
  background: rgba(49,74,85,0.06);
}

/* ─── HERO ─── */
#hero {
  position: relative; z-index: 10;
  width: 100%; height: 100vh; min-height: 620px;
  background: transparent;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 10% 80px;
  max-width: 880px;
}
/* JSのGSAP entrance演出が始まるまでは非表示にしておき、
   モバイル等でJS読込前に文字だけ先に見えてしまう(壊れて見える)ラグを防ぐ。
   script_ai.js側のgsap.set/timelineがロード後に表示・アニメーションする。 */
.hero-tag, .hero-title, .hero-sub, .hero-btns, .scroll-hint {
  opacity: 0;
}
.hero-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  margin-bottom: 26px;
  color: var(--pink);
}
.hero-title {
  font-family: "BIZ UDPMincho", serif;
  font-size: clamp(34px, 5.8vw, 80px);
  font-weight: 700;
  color: #2C2C2C;
  line-height: 1.50;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-shadow: 0 0 12px rgba(234,230,224,0.9), 0 0 24px rgba(234,230,224,0.7), 0 2px 4px rgba(234,230,224,0.8);
}
.hero-sub {
  font-size: clamp(13px, 1.4vw, 17px);
  color: rgba(49,74,85,0.70);
  line-height: 2.1;
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.scroll-hint {
  position: absolute;
  bottom: 42px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-hint span {
  color: rgba(49,74,85,0.5);
  font-size: clamp(12px, 2vw, 15px);
  letter-spacing: 0.44em;
}
.scroll-line { width: 1px; height: 56px; overflow: hidden; }
.scroll-line::after {
  content: '';
  display: block;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, var(--pink), rgba(255,100,120,0));
  animation: lineDown 2.2s ease-in-out infinite;
}
@keyframes lineDown {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* ─── ABOUT ─── */
#about {
  background: transparent;
  padding: 140px 10%;
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-col-left {}
.about-col-right {}
.about-col-left .section-title {
  font-size: clamp(28px, 3.5vw, 52px);
}
#about .section-desc { margin-bottom: 44px; }

.about-stats {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.stat-item {}
.stat-num {
  display: block;
  font-size: 44px;
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.stat-lbl {
  font-size: 11px;
  color: rgba(49,74,85,0.52);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* ─── CONCEPT MOVIE ─── */
#movie {
  background: transparent;
  padding: 130px 10%;
  text-align: left;
}

.movie-inner { max-width: 1100px; margin: 0 auto; }
.movie-wrap  { max-width: 860px; margin: 0 auto; }
.movie-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: #12181f;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  transition: border-color 0.35s;
}
.movie-placeholder:hover { border-color: rgba(255,100,120,0.38); }
.movie-btn-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,100,120,0.12);
  border: 2px solid rgba(255,100,120,0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: rgba(255,100,120,0.80);
  padding-left: 4px;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.movie-placeholder:hover .movie-btn-icon {
  background: rgba(255,100,120,0.22);
  border-color: var(--pink);
  color: var(--pink);
}
.movie-caption {
  color: rgba(255,255,255,0.30);
  font-size: 12px;
  letter-spacing: 0.18em;
}

/* ─── CONTENTS ─── */
#contents {
  background: transparent;
  padding: 140px 10%;
}
.contents-inner { max-width: 1100px; margin: 0 auto; }
.contents-header {
  max-width: 540px;
  margin-bottom: 64px;
}

/* ─── VOICES ─── */
#voices {
  background: transparent;
  padding: 140px 10%;
}
.voices-inner { max-width: 1100px; margin: 0 auto; }
.voices-header { margin-bottom: 72px; }

.voice-group { margin-bottom: 88px; }
.voice-group:last-child { margin-bottom: 0; }

.voice-group-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* Grid variants */
.voice-grid          { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.voice-grid--wide    { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.voice-grid--duo     { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.voice-card {
  background: var(--base);
  border: 1px solid rgba(49,74,85,0.07);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.voice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(49,74,85,0.09);
}

/* Horizontal card (先輩社員) */
.voice-card--horiz {
  display: grid;
  grid-template-columns: 200px 1fr;
}

/* Photo areas */
.voice-photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.voice-photo--sq {
  aspect-ratio: auto;
  height: 100%;
  min-height: 240px;
  width: 100%;
}
/* 格子模様のプレースホルダー */
.placeholder-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(49,74,85,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49,74,85,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
}
.placeholder-label {
  position: relative;
  z-index: 1;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(49,74,85,0.36);
  background: var(--white);
  padding: 5px 13px;
  border: 1px solid rgba(49,74,85,0.16);
  border-radius: 2px;
}

.voice-info { padding: 24px 22px; }
.voice-role {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 8px;
}
.voice-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}
.voice-quote {
  font-size: 13px;
  color: rgba(49,74,85,0.60);
  line-height: 1.9;
  padding-left: 14px;
  position: relative;
  margin-bottom: 18px;
}
.voice-quote::before {
  content: '';
  position: absolute;
  left: 0; top: 2px; bottom: 2px;
  width: 2px;
  background: var(--pink);
  border-radius: 2px;
}
.voice-more {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--blue-dark);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.25s;
  border-bottom: 1px solid rgba(0,96,150,0.28);
  padding-bottom: 2px;
}
.voice-more:hover { color: var(--pink); border-color: var(--pink); }

/* ─── INFORMATION ─── */
#information {
  background: transparent;
  padding: 140px 10%;
}
.info-inner { max-width: 1100px; margin: 0 auto; }
.info-header { margin-bottom: 72px; }

.info-cards { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  position: relative;
  width: 70%;
  background: var(--pink);
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  padding: 26px 132px 26px 28px;
  min-height: 150px;
  display: flex;
  align-items: center;
}
.info-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.info-card .vp-btn-circle { width: 36px; height: 36px; }
.info-card .vp-btn-circle svg { width: 15px; height: 15px; }
.info-card-title {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 800;
  color: var(--white);
}
.info-card-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.88);
  line-height: 1.85;
}
.info-card-icon {
  position: absolute;
  top: 50%; right: 24px;
  transform: translateY(-50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.14);
}
.info-card-icon img {
  width: 56%; height: 56%;
  object-fit: contain;
  display: block;
}

/* ─── FOOTER ─── */
#site-footer {
  background: rgba(8,9,13,0.95);
  color: rgba(255,255,255,0.55);
  position: relative;
  z-index: 10;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 10% 48px;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

/* ブランド */
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo  { height: 36px; width: auto; opacity: 0.85; align-self: flex-start; }
.footer-tagline {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
}

/* サイトマップ */
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 24px;
}
.footer-nav-head {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 6px;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-nav-head:hover { color: #FF6478; }
.footer-nav-sub {
  font-size: 10.5px;
  color: rgba(255,255,255,0.38);
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-nav-col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-nav-col ul li a {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-nav-col ul li a:hover { color: #FF6478; }

/* 地図 */
.footer-map-block { display: flex; flex-direction: column; gap: 16px; }

/* PC: マップ左・住所右 */
@media (min-width: 768px) {
  .footer-map-block { flex-direction: row; align-items: stretch; gap: 16px; }
  .footer-address { display: flex; flex-direction: column; justify-content: center; }
}
.footer-map {
  width: 75%;
  max-width: 75%;
  margin: 0 auto;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0.80;
}
.footer-address {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
}

/* 外部リンクボタン */
.footer-links { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-link-btn {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 20px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.footer-link-btn:hover {
  background: rgba(235,60,162,0.18);
  border-color: rgba(235,60,162,0.50);
  color: #ffffff;
}
.footer-link-btn span { font-size: 14px; }

/* コピーライト */
.footer-copy {
  font-size: 10.5px;
  color: rgba(255,255,255,0.22);
  text-align: center;
  letter-spacing: 0.08em;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* PC: サイトマップ4列 */
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; flex-wrap: wrap; gap: 48px; padding-left: 7%; padding-right: 7%; }
  .footer-brand { flex: 0 0 200px; }
  .footer-nav   { flex: 1; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .footer-map-block { flex: 100%; }
  .footer-map { flex: 0 1 75%; max-width: 75%; margin: 0; height: auto; aspect-ratio: 16/5; }
  .footer-links { flex: 100%; }
  .footer-copy  { flex: 100%; }
}

/* ─── PAGE TOP ─── */
#page-top-btn {
  position: fixed;
  bottom: 36px; right: 36px;
  z-index: 400;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: transparent;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#page-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#page-top-btn:hover {
  transform: translateY(-3px);
}
.pagetop-spin-text {
  position: absolute;
  top: 0; left: 0;
  width: 100px; height: 100px;
  animation: spinText 8s linear infinite;
}
.pagetop-inner {
  position: relative;
  z-index: 1;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(235,60,162,0.40);
  flex-shrink: 0;
}
.pagetop-arrow {
  width: 20px; height: 20px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ================================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  #nav         { padding: 22px 36px; }
  #nav.scrolled{ padding: 14px 36px; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { gap: 24px; }

  .voice-grid       { grid-template-columns: repeat(2, 1fr); }
  .voice-card--horiz{ grid-template-columns: 160px 1fr; }
  .voice-photo--sq  { min-height: 200px; }
}

/* ================================================================
   RESPONSIVE — MOBILE (≤ 767px)
   ================================================================ */
@media (max-width: 767px) {
  #nav         { padding: 18px 22px; }
  #nav.scrolled{ padding: 14px 22px; }

  .nav-right { gap: 8px; }
  .nav-entry-btn {
    padding: 6px 13px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  /* HERO */
  .hero-content { padding: 80px 7% 100px; max-width: 100%; }
  .hero-btns    { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; padding: 14px 24px; }
  .scroll-hint  { bottom: 28px; }

  /* ABOUT */
  #about { padding: 96px 7%; }
  .about-stats { flex-direction: column; gap: 20px; }
  .stat-num { font-size: 36px; }

  /* MOVIE */
  #movie { padding: 96px 7%; }
  .movie-more,
  .contents-more { justify-content: flex-end; }

  /* CONTENTS */
  #contents { padding: 96px 7%; }

  /* INFORMATION */
  .info-card { width: 100%; padding: 22px 96px 22px 22px; min-height: 130px; }
  .info-card-icon { width: 72px; height: 72px; right: 16px; }

  /* VOICES */
  #voices { padding: 96px 7%; }
  .voice-grid       { grid-template-columns: 1fr; }
  .voice-grid--wide { grid-template-columns: 1fr; }
}
