:root {
  --bg: #030303;
  --panel: #080808;
  --text: #f5f5f5;
  --muted: #8d939a;
  --dim: #555a60;
  --line: #191919;
  --acid: #dcff00;
  --font-en: "Inter", system-ui, sans-serif;
  --font-ja: "Noto Sans JP", "Yu Gothic", sans-serif;
  --max: 1180px;
  --gutter: 32px;
  --section-gap: 96px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 6%, rgba(220, 255, 0, 0.04), transparent 22rem),
    linear-gradient(180deg, #020202 0%, var(--bg) 100%);
  color: var(--text);
  font-family: var(--font-ja);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

.site-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 var(--gutter);
  background: rgba(3, 3, 3, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-en);
  font-size: clamp(1.2rem, 3vw, 1.85rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  text-shadow: 2px 2px 0 rgba(0, 145, 255, 0.45), -2px 0 0 rgba(255, 50, 50, 0.35);
}

.brand i {
  color: var(--acid);
  font-style: italic;
  text-shadow: none;
}

.menu-button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  gap: 4px;
  background: transparent;
  border: 2px solid var(--acid);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 18px;
  height: 3px;
  background: var(--acid);
  content: "";
}

.menu-button.is-open span {
  opacity: 0;
}

.site-menu {
  position: sticky;
  top: 76px;
  z-index: 19;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-height: 0;
  overflow: hidden;
  background: #050505;
  border-bottom: 1px solid transparent;
  transition: max-height 0.28s ease, border-color 0.28s ease;
}

.site-menu.is-open {
  max-height: 280px;
  border-color: var(--line);
}

.site-menu a {
  display: grid;
  gap: 5px;
  padding: 24px var(--gutter);
  border-right: 1px solid var(--line);
}

.site-menu a:last-child {
  border-right: 0;
}

.site-menu a:hover,
.site-menu a[aria-current="page"] {
  background: var(--acid);
  color: #050505;
}

.site-menu span {
  font-family: var(--font-en);
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1;
}

.site-menu small {
  color: var(--muted);
  font-weight: 900;
}

.site-menu a:hover small,
.site-menu a[aria-current="page"] small {
  color: #050505;
}

main,
.media-main {
  flex: 1 0 auto;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

/* Section headers */
.media-section {
  padding: 0 var(--gutter);
}

.media-section + .media-section {
  margin-top: var(--section-gap);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.section-head__en,
.kicker,
.card-meta,
.site-footer small {
  font-family: var(--font-en);
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.section-head__en {
  margin: 0;
  color: var(--acid);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  line-height: 1;
  text-shadow: none;
}

.section-head__ja {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section-head__link {
  flex-shrink: 0;
  color: var(--muted);
  font-family: var(--font-en);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.section-head__link:hover {
  color: var(--acid);
}

.section-head--with-intro {
  align-items: flex-end;
}

.section-head__intro {
  max-width: 640px;
  margin: 12px 0 0;
  color: #8d939a;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.7;
}

.section-intro {
  max-width: 640px;
  margin: -20px 0 32px;
  color: #8d939a;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.7;
}

/* HERO FEATURE */
.media-section.hero-feature {
  padding-top: var(--gutter);
}

.hero-feature {
  padding-top: 0;
}

.hero-feature__main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0;
  border: 1px solid var(--line);
  background: #050505;
}

.hero-feature__visual {
  position: relative;
  display: block;
  min-height: 480px;
  overflow: hidden;
}

.hero-feature__visual img {
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.1) brightness(0.72);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.hero-feature__main:hover .hero-feature__visual img {
  transform: scale(1.02);
  filter: grayscale(0.15) contrast(1.12) brightness(0.78);
}

.hero-feature__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-feature__badge {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  padding: 10px 20px;
  background: var(--acid);
  color: #050505;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.hero-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px var(--gutter) 48px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--acid);
  font-size: 0.86rem;
}

.hero-feature__copy h1 {
  margin: 0;
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 3px 2px 0 rgba(0, 140, 255, 0.58), -2px 0 0 rgba(255, 42, 42, 0.38);
}

.hero-feature__lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #a6adb5;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
  line-height: 1.7;
}

.hero-feature__subs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-top: 0;
}

.feature-sub-card {
  display: grid;
  grid-template-rows: 180px auto;
  background: #050505;
  transition: background 0.2s ease;
}

.feature-sub-card:hover {
  background: #0a0a0a;
}

.feature-sub-card__thumb {
  overflow: hidden;
}

.feature-sub-card__thumb img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.08) brightness(0.75);
  transition: transform 0.4s ease;
}

.feature-sub-card:hover .feature-sub-card__thumb img {
  transform: scale(1.04);
}

.feature-sub-card__body {
  padding: 22px var(--gutter) 28px;
}

.feature-sub-card__body h3 {
  margin: 10px 0 0;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 2px 1px 0 rgba(0, 140, 255, 0.42), -1px 0 0 rgba(255, 42, 42, 0.3);
}

/* 記事フィード — 元サイト article-card 互換 */
.article-feed {
  display: grid;
  gap: 0;
}

.feed-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 30px;
  align-items: center;
  padding: 34px var(--gutter);
  border-bottom: 1px solid var(--line);
}

.feed-card__body {
  display: block;
  min-width: 0;
}

.feed-card__thumb {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #090909;
  border: 1px solid #171717;
}

.feed-card__thumb img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.14) saturate(0.75);
}

.feed-card h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 2px 1px 0 rgba(0, 140, 255, 0.42), -1px 0 0 rgba(255, 42, 42, 0.3);
}

.feed-card__excerpt {
  max-width: 680px;
  margin: 12px 0 0;
  color: #949ba4;
  font-weight: 700;
}

.feed-card .card-meta {
  margin-bottom: 10px;
}

.feed-card h3,
.feature-sub-card__body h3,
.hero-feature__copy h1,
.editor-card h3,
.latest-card h3,
.latest-item h3,
.rail-card h3,
.media-grid-card h3,
.related-card h3,
.single-header h1 {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.feed-card,
.latest-item,
.feed-card__body,
.related-card,
.rail-card {
  min-width: 0;
}

/* EDITOR'S PICK */
.editors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.editors-grid.article-feed {
  gap: 28px;
}

.editors-grid .feed-card.editor-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  border-bottom: 0;
  align-items: stretch;
  grid-template-columns: unset;
}

.editors-grid .feed-card__thumb {
  order: -1;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  background: #080808;
}

.editors-grid .feed-card__thumb img {
  filter: grayscale(0.3) contrast(1.1) saturate(0.8);
}

.editor-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.editor-card__thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #080808;
}

.editor-card__thumb img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) contrast(1.1) saturate(0.8);
  transition: transform 0.4s ease;
}

.editor-card:hover .editor-card__thumb img {
  transform: scale(1.03);
}

.editor-card h3 {
  margin: 8px 0 0;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 2px 1px 0 rgba(0, 140, 255, 0.42), -1px 0 0 rgba(255, 42, 42, 0.3);
}

.editor-card p {
  max-width: 680px;
  margin: 12px 0 0;
  color: #949ba4;
  font-weight: 700;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: #686e75;
  font-size: 0.77rem;
}

.card-meta span::before {
  content: "/ ";
}

.editor-card__topic {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}

.editor-card:hover .editor-card__topic {
  color: var(--acid);
}

.scroll-rail .feed-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border-bottom: 0;
  align-items: stretch;
}

.scroll-rail .feed-card__thumb {
  aspect-ratio: 3 / 4;
  width: 100%;
  border: 1px solid var(--line);
  background: #080808;
}

.scroll-rail .feed-card__thumb img {
  filter: grayscale(0.25) contrast(1.1);
}

.scroll-rail .feed-card__body {
  padding-top: 14px;
}

.scroll-rail .feed-card__excerpt {
  display: none;
}

.scroll-rail .feed-card .feed-card__thumb {
  order: -1;
}

.scroll-rail.latest-rail .feed-card__thumb {
  aspect-ratio: 16 / 10;
}

.scroll-rail .feed-card.latest-card,
.scroll-rail .feed-card.rail-card {
  flex: 0 0 min(280px, 72vw);
  scroll-snap-align: start;
}

.scroll-rail.latest-rail .feed-card.latest-card {
  flex-basis: min(240px, 68vw);
}

.media-grid .feed-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  border-bottom: 0;
  align-items: stretch;
  grid-template-columns: unset;
}

.media-grid .feed-card__thumb {
  order: -1;
  aspect-ratio: 16 / 10;
  width: 100%;
  border: 1px solid var(--line);
  background: #080808;
}

.media-grid .feed-card__body {
  padding-top: 0;
}

/* LATEST — compact horizontal */
.media-section--latest {
  padding-bottom: 0;
}

.latest-rail {
  gap: 16px;
}

.latest-card {
  flex: 0 0 min(240px, 68vw);
  scroll-snap-align: start;
}

.latest-card__thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #080808;
}

.latest-card__thumb img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.45) contrast(1.08) brightness(0.82);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.latest-card:hover .latest-card__thumb img {
  transform: scale(1.03);
  filter: grayscale(0.2) contrast(1.1) brightness(0.88);
}

.latest-card h3 {
  margin: 10px 0 0;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 2px 1px 0 rgba(0, 140, 255, 0.42), -1px 0 0 rgba(255, 42, 42, 0.3);
}

.latest-card:hover h3 {
  color: var(--acid);
}

.latest-card .card-meta {
  margin-top: 10px;
}

.section-empty,
.article-feed__empty {
  margin: 0;
  padding: 28px 0 8px;
  color: #777;
  font-size: 0.92rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--line);
}

/* Legacy list (archive page) */
.latest-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.latest-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 30px;
  align-items: center;
  padding: 34px 32px;
  border-bottom: 1px solid var(--line);
}

.latest-item__thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
}

.latest-item__thumb img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5) contrast(1.08);
}

.latest-item h3 {
  max-width: 760px;
  margin: 6px 0 0;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 2px 1px 0 rgba(0, 140, 255, 0.42), -1px 0 0 rgba(255, 42, 42, 0.3);
}

.latest-item:hover h3 {
  color: var(--acid);
}

/* Horizontal scroll rail */
.scroll-rail-wrap {
  position: relative;
}

.scroll-rail {
  display: flex;
  gap: 20px;
  padding-bottom: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--acid) #111;
}

.scroll-rail::-webkit-scrollbar {
  height: 6px;
}

.scroll-rail::-webkit-scrollbar-thumb {
  background: var(--acid);
  border-radius: 3px;
}

.rail-card {
  flex: 0 0 min(280px, 72vw);
  scroll-snap-align: start;
}

.rail-card__thumb {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #080808;
}

.rail-card__thumb img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.1);
  transition: transform 0.4s ease;
}

.rail-card:hover .rail-card__thumb img {
  transform: scale(1.04);
}

.rail-card h3 {
  margin: 14px 0 0;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 2px 1px 0 rgba(0, 140, 255, 0.42), -1px 0 0 rgba(255, 42, 42, 0.3);
}

.rail-card p {
  margin: 12px 0 0;
  color: #949ba4;
  font-weight: 700;
}

/* Movie / Guide grids */
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.media-grid-card__thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #080808;
}

.media-grid-card__thumb img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.1) brightness(0.8);
  transition: transform 0.4s ease;
}

.media-grid-card:hover .media-grid-card__thumb img {
  transform: scale(1.03);
}

.media-grid-card h3 {
  margin: 14px 0 0;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 2px 1px 0 rgba(0, 140, 255, 0.42), -1px 0 0 rgba(255, 42, 42, 0.3);
}

.media-grid-card .card-meta {
  margin-top: 8px;
}

/* Guide zone accent */
.media-section--guide {
  padding-bottom: var(--section-gap);
}

.guide-grid .media-grid-card__thumb {
  aspect-ratio: 5 / 3;
}

/* Thumb placeholders */
.thumb-abstract {
  height: 100%;
  background:
    linear-gradient(135deg, transparent 42%, var(--acid) 42% 60%, transparent 60%),
    radial-gradient(circle at 68% 24%, #13d7ff 0 8%, transparent 9%),
    radial-gradient(circle at 28% 68%, #ff54c7 0 13%, transparent 14%),
    repeating-linear-gradient(90deg, #111, #111 8px, #292929 9px, #111 12px);
}

.thumb-abstract span {
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(220, 255, 0, 0.7);
  border-radius: 50%;
}

.thumb-face {
  height: 100%;
  min-height: 100%;
  position: relative;
  background:
    radial-gradient(circle at 56% 45%, #f2f2f2 0 4%, transparent 5%),
    radial-gradient(circle at 43% 45%, #f2f2f2 0 4%, transparent 5%),
    radial-gradient(ellipse at 50% 55%, #d9d9d9 0 24%, transparent 25%),
    radial-gradient(circle at 50% 42%, #1b1b1b 0 42%, #050505 43%);
  filter: contrast(1.2);
}

/* Footer — main 内でコンテンツ幅に揃える */
.site-footer {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: 42px var(--gutter) 96px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-shell > .site-footer {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.site-footer p {
  margin: 0 0 4px;
  color: var(--text);
  font-family: var(--font-en);
  font-weight: 900;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 22px;
}

.site-footer__legal a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.site-footer__legal a:hover {
  color: var(--acid);
}

.site-footer__x,
.site-footer__instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--text);
  border: 2px solid var(--line);
  background: #050505;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-footer__x:hover,
.site-footer__instagram:hover {
  color: #050505;
  background: var(--acid);
  border-color: var(--acid);
}

.archive-section {
  padding-top: 0;
}

/* Pagination */
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 48px var(--gutter) 72px;
  border-top: 1px solid var(--line);
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  color: #676d74;
  background: #050505;
  border: 1px solid #1f1f1f;
  font-family: var(--font-en);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  color: var(--acid);
  border-color: var(--acid);
}

/* Single article */
.single-article {
  max-width: var(--max);
  margin: 0 auto;
  padding-bottom: 72px;
}

.single-header {
  padding: 72px var(--gutter) 34px;
}

.single-header h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 2px 1px 0 rgba(0, 140, 255, 0.42), -1px 0 0 rgba(255, 42, 42, 0.3);
}

.single-header > p:not(.kicker) {
  max-width: 760px;
  margin: 24px 0 0;
  color: #a6adb5;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
}

.single-image {
  margin: 0 var(--gutter) 48px;
  overflow: hidden;
  border: 1px solid #202020;
}

.single-image img {
  max-height: 660px;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.12) brightness(0.78);
}

.single-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.single-content p {
  margin: 0 0 1.5em;
  color: #b2b8bf;
  font-size: 1.02rem;
  font-weight: 700;
}

.single-content h2 {
  margin: 2.2em 0 0.8em;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.16;
}

.single-content blockquote {
  margin: 44px 0;
  padding: 28px 0 28px 28px;
  color: var(--acid);
  border-left: 8px solid var(--acid);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.22;
}

.single-content a,
.entry-content a {
  color: var(--acid);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Article cross-navigation */
.article-rail {
  max-width: var(--max);
  margin: 72px auto 0;
  padding: 0 var(--gutter);
}

.article-rail + .article-rail {
  margin-top: 56px;
}

.article-rail__head {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.article-rail__head .section-head__en {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--acid);
  text-shadow: none;
}

.article-rail__head .section-head__ja {
  margin-top: 6px;
  font-size: 0.78rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.related-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
}

.related-card h3 {
  margin: 10px 0 0;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.35;
}

.related-card__thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
}

.related-card__thumb img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.08);
}

.feature-return {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 56px auto 0;
  padding: 28px var(--gutter);
  background: var(--acid);
  color: #050505;
}

.feature-return p {
  margin: 0;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.feature-return h2 {
  margin: 6px 0 0;
  font-size: 1.2rem;
  font-weight: 900;
}

.feature-return__link {
  flex-shrink: 0;
  padding: 12px 20px;
  border: 2px solid #050505;
  font-family: var(--font-en);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.feature-return__link:hover {
  background: #050505;
  color: var(--acid);
}

/* About */
.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px var(--gutter) 50px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 3px 2px 0 rgba(0, 140, 255, 0.58), -2px 0 0 rgba(255, 42, 42, 0.38);
}

.page-hero p:last-child {
  max-width: 760px;
  margin: 24px 0 0;
  color: #a6adb5;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 42px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 46px var(--gutter) 72px;
}

.about-image {
  overflow: hidden;
  border: 1px solid #202020;
}

.about-image img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12) brightness(0.78);
}

.about-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.14;
}

.about-copy p {
  margin: 0 0 1.5em;
  color: #b2b8bf;
  font-size: 1.02rem;
  font-weight: 700;
}

.profile-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
}

.profile-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.profile-list dt {
  color: var(--acid);
  font-family: var(--font-en);
  font-weight: 900;
}

.profile-list dd {
  margin: 0;
  color: #b2b8bf;
  font-weight: 800;
}

.legal-content {
  padding-top: 48px;
  padding-bottom: 72px;
}

.legal-content h2 {
  margin-top: 2.4em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-list {
  margin: 0 0 1.5em;
  padding-left: 1.4em;
  color: #b2b8bf;
  font-size: 1.02rem;
  font-weight: 700;
}

.legal-list li + li {
  margin-top: 0.6em;
}

.operator-info {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.operator-info div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.operator-info dt {
  margin: 0;
  color: var(--acid);
  font-family: var(--font-en);
  font-weight: 900;
}

.operator-info dd {
  margin: 0;
  color: #b2b8bf;
  font-weight: 800;
}

.contact-content {
  padding-top: 48px;
  padding-bottom: 72px;
}

.contact-notice {
  margin: 0 0 28px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: #050505;
}

.contact-notice p {
  margin: 0;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.contact-form__field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--text);
  background: #050505;
  border: 1px solid var(--line);
  font: inherit;
  font-weight: 700;
}

.contact-form__note {
  margin: 0;
  color: #8d939a;
  font-size: 0.92rem;
  font-weight: 700;
}

@media (max-width: 1024px) {
  :root {
    --section-gap: 72px;
  }

  .hero-feature__main {
    grid-template-columns: 1fr;
  }

  .hero-feature__visual::after {
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.75) 100%);
  }

  .editors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --section-gap: 56px;
    --gutter: 20px;
  }

  .site-header {
    min-height: 78px;
  }

  .site-menu {
    top: 78px;
    grid-template-columns: 1fr;
  }

  .site-menu a {
    padding: 22px var(--gutter);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-feature__copy {
    padding: 26px var(--gutter) 32px;
  }

  .hero-feature__visual,
  .hero-feature__visual img {
    min-height: 280px;
  }

  .hero-feature__subs {
    grid-template-columns: 1fr;
  }

  .feature-sub-card {
    grid-template-rows: 160px auto;
  }

  .media-section:has(.article-feed):not(#editors-pick) {
    padding-left: 0;
    padding-right: 0;
  }

  .media-section:has(.article-feed):not(#editors-pick) .section-head,
  .media-section:has(.article-feed):not(#editors-pick) .section-intro {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  #other .section-head--with-intro {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .section-head--with-intro {
    align-items: flex-start;
  }

  .media-section:has(.article-feed):not(#editors-pick) .section-head__link {
    padding-right: var(--gutter);
  }

  .article-feed,
  .editors-grid.article-feed,
  .scroll-rail.article-feed,
  .media-grid.article-feed {
    display: block;
    margin: 0;
    width: 100%;
    border-top: 0;
  }

  .scroll-rail.article-feed {
    flex-direction: column;
    overflow: visible;
    gap: 0;
    padding-bottom: 0;
  }

  /* Editor's Pick — セクション余白を他と揃え、モバイルは Feature 風カード */
  #editors-pick .editors-grid.article-feed {
    border-top: 1px solid var(--line);
  }

  #editors-pick .editors-grid .feed-card.editor-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(200px, 42vw) auto;
    gap: 0;
    padding: 0;
    align-items: stretch;
    background: #050505;
    border: 1px solid var(--line);
    margin-bottom: 1px;
  }

  #editors-pick .editors-grid .feed-card__thumb {
    order: unset;
    grid-row: 1;
    width: 100%;
    aspect-ratio: unset;
    min-height: 200px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: #080808;
  }

  #editors-pick .editors-grid .feed-card__body {
    grid-row: 2;
    padding: 22px var(--gutter) 28px;
  }

  #editors-pick .editors-grid .feed-card__thumb img {
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    filter: grayscale(0.35) contrast(1.1) brightness(0.78);
  }

  #editors-pick .editors-grid .feed-card__excerpt,
  #editors-pick .editors-grid .editor-card__topic {
    display: block;
  }

  /* Latest 並び — テキスト左・正方形サムネ右 */
  .scroll-rail.latest-rail .feed-card,
  .scroll-rail .feed-card,
  .media-grid .feed-card,
  .feed-card.latest-card,
  .feed-card.latest-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 18px;
    align-items: center;
    padding: 28px var(--gutter);
    border-bottom: 1px solid var(--line);
    flex: none;
    width: 100%;
    max-width: none;
  }

  .scroll-rail.latest-rail .feed-card__thumb,
  .scroll-rail .feed-card .feed-card__thumb,
  .media-grid .feed-card__thumb,
  .latest-card__thumb,
  .latest-item__thumb {
    order: unset;
    width: auto;
    aspect-ratio: 1 / 1;
    border: 1px solid #171717;
    background: #090909;
  }

  .scroll-rail.latest-rail .feed-card__thumb img,
  .latest-item__thumb img {
    height: 100%;
    object-fit: cover;
  }

  .scroll-rail .feed-card__excerpt,
  .media-grid .feed-card__excerpt {
    display: none;
  }

  .scroll-rail.latest-rail .feed-card .card-meta,
  .scroll-rail .feed-card .card-meta,
  .media-grid .feed-card .card-meta,
  .latest-card .card-meta,
  .latest-item .card-meta {
    margin: 0 0 10px;
    font-size: 0.7rem;
  }

  .scroll-rail.latest-rail .feed-card h3,
  .scroll-rail .feed-card h3,
  .media-grid .feed-card h3,
  .latest-card h3,
  .latest-item h3 {
    margin: 0;
    font-size: clamp(1.05rem, 2.4vw, 1.5rem);
    line-height: 1.2;
  }

  .feature-sub-card__thumb {
    min-height: 160px;
  }

  .feature-sub-card__thumb img {
    min-height: 160px;
  }

  .latest-list.article-feed {
    margin: 0;
    width: 100%;
  }

  .media-section:has(.latest-list.article-feed) {
    padding-left: 0;
    padding-right: 0;
  }

  .media-section:has(.latest-list.article-feed) .page-hero {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .single-image {
    margin-left: var(--gutter);
    margin-right: var(--gutter);
  }

  .feature-return {
    flex-direction: column;
    align-items: flex-start;
    margin-left: var(--gutter);
    margin-right: var(--gutter);
  }

  .page-hero {
    padding: 48px var(--gutter) 34px;
  }

  .single-header {
    padding: 48px var(--gutter) 34px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px var(--gutter) 58px;
  }

  .about-image img {
    min-height: 320px;
  }

  .profile-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pagination {
    padding: 36px var(--gutter) 56px;
  }

  .site-footer {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}
