/* ============================================================
   BCJ Front Page (mock /media/top 完全準拠)
   ============================================================ */

/* ---- 共通アニメ ---- */
@keyframes markPop  { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes lineGrow { to { width: 38px; } }
@keyframes lineRise { to { transform: translateY(0); } }
@keyframes wipeDown { 0%{transform:scaleY(1)} 100%{transform:scaleY(0)} }
@keyframes scrollDown { 0%{transform:translateY(-100%)} 100%{transform:translateY(400%)} }
@keyframes bgBreath {
  0%   { transform: scale(1.15) translate(0,0); }
  50%  { transform: scale(1.25) translate(-2%,-1%); }
  100% { transform: scale(1.15) translate(0,0); }
}
@keyframes pulse  { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.8)} }
@keyframes dotFill { 0%{width:0} 100%{width:100%} }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.1fr);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 100px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}
.hero-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: -2px;
  width: 80px;
  height: 100%;
  background: linear-gradient(to right, var(--bg), transparent);
  pointer-events: none;
  z-index: 2;
}

.media-logo { margin-bottom: 14px; }
.media-logo h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .88;
  letter-spacing: -.02em;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.media-logo .row { position: relative; display: flex; align-items: flex-start; }
.media-logo .mark {
  display: inline-block;
  width: .14em;
  height: .74em;
  background: var(--blue);
  margin-right: .08em;
  margin-top: .07em;
}

.media-subtitle {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--fg-dim);
  margin-bottom: 32px;
  display: block;
}

.hero-eyebrow {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--blue);
}

.hero-cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--blue);
  margin-bottom: 14px;
}
.hero-cat-chip::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue-glow);
}

.hero-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.35;
  letter-spacing: .01em;
  margin-bottom: 20px;
  color: #fff;
}
.hero-title .line { display: block; overflow: hidden; }

.hero-excerpt {
  font-size: 13.5px;
  line-height: 1.9;
  color: #cfcfcf;
  letter-spacing: .02em;
  max-width: 480px;
  margin-bottom: 28px;
}

.hero-cta-row { display: flex; gap: 18px; align-items: center; }

.hero-cta-row .cta {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .16em;
  padding: 18px 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all .35s var(--ease-out);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.hero-cta-row .cta-primary {
  background: var(--blue);
  color: #fff;
}
.hero-cta-row .cta-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateY(101%);
  transition: transform .4s var(--ease-out);
}
.hero-cta-row .cta-primary span { position: relative; z-index: 2; transition: color .3s; }
.hero-cta-row .cta-primary::after {
  content: "\2192";
  position: relative;
  z-index: 2;
  transition: transform .3s;
  font-size: 14px;
}
.hero-cta-row .cta-primary:hover::before { transform: translateY(0); }
.hero-cta-row .cta-primary:hover span { color: #000; }
.hero-cta-row .cta-primary:hover::after { transform: translateX(4px); color: #000; }

.hero-cta-row .cta-ghost {
  color: #fff;
  border: 1px solid #3a3d44;
  background: transparent;
}
.hero-cta-row .cta-ghost:hover { border-color: var(--blue); color: var(--blue); }

/* ---- HERO Dots ---- */
.hero-dots { display: flex; gap: 10px; align-items: center; margin-top: 36px; }
.hero-dot {
  width: 30px;
  height: 3px;
  background: #3a3d44;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  transition: background .3s;
}
.hero-dot::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue-glow);
}
.hero-dot.active::after { animation: dotFill 5.5s linear forwards; }
.hero-count {
  margin-left: 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: .1em;
}
.hero-count .now { color: #fff; font-weight: 500; }

/* ---- HERO Photo side ---- */
.hero-photo {
  position: relative;
  overflow: hidden;
  background: #000;
}
.hero-photo-bg {
  position: absolute;
  inset: -10%;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  filter: blur(60px) brightness(.35) saturate(.7);
  transform: scale(1.15);
  z-index: 0;
  animation: bgBreath 14s ease-in-out infinite;
}
.hero-photo-img {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(to right, var(--bg) 0%, transparent 8%, transparent 92%, rgba(0,0,0,.35) 100%),
    radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
}

/* ---- 縦書きテキスト ---- */
.v-text {
  position: absolute;
  top: 50%;
  right: 42px;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.v-text-jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .32em;
  color: #fff;
  background: rgba(0,0,0,.55);
  padding: 24px 8px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.v-text-en {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .4em;
  color: var(--blue);
  writing-mode: vertical-rl;
}
.v-line {
  width: 1px;
  height: 60px;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue-glow);
}

/* ---- HERO Corners ---- */
.hero .corner { position: absolute; width: 18px; height: 18px; z-index: 8; }
.hero .corner.tl { top: 90px; left: 60px; border-top: 1px solid var(--blue); border-left: 1px solid var(--blue); border-bottom: 0; border-right: 0; }
.hero .corner.tr { top: 90px; right: 60px; border-top: 1px solid #3a3d44; border-right: 1px solid #3a3d44; border-bottom: 0; border-left: 0; }
.hero .corner.bl { bottom: 90px; left: 60px; border-bottom: 1px solid #3a3d44; border-left: 1px solid #3a3d44; border-top: 0; border-right: 0; }
.hero .corner.br { bottom: 90px; right: 60px; border-bottom: 1px solid var(--blue); border-right: 1px solid var(--blue); border-top: 0; border-left: 0; }

.scroll-indicator {
  position: absolute;
  bottom: 38px;
  right: 60px;
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.scroll-indicator span {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--fg-dim);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 14px;
  background: #fff;
  animation: scrollDown 2.4s var(--ease-out) infinite;
}

/* ============================================================
   CATEGORY NAV
   ============================================================ */
.cat-nav {
  background: #080808;
  border-top: 1px solid #2b2e36;
  border-bottom: 1px solid #2b2e36;
  padding: 20px 0;
}
.cat-nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cat-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.cat-chips .chip {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #bdbdbd;
  background: transparent;
  border: 1px solid #3a3d44;
  padding: 6px 11px;
  cursor: pointer;
  transition: all .2s var(--ease-out);
  user-select: none;
  text-decoration: none;
}
.cat-chips .chip:hover { border-color: #3a3a3a; color: #fff; }
.cat-chips .chip.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  font-weight: 700;
}
.type-chips { display: flex; gap: 4px; }
.type-chip {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--fg-dim);
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 8px 14px;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}
.type-chip:hover { color: #fff; }
.type-chip.active { color: #fff; border-bottom-color: var(--blue); }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section {
  position: relative;
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid #2b2e36;
}
.section .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-header { margin-bottom: 56px; }
.section-eyebrow {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .24em;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.section-eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--blue);
}
.section-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.3;
  color: #fff;
}
.section-title .accent { color: var(--blue); }
.section-bg-text {
  position: absolute;
  top: 60px;
  right: -30px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(140px, 16vw, 260px);
  line-height: 1;
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1px #2b2e36;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   PICK UP
   ============================================================ */
.pickup-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.pickup-card {
  position: relative;
  background: #20222a;
  border: 1px solid #2b2e36;
  cursor: pointer;
  overflow: hidden;
  transition: all .35s var(--ease-out);
  text-decoration: none;
  display: block;
}
.pickup-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s var(--ease-out);
  z-index: 3;
}
.pickup-card:hover { border-color: #3a3d44; transform: translateY(-2px); }
.pickup-card:hover::before { transform: scaleY(1); }

.pickup-large { grid-row: span 2; }
.pickup-large .pickup-thumb { height: 100%; }
.pickup-large .pickup-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(5,5,5,.92) 0%, rgba(5,5,5,.6) 60%, transparent 100%);
  z-index: 2;
}
.pickup-large .pickup-title { font-size: clamp(20px, 2vw, 28px); -webkit-line-clamp: 3; }

.pickup-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background-image: var(--bg);
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
}
.pickup-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0) 40%, rgba(5,5,5,.55) 100%);
  transition: opacity .3s;
}

.pickup-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(5,5,5,.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 10px 6px 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: #fff;
  letter-spacing: .08em;
}
.pickup-cat-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue-glow);
}
.pickup-type-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-family: "Archivo Black", sans-serif;
  font-size: 10px;
  color: #fff;
  background: var(--blue);
  padding: 4px 7px;
  letter-spacing: .08em;
}
.pickup-content { padding: 22px 24px; }
.pickup-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: .06em;
}
.pickup-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.45;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .25s;
}
.pickup-card:hover .pickup-title { color: #e0e0e0; }
.pickup-excerpt {
  font-size: 12.5px;
  line-height: 1.75;
  color: #888;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 8px;
}

/* ============================================================
   INLINE CTA
   ============================================================ */
.inline-cta {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
.inline-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 40px;
  border: 1px solid rgba(31,78,240,.3);
  background: radial-gradient(ellipse at 20% 50%, rgba(31,78,240,.08), transparent 60%);
  transition: all .3s var(--ease-out);
  gap: 24px;
  flex-wrap: wrap;
}
.inline-cta-inner:hover {
  border-color: rgba(31,78,240,.6);
  box-shadow: 0 0 40px rgba(31,78,240,.1);
}
.inline-cta-eyebrow {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .24em;
  color: var(--blue);
  margin-bottom: 6px;
}
.inline-cta-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.inline-cta-text strong { color: var(--blue); }
.inline-cta-btn {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  background: var(--blue);
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .3s var(--ease-out);
  flex-shrink: 0;
}
.inline-cta-btn:hover { background: #fff; color: #000; }

/* ============================================================
   LATEST ARTICLES
   ============================================================ */
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}
.article-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 0;
  background: #20222a;
  border: 1px solid #2b2e36;
  cursor: pointer;
  position: relative;
  transition: all .3s var(--ease-out);
  overflow: hidden;
  text-decoration: none;
}
.article-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s var(--ease-out);
  z-index: 3;
}
.article-card:hover { border-color: #3a3d44; background: #0e0e0e; transform: translateY(-2px); }
.article-card:hover::before { transform: scaleY(1); }
.article-thumb {
  position: relative;
  aspect-ratio: 16/10;
  background-image: var(--bg);
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
}
.article-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0) 40%, rgba(5,5,5,.55) 100%);
}
.article-card-content {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}
.article-top { display: flex; flex-direction: column; gap: 6px; }
.article-badges { display: flex; gap: 8px; align-items: center; }
.article-cat {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--blue);
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  gap: 5px;
}
.article-cat::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--blue);
  box-shadow: 0 0 6px var(--blue-glow);
}
.article-type {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 9px;
  color: #fff;
  background: rgba(31,78,240,.3);
  padding: 2px 6px;
  letter-spacing: .06em;
}
.article-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.45;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .25s;
}
.article-card:hover .article-title { color: #e0e0e0; }
.article-excerpt {
  font-size: 12px;
  line-height: 1.7;
  color: #777;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-meta {
  display: flex;
  gap: 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: .04em;
  padding-top: 10px;
  border-top: 1px solid #2b2e36;
}

.more-btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.more-btn a {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .16em;
  color: #fff;
  border: 1px solid #3a3d44;
  background: transparent;
  padding: 16px 40px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all .3s var(--ease-out);
}
.more-btn a:hover { border-color: var(--blue); color: var(--blue); }
.more-btn a::after { content: "\2192"; transition: transform .3s; }
.more-btn a:hover::after { transform: translateX(4px); }

/* ============================================================
   VIDEO
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.video-stack { display: flex; flex-direction: column; gap: 20px; }

.video-card {
  position: relative;
  background: #20222a;
  border: 1px solid #2b2e36;
  cursor: pointer;
  overflow: hidden;
  transition: all .35s var(--ease-out);
  text-decoration: none;
  display: block;
}
.video-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s var(--ease-out);
  z-index: 3;
}
.video-card:hover { border-color: #3a3d44; transform: translateY(-2px); }
.video-card:hover::before { transform: scaleY(1); }

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.3);
  transition: background .3s;
}
.video-card:hover .video-thumb::after { background: rgba(0,0,0,.15); }
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(5,5,5,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  transition: all .3s var(--ease-out);
  border: 1px solid rgba(255,255,255,.2);
}
.video-card:hover .video-play {
  background: var(--blue);
  box-shadow: 0 0 30px var(--blue-glow);
  border-color: var(--blue);
}
.video-play::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}
.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: #fff;
  background: rgba(0,0,0,.7);
  padding: 3px 8px;
  letter-spacing: .04em;
}
.video-content { padding: 18px 20px; }
.video-cat {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--blue);
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}
.video-cat::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--blue);
  box-shadow: 0 0 6px var(--blue-glow);
}
.video-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-date {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: .04em;
}
/* ============================================================
   VIDEO PLAYER LAYOUT（YouTube プレイリスト風）
   左: メインプレーヤー / 右: 3 つのサムネリスト
   ============================================================ */
.video-grid-player {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
  align-items: stretch;
}

/* ---- 左：プレーヤー ---- */
.video-player {
  display: flex;
  flex-direction: column;
  background: #20222a;
  border: 1px solid #2b2e36;
  overflow: hidden;
}
.video-player-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}
.video-player-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-player-info {
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.video-player-info .video-cat {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--blue);
  letter-spacing: .08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.video-player-info .video-cat::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue-glow);
}
.video-player-info .video-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.5;
  color: #fff;
}
.video-player-info .video-date {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: .04em;
}

/* ---- 右：リスト ---- */
.video-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.video-list-item {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 14px;
  align-items: stretch;
  background: #20222a;
  border: 1px solid #2b2e36;
  cursor: pointer;
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out), transform .3s var(--ease-out);
  text-align: left;
  padding: 0;
  font: inherit;
  color: inherit;
  flex: 1 1 0;
  min-height: 0;
  position: relative;
  overflow: hidden;
}
.video-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s var(--ease-out);
}
.video-list-item:hover {
  border-color: #3a3d44;
  background: #0e0e0e;
  transform: translateX(-2px);
}
.video-list-item:hover::before { transform: scaleY(1); }
.video-list-item.is-active {
  border-color: var(--blue);
  background: #0f1220;
}
.video-list-item.is-active::before { transform: scaleY(1); }

.video-list-thumb {
  position: relative;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 0;
}
.video-list-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .25);
  transition: background .3s;
}
.video-list-item:hover .video-list-thumb::after { background: rgba(0, 0, 0, .1); }
.video-list-item.is-active .video-list-thumb::after { background: rgba(0, 0, 0, 0); }

.video-list-thumb .video-play {
  width: 36px;
  height: 36px;
}
.video-list-thumb .video-play::after {
  border-width: 5px 0 5px 9px;
}
.video-list-item.is-active .video-list-thumb .video-play {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 18px var(--blue-glow);
}

.video-list-thumb .video-duration {
  font-size: 10px;
  bottom: 6px;
  right: 6px;
  padding: 2px 5px;
}

.video-list-info {
  padding: 12px 14px 12px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  justify-content: center;
}
.video-list-cat {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: var(--blue);
  letter-spacing: .08em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.video-list-cat::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--blue);
  box-shadow: 0 0 4px var(--blue-glow);
}
.video-list-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
  color: #fff;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-list-date {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: .04em;
}

@media (max-width: 980px) {
  .video-grid-player {
    grid-template-columns: 1fr;
  }
  .video-list-item { flex: 0 0 auto; }
  .video-list-thumb { aspect-ratio: 16/9; }
}

/* ============================================================
   YOUTUBE MODAL
   ============================================================ */
.yt-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, .88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  place-items: center;
}
.yt-modal.open { display: grid; }
.yt-modal-inner {
  position: relative;
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 16/9;
}
.yt-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.yt-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: 0;
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .1em;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.yt-modal-close:hover { color: var(--blue); }

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
  position: relative;
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid #2b2e36;
  text-align: center;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(31,78,240,.12), transparent 55%);
  pointer-events: none;
}
.cta-block-eyebrow {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .24em;
  color: var(--blue);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.cta-block-title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(48px, 7vw, 108px);
  line-height: .92;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.cta-block-title .accent { color: var(--blue); }
.cta-block-jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 24px);
  color: #cfcfcf;
  letter-spacing: .04em;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.cta-block-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-block-primary,
.cta-block-secondary {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .16em;
  padding: 20px 36px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: all .3s var(--ease-out);
}
.cta-block-primary { background: var(--blue); color: #fff; }
.cta-block-primary:hover { background: #fff; color: #000; }
.cta-block-primary::after { content: "\2192"; }
.cta-block-secondary { color: #fff; border: 1px solid #3a3d44; background: transparent; }
.cta-block-secondary:hover { border-color: var(--blue); color: var(--blue); }

/* ============================================================
   CAREER PATH スライダー
   ============================================================ */
.career-slider { position: relative; overflow: hidden; }
.career-track {
  display: flex;
  gap: 24px;
  padding: 0 40px 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  scroll-padding-left: 40px;
  scroll-behavior: smooth;
}
.career-track::-webkit-scrollbar { display: none; }
.career-card {
  flex: 0 0 300px;
  aspect-ratio: 3 / 4.4;
  position: relative;
  scroll-snap-align: start;
  overflow: hidden;
  cursor: pointer;
  background: #20222a;
  border: 1px solid #2b2e36;
  transition: transform .45s var(--ease-out), border-color .3s, box-shadow .3s;
  text-decoration: none;
  display: block;
}
.career-card:hover {
  border-color: var(--blue);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px -20px rgba(31,78,240,.4);
}
.career-card:hover .career-bg { transform: scale(1.1); }
.career-card:hover .career-cat-name { color: var(--blue); }

.career-bg {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transition: transform .9s var(--ease-out);
  filter: grayscale(.2) brightness(.78) contrast(1.05);
}
.career-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top,
    rgba(5,5,5,.94) 0%,
    rgba(5,5,5,.65) 38%,
    rgba(5,5,5,.25) 65%,
    rgba(5,5,5,.10) 100%);
}
.career-corner {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 18px;
  height: 18px;
  border-top: 1px solid var(--blue);
  border-left: 1px solid var(--blue);
  z-index: 3;
}
.career-count {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  background: rgba(5,5,5,.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 11px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: #fff;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 7px;
}
.career-count::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue-glow);
  animation: pulse 1.8s ease-in-out infinite;
}
.career-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 22px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.career-cat-no {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--blue);
  letter-spacing: .14em;
}
.career-cat-name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: #fff;
  transition: color .3s;
}
.career-cat-en {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--fg-dim);
  margin-bottom: 8px;
}
.career-links { display: flex; gap: 10px; margin-top: 4px; }
.career-link {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid #3a3d44;
  transition: all .3s var(--ease-out);
}
.career-link:hover { border-color: var(--blue); color: var(--blue); }
.career-link::after { content: "\2192"; font-size: 12px; transition: transform .3s; }
.career-link:hover::after { transform: translateX(4px); }
.career-link.primary { background: var(--blue); border-color: var(--blue); }
.career-link.primary:hover { background: #fff; color: #000; border-color: #fff; }

.slider-controls {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 40px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.slider-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid #3a3d44;
  background: transparent;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all .2s;
}
.slider-arrow:hover { border-color: var(--blue); color: var(--blue); }
.slider-arrow:disabled { opacity: .3; cursor: default; }
.slider-progress {
  flex: 1;
  height: 2px;
  background: #2b2e36;
  position: relative;
  overflow: hidden;
}
.slider-progress-bar {
  position: absolute;
  top: 0;
  height: 100%;
  background: var(--blue);
  transition: left .4s var(--ease-out), width .4s var(--ease-out);
}
.slider-counter {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: .1em;
}
.slider-counter .now { color: #fff; font-weight: 500; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; height: auto; min-height: 0; }
  .hero-content { padding: 30px 28px 50px; order: 2; position: relative; z-index: 5; }
  .hero-content::after { display: none; }
  .hero-photo { order: 1; height: 54vh; min-height: 380px; max-height: 560px; }
  .v-text { right: 18px; }
  .v-text-jp { font-size: 12px; padding: 14px 5px; letter-spacing: .22em; }
  .scroll-indicator { display: none; }
  .hero .corner.tl, .hero .corner.tr { left: 22px; top: 78px; }
  .hero .corner.tr { left: auto; right: 22px; }
  .hero .corner.bl { left: 22px; bottom: 18px; top: auto; }
  .hero .corner.br { right: 22px; bottom: 18px; top: auto; left: auto; }
  .section { padding: 60px 0 80px; }
  .section .container { padding: 0 20px; }
  .cat-nav-inner { padding: 0 20px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .pickup-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .pickup-large { grid-row: auto; }
  .pickup-large .pickup-thumb { height: 240px; }
  .pickup-large .pickup-content { position: relative; background: none; padding: 18px 20px; }
  .article-grid { grid-template-columns: 1fr; }
  .article-card { grid-template-columns: 1fr; }
  .article-thumb { aspect-ratio: 16/9; }
  .video-grid { grid-template-columns: 1fr; }
  .video-stack { flex-direction: row; gap: 16px; }
  .inline-cta { padding: 0 20px; }
  .inline-cta-inner { padding: 24px; flex-direction: column; text-align: center; }
  .cta-block { padding: 80px 0; }
  .career-card { flex: 0 0 260px; }
  .career-track { padding: 0 20px 20px; }
  .slider-controls { padding: 12px 20px 0; }
  .slider-arrow { width: 36px; height: 36px; font-size: 12px; }
}
@media (max-width: 640px) {
  .video-stack { flex-direction: column; }
}
