/*
 * W-NEXT corporate site — theme stylesheet
 * Namespaced with "wnx-" prefix to avoid collisions with the Lightning
 * parent theme / Bootstrap-based utility classes (.container, .btn, .nav, etc).
 * Generated from the original static HTML mockup (Plan A / Gravity).
 */

/* ===== common.css ===== */
/* ============================================
   PLAN A — GRAVITY (重厚・骨太)
   ============================================ */
:root {
  --ink: #0a0a0a;
  --ink-2: #1a1a1a;
  --paper: #ffffff;      /* 白基調に変更 */
  --paper-2: #f2f2f4;    /* 薄いグレーに変更 */
  --paper-3: #e6e6ea;    /* もう一段濃い薄グレー（罫・区切り用） */
  --red: #c8102e;
  --red-dark: #9a0c23;
  --muted: #6b6b70;
  --line: #2a2a2a;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  /* Cormorant Garamond等、欧文セリフ体のオールドスタイル数字（高さ不揃い）を
     サイト全体でライニング数字（高さ統一）に揃える */
  font-variant-numeric: lining-nums;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wnx-container { max-width: 1400px; margin: 0 auto; padding: 0 48px; }

/* ---------- Header ---------- */
.wnx-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  color: var(--paper);
}
.wnx-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
}
.wnx-brand {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.25em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wnx-brand::before {
  content: "";
  width: 4px;
  height: 22px;
  background: var(--red);
  display: inline-block;
}
.wnx-brand-logo::before { content: none; }
.wnx-brand-logo img {
  height: 32px;
  width: auto;
  display: block;
}
.wnx-nav {
  display: flex;
  gap: 36px;
  align-items: center;
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  letter-spacing: 0.15em;
}
.wnx-nav a { position: relative; padding: 6px 0; transition: color .2s; color: var(--paper); }
.wnx-nav a:hover { color: var(--red); }
.wnx-nav .wnx-cta {
  padding: 10px 20px;
  background: var(--red);
  color: #fff;
  font-family: "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.25em;
  font-size: 13px;
  text-transform: uppercase;
}
.wnx-nav .wnx-cta:hover { background: #fff; color: var(--red); }

/* ---------- Burger (mobile only) ---------- */
.wnx-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--paper);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  position: relative;
  padding: 0;
  flex-shrink: 0;
}
.wnx-burger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--paper);
  transition: transform .3s ease, opacity .2s ease, top .3s ease;
}
.wnx-burger span:nth-child(1) { top: 15px; }
.wnx-burger span:nth-child(2) { top: 21px; }
.wnx-burger span:nth-child(3) { top: 27px; }
.wnx-burger[aria-expanded="true"] { border-color: var(--red); }
.wnx-burger[aria-expanded="true"] span { background: var(--red); }
.wnx-burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.wnx-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.wnx-burger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobile drawer */
.wnx-mobile-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  height: 100dvh;
  background: rgba(18,18,20,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--paper);
  z-index: 99;
  padding: 90px 32px 40px;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(0.65,0,0.35,1);
  overflow-y: auto;
}
.wnx-mobile-drawer::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 90px;
  width: 4px;
  height: 60px;
  background: var(--red);
}
.wnx-mobile-drawer.wnx-open { display: flex; transform: translateY(0); }
.wnx-mobile-drawer .wnx-drawer-label {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--red);
  text-transform: uppercase;
  padding-left: 20px;
  margin-bottom: 24px;
}
.wnx-mobile-drawer a.wnx-mn {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 4px 22px 20px;
  border-bottom: 1px solid #1f1f1f;
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--paper);
}
.wnx-mobile-drawer a.wnx-mn small {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 400;
}
.wnx-mobile-drawer a.wnx-mn:active { background: #141414; }
.wnx-mobile-drawer .wnx-drawer-cta {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}
.wnx-mobile-drawer .wnx-drawer-cta a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--red);
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  letter-spacing: 0.15em;
}
.wnx-mobile-drawer .wnx-drawer-cta a.wnx-ghost {
  background: transparent;
  border: 1px solid #333;
  color: var(--paper);
}
.wnx-mobile-drawer .wnx-drawer-cta a small {
  display: block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  opacity: .7;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.wnx-mobile-drawer .wnx-drawer-foot {
  margin-top: auto;
  padding-top: 32px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: #666;
  text-transform: uppercase;
  padding-left: 20px;
}
body.wnx-drawer-open { overflow: hidden; }

.wnx-back-index {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 200;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 10px 16px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.wnx-back-index:hover { background: var(--ink); color: var(--paper); }

/* ---------- Section helpers ---------- */
.wnx-section {
  padding: 120px 0;
  position: relative;
}
.wnx-section-head {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 60px;
  padding-left: 28px;
  border-left: 4px solid var(--red);
}
.wnx-section-en {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
}
.wnx-section-ja {
  font-family: "Shippori Mincho", serif;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* dark section variant */
.wnx-section.wnx-dark {
  background: var(--ink);
  color: var(--paper);
}
.wnx-section.wnx-dark .wnx-section-en { color: var(--red); }

/* ---------- Footer ---------- */
.wnx-footer {
  background: #050505;
  color: var(--paper);
  padding: 100px 0 40px;
  border-top: 4px solid var(--red);
}
.wnx-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #222;
}
.wnx-footer h4 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.wnx-footer .wnx-brand-block {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 36px;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.wnx-footer .wnx-brand-block-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.wnx-footer ul { list-style: none; font-family: "Shippori Mincho", serif; font-size: 14px; line-height: 2.3; }
.wnx-footer ul a:hover { color: var(--red); }
.wnx-footer .wnx-tag { font-size: 12px; color: #888; line-height: 2; }
.wnx-footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  font-size: 11px;
  color: #666;
  font-family: "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.2em;
}

/* ---------- Page hero (sub pages) ---------- */
.wnx-page-hero {
  background: var(--ink);
  color: var(--paper);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
.wnx-page-hero::before {
  content: "";
  position: absolute;
  left: 48px;
  top: 180px;
  width: 6px;
  height: 120px;
  background: var(--red);
}
.wnx-page-hero .wnx-en {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  padding-left: 30px;
}
.wnx-page-hero h1 {
  font-family: "Shippori Mincho", serif;
  font-size: 96px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.05em;
  padding-left: 30px;
}
.wnx-page-hero .wnx-lead {
  margin-top: 30px;
  padding-left: 30px;
  max-width: 700px;
  font-size: 16px;
  line-height: 2.1;
  color: #ccc;
}

/* CTA button generic */
.wnx-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  background: var(--red);
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  letter-spacing: 0.15em;
  transition: background .2s;
}
.wnx-btn:hover { background: var(--ink); color: var(--paper); }
.wnx-btn.wnx-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.wnx-btn.wnx-ghost:hover { background: var(--ink); color: var(--paper); }
.wnx-btn.wnx-on-dark { background: var(--red); color: #fff; }
.wnx-btn.wnx-on-dark:hover { background: #fff; color: var(--red); }
.wnx-btn .wnx-arrow { font-family: "Helvetica Neue", Arial, sans-serif; font-size: 20px; letter-spacing: 0; }

/* Breadcrumb */
.wnx-crumb {
  padding: 24px 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
}
.wnx-crumb a { color: var(--ink); }
.wnx-crumb a:hover { color: var(--red); }
.wnx-crumb .wnx-sep { margin: 0 12px; color: #ccc; }

/* ==========================================================
   RESPONSIVE — Mobile / Tablet
   ========================================================== */

/* Tablet */
@media (max-width: 900px) {
  .wnx-container { padding: 0 28px; }
  .wnx-section { padding: 80px 0; }
  .wnx-section-head { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 40px; padding-left: 18px; border-left-width: 3px; }
  .wnx-section-ja { font-size: 28px; letter-spacing: 0.04em; }
  .wnx-section-en { font-size: 12px; letter-spacing: 0.3em; }

  .wnx-header-inner { padding: 14px 20px; }
  .wnx-brand { font-size: 18px; letter-spacing: 0.2em; gap: 10px; }
  .wnx-brand::before { height: 18px; }
  .wnx-nav { display: none; }
  .wnx-burger { display: block; }

  .wnx-page-hero { padding: 130px 0 70px; }
  .wnx-page-hero::before { left: 28px; top: 130px; height: 80px; }
  .wnx-page-hero h1 { font-size: 46px; padding-left: 22px; }
  .wnx-page-hero .wnx-en { font-size: 12px; padding-left: 22px; margin-bottom: 14px; }
  .wnx-page-hero .wnx-lead { padding-left: 22px; margin-top: 20px; font-size: 14px; line-height: 1.95; }

  .wnx-footer { padding: 70px 0 32px; }
  .wnx-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; padding-bottom: 40px; }
  .wnx-footer .wnx-brand-block { font-size: 28px; }
  .wnx-footer .wnx-brand-block-logo img { height: 32px; }
  .wnx-footer-bottom { flex-direction: column; gap: 12px; text-align: left; font-size: 10px; }

  .wnx-btn { padding: 16px 24px; font-size: 14px; }
  .wnx-back-index { bottom: 16px; left: 16px; padding: 8px 12px; font-size: 10px; }
}

/* Phone */
@media (max-width: 560px) {
  .wnx-container { padding: 0 20px; }
  .wnx-section { padding: 64px 0; }
  .wnx-section-head { padding-left: 14px; margin-bottom: 32px; }
  .wnx-section-ja { font-size: 23px; }

  .wnx-header-inner { padding: 12px 16px; }
  .wnx-brand { font-size: 15px; letter-spacing: 0.18em; }
  .wnx-brand::before { width: 3px; height: 15px; }
  .wnx-burger { width: 40px; height: 40px; }
  .wnx-burger span { left: 9px; right: 9px; }
  .wnx-burger span:nth-child(1){top:13px;} .wnx-burger span:nth-child(2){top:19px;} .wnx-burger span:nth-child(3){top:25px;}
  .wnx-burger[aria-expanded="true"] span:nth-child(1),
  .wnx-burger[aria-expanded="true"] span:nth-child(3) { top: 19px; }

  .wnx-mobile-drawer { padding: 78px 22px 32px; }
  .wnx-mobile-drawer::before { left: 22px; top: 78px; height: 48px; }
  .wnx-mobile-drawer .wnx-drawer-label { padding-left: 16px; margin-bottom: 16px; }
  .wnx-mobile-drawer a.wnx-mn { padding: 18px 4px 18px 16px; font-size: 19px; }
  .wnx-mobile-drawer .wnx-drawer-foot { padding-left: 16px; }

  .wnx-page-hero { padding: 110px 0 56px; }
  .wnx-page-hero::before { left: 20px; top: 110px; width: 4px; height: 60px; }
  .wnx-page-hero h1 { font-size: 34px; padding-left: 16px; line-height: 1.2; }
  .wnx-page-hero .wnx-en { padding-left: 16px; }
  .wnx-page-hero .wnx-lead { padding-left: 16px; font-size: 13.5px; }
}


/* ===== index.html inline style ===== */

  /* ============ HERO ============ */
  .wnx-hero {
    min-height: 100vh;
    background: #0a0a0a;
    color: var(--paper);
    position: relative;
    padding: 140px 48px 60px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .wnx-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, rgba(10,10,10,0.82), rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.25) 75%, rgba(10,10,10,0.55)),
      url("https://www.w-next.jp/corporate/wp-content/uploads/2026/08/hero.jpg") center/cover;
    z-index: 0;
  }
  .wnx-hero::after {
    content: "";
    position: absolute;
    left: 48px;
    top: 140px;
    bottom: 60px;
    width: 6px;
    background: var(--red);
    z-index: 1;
  }
  .wnx-hero-inner {
    position: relative;
    z-index: 2;
    padding-left: 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
  }
  .wnx-hero-tag {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .wnx-hero-tag::after {
    content: "";
    width: 80px;
    height: 1px;
    background: var(--red);
  }
  .wnx-hero h1 {
    font-family: "Shippori Mincho", serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.04em;
    margin-bottom: 40px;
  }
  .wnx-hero h1 .wnx-red { color: var(--red); }
  /* スマホでのみ表示する改行 */
  .wnx-br-sp { display: none; }
  .wnx-hero h1 .wnx-accent { display: block; font-size: 0.7em; }
  .wnx-hero h1 .wnx-lead-small {
    display: block;
    font-size: 0.42em;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: #d9d3c8;
    margin-bottom: 24px;
  }
  .wnx-hero-sub {
    font-family: "Shippori Mincho", serif;
    font-size: 18px;
    line-height: 2.2;
    max-width: 620px;
    color: #d9d3c8;
    margin-bottom: 50px;
  }
  .wnx-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
  }
  .wnx-hero-tags span {
    padding: 8px 18px;
    border: 1px solid #666;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ccc;
  }
  .wnx-hero-bottom {
    position: absolute;
    bottom: 40px;
    left: 88px;
    right: 48px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #aaa;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
  }
  .wnx-hero-bottom .wnx-scroll {
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .wnx-hero-bottom .wnx-scroll::after {
    content: "";
    width: 1px;
    height: 40px;
    background: var(--red);
  }
  .wnx-hero-bottom .wnx-meta { text-align: right; line-height: 2; }
  .wnx-hero-bottom .wnx-meta strong { color: var(--paper); font-size: 14px; letter-spacing: 0.2em; }

  /* ============ MARQUEE ============ */
  .wnx-marquee {
    background: var(--red);
    color: #fff;
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid #0a0a0a;
    border-bottom: 1px solid #0a0a0a;
  }
  .wnx-marquee-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    animation: scroll 40s linear infinite;
  }
  .wnx-marquee-track span::before {
    content: "◆";
    margin-right: 60px;
    font-size: 10px;
    vertical-align: middle;
    color: #fff;
  }
  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ============ MISSION ============ */
  .wnx-mission { background: var(--paper); }
  .wnx-mission-visual { border: 1px solid var(--paper-3); }
  .wnx-mission-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .wnx-mission-visual {
    aspect-ratio: 4/5;
    background: url("https://sspark.genspark.ai/cfimages?u1=aZFUlmKGDER%2BD1Vf50ChkHQoPBpEgAIwpB68np4k%2FmxM0oleBxlETfqfR8yhDUOWLY5h65L%2BUxdCvMbNNFiVaYlmEJx1zfoRxVKVCS%2FSlhI%3D&u2=7wuYaP4s5wqg1BgW&width=1024") center/cover;
    position: relative;
    filter: grayscale(0.3) contrast(1.05);
  }
  .wnx-mission-visual::after {
    content: "MISSION 使命";
    position: absolute;
    bottom: -18px;
    left: -18px;
    background: var(--red);
    color: #fff;
    padding: 14px 24px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.3em;
    font-size: 13px;
  }
  .wnx-mission h2 {
    font-family: "Shippori Mincho", serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
  }
  .wnx-mission h2 .wnx-red { color: var(--red); }
  .wnx-mission p {
    font-size: 15px;
    line-height: 2.2;
    color: #333;
    margin-bottom: 20px;
  }
  .wnx-mission-value {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #ccc;
  }
  .wnx-mission-value h3 {
    font-family: "Shippori Mincho", serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .wnx-mission-value h3::before {
    content: "VALUE";
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--red);
    padding: 4px 10px;
    border: 1px solid var(--red);
  }
  .wnx-value-list {
    list-style: none;
    counter-reset: v;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 30px;
  }
  .wnx-value-list li {
    counter-increment: v;
    font-family: "Shippori Mincho", serif;
    font-size: 13px;
    line-height: 1.7;
    padding-left: 44px;
    position: relative;
  }
  .wnx-value-list li::before {
    content: "0" counter(v);
    position: absolute;
    left: 0;
    top: 2px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    color: var(--red);
    font-weight: 500;
  }

  /* ============ STRENGTHS ============ */
  .wnx-strengths {
    background: var(--paper-2);
    position: relative;
    overflow: hidden;
  }
  .wnx-strengths::before {
    content: "STRENGTHS";
    position: absolute;
    left: -20px;
    top: 60px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 220px;
    color: rgba(10,10,10,0.04);
    letter-spacing: 0.05em;
    line-height: 1;
    font-weight: 400;
    pointer-events: none;
  }
  .wnx-strength-lead {
    max-width: 720px;
    margin: -20px 0 60px 32px;
    font-family: "Shippori Mincho", serif;
    font-size: 17px;
    line-height: 2.2;
    color: #333;
  }
  .wnx-strength-lead .wnx-red { color: var(--red); font-weight: 700; }
  .wnx-strength-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    position: relative;
    z-index: 2;
  }
  .wnx-strength-card {
    background: #fff;
    border: 1px solid var(--ink);
    padding: 48px 44px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 320px;
  }
  .wnx-strength-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 6px;
    height: 60px;
    background: var(--red);
  }
  .wnx-strength-card .wnx-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
  }
  .wnx-strength-card .wnx-num {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: var(--red);
    text-transform: uppercase;
  }
  .wnx-strength-card .wnx-en {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 0.3em;
    color: var(--muted);
    text-transform: uppercase;
  }
  .wnx-strength-card h3 {
    font-family: "Shippori Mincho", serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1.2;
    margin-bottom: 24px;
  }
  .wnx-strength-card h3 .wnx-amp {
    color: var(--red);
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    margin: 0 2px;
    font-size: 0.6em;
    vertical-align: 0.15em;
  }
  .wnx-strength-card p {
    font-family: "Shippori Mincho", serif;
    font-size: 15px;
    line-height: 2.1;
    color: #333;
    margin-bottom: 24px;
  }
  .wnx-strength-card .wnx-points {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px dashed #ccc;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
  }
  .wnx-strength-card .wnx-points li {
    list-style: none;
    font-family: "Shippori Mincho", serif;
    font-size: 13px;
    color: #444;
    padding-left: 20px;
    position: relative;
    letter-spacing: 0.03em;
  }
  .wnx-strength-card .wnx-points li::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: var(--red);
    font-size: 10px;
    top: 4px;
  }

  /* ============ SERVICES ============ */
  .wnx-services {
    background: var(--paper);
    color: var(--ink);
    position: relative;
  }
  .wnx-services::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 6px;
    background: var(--ink);
  }
  .wnx-services .wnx-section-head { border-color: var(--ink); }
  .wnx-services .wnx-section-ja { color: var(--ink); }
  .wnx-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--ink);
    border: 1px solid var(--ink);
  }
  .wnx-service {
    background: #ffffff;
    padding: 50px 44px;
    position: relative;
    min-height: 320px;
    transition: background .3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
  }
  .wnx-service:hover { background: #fff; }
  .wnx-service-num {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--red);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--paper-3);
    display: inline-block;
    padding-right: 30px;
  }
  .wnx-service:hover .wnx-service-num { border-bottom-color: var(--red); }
  .wnx-service-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 30px; }
  .wnx-service h3 {
    font-family: "Shippori Mincho", serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    color: var(--ink);
  }
  .wnx-service h3 small {
    display: block;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    color: #999;
    letter-spacing: 0.3em;
    font-weight: 400;
    margin-top: 8px;
    text-transform: uppercase;
  }
  .wnx-service p {
    font-family: "Shippori Mincho", serif;
    font-size: 14px;
    line-height: 2;
    color: #444;
    margin-bottom: 24px;
  }
  .wnx-service .wnx-more {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink);
    padding-top: 20px;
    border-top: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
  }
  .wnx-service:hover .wnx-more { color: var(--red); border-top-color: var(--red); }

  /* Big figure inside each service card (merged from Stats) */
  .wnx-service-figure {
    font-family: "Helvetica Neue", Arial, "Shippori Mincho", sans-serif;
    font-weight: 500;
    font-size: 96px;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--ink);
    display: flex;
    align-items: baseline;
    gap: 4px;
    /* 数字の高さを揃える（ライニング＋タビュラー） */
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "lnum" 1, "tnum" 1;
  }
  .wnx-service-figure .wnx-unit {
    font-family: "Shippori Mincho", serif;
    font-size: 18px;
    letter-spacing: 0.15em;
    color: #666;
    font-weight: 500;
  }
  .wnx-service-figure .wnx-plus {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 44px;
    color: var(--red);
    font-weight: 400;
    line-height: 1;
    align-self: flex-start;
    margin-left: 2px;
    font-feature-settings: "lnum" 1;
  }
  .wnx-service-figure .wnx-caption {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    margin-left: 14px;
    align-self: flex-end;
    padding-bottom: 10px;
    white-space: nowrap;
  }
  .wnx-service-top {
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e5df;
    margin-bottom: 28px !important;
  }

  /* ============ STATS (Redesigned) ============ */
  .wnx-stats {
    background: var(--paper);
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
  }
  .wnx-stats::before {
    content: "BY THE NUMBERS";
    position: absolute;
    right: -40px;
    bottom: -20px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 180px;
    color: rgba(10,10,10,0.035);
    letter-spacing: 0.05em;
    line-height: 1;
    font-weight: 400;
    pointer-events: none;
    white-space: nowrap;
  }
  .wnx-stats-head {
    display: flex;
    align-items: baseline;
    gap: 24px;
    margin-bottom: 60px;
    padding-left: 28px;
    border-left: 4px solid var(--red);
  }
  .wnx-stats-head .wnx-en {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--red);
  }
  .wnx-stats-head .wnx-ja {
    font-family: "Shippori Mincho", serif;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.06em;
  }
  .wnx-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
  }
  .wnx-stat {
    background: #fff;
    border: 1px solid var(--ink);
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }
  .wnx-stat-visual {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 1px solid var(--ink);
    overflow: hidden;
  }
  .wnx-stat-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0) 40%, rgba(10,10,10,0.55));
  }
  .wnx-stat-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #fff;
    background: var(--red);
    padding: 5px 10px;
  }
  .wnx-stat-en-inside {
    position: absolute;
    bottom: 14px;
    left: 18px;
    z-index: 2;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #fff;
  }
  .wnx-stat-body {
    padding: 30px 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
  }
  .wnx-stat-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 42px;
    background: var(--red);
  }
  .wnx-stat-num {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(76px, 8vw, 110px);
    font-weight: 500;
    line-height: 0.9;
    color: var(--ink);
    letter-spacing: -0.02em;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 18px;
    margin-top: 4px;
  }
  .wnx-stat-num .wnx-unit {
    font-family: "Shippori Mincho", serif;
    font-size: 22px;
    color: var(--red);
    font-weight: 600;
    letter-spacing: 0.05em;
    padding-bottom: 14px;
    line-height: 1;
  }
  .wnx-stat-num .wnx-plus {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 34px;
    color: var(--red);
    font-weight: 400;
    padding-bottom: 10px;
    line-height: 1;
    margin-left: -4px;
  }
  .wnx-stat-label {
    font-family: "Shippori Mincho", serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--ink);
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px dashed #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .wnx-stat-label small {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--muted);
    text-transform: uppercase;
    font-weight: 400;
  }

  /* ============ STORES ============ */
  .wnx-stores {
    background: var(--paper-2);
  }
  .wnx-store-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .wnx-store {
    background: #fff;
    border: 1px solid var(--ink);
    transition: transform .3s;
    display: block;
  }
  .wnx-store:hover { transform: translateY(-6px); }
  .wnx-store-visual {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--ink);
    position: relative;
  }
  .wnx-store-visual .wnx-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--red);
    color: #fff;
    padding: 6px 12px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
  }
  .wnx-store-body {
    padding: 30px 28px;
  }
  .wnx-store-en {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
  }
  .wnx-store h3 {
    font-family: "Shippori Mincho", serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
  }
  .wnx-store-info {
    font-size: 13px;
    line-height: 2;
    color: #444;
    padding-top: 16px;
    border-top: 1px solid #eee;
  }
  .wnx-store-info dt {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.25em;
    color: var(--red);
    text-transform: uppercase;
    display: inline-block;
    width: 60px;
  }
  .wnx-store-info dd { display: inline; }
  .wnx-store-info div { display: block; }
  .wnx-store .wnx-link {
    display: block;
    padding: 16px 28px;
    background: var(--ink);
    color: var(--paper);
    text-align: center;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    border-top: 1px solid var(--ink);
  }
  .wnx-store:hover .wnx-link { background: var(--red); }
  .wnx-store.wnx-coming { background: repeating-linear-gradient(45deg, #f2f2f4, #f2f2f4 10px, #e6e6ea 10px, #e6e6ea 20px); border-style: dashed; }
  .wnx-store.wnx-coming .wnx-store-visual {
    background: #dcdce0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-family: "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.3em;
    font-size: 24px;
    border-bottom: 1px dashed var(--ink);
  }
  .wnx-store.wnx-upcoming-top { background: #fff; }
  .wnx-store-upcoming-visual {
    background: #f2f2f4;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .wnx-store-upcoming-visual::before {
    content: "";
    position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, transparent 0 22px, rgba(10,10,10,0.03) 22px 23px);
  }
  .wnx-upcoming-top-badge { background: var(--ink) !important; }
  .wnx-upcoming-top-label { position: relative; text-align: center; }
  .wnx-upcoming-top-en { font-family: "Helvetica Neue", Arial, sans-serif; font-size: 12px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
  .wnx-upcoming-top-ja { font-family: "Shippori Mincho", serif; font-size: 38px; font-weight: 700; letter-spacing: 0.15em; line-height: 1.1; color: var(--ink); }
  .wnx-upcoming-top-note { margin-top: 14px; font-family: "Helvetica Neue", Arial, sans-serif; font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: #999; }

  .wnx-partner { background: #fff; }
  .wnx-partner-grid { display: grid; grid-template-columns: 1fr 0.95fr; gap: 64px; align-items: center; }
  .wnx-partner-copy { max-width: 560px; }
  .wnx-partner-copy h3 { font-family: "Shippori Mincho", serif; font-size: 29px; font-weight: 600; line-height: 1.65; color: var(--ink); margin: 0 0 28px; }
  .wnx-partner-copy h3 .accent { color: var(--red); }
  .wnx-partner-copy p { font-size: 15px; line-height: 2; color: var(--muted); margin: 0 0 32px; }
  .wnx-partner-visual { border: 1px solid var(--line); overflow: hidden; }
  .wnx-partner-visual img { display: block; width: 100%; height: auto; }
  .wnx-partner-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
  .wnx-partner-tags span { padding: 9px 18px; border: 1px solid var(--ink); font-family: "Helvetica Neue", Arial, sans-serif; font-size: 12px; letter-spacing: 0.12em; color: var(--ink); }
  .wnx-partner-media { display: flex; flex-direction: column; gap: 24px; }
  .wnx-partner-media .wnx-btn { width: 100%; justify-content: center; }

  /* ============ VOICE (テスティモニアル) ============ */
  .wnx-voice { background: var(--ink); color: var(--paper); }
  .wnx-voice .wnx-section-ja { color: var(--paper); }
  .wnx-voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .wnx-voice-card {
    background: #141414;
    border: 1px solid #2a2a2a;
    padding: 40px 32px;
    position: relative;
  }
  .wnx-voice-card .wnx-q {
    position: absolute;
    top: -14px;
    left: 24px;
    background: var(--red);
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 32px;
    line-height: 1;
    font-weight: 600;
  }
  .wnx-voice-card blockquote {
    font-family: "Shippori Mincho", serif;
    font-size: 18px;
    line-height: 1.9;
    margin: 20px 0 24px;
    letter-spacing: 0.03em;
  }
  .wnx-voice-card p {
    font-size: 13px;
    line-height: 1.9;
    color: #999;
    margin-bottom: 20px;
  }
  .wnx-voice-meta {
    padding-top: 20px;
    border-top: 1px solid #2a2a2a;
    font-family: "Shippori Mincho", serif;
    font-size: 13px;
    color: #bbb;
    display: flex;
    justify-content: space-between;
  }
  .wnx-voice-meta strong { color: var(--paper); font-size: 14px; }

  /* ============ NEWS ============ */
  .wnx-news { background: var(--paper); }
  .wnx-news-list li a { border-bottom-color: var(--paper-3); }
  .wnx-news-list {
    list-style: none;
    border-top: 1px solid var(--ink);
  }
  .wnx-news-list li a {
    display: grid;
    grid-template-columns: 140px 140px 1fr auto;
    gap: 30px;
    align-items: center;
    padding: 28px 8px;
    border-bottom: 1px solid var(--paper-3);
    transition: background .2s;
  }
  .wnx-news-list li a:hover { background: rgba(200,16,46,0.05); padding-left: 20px; }
  .wnx-news-list .wnx-date {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    letter-spacing: 0.15em;
    color: var(--muted);
  }
  .wnx-news-list .wnx-cat {
    font-family: "Shippori Mincho", serif;
    font-size: 12px;
    color: var(--red);
    padding: 4px 10px;
    border: 1px solid var(--red);
    text-align: center;
    letter-spacing: 0.15em;
  }
  .wnx-news-list .wnx-title {
    font-family: "Shippori Mincho", serif;
    font-size: 17px;
    letter-spacing: 0.03em;
  }
  .wnx-news-list .wnx-arrow {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 20px;
    color: var(--red);
  }

  /* ============ CTA ============ */
  .wnx-cta-section {
    background: var(--red);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  .wnx-cta-section::before {
    content: "CONTACT";
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 280px;
    color: rgba(0,0,0,0.08);
    letter-spacing: 0.05em;
    font-weight: 400;
    line-height: 1;
  }
  .wnx-cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .wnx-cta-section h2 {
    font-family: "Shippori Mincho", serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
  }
  .wnx-cta-section p {
    font-family: "Shippori Mincho", serif;
    font-size: 16px;
    line-height: 2;
  }
  .wnx-cta-buttons { display: flex; flex-direction: column; gap: 16px; }
  .wnx-cta-buttons .wnx-btn { background: #0a0a0a; justify-content: space-between; padding: 22px 30px; font-size: 18px; }
  .wnx-cta-buttons .wnx-btn:hover { background: #fff; color: var(--red); }
  .wnx-cta-buttons .wnx-btn small { font-family: "Helvetica Neue", Arial, sans-serif; font-size: 12px; letter-spacing: 0.3em; opacity: .7; display: block; margin-bottom: 4px; }

  /* ============================================================
     RESPONSIVE — Plan A / Gravity  (Top Page)
     ============================================================ */
  @media (max-width: 900px) {
    /* HERO */
    .wnx-hero { padding: 110px 24px 40px; min-height: auto; }
    .wnx-hero::before {
      background:
        linear-gradient(to bottom, rgba(10,10,10,0.55), rgba(10,10,10,0.65) 60%, rgba(10,10,10,0.85)),
        url("https://www.w-next.jp/corporate/wp-content/uploads/2026/08/hero.jpg") center/cover;
    }
    .wnx-hero::after { left: 24px; top: 110px; bottom: auto; height: 60px; width: 4px; }
    .wnx-hero-inner { padding-left: 22px; }
    .wnx-hero-tag { font-size: 11px; letter-spacing: 0.3em; margin-bottom: 24px; gap: 14px; }
    .wnx-hero-tag::after { width: 40px; }
    .wnx-hero h1 {
      font-size: clamp(19px, 5.2vw, 30px);
      letter-spacing: 0;
      line-height: 1.6;
      margin-bottom: 28px;
    }
    .wnx-hero h1 .wnx-lead-small { font-size: 11px; letter-spacing: 0.28em; margin-bottom: 18px; }
    .wnx-br-sp { display: inline; }
    .wnx-hero-sub {
      font-size: 13px;
      line-height: 2;
      margin-bottom: 32px;
      max-width: 100%;
    }
    .wnx-hero-sub br { display: none; }
    .wnx-hero-tags { gap: 8px; margin-bottom: 40px; }
    .wnx-hero-tags span { padding: 6px 12px; font-size: 10px; letter-spacing: 0.15em; }
    .wnx-hero-bottom {
      position: static;
      margin-top: 32px;
      padding-top: 24px;
      border-top: 1px solid #333;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      left: auto; right: auto; bottom: auto;
    }
    .wnx-hero-bottom .wnx-scroll { writing-mode: horizontal-tb; font-size: 10px; letter-spacing: 0.2em; }
    .wnx-hero-bottom .wnx-scroll::after { display: none; }
    .wnx-hero-bottom .wnx-meta { font-size: 10px; letter-spacing: 0.15em; line-height: 1.7; }
    .wnx-hero-bottom .wnx-meta strong { font-size: 11px; }

    /* MARQUEE */
    .wnx-marquee { padding: 12px 0; }
    .wnx-marquee-track { gap: 40px; font-size: 13px; letter-spacing: 0.3em; }
    .wnx-marquee-track span::before { margin-right: 40px; }

    /* MISSION */
    .wnx-mission-grid { grid-template-columns: 1fr; gap: 40px; }
    .wnx-mission-visual { aspect-ratio: 4/3; }
    .wnx-mission-visual::after { bottom: -14px; left: -10px; padding: 10px 16px; font-size: 11px; letter-spacing: 0.25em; }
    .wnx-mission h2 { font-size: 24px; line-height: 1.7; margin-bottom: 24px; letter-spacing: 0.04em; }
    .wnx-mission p { font-size: 13.5px; line-height: 2.05; }
    .wnx-mission-value { margin-top: 28px; padding-top: 24px; }
    .wnx-mission-value h3 { font-size: 18px; margin-bottom: 18px; }
    .wnx-value-list { grid-template-columns: 1fr; gap: 10px 0; }
    .wnx-value-list li { font-size: 12.5px; padding-left: 36px; }

    /* STRENGTHS */
    .wnx-strengths::before { font-size: 110px; top: 40px; left: -10px; }
    .wnx-strength-lead { margin: 0 0 40px 0; font-size: 14px; line-height: 2; }
    .wnx-strength-grid { grid-template-columns: 1fr; gap: 20px; }
    .wnx-strength-card { padding: 32px 24px; min-height: 0; }
    .wnx-strength-card h3 { font-size: 34px; margin-bottom: 18px; letter-spacing: 0.12em; }
    .wnx-strength-card p { font-size: 13.5px; line-height: 2; margin-bottom: 20px; }
    .wnx-strength-card .wnx-points { grid-template-columns: 1fr; gap: 10px; padding-top: 18px; }
    .wnx-strength-card .wnx-points li { font-size: 12.5px; }
    .wnx-strength-card .wnx-head { flex-wrap: wrap; row-gap: 6px; }
    .wnx-strength-card .wnx-num { font-size: 12px; letter-spacing: 0.02em; }
    .wnx-strength-card .wnx-en { font-size: 11px; letter-spacing: 0.15em; }

    /* SERVICES */
    .wnx-service-grid { grid-template-columns: 1fr; }
    .wnx-service { padding: 32px 24px; min-height: 0; }
    .wnx-service-top { margin-bottom: 20px; }
    .wnx-service-icon { width: 48px; height: 48px; font-size: 20px; }
    .wnx-service h3 { font-size: 22px; }
    .wnx-service h3 small { font-size: 11px; letter-spacing: 0.25em; margin-top: 6px; }
    .wnx-service p { font-size: 13px; line-height: 1.95; margin-bottom: 18px; }
    .wnx-service .wnx-more { font-size: 11px; padding-top: 16px; }
    .wnx-service-figure { font-size: 60px; flex-wrap: wrap; }
    .wnx-service-figure .wnx-unit { font-size: 14px; }
    .wnx-service-figure .wnx-plus { font-size: 28px; }
    .wnx-service-figure .wnx-caption { font-size: 9px; letter-spacing: 0.25em; margin-left: 10px; padding-bottom: 6px; }

    /* STATS */
    .wnx-stats { padding: 72px 0 80px; }
    .wnx-stats::before { font-size: 80px; top: 24px; }
    .wnx-stats-head { flex-direction: column; align-items: flex-start; gap: 8px; padding-left: 18px; border-left-width: 3px; margin-bottom: 32px; }
    .wnx-stats-head .wnx-ja { font-size: 22px; }
    .wnx-stats-head .wnx-en { font-size: 12px; letter-spacing: 0.3em; }
    .wnx-stat-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .wnx-stat-body { padding: 22px 18px 22px; }
    .wnx-stat-body::before { height: 32px; }
    .wnx-stat-num { font-size: 54px; line-height: 0.9; margin-bottom: 12px; }
    .wnx-stat-num .wnx-unit { font-size: 14px; padding-bottom: 7px; }
    .wnx-stat-num .wnx-plus { font-size: 22px; padding-bottom: 5px; }
    .wnx-stat-label { font-size: 13px; padding-top: 12px; flex-direction: column; align-items: flex-start; gap: 4px; }
    .wnx-stat-label small { font-size: 9px; letter-spacing: 0.25em; }
    .wnx-stat-tag { font-size: 9px; padding: 4px 8px; letter-spacing: 0.25em; }
    .wnx-stat-en-inside { font-size: 10px; letter-spacing: 0.25em; }

    /* STORES */
    .wnx-store-grid { grid-template-columns: 1fr; gap: 28px; }
    .wnx-store h3 { font-size: 22px; }
    .wnx-store-body { padding: 22px 20px; }
    .wnx-upcoming-top-ja { font-size: 28px; }

    /* VOICE */
    .wnx-voice-grid { grid-template-columns: 1fr; gap: 32px; }
    .wnx-voice-card { padding: 32px 24px; }
    .wnx-voice-card blockquote { font-size: 15.5px; line-height: 1.9; margin: 16px 0 18px; }
    .wnx-voice-card p { font-size: 12.5px; }
    .wnx-voice-meta { flex-direction: column; gap: 4px; align-items: flex-start; }

    /* NEWS */
    .wnx-news-list li a {
      grid-template-columns: auto 1fr;
      grid-template-rows: auto auto;
      column-gap: 14px;
      row-gap: 6px;
      padding: 20px 4px;
    }
    .wnx-news-list li a:hover { padding-left: 12px; }
    .wnx-news-list .wnx-date { font-size: 12px; letter-spacing: 0.1em; grid-column: 1; grid-row: 1; }
    .wnx-news-list .wnx-cat { font-size: 10px; padding: 3px 8px; grid-column: 2; grid-row: 1; justify-self: start; }
    .wnx-news-list .wnx-title { font-size: 14px; grid-column: 1 / 3; grid-row: 2; line-height: 1.7; }
    .wnx-news-list .wnx-arrow { display: none; }

    /* CTA */
    .wnx-cta-section { padding: 60px 0; }
    .wnx-cta-section::before { font-size: 140px; right: -30px; }
    .wnx-cta-inner { grid-template-columns: 1fr; gap: 32px; }
    .wnx-cta-section h2 { font-size: 26px; line-height: 1.7; letter-spacing: 0.04em; }
    .wnx-cta-section p { font-size: 13.5px; line-height: 1.95; }
    .wnx-cta-buttons .wnx-btn { padding: 18px 22px; font-size: 15px; }
    .wnx-cta-buttons .wnx-btn small { font-size: 10px; letter-spacing: 0.25em; }
  }

  @media (max-width: 560px) {
    .wnx-hero { padding: 100px 18px 32px; }
    .wnx-hero::after { left: 18px; top: 100px; height: 46px; width: 3px; }
    .wnx-hero-inner { padding-left: 18px; }
    .wnx-hero-tag { font-size: 10px; margin-bottom: 20px; }
    .wnx-hero-tag::after { width: 28px; }
    .wnx-hero h1 {
      font-size: 19px;
      line-height: 1.7;
      letter-spacing: -0.005em;
    }
    .wnx-hero h1 .wnx-lead-small { font-size: 10px; letter-spacing: 0.25em; margin-bottom: 14px; }
    .wnx-hero-sub { font-size: 12.5px; line-height: 1.95; margin-bottom: 24px; }
    .wnx-hero-tags span { padding: 5px 10px; font-size: 9.5px; }
    .wnx-hero-bottom { margin-top: 24px; padding-top: 18px; }

    .wnx-mission h2 { font-size: 20px; line-height: 1.7; }
    .wnx-strength-card h3 { font-size: 28px; letter-spacing: 0.1em; }
    .wnx-strength-card p { font-size: 13px; }
    .wnx-strengths::before { font-size: 80px; }
    .wnx-service h3 { font-size: 20px; }
    .wnx-stat-num { font-size: 46px; }
    .wnx-stat-num .wnx-unit { font-size: 12px; padding-bottom: 6px; }
    .wnx-stat-num .wnx-plus { font-size: 18px; padding-bottom: 4px; }
    .wnx-stat-body { padding: 18px 14px; }
    .wnx-stat-label { font-size: 12px; }
    .wnx-cta-section h2 { font-size: 22px; }
    .wnx-voice-card blockquote { font-size: 14.5px; }
  }


/* ===== about.html inline style ===== */

  main { padding-top: 0; }
  .wnx-message {
    background: var(--paper);
    padding: 120px 0;
  }
  .wnx-message-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
  }
  .wnx-message-visual {
    aspect-ratio: 3/4;
    background: url("https://www.w-next.jp/corporate/wp-content/uploads/2026/08/P1001893.jpg") center/cover;
    filter: grayscale(0.4) contrast(1.05);
    position: relative;
  }
  .wnx-message-visual::before {
    content: "";
    position: absolute;
    left: -20px;
    top: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--red);
    z-index: -1;
  }
  .wnx-message .wnx-role {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 0.3em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .wnx-message h2 {
    font-family: "Shippori Mincho", serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
  }
  .wnx-message h2 .wnx-red { color: var(--red); }
  .wnx-message p {
    font-size: 15px;
    line-height: 2.2;
    margin-bottom: 22px;
    color: #333;
  }
  .wnx-message .wnx-sign {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #ccc;
    font-family: "Shippori Mincho", serif;
    font-size: 16px;
    display: flex;
    align-items: baseline;
    gap: 20px;
  }
  .wnx-message .wnx-sign small { color: var(--muted); font-size: 12px; letter-spacing: 0.2em; }
  .wnx-message .wnx-sign strong { font-size: 26px; font-weight: 700; letter-spacing: 0.15em; }

  .wnx-company-info { background: var(--paper-2); padding: 120px 0; }
  .wnx-group-info { background: var(--paper-3); }
  .wnx-info-table {
    background: #fff;
    border: 1px solid var(--ink);
    width: 100%;
    border-collapse: collapse;
  }
  .wnx-info-table th, .wnx-info-table td {
    padding: 24px 30px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-family: "Shippori Mincho", serif;
    font-size: 15px;
    vertical-align: top;
  }
  .wnx-info-table th {
    width: 220px;
    background: #ffffff;
    font-weight: 600;
    border-right: 1px solid #ddd;
    letter-spacing: 0.1em;
  }
  .wnx-info-table th .wnx-en {
    display: block;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--red);
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 400;
  }
  .wnx-info-table tr:last-child th, .wnx-info-table tr:last-child td { border-bottom: none; }

  /* History timeline */
  .wnx-history { background: var(--paper); padding: 120px 0; }
  .wnx-timeline {
    position: relative;
    padding-left: 40px;
    max-width: 900px;
  }
  .wnx-timeline::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: var(--ink);
  }
  .wnx-tl-item {
    position: relative;
    padding: 20px 0 40px 40px;
  }
  .wnx-tl-item::before {
    content: "";
    position: absolute;
    left: -40px;
    top: 32px;
    width: 14px;
    height: 14px;
    background: var(--red);
    border-radius: 50%;
    border: 3px solid var(--paper);
    box-shadow: 0 0 0 2px var(--ink);
  }
  .wnx-tl-year {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 10px;
  }
  .wnx-tl-year small { color: var(--red); font-size: 16px; letter-spacing: 0.2em; margin-left: 12px; }
  .wnx-tl-body {
    font-family: "Shippori Mincho", serif;
    font-size: 16px;
    line-height: 2;
    color: #333;
  }

  /* Team */
  .wnx-team { background: var(--ink); color: var(--paper); padding: 120px 0; }
  .wnx-team .wnx-section-ja { color: var(--paper); }
  .wnx-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .wnx-member {
    background: #141414;
    padding: 40px 32px;
    border: 1px solid #2a2a2a;
    text-align: left;
    position: relative;
  }
  .wnx-member .wnx-num {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    color: var(--red);
    letter-spacing: 0.3em;
  }
  .wnx-member .wnx-photo {
    width: 100%;
    aspect-ratio: 1;
    background: #2a2a2a;
    margin: 20px 0;
    background-size: cover;
    background-position: center top;
    filter: grayscale(0.5);
  }
  .wnx-member h4 {
    font-family: "Shippori Mincho", serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
  }
  .wnx-member .wnx-en {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 0.25em;
    color: var(--muted);
    margin-bottom: 16px;
  }
  .wnx-member .wnx-role {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--red);
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid var(--red);
    display: inline-block;
    margin-bottom: 16px;
  }
  .wnx-member p {
    font-family: "Shippori Mincho", serif;
    font-size: 13px;
    line-height: 1.9;
    color: #bbb;
    padding-top: 16px;
    border-top: 1px solid #2a2a2a;
  }

  /* Mobile — About */
  @media (max-width: 900px) {
    .wnx-message-grid,
    .wnx-team-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  }
  @media (max-width: 560px) {
    .wnx-message h2 { font-size: 30px; }
  }
  @media (max-width: 560px) {
    .wnx-info-table, .wnx-info-table tbody, .wnx-info-table tr, .wnx-info-table th, .wnx-info-table td {
      display: block;
      width: auto;
    }
    .wnx-info-table th {
      border-right: none;
      border-bottom: none;
      padding: 16px 20px 4px;
      font-size: 13px;
      color: var(--red);
      text-align: center;
      vertical-align: middle;
    }
    .wnx-info-table td {
      padding: 4px 20px 16px;
      font-size: 14px;
      text-align: center;
      vertical-align: middle;
    }
    .wnx-info-table tr {
      border-bottom: 1px solid #ddd;
    }
    .wnx-info-table tr:last-child {
      border-bottom: none;
    }
    .wnx-info-table th .wnx-en {
      display: none;
    }
  }


/* ===== service.html inline style ===== */

  .wnx-svc-block {
    padding: 120px 0;
    border-bottom: 1px solid #ddd;
  }
  .wnx-svc-block:nth-child(even) { background: var(--paper-2); }
  .wnx-svc-block.wnx-dark { background: var(--ink); color: var(--paper); border-bottom-color: #2a2a2a; }
  .wnx-svc-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
  }
  .wnx-svc-block:nth-child(even) .wnx-svc-inner { grid-template-columns: 1.2fr 1fr; }
  .wnx-svc-block:nth-child(even) .wnx-svc-visual { order: 2; }
  .wnx-svc-block:nth-child(even) .wnx-svc-text { order: 1; }
  .wnx-svc-visual {
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    position: relative;
    filter: grayscale(0.15) contrast(1.05);
  }
  .wnx-svc-visual .wnx-num {
    position: absolute;
    top: -30px;
    left: -30px;
    background: var(--red);
    color: #fff;
    padding: 20px 24px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 44px;
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 500;
  }
  .wnx-svc-visual .wnx-num small { display: block; font-size: 11px; letter-spacing: 0.3em; margin-top: 6px; text-transform: uppercase; }
  .wnx-svc-text .wnx-en {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 0.35em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .wnx-svc-text h2 {
    font-family: "Shippori Mincho", serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
  }
  .wnx-svc-block.wnx-dark .wnx-svc-text h2 { color: var(--paper); }
  .wnx-svc-text .wnx-lead {
    font-family: "Shippori Mincho", serif;
    font-size: 18px;
    line-height: 2;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
  }
  .wnx-svc-block.wnx-dark .wnx-lead { border-color: #333; color: #ddd; }
  .wnx-svc-text p {
    font-size: 15px;
    line-height: 2.2;
    margin-bottom: 20px;
  }
  .wnx-svc-block.wnx-dark .wnx-svc-text p { color: #ccc; }
  .wnx-svc-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
  }
  .wnx-svc-feat {
    padding: 20px;
    background: rgba(200,16,46,0.05);
    border-left: 3px solid var(--red);
  }
  .wnx-svc-block.wnx-dark .wnx-svc-feat { background: rgba(200,16,46,0.1); }
  .wnx-svc-feat h4 {
    font-family: "Shippori Mincho", serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
  }
  .wnx-svc-feat p {
    font-size: 13px;
    line-height: 1.8;
    margin: 0;
    color: inherit;
    opacity: .8;
  }

  /* Flow */
  .wnx-flow-section { background: var(--paper); padding: 120px 0; }
  .wnx-flow-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
  }
  .wnx-flow-step {
    background: #fff;
    border: 1px solid var(--ink);
    padding: 30px 20px;
    text-align: center;
    position: relative;
  }
  .wnx-flow-step .wnx-step-num {
    display: inline-block;
    width: 44px;
    height: 44px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    line-height: 44px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    margin-bottom: 16px;
  }
  .wnx-flow-step h4 {
    font-family: "Shippori Mincho", serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
  }
  .wnx-flow-step p {
    font-size: 12px;
    line-height: 1.8;
    color: #666;
  }
  .wnx-flow-step:not(:last-child)::after {
    content: "▶";
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--red);
    font-size: 14px;
    z-index: 2;
  }

  /* FAQ */
  .wnx-faq-section { background: var(--ink); color: var(--paper); padding: 120px 0; }
  .wnx-faq-section .wnx-section-ja { color: var(--paper); }
  .wnx-faq-list { max-width: 900px; margin: 0 auto; }
  .wnx-faq-item {
    border-bottom: 1px solid #333;
    padding: 30px 0;
  }
  .wnx-faq-q {
    font-family: "Shippori Mincho", serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    display: flex;
    gap: 20px;
    align-items: baseline;
    margin-bottom: 16px;
  }
  .wnx-faq-q::before {
    content: "Q";
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: var(--red);
    font-size: 28px;
    font-weight: 500;
    flex-shrink: 0;
  }
  .wnx-faq-a {
    font-family: "Shippori Mincho", serif;
    font-size: 14px;
    line-height: 2;
    color: #ccc;
    padding-left: 48px;
    display: flex;
    gap: 20px;
    align-items: baseline;
  }
  .wnx-faq-a::before {
    content: "A";
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: #666;
    font-size: 22px;
    font-weight: 500;
    flex-shrink: 0;
    margin-left: -48px;
  }

  /* Mobile — Service */
  @media (max-width: 900px) {
    .wnx-svc-inner, .wnx-svc-block:nth-child(even) .wnx-svc-inner { grid-template-columns: 1fr !important; gap: 28px !important; }
    .wnx-svc-block:nth-child(even) .wnx-svc-visual { order: 0 !important; }
    .wnx-svc-block:nth-child(even) .wnx-svc-text { order: 0 !important; }
    .wnx-svc-visual .wnx-num { font-size: 34px !important; }
    .wnx-svc-features { grid-template-columns: 1fr !important; }
    .wnx-cta-inner { grid-template-columns: 1fr !important; gap: 28px !important; }
    .wnx-flow-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  }
  @media (max-width: 560px) {
    .wnx-flow-grid { grid-template-columns: 1fr !important; }
    .wnx-svc-text h2 { font-size: 36px !important; }
  }


/* ===== stores.html inline style ===== */

  .wnx-store-section { padding: 100px 0; background: var(--paper); }
  .wnx-stores-lead {
    max-width: 700px;
    margin: 0 auto 80px;
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 17px;
    line-height: 2.2;
  }
  .wnx-stores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .wnx-store-card {
    background: #fff;
    border: 1px solid var(--ink);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 380px;
    transition: transform .3s;
  }
  .wnx-store-card:hover { transform: translateY(-6px); }
  .wnx-store-card .wnx-visual {
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .wnx-store-card .wnx-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--red);
    color: #fff;
    padding: 8px 14px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
  }
  .wnx-store-card .wnx-body {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .wnx-store-card .wnx-en {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .wnx-store-card h3 {
    font-family: "Shippori Mincho", serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
  }
  .wnx-store-card dl {
    font-size: 13px;
    line-height: 1.8;
    color: #444;
    padding-top: 20px;
    border-top: 1px solid #eee;
  }
  .wnx-store-card dl > div { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .wnx-store-card dl > div:last-child { border-bottom: none; }
  .wnx-store-card dt { font-family: "Helvetica Neue", Arial, sans-serif; font-size: 10px; letter-spacing: 0.25em; color: var(--red); text-transform: uppercase; display: block; width: auto; margin-bottom: 8px; }
  .wnx-store-card dd { display: block; }
  .wnx-store-card .wnx-store-service-row { text-align: center; }
  .wnx-store-services { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
  .wnx-store-services li { background: var(--ink); color: #fff; font-size: 12px; letter-spacing: 0.05em; padding: 8px 14px; }
  .wnx-store-service-note { display: block; margin-top: 8px; font-size: 11px; color: var(--muted); letter-spacing: 0.05em; }
  .wnx-store-card .wnx-cta {
    margin-top: 24px;
    padding: 12px 20px;
    background: var(--red);
    color: var(--paper);
    font-family: "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.25em;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
  }
  .wnx-store-card:hover .wnx-cta { background: var(--red); }

  /* Coming soon */
  .wnx-store-card.wnx-coming {
    background: repeating-linear-gradient(45deg, #f2f2f4, #f2f2f4 12px, #e6e6ea 12px, #e6e6ea 24px);
    border-style: dashed;
  }
  .wnx-store-card.wnx-coming .wnx-visual {
    background: #dcdce0;
    display: flex; align-items: center; justify-content: center;
    color: #888;
    font-family: "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.3em;
    font-size: 30px;
  }
  .wnx-store-card.wnx-coming .wnx-cta { background: #999; }

  /* Upcoming (Machida) — 準備中だが具体名あり */
  .wnx-store-card.wnx-upcoming {
    background: #fff;
    border: 1px solid var(--ink);
  }
  .wnx-upcoming-visual {
    background: #f2f2f4;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .wnx-upcoming-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(45deg, transparent 0 22px, rgba(10,10,10,0.03) 22px 23px);
    pointer-events: none;
  }
  .wnx-upcoming-visual::after {
    content: "";
    position: absolute;
    left: 30px; right: 30px; bottom: 30px;
    height: 1px;
    background: var(--ink);
    opacity: 0.15;
  }
  .wnx-upcoming-badge { background: var(--ink) !important; color: var(--paper); }
  .wnx-upcoming-label {
    position: relative;
    text-align: center;
    color: var(--ink);
  }
  .wnx-upcoming-en {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 0.35em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .wnx-upcoming-ja {
    font-family: "Shippori Mincho", serif;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1.1;
  }
  .wnx-upcoming-note {
    margin-top: 16px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.4em;
    color: #999;
    text-transform: uppercase;
  }
  .wnx-store-card.wnx-upcoming .wnx-cta { background: var(--ink); color: var(--paper); }
  .wnx-store-card.wnx-upcoming:hover .wnx-cta { background: var(--red); }

  /* Map / expand */
  .wnx-expand-section {
    background: var(--ink);
    color: var(--paper);
    padding: 120px 0;
  }
  .wnx-expand-section .wnx-section-ja { color: var(--paper); }
  .wnx-expand-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
  }
  .wnx-expand-visual {
    aspect-ratio: 1;
    background: #141414;
    border: 1px solid #2a2a2a;
    padding: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* Simple SVG map placeholder */
  .wnx-expand-visual svg { width: 100%; height: 100%; }
  .wnx-expand-text h2 {
    font-family: "Shippori Mincho", serif;
    font-size: 40px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
  }
  .wnx-expand-text h2 .wnx-red { color: var(--red); }
  .wnx-expand-text p {
    font-family: "Shippori Mincho", serif;
    font-size: 15px;
    line-height: 2.2;
    color: #ccc;
    margin-bottom: 20px;
  }

  /* Mobile — Stores */
  @media (max-width: 900px) {
    .wnx-stores-grid,
    .wnx-store-card,
    .wnx-expand-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
    .wnx-store-card .wnx-visual { min-height: 220px; }
    .wnx-expand-text h2 { font-size: 28px !important; }
    .wnx-upcoming-ja { font-size: 30px !important; }
    .wnx-partner-grid { grid-template-columns: 1fr; gap: 32px; }
    .wnx-partner-copy { max-width: none; }
    .wnx-partner-copy h3 { font-size: 22px; }
  }


/* ===== yokohama.html inline style ===== */

  /* Store hero */
  .wnx-store-hero {
    min-height: 90vh;
    position: relative;
    background: #0a0a0a;
    color: var(--paper);
    padding: 160px 48px 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .wnx-store-hero {
    --wnx-hero-img: url("https://sspark.genspark.ai/cfimages?u1=6eI4ks0VoHv5lVSbCE8fhjnOYBpI72H5oQkpTlPmwI97wL6dlB4FPKEukoYGg3q3izMzpndFa%2B2VbgT2g%2B6TF%2FujtxkWfBvS%2FPwHKi4dlJ2G1HRcNGg%3D&u2=ZU2XoZEqjq%2Bkv7nz&width=1024");
  }
  .wnx-store-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, rgba(10,10,10,0.85), rgba(10,10,10,0.4)),
      var(--wnx-hero-img) center/cover;
  }
  .wnx-store-hero-inner { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; width: 100%; padding-left: 40px; border-left: 6px solid var(--red);}
  .wnx-store-hero .wnx-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--red);
    color: #fff;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 30px;
  }
  .wnx-store-hero .wnx-en {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 20px;
    letter-spacing: 0.3em;
    color: #999;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  .wnx-store-hero h1 {
    font-family: "Shippori Mincho", serif;
    font-size: clamp(48px, 6vw, 92px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.06em;
    margin-bottom: 40px;
  }
  .wnx-store-hero h1 .wnx-red { color: var(--red); }
  .wnx-store-hero .wnx-lead {
    font-family: "Shippori Mincho", serif;
    font-size: 18px;
    line-height: 2.1;
    max-width: 620px;
    color: #ddd;
    margin-bottom: 40px;
  }
  .wnx-store-hero .wnx-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .wnx-store-hero .wnx-tags span {
    padding: 8px 16px;
    border: 1px solid #666;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #ccc;
  }

  /* Overview */
  .wnx-overview { background: var(--paper); padding: 100px 0; }
  .wnx-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border: 1px solid var(--ink);
  }
  .wnx-ov-item {
    padding: 40px 32px;
    border-right: 1px solid var(--ink);
    background: #fff;
  }
  .wnx-ov-item:last-child { border-right: none; }
  .wnx-ov-num {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.35em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .wnx-ov-item h3 {
    font-family: "Shippori Mincho", serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.06em;
  }
  .wnx-ov-item p {
    font-family: "Shippori Mincho", serif;
    font-size: 14px;
    line-height: 2;
    color: #444;
  }

  /* Reasons */
  .wnx-reasons { background: var(--paper-2); padding: 120px 0; }
  .wnx-reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .wnx-reason-card {
    background: #fff;
    border: 1px solid var(--ink);
    padding: 40px 32px;
    position: relative;
  }
  .wnx-reason-card .wnx-num {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 90px;
    line-height: 1;
    color: var(--red);
    font-weight: 300;
    margin-bottom: 20px;
  }
  .wnx-reason-card h3 {
    font-family: "Shippori Mincho", serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--ink);
  }
  .wnx-reason-card p {
    font-family: "Shippori Mincho", serif;
    font-size: 14px;
    line-height: 2;
    color: #444;
  }

  /* Access */
  .wnx-access { background: var(--ink); color: var(--paper); padding: 120px 0; }
  .wnx-access .wnx-section-ja { color: var(--paper); }
  .wnx-access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .wnx-access-info dl {
    border-top: 1px solid #333;
  }
  .wnx-access-info dl > div {
    display: grid;
    grid-template-columns: 160px 1fr;
    padding: 20px 0;
    border-bottom: 1px solid #333;
    align-items: baseline;
  }
  .wnx-access-info dt {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--red);
    text-transform: uppercase;
  }
  .wnx-access-info dd {
    font-family: "Shippori Mincho", serif;
    font-size: 15px;
    line-height: 1.8;
  }
  .wnx-access-info dd strong { font-size: 22px; letter-spacing: 0.1em; }
  .wnx-access-map {
    aspect-ratio: 4/5;
    background: #141414;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .wnx-access-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
  }
  .wnx-access-map .wnx-pin {
    position: relative;
    z-index: 2;
    text-align: center;
  }
  .wnx-access-map .wnx-pin .wnx-dot {
    width: 24px;
    height: 24px;
    background: var(--red);
    border-radius: 50%;
    margin: 0 auto 16px;
    box-shadow: 0 0 0 8px rgba(200,16,46,0.2), 0 0 0 20px rgba(200,16,46,0.1);
  }
  .wnx-access-map .wnx-pin .wnx-label {
    font-family: "Shippori Mincho", serif;
    font-size: 20px;
    letter-spacing: 0.15em;
  }
  .wnx-access-map .wnx-pin .wnx-en {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: #666;
    text-transform: uppercase;
    margin-top: 8px;
  }
  /* フォールバック時（住所未設定時）のみ表示される装飾用グリッド背景 */
  .wnx-access-map .wnx-pin-fallback-bg {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(#2a2a2a 1px, transparent 1px),
      linear-gradient(90deg, #2a2a2a 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: .4;
  }

  /* Staff */
  .wnx-store-staff { background: var(--paper); padding: 120px 0; }
  .wnx-staff-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
  .wnx-staff-item { text-align: center; }
  .wnx-staff-item .wnx-photo {
    aspect-ratio: 3/4;
    background: #ddd;
    background-size: cover;
    background-position: center top;
    margin-bottom: 16px;
    filter: grayscale(0.4);
  }
  .wnx-staff-item h4 {
    font-family: "Shippori Mincho", serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .wnx-staff-item .wnx-role {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--red);
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* Contact banner */
  .wnx-contact-banner {
    background: var(--red);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  .wnx-contact-banner::before {
    content: "CALL US";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 260px;
    color: rgba(0,0,0,0.1);
    letter-spacing: 0.05em;
    line-height: 1;
    font-weight: 400;
    white-space: nowrap;
  }
  .wnx-contact-inner {
    position: relative;
    z-index: 2;
    text-align: center;
  }
  .wnx-contact-inner h2 {
    font-family: "Shippori Mincho", serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 0.06em;
  }
  .wnx-contact-tel {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 72px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 20px;
  }
  .wnx-contact-note {
    font-family: "Shippori Mincho", serif;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 30px;
  }
  .wnx-contact-note strong { background: #0a0a0a; padding: 4px 12px; letter-spacing: 0.1em; }
  .wnx-contact-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
  .wnx-contact-btns .wnx-btn { background: #0a0a0a; padding: 18px 32px; }
  .wnx-contact-btns .wnx-btn:hover { background: #fff; color: var(--red); }

  /* Mobile — Yokohama */
  @media (max-width: 900px) {
    .wnx-overview-grid,
    .wnx-reason-grid,
    .wnx-access-grid,
    .wnx-staff-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  }
  @media (max-width: 560px) {
    .wnx-access-info dl > div { grid-template-columns: 1fr !important; gap: 4px !important; }
  }


/* ==================== CONTACT PAGE ==================== */
.wnx-contact { padding: 100px 0 140px; background: #fff; }
.wnx-contact-title { font-size: 56px !important; }
.wnx-contact-note { font-size: 15px; line-height: 2; color: var(--muted); margin: 0 0 48px; max-width: 720px; }
.wnx-contact-form { max-width: 720px; }
.wnx-form-row { margin-bottom: 32px; }
.wnx-form-row label { display: block; font-family: "Shippori Mincho", serif; font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.wnx-form-badge { display: inline-block; margin-left: 10px; padding: 3px 10px; font-family: "Helvetica Neue", Arial, sans-serif; font-size: 10px; letter-spacing: 0.1em; vertical-align: middle; }
.wnx-form-required { background: var(--red); color: #fff; }
.wnx-form-optional { background: var(--paper-3); color: var(--muted); }
.wnx-form-hint { display: block; margin-top: 6px; font-size: 12px; color: var(--muted); font-weight: 400; }
.wnx-form-row input[type="text"],
.wnx-form-row input[type="tel"],
.wnx-form-row input[type="email"],
.wnx-form-row select,
.wnx-form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: Lato, "Noto Sans JP", sans-serif;
  font-size: 15px;
  color: var(--ink);
}
.wnx-form-row textarea { min-height: 160px; resize: vertical; }
.wnx-form-row input:focus,
.wnx-form-row select:focus,
.wnx-form-row textarea:focus { outline: none; border-color: var(--red); }
.wnx-form-submit { margin-top: 48px; }
.wnx-form-submit input[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 48px;
  background: var(--red);
  color: #fff;
  border: none;
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background .2s;
}
.wnx-form-submit input[type="submit"]:hover { background: var(--ink); }
.wnx-form-submit input[type="submit"]:disabled { opacity: 0.6; cursor: default; }
.wpcf7-not-valid-tip { color: var(--red); font-size: 12px; margin-top: 6px; }
.wpcf7-response-output { margin: 32px 0 0 !important; padding: 16px 20px !important; border: 1px solid var(--line) !important; font-size: 14px; max-width: 720px; }
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.unaccepted .wpcf7-response-output,
.wpcf7-form.payment-required .wpcf7-response-output { border-color: var(--red) !important; color: var(--red); }
.wpcf7-form.sent .wpcf7-response-output { border-color: #2e7d32 !important; color: #2e7d32; }

@media (max-width: 900px) {
  .wnx-contact { padding: 60px 0 80px; }
  .wnx-form-row label { font-size: 15px; }
  .wnx-form-submit input[type="submit"] { width: 100%; justify-content: center; }
  .wnx-contact-title { font-size: 20px !important; }
}


/* store card hover text = red (override Lightning default blue a:hover) */
.wnx-store:hover,
.wnx-store:hover h3,
.wnx-store-card:hover,
.wnx-store-card:hover h3 { color: var(--red); }
