/* ============================================================
   Single Article (mock /media/article 完全準拠)
   ============================================================ */

/* ---------- Scroll Progress ---------- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue-glow);
  z-index: 160;
}
.admin-bar .progress-bar { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .progress-bar { top: 46px; }
}

/* ============================================================
   ARTICLE HERO
   ============================================================ */
.article-hero {
  position: relative;
  padding: 140px 0 0;
}
.hero-head {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: .06em;
  margin-bottom: 28px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--fg-dim);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { color: #3a3d44; }
.breadcrumb .current { color: #cfcfcf; }

/* ---------- Hero Badges ---------- */
.hero-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-cat {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--blue);
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-cat::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue-glow);
}
.hero-type {
  font-family: "Archivo Black", sans-serif;
  font-size: 10px;
  color: #fff;
  background: var(--blue);
  padding: 4px 8px;
  letter-spacing: .08em;
}

/* ---------- Article Title ---------- */
.article-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.4;
  letter-spacing: .01em;
  color: #fff;
  margin-bottom: 28px;
}

/* ---------- Article Meta ---------- */
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: .04em;
  margin-bottom: 48px;
}
.article-meta .author {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cfcfcf;
}
.article-meta .author .av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  border: 1px solid #3a3d44;
}
.article-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #3a3d44;
}

/* ---------- Eyecatch ---------- */
.hero-eyecatch {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.hero-eyecatch-inner {
  position: relative;
  aspect-ratio: 16/8;
  overflow: hidden;
  background: #20222a;
}
.hero-eyecatch-img {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center 30%;
  filter: grayscale(.15) contrast(1.05);
}
.hero-eyecatch-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,.5), transparent 40%);
}
.ec-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 3;
}
.ec-corner.tl {
  top: 16px;
  left: 56px;
  border-top: 1px solid var(--blue);
  border-left: 1px solid var(--blue);
}
.ec-corner.br {
  bottom: 16px;
  right: 56px;
  border-bottom: 1px solid var(--blue);
  border-right: 1px solid var(--blue);
}

/* ============================================================
   ARTICLE BODY
   ============================================================ */
.article-body {
  padding: 80px 0 120px;
}
.body-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 720px) 60px;
  justify-content: center;
  gap: 48px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- TOC ---------- */
.toc {
  position: sticky;
  top: 100px;
}
.admin-bar .toc { top: 132px; }
.toc-label {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--blue);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toc-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--blue);
}
.toc-list {
  list-style: none;
  border-left: 1px solid #2b2e36;
  padding: 0;
  margin: 0;
}
.toc-list li { position: relative; list-style: none; }
.toc-list a {
  display: block;
  padding: 8px 0 8px 18px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--fg-dim);
  text-decoration: none;
  transition: color .25s;
  border-left: 2px solid transparent;
  margin-left: -1px;
}
.toc-list a:hover { color: #cfcfcf; }
.toc-list a.sub {
  padding-left: 30px;
  font-size: 11.5px;
}
.toc-list a.active {
  color: #fff;
  border-left-color: var(--blue);
}

/* ============================================================
   ARTICLE CONTENT
   ============================================================ */
.article-content { min-width: 0; }

.article-content .lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.9;
  color: #e5e5e5;
  letter-spacing: .01em;
  margin-bottom: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid #2b2e36;
}

.article-content h2,
.article-content .article-h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.45;
  color: #fff;
  margin: 64px 0 24px;
  padding-left: 20px;
  position: relative;
  scroll-margin-top: 100px;
}
.article-content h2::before,
.article-content .article-h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue-glow);
}
.article-content .article-h2 .num {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--blue);
  letter-spacing: .1em;
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}
.admin-bar .article-content h2,
.admin-bar .article-content .article-h2 { scroll-margin-top: 132px; }

.article-content h3,
.article-content .article-h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.5;
  color: #fff;
  margin: 40px 0 18px;
  scroll-margin-top: 100px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-content h3::before,
.article-content .article-h3::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--blue);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.admin-bar .article-content h3,
.admin-bar .article-content .article-h3 { scroll-margin-top: 132px; }

.article-content p {
  font-size: 16px;
  line-height: 1.95;
  color: #c5c5c5;
  letter-spacing: .01em;
  margin-bottom: 24px;
}
.article-content p a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(31,78,240,.4);
  transition: border-color .2s;
}
.article-content p a:hover { border-color: var(--blue); }

/* ボタン系は本文リンクの装飾を打ち消す */
.article-content p a.bcj-cta-button,
.article-content a.bcj-cta-button,
.article-content a.cta-block-primary,
.article-content a.cta-block-secondary,
.article-content a.inline-cta-btn,
.article-content a.cta {
  border-bottom: 0;
}
.article-content mark {
  background: linear-gradient(to bottom, transparent 60%, rgba(31,78,240,.3) 60%);
  color: #fff;
  padding: 0 2px;
}
.article-content strong {
  color: #fff;
  font-weight: 700;
}

/* ---------- Figure image ---------- */
figure.article-img,
.article-content figure {
  margin: 40px 0;
}
figure.article-img .img,
.article-content figure img {
  width: 100%;
  aspect-ratio: 16/9;
  background-image: var(--bg);
  background-size: cover;
  background-position: center 30%;
  filter: grayscale(.15) contrast(1.05);
  border: 1px solid #2b2e36;
  object-fit: cover;
}
figure.article-img figcaption,
.article-content figure figcaption {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--fg-mute);
  letter-spacing: .04em;
  margin-top: 12px;
  padding-left: 14px;
  border-left: 2px solid #3a3d44;
  line-height: 1.6;
}

/* ---------- Blockquote ---------- */
.article-content blockquote {
  margin: 40px 0;
  padding: 8px 0 8px 32px;
  position: relative;
  border-left: 2px solid var(--blue);
}
.article-content blockquote::before {
  content: "\201C";
  position: absolute;
  left: 14px;
  top: -10px;
  font-family: "Archivo Black", sans-serif;
  font-size: 48px;
  line-height: 1;
  color: var(--blue);
  opacity: .25;
}
.article-content blockquote p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.85;
  color: #e0e0e0;
  font-style: italic;
  margin-bottom: 8px;
}
.article-content blockquote cite {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--fg-dim);
  font-style: normal;
  letter-spacing: .06em;
}

/* ---------- Lists ---------- */
.article-content ul,
.article-content ol {
  margin: 24px 0;
  padding-left: 8px;
  list-style: none;
}
.article-content li {
  font-size: 16px;
  line-height: 1.9;
  color: #c5c5c5;
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
  list-style: none;
}
.article-content ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 7px;
  height: 7px;
  background: var(--blue);
  transform: rotate(45deg);
}
.article-content ol { counter-reset: item; }
.article-content ol li { counter-increment: item; }
.article-content ol li::before {
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: .04em;
}

/* ============================================================
   INLINE CTA inside article (リデザイン: 存在感を出す)
   ============================================================ */
.article-content .bcj-cta-block,
.article-content .inline-cta-inner {
  position: relative;
  margin: 64px 0;
  padding: 44px 48px;
  background:
    linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line-2);
  overflow: hidden;
  isolation: isolate;
  transition: all .35s var(--ease-out);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  column-gap: 40px;
  row-gap: 4px;
  align-items: center;
}

/* 右上から差し込む青い radial グラデ装飾 */
.article-content .bcj-cta-block::before,
.article-content .inline-cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 90% 10%, rgba(31, 78, 240, .28), transparent 60%),
    radial-gradient(ellipse 400px 300px at 110% 110%, rgba(31, 78, 240, .12), transparent 50%);
  z-index: -1;
  pointer-events: none;
}

/* 左の青い縦ライン */
.article-content .bcj-cta-block::after,
.article-content .inline-cta-inner::after {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--blue), rgba(31, 78, 240, .2));
  box-shadow: 0 0 16px var(--blue-glow);
  display: block;
  transform: none;
}

.article-content .bcj-cta-block:hover,
.article-content .inline-cta-inner:hover {
  border-color: rgba(31, 78, 240, .5);
  transform: translateY(-2px);
  box-shadow: 0 24px 48px -24px rgba(31, 78, 240, .3);
}

/* inner を display:contents で透過させて grid 親に子を晒す */
.article-content .bcj-cta-inner {
  display: contents;
}

/* eyebrow（青小文字 + 32px ライン）*/
.article-content .bcj-cta-block .bcj-cta-eyebrow,
.article-content .inline-cta-inner .inline-cta-eyebrow {
  grid-column: 1;
  grid-row: 1;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .28em;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px 0;
  text-align: left;
}
.article-content .bcj-cta-block .bcj-cta-eyebrow::before,
.article-content .inline-cta-inner .inline-cta-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--blue);
}

/* heading（大型・太字）*/
.article-content .bcj-cta-block .bcj-cta-heading,
.article-content .inline-cta-inner .inline-cta-text {
  grid-column: 1;
  grid-row: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  color: #fff;
  margin: 0 0 8px 0;
  letter-spacing: .01em;
  text-align: left;
}
.article-content .bcj-cta-block .bcj-cta-heading strong,
.article-content .inline-cta-inner .inline-cta-text strong {
  color: var(--blue);
}

/* subheading（補足説明 = 表示）*/
.article-content .bcj-cta-block .bcj-cta-subheading {
  grid-column: 1;
  grid-row: 3;
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  color: var(--gray-200);
  line-height: 1.75;
  margin: 0;
  letter-spacing: .02em;
}

/* button（大型・右配置）*/
.article-content .bcj-cta-block .bcj-cta-button,
.article-content .inline-cta-inner .inline-cta-btn {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: var(--blue);
  color: #fff !important;
  padding: 20px 32px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all .3s var(--ease-out);
  flex-shrink: 0;
  white-space: nowrap;
  border: 0;
  box-shadow: 0 12px 28px -12px var(--blue-glow);
  position: relative;
  overflow: hidden;
}
.article-content .bcj-cta-block .bcj-cta-button:hover,
.article-content .inline-cta-inner .inline-cta-btn:hover {
  background: #fff;
  color: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px rgba(255, 255, 255, .25);
}

.article-content .bcj-cta-arrow {
  display: inline-block;
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  transition: transform .3s var(--ease-out);
}
.article-content .bcj-cta-block .bcj-cta-button:hover .bcj-cta-arrow {
  transform: translateX(6px);
}

/* レスポンシブ: 768px 以下では縦積み */
@media (max-width: 768px) {
  .article-content .bcj-cta-block,
  .article-content .inline-cta-inner {
    padding: 32px 24px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    column-gap: 0;
    row-gap: 16px;
  }
  .article-content .bcj-cta-block .bcj-cta-button,
  .article-content .inline-cta-inner .inline-cta-btn {
    grid-column: 1;
    grid-row: auto;
    justify-content: center;
    padding: 18px 28px;
  }
}

/* ============================================================
   SHARE (sticky right)
   ============================================================ */
.share {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.admin-bar .share { top: 132px; }

.share-label {
  writing-mode: vertical-rl;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--fg-mute);
  margin-bottom: 6px;
}
.share-btn {
  width: 42px;
  height: 42px;
  border: 1px solid #3a3d44;
  background: transparent;
  color: #cfcfcf;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .25s var(--ease-out);
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}
.share-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.share-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.share-copied {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--blue);
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 24px;
  opacity: 0;
  pointer-events: none;
  transition: all .3s var(--ease-out);
  z-index: 300;
}
.share-copied.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   TAGS
   ============================================================ */
.article-footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 56px 0 0;
  padding-top: 40px;
  border-top: 1px solid #2b2e36;
}
.tag {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #bdbdbd;
  border: 1px solid #3a3d44;
  padding: 6px 12px;
  text-decoration: none;
  transition: all .2s var(--ease-out);
}
.tag:hover { border-color: var(--blue); color: var(--blue); }

/* ============================================================
   AUTHOR
   ============================================================ */
.author-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 40px 0 0;
  padding: 28px;
  background: #20222a;
  border: 1px solid #2b2e36;
}
.author-av {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  border: 1px solid #3a3d44;
  flex-shrink: 0;
}
.author-info .name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
}
.author-info .role {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--blue);
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.author-info .bio {
  font-size: 13px;
  line-height: 1.8;
  color: #999;
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
  position: relative;
  margin-top: 100px;
  padding: 100px 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: 22px;
  position: relative;
  z-index: 2;
}
.cta-block-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.35;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}
.cta-block-title .accent { color: var(--blue); }
.cta-block-jp {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--fg-dim);
  letter-spacing: .06em;
  margin-bottom: 40px;
  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: 18px 34px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  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); }

/* ============================================================
   RELATED
   ============================================================ */
.related {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid #2b2e36;
}
.related-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.related-header { margin-bottom: 48px; }
.related-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: 16px;
}
.related-eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--blue);
}
.related-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.3;
  color: #fff;
}
.related-title .accent { color: var(--blue); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rel-card {
  position: relative;
  background: #20222a;
  border: 1px solid #2b2e36;
  cursor: pointer;
  overflow: hidden;
  transition: all .35s var(--ease-out);
  text-decoration: none;
  display: block;
}
.rel-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;
}
.rel-card:hover { border-color: #3a3d44; transform: translateY(-2px); }
.rel-card:hover::before { transform: scaleY(1); }
.rel-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background-image: var(--bg);
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
}
.rel-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0) 40%, rgba(5,5,5,.55) 100%);
}
.rel-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(5,5,5,.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 5px 9px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: #fff;
  letter-spacing: .06em;
}
.rel-cat-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--blue);
}
.rel-content { padding: 20px 22px; }
.rel-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: .04em;
}
.rel-card-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: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .25s;
}
.rel-card:hover .rel-card-title { color: #e0e0e0; }

/* ============================================================
   MOBILE TOC
   ============================================================ */
.toc-mobile { display: none; }

/* ============================================================
   MOVIE 詳細ページ
   ============================================================ */
.single-movie {
  background: var(--bg);
}

/* ---- Full-bleed プレーヤーステージ ---- */
.movie-stage {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 64px;
  background: #000;
  overflow: hidden;
}
.movie-stage-bg {
  position: absolute;
  inset: -10%;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  filter: blur(80px) brightness(.3) saturate(.8);
  transform: scale(1.15);
  z-index: 0;
}
.movie-stage-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(5,5,5,.5) 100%),
    linear-gradient(to bottom, rgba(5,5,5,.3), rgba(5,5,5,.6));
}
.movie-stage-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.movie-player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 40px 120px -30px rgba(31, 78, 240, .35),
              0 20px 60px -20px rgba(0, 0, 0, .9);
}
.movie-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.movie-player .corner { z-index: 3; }
.movie-player .corner.tl { top: -1px; left: -1px; border-top: 2px solid var(--blue); border-left: 2px solid var(--blue); border-bottom: 0; border-right: 0; width: 22px; height: 22px; }
.movie-player .corner.tr { top: -1px; right: -1px; border-top: 2px solid var(--blue); border-right: 2px solid var(--blue); border-bottom: 0; border-left: 0; width: 22px; height: 22px; }
.movie-player .corner.bl { bottom: -1px; left: -1px; border-bottom: 2px solid var(--blue); border-left: 2px solid var(--blue); border-top: 0; border-right: 0; width: 22px; height: 22px; }
.movie-player .corner.br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--blue); border-right: 2px solid var(--blue); border-top: 0; border-left: 0; width: 22px; height: 22px; }

/* ---- 情報バー ---- */
.movie-info {
  padding: 48px 0 32px;
  background: var(--bg);
  border-bottom: 1px solid #2b2e36;
}
.movie-info-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.movie-info .breadcrumb { margin-bottom: 16px; }
.movie-info .hero-badges { margin-bottom: 14px; }
.movie-title {
  font-size: clamp(22px, 2.6vw, 36px) !important;
  margin-bottom: 18px !important;
  line-height: 1.4 !important;
}
.movie-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.movie-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #3a3d44;
}
.movie-duration-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 500;
}
.movie-pub-date {
  color: #cfcfcf;
}

.movie-share {
  display: flex;
  gap: 8px;
}
.movie-share .share-btn {
  width: 38px;
  height: 38px;
}

/* ---- Description 本文 ---- */
.movie-description {
  padding: 64px 0 80px;
  background: var(--bg);
}
.movie-description-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 40px;
}
.movie-description .section-eyebrow {
  margin-bottom: 24px;
}
.movie-description .article-content {
  max-width: none;
}

.movie-related-article {
  margin-top: 40px;
  padding: 20px 24px;
  border: 1px solid #2b2e36;
  border-left: 3px solid var(--blue);
  background: #20222a;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.movie-related-article .eyebrow {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .24em;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 10px;
}
.movie-related-article .eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--blue);
}
.movie-related-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #fff;
  text-decoration: none;
  transition: color .25s;
}
.movie-related-link:hover { color: var(--blue); }
.movie-related-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
}
.movie-related-arrow {
  font-size: 18px;
  transition: transform .25s;
}
.movie-related-link:hover .movie-related-arrow {
  transform: translateX(4px);
  color: var(--blue);
}

/* ---- More Movies 関連動画カードに 再生マーク ---- */
.related-grid .rel-thumb .rel-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);
  border: 1px solid rgba(255, 255, 255, .2);
  display: grid;
  place-items: center;
}
.related-grid .rel-thumb .rel-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;
}
.rel-card:hover .rel-thumb .rel-play {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 30px var(--blue-glow);
}

@media (max-width: 980px) {
  .movie-stage { padding: calc(var(--header-h) + 32px) 0 32px; }
  .movie-stage-inner { padding: 0 20px; }
  .movie-info-inner { padding: 0 20px; }
  .movie-description-inner { padding: 0 20px; }
  .movie-info { padding: 32px 0 24px; }
  .movie-description { padding: 48px 0 64px; }
}

/* ============================================================
   INTERVIEW 固有スタイル
   ============================================================ */
.single-interview .interview-subject {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0 28px;
  padding: 16px 20px;
  background: #20222a;
  border: 1px solid #2b2e36;
  border-left: 3px solid var(--blue);
}
.single-interview .interview-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #3a3d44;
  flex-shrink: 0;
}
.single-interview .interview-subject-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.single-interview .interview-name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin: 0;
}
.single-interview .interview-role {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--blue);
  letter-spacing: .06em;
  margin: 0;
}

/* ---- Key Takeaways ---- */
.interview-takeaways-wrap {
  max-width: 880px;
  margin: 32px auto 0;
  padding: 0 40px;
}
.interview-takeaways {
  background: linear-gradient(135deg, #20222a, #20222a);
  border: 1px solid #2b2e36;
  border-left: 3px solid var(--blue);
  padding: 28px 32px;
}
.takeaways-label {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .26em;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.takeaways-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--blue);
}
.takeaways-list {
  counter-reset: ti;
  list-style: none;
  padding: 0;
  margin: 0;
}
.takeaways-list li {
  counter-increment: ti;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.85;
  color: #e0e0e0;
  margin: 0;
  padding: 10px 0 10px 36px;
  position: relative;
  border-bottom: 1px solid #2b2e36;
  list-style: none;
}
.takeaways-list li:last-child { border-bottom: 0; }
.takeaways-list li::before {
  content: counter(ti, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: .04em;
}

/* ---- Interview Video ---- */
.interview-video-wrap {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 40px;
}
.interview-video {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid #2b2e36;
}
.interview-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 980px) {
  .interview-takeaways-wrap,
  .interview-video-wrap { padding: 0 22px; }
  .interview-takeaways { padding: 22px 20px; }
  .single-interview .interview-subject { padding: 14px 16px; gap: 12px; }
  .single-interview .interview-photo { width: 54px; height: 54px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .body-grid {
    grid-template-columns: minmax(0, 720px) 60px;
    justify-content: center;
  }
  .toc { display: none; }
  .toc-mobile {
    display: block;
    max-width: 720px;
    margin: 0 auto 40px;
    padding: 0 40px;
  }
  .toc-mobile-inner {
    border: 1px solid #2b2e36;
    background: #20222a;
  }
  .toc-mobile-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
  }
  .toc-mobile-head .label {
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .16em;
    color: var(--blue);
  }
  .toc-mobile-head .arrow {
    color: var(--blue);
    transition: transform .3s;
  }
  .toc-mobile.open .toc-mobile-head .arrow { transform: rotate(180deg); }
  .toc-mobile-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease-out);
  }
  .toc-mobile.open .toc-mobile-body { max-height: 600px; }
  .toc-mobile-list {
    list-style: none;
    padding: 0 20px 16px;
    margin: 0;
  }
  .toc-mobile-list li { list-style: none; }
  .toc-mobile-list a {
    display: block;
    padding: 8px 0;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 13px;
    color: #bdbdbd;
    text-decoration: none;
    border-bottom: 1px solid #2b2e36;
  }
  .toc-mobile-list a.sub {
    padding-left: 16px;
    font-size: 12px;
    color: #999;
  }
  .toc-mobile-list a:hover { color: var(--blue); }
}
@media (max-width: 980px) {
  .article-hero { padding: 110px 0 0; }
  .hero-head { padding: 0 22px; }
  .hero-eyecatch { padding: 0 22px; }
  .ec-corner.tl { left: 38px; }
  .ec-corner.br { right: 38px; }
  .article-meta { margin-bottom: 36px; }
  .article-body { padding: 48px 0 80px; }
  .body-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 0 22px;
  }
  .toc-mobile { padding: 0; }
  .share {
    position: static;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    margin: 48px 0 0;
    padding-top: 40px;
    border-top: 1px solid #2b2e36;
  }
  .share-label {
    writing-mode: horizontal-tb;
    margin-bottom: 0;
    align-self: center;
  }
  .article-footer { padding: 0 22px; }
  .article-content .inline-cta-inner,
  .bcj-cta-block {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  .author-card { padding: 22px; gap: 16px; }
  .cta-block { padding: 70px 0; margin-top: 70px; }
  .related { padding: 70px 0; }
  .related-container { padding: 0 22px; }
  .related-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
