/* =============================================
   BARRACKS BOXING — Military × Tactical
   Olive Drab × Black × Amber
============================================= */

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; }

:root {
  --bg: #1a1d17;
  --bg-2: #232620;
  --bg-3: #2c302a;
  --olive: #4a5d3a;
  --olive-d: #38462b;
  --olive-l: #6f8a52;
  --khaki: #b8a88a;
  --amber: #ff9500;
  --white: #efece2;
  --gray: #8b8a82;
  --gray-d: #555049;
  --red: #c2452f;
  --line: rgba(255,236,200,.10);
  --camo-1: #2d3525;
  --camo-2: #3a4530;
  --camo-3: #545f3d;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(74,93,58,.12) 0%, transparent 45%),
    radial-gradient(circle at 82% 78%, rgba(255,149,0,.05) 0%, transparent 50%);
}

/* グリッドノイズ */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 9998;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.font-stencil { font-family: 'Oswald', 'Anton', sans-serif; letter-spacing: .08em; text-transform: uppercase; }

/* ===== Demo Bar ===== */
.demo-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--olive); color: var(--white);
  font-family: 'Oswald', sans-serif;
  text-align: center; padding: 7px 16px;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  border-bottom: 2px solid var(--amber);
}
.demo-bar a { text-decoration: underline; color: var(--amber); font-weight: 700; }

/* ===== Header ===== */
header.site-header {
  position: fixed; top: 32px; left: 0; right: 0; z-index: 100;
  background: rgba(26,29,23,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; max-width: 1280px; margin: 0 auto; }
.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 26px; font-weight: 700;
  letter-spacing: .15em;
  color: var(--white);
  display: flex; align-items: center; gap: 10px;
}
.logo::before {
  content: "★";
  color: var(--amber);
  font-size: 18px;
}
.logo span { color: var(--amber); }
.nav-list { display: flex; gap: 28px; list-style: none; }
.nav-list a {
  font-family: 'Oswald', sans-serif;
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-list a::before {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--amber);
  transition: width .2s;
}
.nav-list a:hover { color: var(--amber); }
.nav-list a:hover::before { width: 100%; }
.nav-cta {
  padding: 11px 24px;
  background: var(--amber); color: #000;
  font-family: 'Oswald', sans-serif;
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700;
  transition: all .2s;
  border: 2px solid var(--amber);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.nav-cta:hover { background: transparent; color: var(--amber); }

/* モバイル */
.mobile-toggle { display: none; background: none; border: none; color: var(--white); font-size: 24px; cursor: pointer; }
@media (max-width: 900px) {
  .nav-list, .nav-cta { display: none; }
  .mobile-toggle { display: block; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 200px 0 80px;
  display: flex; align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(135deg, rgba(26,29,23,.85) 0%, rgba(26,29,23,.6) 60%, rgba(26,29,23,.4) 100%),
    url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: "// SECTOR-7";
  position: absolute; top: 110px; right: 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px; letter-spacing: .25em;
  color: var(--amber);
  border: 1px solid var(--amber);
  padding: 4px 12px;
}
.hero::after {
  content: "[ CLASSIFIED ]";
  position: absolute; bottom: 50px; right: 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: .3em;
  color: var(--gray);
}
.hero-content { position: relative; z-index: 2; max-width: 1100px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: var(--amber); color: #000;
  font-family: 'Oswald', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 32px;
  border-left: 4px solid #000;
}
.hero-tag::before { content: "▶"; }
.hero h1 {
  font-family: 'Oswald', 'Anton', sans-serif;
  font-size: clamp(48px, 9vw, 140px);
  line-height: .95;
  letter-spacing: .02em;
  margin-bottom: 32px;
  text-transform: uppercase;
  font-weight: 700;
}
.hero h1 .accent { color: var(--amber); }
.hero h1 .border-text {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.hero p.lead {
  font-size: clamp(15px, 1.5vw, 19px);
  max-width: 620px;
  color: rgba(239,236,226,.78);
  margin-bottom: 48px;
  line-height: 1.7;
}
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 36px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px; letter-spacing: .25em; text-transform: uppercase;
  font-weight: 700;
  border: 2px solid;
  transition: all .2s;
  cursor: pointer;
}
.btn-primary { background: var(--amber); color: #000; border-color: var(--amber); }
.btn-primary:hover { background: transparent; color: var(--amber); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: #000; }
.btn-olive { background: var(--olive); color: var(--white); border-color: var(--olive); }
.btn-olive:hover { background: transparent; color: var(--olive-l); border-color: var(--olive-l); }

/* スキャンライン */
.hero-scroll {
  position: absolute; bottom: 40px; left: 24px;
  display: flex; align-items: center; gap: 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gray);
}
.hero-scroll::before {
  content: ""; width: 60px; height: 1px; background: var(--gray);
  animation: scan 1.6s linear infinite;
}
@keyframes scan { 0%,100%{transform:scaleX(0); transform-origin:left;} 50%{transform:scaleX(1);} }

/* ===== Section共通 ===== */
section { padding: 120px 0; position: relative; }
.sec-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  padding: 4px 12px;
  border: 1px solid var(--amber);
}
.sec-tag::before { content: "[ "; color: var(--amber); }
.sec-tag::after { content: " ]"; color: var(--amber); }
.sec-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1; margin-bottom: 24px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .02em;
}
.sec-lead { color: var(--gray); max-width: 640px; margin-bottom: 64px; font-size: 16px; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual {
  aspect-ratio: 4/5;
  background-image: url("../images/about.jpg");
  background-size: cover;
  background-position: center;
  position: relative; overflow: hidden;
  border: 2px solid var(--olive);
  filter: contrast(1.05) saturate(.92);
}
.about-visual::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,29,23,.7) 100%);
}
.about-visual::after {
  content: "EST. 2019 / TOKYO";
  position: absolute; bottom: 24px; left: 24px; z-index: 2;
  font-family: 'Oswald', sans-serif;
  font-size: 12px; letter-spacing: .25em;
  color: var(--amber);
  background: rgba(0,0,0,.85);
  padding: 6px 14px;
  border-left: 3px solid var(--amber);
}
.about-text h3 { font-family: 'Oswald', sans-serif; font-size: 32px; margin: 16px 0 24px; line-height: 1.2; text-transform: uppercase; }
.about-text p { color: rgba(239,236,226,.78); margin-bottom: 16px; }
.about-text .stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.stat-num { font-family: 'Oswald', sans-serif; font-size: 40px; color: var(--amber); line-height: 1; }
.stat-label { font-size: 11px; letter-spacing: .2em; color: var(--gray); margin-top: 8px; text-transform: uppercase; }

@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===== Class / Mission ===== */
.class-section { background: var(--bg-2); position: relative; }
.class-section::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: repeating-linear-gradient(90deg, var(--amber) 0, var(--amber) 30px, transparent 30px, transparent 60px);
}
.class-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.class-card {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 36px 28px;
  position: relative;
  transition: all .25s;
}
.class-card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--olive);
  transition: background .2s, width .2s;
}
.class-card:hover { border-color: var(--amber); transform: translateY(-4px); }
.class-card:hover::before { background: var(--amber); width: 6px; }
.class-card .num {
  font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 16px;
}
.class-card h3 { font-family: 'Oswald', sans-serif; font-size: 26px; margin-bottom: 14px; line-height: 1.15; text-transform: uppercase; }
.class-card .desc { font-size: 14px; color: rgba(239,236,226,.7); margin-bottom: 24px; }
.class-card .price {
  font-family: 'Oswald', sans-serif;
  font-size: 28px; color: var(--amber);
  font-weight: 700;
}
.class-card .price small { font-size: 12px; color: var(--gray); margin-left: 4px; }

@media (max-width: 800px) { .class-grid { grid-template-columns: 1fr; } }

/* ===== Trainer / Officer ===== */
.trainer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trainer-card {
  position: relative; aspect-ratio: 3/4;
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg) 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all .3s;
}
.trainer-card::before {
  content: "★"; position: absolute; top: 12px; right: 12px; z-index: 3;
  color: var(--amber); font-size: 14px;
}
.trainer-card:hover { transform: translateY(-6px); border-color: var(--amber); }
.trainer-card img.trainer-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  filter: grayscale(.15) contrast(1.05) saturate(.85);
  transition: transform .4s, filter .4s;
}
.trainer-card:hover img.trainer-photo { transform: scale(1.04); filter: grayscale(0) contrast(1.1); }
.trainer-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px; background: linear-gradient(0deg, rgba(0,0,0,.95) 30%, transparent); z-index: 2; }
.trainer-info .pos { font-family: 'Oswald', sans-serif; font-size: 11px; color: var(--amber); letter-spacing: .25em; text-transform: uppercase; }
.trainer-info h4 { font-family: 'Oswald', sans-serif; font-size: 22px; margin: 4px 0; text-transform: uppercase; }
.trainer-info p { font-size: 12px; color: var(--gray); }

@media (max-width: 900px) { .trainer-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Fighter / Operatives ===== */
.fighter-section { background: var(--bg-2); position: relative; }
.fighter-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.fighter-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
  background: var(--bg); border: 1px solid var(--line); padding: 20px 28px;
  transition: all .2s;
  position: relative;
}
.fighter-row::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--amber); transition: width .2s;
}
.fighter-row:hover { border-color: var(--amber); }
.fighter-row:hover::before { width: 4px; }
.fighter-num { font-family: 'Oswald', sans-serif; font-size: 32px; color: var(--olive-l); font-weight: 700; width: 60px; }
.fighter-row h4 { font-family: 'Oswald', sans-serif; font-size: 20px; text-transform: uppercase; }
.fighter-row .belt { font-size: 12px; color: var(--gray); letter-spacing: .08em; }
.fighter-row .record { font-family: 'Oswald', sans-serif; font-size: 18px; color: var(--amber); font-weight: 700; }

@media (max-width: 800px) { .fighter-list { grid-template-columns: 1fr; } }

/* ===== Access / CTA ===== */
.access-section { background: var(--bg); position: relative; overflow: hidden; }
.access-section::before {
  content: "BARRACKS";
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Oswald', sans-serif; font-size: 28vw; font-weight: 700;
  color: rgba(74,93,58,.05); white-space: nowrap; pointer-events: none;
  letter-spacing: .04em;
}
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; position: relative; }
.access-info ul { list-style: none; margin-top: 32px; }
.access-info li { padding: 14px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 110px 1fr; gap: 24px; }
.access-info li span { color: var(--amber); font-size: 11px; letter-spacing: .2em; font-family: 'Oswald', sans-serif; text-transform: uppercase; }
.access-info li b { font-weight: 500; color: var(--white); }

.access-map {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border: 2px solid var(--olive);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-family: 'Oswald', sans-serif; letter-spacing: .25em; text-transform: uppercase;
  position: relative;
}
.access-map::before {
  content: "[ TARGET LOCATION ]";
  position: absolute; top: 16px; left: 16px;
  font-size: 11px; color: var(--amber);
}

@media (max-width: 800px) { .access-grid { grid-template-columns: 1fr; } }

/* ===== News ===== */
.news-list { display: flex; flex-direction: column; gap: 10px; }
.news-item {
  display: grid; grid-template-columns: 110px 100px 1fr;
  gap: 24px; padding: 18px 24px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  transition: all .2s;
  align-items: center;
}
.news-item:hover { border-color: var(--amber); background: var(--bg-3); }
.news-date { font-family: 'Oswald', sans-serif; color: var(--gray); font-size: 13px; letter-spacing: .15em; }
.news-cat { font-family: 'Oswald', sans-serif; font-size: 10px; padding: 4px 10px; background: var(--olive); color: var(--white); text-align: center; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; }
.news-cat.event { background: var(--amber); color: #000; }
.news-cat.fight { background: var(--red); color: white; }
.news-title { font-size: 14px; }

@media (max-width: 700px) { .news-item { grid-template-columns: 1fr; gap: 6px; } }

/* ===== CTA ===== */
.cta-block {
  background: var(--olive); color: var(--white); padding: 80px 0;
  position: relative; overflow: hidden;
  border-top: 4px solid var(--amber);
  border-bottom: 4px solid var(--amber);
}
.cta-block::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("../images/gym-detail.jpg");
  background-size: cover; background-position: center;
  opacity: .15; mix-blend-mode: multiply;
}
.cta-block h2 { font-family: 'Oswald', sans-serif; font-size: clamp(36px, 5.5vw, 72px); line-height: 1; margin-bottom: 16px; text-transform: uppercase; }
.cta-block p { margin-bottom: 32px; max-width: 600px; }
.cta-block .btn-outline { color: var(--white); border-color: var(--white); }
.cta-block .btn-outline:hover { background: var(--white); color: var(--olive); }

/* ===== Footer ===== */
footer.site-footer {
  background: var(--bg);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
  position: relative;
}
footer.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: repeating-linear-gradient(90deg, var(--amber) 0, var(--amber) 20px, transparent 20px, transparent 40px);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { display: inline-flex; margin-bottom: 16px; }
.footer-brand p { color: var(--gray); font-size: 14px; max-width: 280px; }
.footer-col h5 { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: .25em; margin-bottom: 18px; color: var(--amber); text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(239,236,226,.65); font-size: 13px; transition: color .15s; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { padding-top: 32px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom small { color: var(--gray); font-size: 12px; letter-spacing: .1em; font-family: 'Oswald', sans-serif; }

@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }

/* ===== Subpage ===== */
.page-hero {
  padding: 200px 0 80px;
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.page-hero::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(74,93,58,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,93,58,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero h1 { font-family: 'Oswald', sans-serif; font-size: clamp(44px, 7.5vw, 96px); line-height: .9; text-transform: uppercase; font-weight: 700; }
.page-hero .breadcrumb { font-family: 'Oswald', sans-serif; font-size: 12px; color: var(--amber); letter-spacing: .3em; margin-bottom: 24px; text-transform: uppercase; }
.page-hero .breadcrumb a { color: var(--gray); }

.page-hero-sub { padding: 180px 0 60px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.page-hero-sub h1 { font-family: 'Oswald', sans-serif; font-size: clamp(36px, 5.5vw, 64px); line-height: .95; text-transform: uppercase; }

.content-section { padding: 80px 0; }
.content-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 3.8vw, 44px);
  margin: 48px 0 24px;
  position: relative;
  padding-left: 28px;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.content-section h2::before {
  content: ""; position: absolute; left: 0; top: 18%; width: 8px; height: 64%;
  background: var(--amber);
}
.content-section h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px; margin: 32px 0 12px;
  color: var(--amber);
  text-transform: uppercase;
}
.content-section p { color: rgba(239,236,226,.78); margin-bottom: 16px; max-width: 760px; }
.content-section ul { margin: 16px 0 24px 24px; }
.content-section li { margin-bottom: 8px; color: rgba(239,236,226,.78); }

.price-table { width: 100%; border-collapse: collapse; margin: 32px 0; }
.price-table th, .price-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table th { font-family: 'Oswald', sans-serif; letter-spacing: .2em; color: var(--amber); font-size: 13px; text-transform: uppercase; }
.price-table td:last-child { font-family: 'Oswald', sans-serif; color: var(--white); font-weight: 700; }

.faq-list { margin: 32px 0; }
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-q { font-weight: 600; cursor: pointer; padding-left: 36px; position: relative; font-family: 'Oswald', sans-serif; letter-spacing: .04em; text-transform: uppercase; font-size: 15px; }
.faq-q::before { content: "Q."; position: absolute; left: 0; color: var(--amber); font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700; }
.faq-a { padding: 12px 0 0 36px; color: rgba(239,236,226,.7); font-size: 14px; }
.faq-a::before { content: "A. "; color: var(--amber); font-family: 'Oswald', sans-serif; font-weight: 700; }

.contact-form { display: grid; gap: 18px; max-width: 640px; margin: 32px 0; }
.contact-form label { display: block; font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: .25em; color: var(--amber); margin-bottom: 6px; text-transform: uppercase; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 14px 18px;
  background: var(--bg-2); border: 1px solid var(--line); color: var(--white);
  font-family: inherit; font-size: 15px;
  transition: border-color .15s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--amber); }
.contact-form textarea { min-height: 140px; resize: vertical; }

/* article */
.article-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 16px; font-family: 'Oswald', sans-serif; font-size: 12px; color: var(--gray); letter-spacing: .2em; text-transform: uppercase; }
.article-meta .cat { padding: 4px 10px; background: var(--amber); color: #000; font-weight: 700; }
.article-body p { color: rgba(239,236,226,.85); margin-bottom: 18px; }
.article-body blockquote {
  margin: 32px 0; padding: 24px 32px;
  border-left: 4px solid var(--amber);
  background: var(--bg-2);
  font-style: italic; color: rgba(239,236,226,.85);
}

/* mission step */
.mission-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 48px 0; }
.mission-step {
  border: 1px solid var(--line); padding: 32px 24px; position: relative;
  background: var(--bg-2);
}
.mission-step::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px; background: var(--olive);
}
.mission-step:hover::before { background: var(--amber); }
.mission-step .step-num {
  font-family: 'Oswald', sans-serif; font-size: 48px; color: var(--olive-l); font-weight: 700;
  line-height: 1; margin-bottom: 12px;
}
.mission-step h3 { color: var(--white) !important; font-size: 18px !important; }

@media (max-width: 800px) { .mission-grid { grid-template-columns: 1fr 1fr; } }

/* reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s, transform .6s; }
.reveal.show { opacity: 1; transform: translateY(0); }

/* =============================================
   ▼ V2 RENEWAL CLASSES (2026-04 リニューアル)
   左寄せ非対称・タクティカル要素強化
============================================= */

/* ===== HERO V2 (左寄せ非対称・データブロック) ===== */
.hero-v2 {
  background-image:
    linear-gradient(120deg, rgba(26,29,23,.92) 0%, rgba(26,29,23,.55) 55%, rgba(26,29,23,.30) 100%),
    url("../images/hero.jpg");
  padding: 220px 0 100px;
  align-items: stretch;
}
.hero-v2::before, .hero-v2::after { display: none; } /* 旧装飾を消す */

.hero-tactical-bar {
  position: absolute; top: 100px; left: 0; right: 0;
  display: flex; gap: 32px;
  padding: 10px 24px;
  background: rgba(0,0,0,.85);
  border-top: 1px solid rgba(255,149,0,.3);
  border-bottom: 1px solid rgba(255,149,0,.3);
  font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gray);
  z-index: 3;
  overflow-x: auto;
  white-space: nowrap;
}
.hero-tactical-bar .hero-status { color: var(--amber); }
.hero-tactical-bar .hero-coord { color: var(--olive-l); }
.hero-tactical-bar .hero-grid-id { color: var(--khaki); }

.hero-content-v2 {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 64px;
  align-items: end;
  position: relative; z-index: 2;
  width: 100%;
}
.hero-left-col { padding-right: 0; }
.hero-left-col h1 {
  font-family: 'Oswald','Anton',sans-serif;
  font-size: clamp(56px, 9.5vw, 148px);
  line-height: .92;
  letter-spacing: .01em;
  margin-bottom: 28px;
  text-transform: uppercase;
  font-weight: 700;
}
.hero-left-col h1 .accent { color: var(--amber); }
.hero-left-col p.lead {
  font-size: clamp(15px,1.4vw,18px);
  color: rgba(239,236,226,.78);
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-right-col { display: flex; align-items: flex-end; }
.hero-data-block {
  width: 100%;
  background: rgba(0,0,0,.82);
  border: 1px solid rgba(255,149,0,.25);
  padding: 22px 24px 18px;
  font-family: 'Oswald', sans-serif;
  position: relative;
}
.hero-data-block::before {
  content: ""; position: absolute; top: -1px; left: -1px;
  width: 18px; height: 18px;
  border-top: 2px solid var(--amber);
  border-left: 2px solid var(--amber);
}
.hero-data-block::after {
  content: ""; position: absolute; bottom: -1px; right: -1px;
  width: 18px; height: 18px;
  border-bottom: 2px solid var(--amber);
  border-right: 2px solid var(--amber);
}
.hero-data-title {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--amber);
  padding-bottom: 12px; margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,149,0,.2);
}
.hero-data-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 7px 0;
  font-size: 12px;
  border-bottom: 1px dotted rgba(255,236,200,.08);
}
.hero-data-row:last-child { border-bottom: none; }
.hero-data-row span { color: var(--gray); letter-spacing: .2em; text-transform: uppercase; font-size: 10px; }
.hero-data-row b { color: var(--white); letter-spacing: .08em; font-weight: 600; font-size: 13px; }

@media (max-width: 900px) {
  .hero-tactical-bar { gap: 18px; font-size: 10px; padding: 8px 16px; }
  .hero-content-v2 { grid-template-columns: 1fr; gap: 40px; align-items: stretch; }
  .hero-right-col { align-items: stretch; }
}

/* ===== PHILOSOPHY (3つの鉄則) ===== */
.philosophy-section {
  background: var(--bg-2);
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.philosophy-section::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: repeating-linear-gradient(90deg, var(--amber) 0, var(--amber) 24px, transparent 24px, transparent 48px);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border-left: 1px solid var(--line);
}
.philosophy-block {
  padding: 48px 36px;
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .25s;
}
.philosophy-block:hover { background: var(--bg); }
.philosophy-block::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: var(--olive);
  transition: background .25s;
}
.philosophy-block:hover::before { background: var(--amber); }

.phil-num {
  font-family: 'Oswald', serif;
  font-style: italic;
  font-size: 56px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: .04em;
  display: block;
}
.phil-title {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.1;
}
.phil-title .ja {
  display: block;
  font-size: 14px;
  color: var(--khaki);
  letter-spacing: .15em;
  font-weight: 500;
  margin-top: 6px;
}
.philosophy-block p {
  color: rgba(239,236,226,.72);
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .philosophy-grid { grid-template-columns: 1fr; border-left: none; }
  .philosophy-block { border-right: none; }
}

/* ===== ABOUT V2 (引用ブロック中心) ===== */
.about-v2 { background: var(--bg); position: relative; }
.about-v2::before {
  content: "BARRACKS / 02";
  position: absolute; top: 60px; right: 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: .3em;
  color: var(--gray-d);
}

.about-quote-block {
  position: relative;
  margin: 64px auto 64px;
  max-width: 920px;
  padding: 56px 64px 48px;
  background: var(--bg-2);
  border-left: 4px solid var(--amber);
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-quote-block .quote-mark {
  position: absolute;
  top: 16px; left: 24px;
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--amber);
  opacity: .35;
  line-height: 1;
}
.about-quote-block .quote-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.85;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: .02em;
}
.about-quote-block .quote-author {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--amber);
  padding-top: 16px;
  border-top: 1px solid rgba(255,149,0,.18);
  display: inline-block;
}

.about-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 56px;
}
.about-h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-left: 16px;
  border-left: 3px solid var(--amber);
  color: var(--white);
}
.about-detail-grid p {
  color: rgba(239,236,226,.78);
  font-size: 15px;
  line-height: 1.85;
}

@media (max-width: 800px) {
  .about-quote-block { padding: 48px 28px 36px; }
  .about-quote-block .quote-mark { font-size: 56px; top: 8px; left: 14px; }
  .about-detail-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ===== TRAINER V2 (横長リスト形式) ===== */
.trainer-v2 { background: var(--bg-2); border-top: 1px solid var(--line); }
.trainer-list-v2 {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.trainer-row-v2 {
  display: grid;
  grid-template-columns: 80px 180px 1fr 40px;
  align-items: center;
  gap: 32px;
  padding: 28px 24px;
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background .2s, padding .2s;
  position: relative;
  color: var(--white);
}
.trainer-row-v2::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--amber); transition: width .2s;
}
.trainer-row-v2:hover {
  background: var(--bg);
  padding-left: 36px;
}
.trainer-row-v2:hover::before { width: 4px; }

.trainer-row-v2 .tr-num {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: .25em;
  color: var(--gray);
}
.trainer-row-v2 .tr-pos {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--amber);
  padding: 5px 12px;
  border: 1px solid var(--amber);
  display: inline-block;
  text-align: center;
  width: fit-content;
}
.trainer-row-v2 h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.trainer-row-v2 .tr-meta {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: .04em;
}
.trainer-row-v2 .tr-arrow {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: var(--amber);
  transition: transform .2s;
  text-align: right;
}
.trainer-row-v2:hover .tr-arrow { transform: translateX(8px); }

@media (max-width: 800px) {
  .trainer-row-v2 {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 16px;
  }
  .trainer-row-v2:hover { padding-left: 24px; }
  .trainer-row-v2 .tr-arrow { display: none; }
}

/* ===== FIGHTER V2 (カード形式) ===== */
.fighter-v2 { background: var(--bg); border-top: 1px solid var(--line); }
.fighter-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.fighter-card-v2 {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 28px 22px;
  position: relative;
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.fighter-card-v2::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--olive);
  transition: background .25s;
}
.fighter-card-v2:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
  background: var(--bg-3);
}
.fighter-card-v2:hover::before { background: var(--amber); }

.fc-num {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--gray);
  margin-bottom: 12px;
}
.fc-record {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  color: var(--amber);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.fighter-card-v2 h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.fc-belt {
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--khaki);
  padding: 5px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.fc-desc {
  font-size: 13px;
  color: rgba(239,236,226,.65);
  line-height: 1.7;
  flex: 1;
}

@media (max-width: 900px) { .fighter-grid-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .fighter-grid-v2 { grid-template-columns: 1fr; } }

/* ===== CLASS V2 (表形式) ===== */
.class-v2 { background: var(--bg-2); }
.class-v2::before { display: none; } /* 旧.class-section::beforeを消す */

.class-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  background: var(--bg);
  border: 1px solid var(--line);
}
.class-table thead {
  background: var(--olive-d);
  border-bottom: 2px solid var(--amber);
}
.class-table thead th {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--amber);
  padding: 18px 20px;
  text-align: left;
  font-weight: 700;
}
.class-table tbody tr {
  border-bottom: 1px solid var(--line);
  transition: background .15s;
}
.class-table tbody tr:hover { background: var(--bg-2); }
.class-table tbody tr:last-child { border-bottom: none; }
.class-table tbody td {
  padding: 22px 20px;
  vertical-align: middle;
  font-size: 14px;
  color: rgba(239,236,226,.85);
}
.class-table tbody td:first-child {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  color: var(--gray);
  letter-spacing: .15em;
  width: 60px;
}
.class-table tbody td b {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
  display: block;
}
.class-table tbody td small {
  display: block;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: .1em;
  margin-top: 2px;
}
.class-table tbody td:nth-child(4) b {
  color: var(--amber);
  font-size: 22px;
  display: inline;
}
.class-table tbody td:nth-child(4) small {
  display: inline;
  margin-left: 4px;
  color: var(--gray);
}

@media (max-width: 900px) {
  .class-table thead { display: none; }
  .class-table, .class-table tbody, .class-table tr, .class-table td { display: block; width: 100%; }
  .class-table tbody tr {
    padding: 20px 16px;
    border: 1px solid var(--line);
    margin-bottom: 12px;
  }
  .class-table tbody td { padding: 6px 0; border: none; }
  .class-table tbody td:first-child { font-size: 12px; color: var(--amber); }
}
