    :root {
      --weby-red: #FF1F4B;
      --pure-black: #000000;
      --pure-white: #FFFFFF;
      --dark-bg: #0d0d0d;
      --text-strong: #111;
      --text-default: #555;
      --text-gray: #555;
      --text-muted: #888;
      --text-faint: #bbb;
      --line-gray: #EEE;
      --bg-muted: #FAFAFA;
      --bg-card: #f9f9f9;
      --font-en: 'Montserrat', sans-serif;
      --font-serif: 'Noto Serif JP', serif;
      /* Font size tokens (#33) — new code should use these variables */
      --fs-hero: 4.8rem;
      --fs-h2: 3.2rem;
      --fs-h2-lg: 3.8rem;
      --fs-card: 1.8rem;
      --fs-body-lg: 1.1rem;
      --fs-body: 1rem;
      --fs-caption: 0.9rem;
      --fs-tag: 0.75rem;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-serif);
      color: var(--pure-black);
      background: var(--pure-white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      line-height: 1.9;
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Character-by-character fade-in (brand: 文字が1文字ずつ滲み出る).
       Use display: inline + opacity-only so Japanese line-break / kinsoku rules apply naturally. */
    .char {
      opacity: 0;
      transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
      will-change: opacity;
    }
    .char-fade-in .char {
      opacity: 1;
    }

    /* === Utility classes (atomic composition) === */
    /* Colors */
    .u-c-strong { color: var(--text-strong); }
    .u-c-muted { color: var(--text-muted); }
    .u-c-faint { color: var(--text-faint); }
    .u-c-red { color: var(--weby-red); }
    .u-c-white { color: #fff; }
    /* Font weight */
    .u-fw-700 { font-weight: 700; }
    .u-fw-900 { font-weight: 900; }
    /* Font size — mapped to design tokens where possible */
    .u-fs-h3 { font-size: 1.8rem; }
    .u-fs-h2 { font-size: var(--fs-h2); }          /* 3.2rem */
    .u-fs-h2-md { font-size: 3.4rem; }
    .u-fs-h2-lg { font-size: 3.6rem; }
    .u-fs-h2-xl { font-size: var(--fs-h2-lg); }    /* 3.8rem */
    .u-fs-display { font-size: 4rem; }
    .u-fs-body-md { font-size: 0.95rem; }
    .u-fs-body-sm { font-size: 0.82rem; }
    /* Letter spacing */
    .u-ls-wide { letter-spacing: 0.1em; }
    .u-ls-ultra { letter-spacing: 0.3em; }
    /* Line height */
    .u-lh-relaxed { line-height: 1.9; }
    /* Alignment / layout */
    .u-ta-center { text-align: center; }
    .u-rel { position: relative; }
    .u-z-1 { z-index: 1; }
    .u-fs-normal { font-style: normal; }
    /* Spacing */
    .u-mt-12 { margin-top: 12px; }
    .u-mt-16 { margin-top: 16px; }
    .u-mt-24 { margin-top: 24px; }
    .u-mb-0 { margin-bottom: 0; }
    .u-mb-60 { margin-bottom: 60px; }
    .u-mb-70 { margin-bottom: 70px; }
    .u-pt-24 { padding-top: 24px; }
    /* Border */
    .u-border-top { border-top: 1px solid var(--line-gray); }
    /* Background */
    .u-bg-dark { background: var(--dark-bg); }

    /* Compound component: large PRE-ENTRY button in footer (distinct from .recruit-cta-btn) */
    .entry-btn-large {
      display: inline-block;
      background: var(--weby-red);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.12em;
      padding: 18px 56px;
      text-decoration: none;
      text-transform: uppercase;
      transition: background 0.2s;
    }
    .entry-btn-large:hover { background: #d81442; }

    /* Compound: entry button wrapper in footer (asymmetric padding) */
    .entry-btn-wrap {
      text-align: center;
      padding: 48px 0 32px;
    }

    /* Compound: Build Trust lead (m-copy subline) */
    .m-build-trust {
      font-weight: 900;
      color: var(--weby-red);
      font-size: 1.8rem;
      margin-bottom: 60px;
      letter-spacing: 0.3em;
    }

    /* Compound: section intro wrapper (centered + z-index:1 + position:relative) */
    .section-intro {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    /* Compound: training note caveat paragraph */
    .training-note {
      font-size: 0.82rem;
      color: var(--text-faint);
      line-height: 1.9;
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid var(--line-gray);
    }

    /* Magnetic CTA — smooth transform transition (complements JS-driven translate) */
    .recruit-cta-btn,
    .nav-entry {
      transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
                  background 0.3s, color 0.3s, box-shadow 0.3s;
      will-change: transform;
    }

    /* Hero parallax — GPU hint (motion pref handled at bottom of file) */
    .hero-bg {
      will-change: transform;
    }

    .container {
      max-width: 1260px;
      margin: 0 auto;
      padding: 0 40px;
      position: relative;
      z-index: 10;
    }

    section {
      padding: 160px 0;
      position: relative;
    }

    /* --- Hero Stats Strip (CRO: trust signals above fold) --- */
    .hero-stats {
      background: #fff;
      border-bottom: 1px solid var(--line-gray);
      padding: 28px 0;
    }
    .hero-stats-inner {
      max-width: 1260px;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
      align-items: center;
    }
    .hero-stat {
      text-align: center;
      border-right: 1px solid var(--line-gray);
      padding: 4px 8px;
    }
    .hero-stat:last-child {
      border-right: none;
    }
    .hero-stat-label {
      font-family: var(--font-en);
      font-size: 0.65rem;
      font-weight: 900;
      letter-spacing: 0.3em;
      color: var(--weby-red);
      display: block;
      margin-bottom: 6px;
    }
    .hero-stat-value {
      font-family: var(--font-serif);
      font-size: 1.15rem;
      font-weight: 700;
      color: #111;
      line-height: 1.3;
    }
    .hero-stat-value em {
      font-family: var(--font-en);
      font-size: 1.6rem;
      font-style: normal;
      color: var(--weby-red);
    }
    @media (max-width: 768px) {
      .hero-stats {
        padding: 14px 0;
      }
      .hero-stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 8px;
        padding: 0 14px;
      }
      .hero-stat {
        border-right: none;
        border-bottom: 1px solid var(--line-gray);
        padding-bottom: 10px;
      }
      .hero-stat:nth-last-child(-n+2) {
        border-bottom: none;
        padding-bottom: 0;
      }
      .hero-stat:last-child {
        grid-column: 1 / 3;
      }
      .hero-stat-label {
        font-size: 0.62rem;
      }
      .hero-stat-value {
        font-size: 0.9rem;
      }
      .hero-stat-value em {
        font-size: 1.2rem;
      }
    }

    /* --- Mobile Sticky Bottom CTA (CRO: always-on-hand entry) --- */
    .mobile-sticky-cta {
      display: none; /* desktop: hidden */
    }
    @media (max-width: 768px) {
      .mobile-sticky-cta {
        display: grid;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 998; /* below hamburger (1001) and modal (9999) */
        grid-template-columns: 1fr 1fr 1.15fr;
        gap: 6px;
        padding: 10px 10px;
        background: rgba(13, 13, 13, 0.96);
        backdrop-filter: blur(12px);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
        transform: translateY(0);
        transition: transform 0.3s ease, opacity 0.3s ease;
      }
      .mobile-sticky-cta.is-hidden {
        transform: translateY(110%);
        pointer-events: none;
      }
      .mobile-sticky-cta a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        padding: 10px 4px;
        font-family: var(--font-en);
        font-weight: 900;
        font-size: 0.72rem;
        letter-spacing: 0.1em;
        text-decoration: none;
        border-radius: 2px;
        transition: transform 0.2s, background 0.2s, color 0.2s;
      }
      .mobile-sticky-cta .msc-secondary {
        background: transparent;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.4);
        letter-spacing: 0.02em; /* Japanese text: tight */
      }
      .mobile-sticky-cta .msc-intern {
        background: transparent;
        color: var(--weby-red);
        border: 1px solid var(--weby-red);
        letter-spacing: 0.02em; /* Japanese text: tight */
        font-size: 0.7rem;
      }
      .mobile-sticky-cta .msc-intern:active {
        background: var(--weby-red);
        color: #fff;
      }
      .mobile-sticky-cta .msc-primary {
        background: var(--weby-red);
        color: #fff;
        box-shadow: 0 4px 14px rgba(255, 31, 75, 0.4);
      }
      .mobile-sticky-cta .msc-sub {
        font-family: var(--font-serif);
        font-weight: 400;
        font-size: 0.55rem;
        letter-spacing: 0.02em;
        opacity: 0.85;
        margin-left: 0;
      }
      .mobile-sticky-cta a:active {
        transform: translateY(1px);
      }
      /* Add bottom padding to body when sticky is visible, so footer content is not obscured */
      body.has-sticky-cta {
        padding-bottom: 72px;
      }
    }

    /* --- Post-Recruit CTA (CRO: highest-intent direct entry) --- */
    .recruit-cta {
      background: #0d0d0d;
      padding: 100px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .recruit-cta::before {
      content: 'ENTRY';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-en);
      font-size: 22vw;
      font-weight: 900;
      color: rgba(255, 255, 255, 0.06);
      letter-spacing: -0.02em;
      pointer-events: none;
      white-space: nowrap;
      line-height: 1;
    }
    .recruit-cta-inner {
      max-width: 840px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 1;
    }
    .recruit-cta-tag {
      font-family: var(--font-en);
      color: var(--weby-red);
      font-size: 0.8rem;
      font-weight: 900;
      letter-spacing: 0.4em;
      display: block;
      margin-bottom: 24px;
    }
    .recruit-cta-heading {
      font-family: var(--font-serif);
      color: #fff;
      font-size: 2.4rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      margin-bottom: 28px;
      line-height: 1.5;
    }
    .recruit-cta-heading em {
      color: var(--weby-red);
      font-style: normal;
    }
    .recruit-cta-lead {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1rem;
      line-height: 1.9;
      margin-bottom: 40px;
    }
    .recruit-cta-lead strong {
      color: #fff;
      font-weight: 700;
    }
    .recruit-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--weby-red);
      color: #fff;
      font-family: var(--font-en);
      font-weight: 900;
      font-size: 1.1rem;
      letter-spacing: 0.3em;
      padding: 22px 64px;
      text-decoration: none;
      text-transform: uppercase;
      border-radius: 2px;
      box-shadow: 0 8px 30px rgba(255, 31, 75, 0.35);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .recruit-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(255, 31, 75, 0.5);
    }
    .recruit-cta-arrow {
      transition: transform 0.3s;
    }
    .recruit-cta-btn:hover .recruit-cta-arrow {
      transform: translateX(4px);
    }
    .recruit-cta-sub {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      margin-top: 20px;
    }
    .sp-br { display: none; }
    @media (max-width: 768px) {
      .recruit-cta {
        padding: 48px 0;
      }
      .recruit-cta-heading {
        font-size: 1.45rem;
        line-height: 1.55;
      }
      .recruit-cta-sub {
        font-size: 0.7rem;
        margin-top: 14px;
      }
      .recruit-cta-btn {
        padding: 14px 36px;
        font-size: 0.88rem;
      }
      .sp-br { display: inline; }
    }

    /* --- Brand Header (Pristine Transparency) --- */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      height: 110px;
      padding: 0 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      transition: 0.5s ease;
    }

    header.scrolled {
      height: 90px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(25px);
      border-bottom: 1px solid var(--line-gray);
    }

    header.top-transparent .logo img {
      /* Invert logo to white on dark Hero background (H-2) */
      filter: brightness(0) invert(1) drop-shadow(0 1px 4px rgba(0, 0, 0, 0.6));
    }

    header.top-transparent nav a {
      color: rgba(255, 255, 255, 0.8);
    }

    header.scrolled nav a {
      color: var(--pure-black);
    }

    .logo img {
      height: 72px;
      width: auto;
      display: block;
    }

    nav {
      display: flex;
      align-items: center;
    }

    nav a {
      text-decoration: none;
      font-family: var(--font-en);
      font-weight: 800;
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      margin-left: 45px;
      transition: 0.3s;
    }

    .nav-entry {
      background: var(--weby-red);
      color: white !important;
      padding: 12px 35px;
      border-radius: 2px;
    }

    /* --- Hero --- */
    .hero {
      height: 100vh;
      height: 100dvh;
      background: #0d0d0d;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      /* #31: AVIF primary with WebP fallback via image-set() */
      background-image: url('./photos/mainbanner.webp');
      background-image: image-set(
        url('./photos/mainbanner-1920w.avif') type('image/avif'),
        url('./photos/mainbanner-1920w.webp') type('image/webp')
      );
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      opacity: 0.7;
    }

    .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      color: white;
    }

    .hero-2026 {
      font-family: var(--font-en);
      font-weight: 900;
      font-size: 0.95rem;
      letter-spacing: 0.6em;
      color: rgba(255, 255, 255, 0.6);
      display: block;
      margin-bottom: 35px;
      border-bottom: 2px solid var(--weby-red);
      width: fit-content;
      margin: 0 auto 35px;
      padding-bottom: 5px;
    }

    .hero-h1 {
      font-size: 4.8rem;
      font-weight: 900;
      line-height: 1.6;
      color: white;
      text-align: center;
      letter-spacing: 0.15em;
      font-family: var(--font-serif);
    }

    .scroll-line-container {
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 1px;
      height: 150px;
      background: rgba(255, 255, 255, 0.1);
      overflow: hidden;
      z-index: 20;
    }

    .scroll-line-fill {
      width: 100%;
      height: 100%;
      background: var(--weby-red);
      transform: translateY(-100%);
      animation: scrollLineAnim 3s infinite;
    }

    @keyframes scrollLineAnim {
      0% {
        transform: translateY(-100%);
      }

      50% {
        transform: translateY(0);
      }

      100% {
        transform: translateY(100%);
      }
    }

    /* --- Message (Elegant Balanced Size) --- */
    .message-section {
      background: white;
      padding: 200px 0;
      text-align: center;
    }

    .m-script {
      font-family: var(--font-en);
      font-weight: 900;
      color: var(--weby-red);
      font-size: var(--fs-body-lg);
      letter-spacing: 0.6em;
      display: block;
      margin-bottom: 60px;
    }

    /* Common section title (#27) — new sections should use this pair */
    .section-title {
      font-size: var(--fs-h2);
      font-weight: 700;
      color: #111;
      letter-spacing: 0.1em;
      line-height: 1.25;
    }
    .section-title--lg {
      font-size: var(--fs-h2-lg);
    }
    .section-title em {
      color: var(--weby-red);
      font-style: normal;
    }

    .m-copy {
      font-size: 3.8rem;
      font-weight: 700;
      line-height: 1.8;
      max-width: 1100px;
      margin: 0 auto 80px;
      letter-spacing: 0.1em;
      color: #2a2a2a;
      font-family: var(--font-serif);
    }

    .m-detail {
      font-size: 1.3rem;
      line-height: 2.5;
      max-width: 950px;
      margin: 0 auto;
      color: #555;
    }

    /* --- Gallery (Full-Width Responsive Edge-to-Edge) --- */
    .gallery-section {
      padding: 120px 0;
      background: #FFF;
      overflow: hidden;
    }

    .gallery-header {
      margin-bottom: 80px;
      text-align: center;
    }

    .gallery-full {
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }

    /* --- Learn More / note block (Brief D-06) --- */
    .learn-more {
      background: #FAFAFA;
      padding: 120px 0;
      position: relative;
    }
    .learn-more .section-header {
      text-align: center;
      margin-bottom: 20px;
    }
    .learn-more h2 {
      font-size: 3rem;
      font-weight: 700;
      color: #111;
      letter-spacing: 0.1em;
      margin-top: 20px;
      line-height: 1.25;
    }
    .learn-more h2 em {
      color: var(--weby-red);
      font-style: normal;
    }
    .learn-more .learn-lead {
      text-align: center;
      color: var(--text-gray);
      font-size: 1rem;
      line-height: 1.9;
      margin: 40px auto 60px;
      max-width: 640px;
    }
    .note-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }
    .note-card {
      display: block;
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .note-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }
    .note-card-thumb {
      aspect-ratio: 1200/630;
      overflow: hidden;
      position: relative;
    }
    .note-card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s;
    }
    .note-card:hover .note-card-thumb img {
      transform: scale(1.05);
    }
    .note-card-body {
      padding: 24px 22px 28px;
    }
    .note-card-tag {
      display: inline-block;
      font-family: var(--font-en);
      font-size: 0.68rem;
      font-weight: 900;
      letter-spacing: 0.2em;
      color: var(--weby-red);
      margin-bottom: 10px;
    }
    .note-card-title {
      font-family: var(--font-serif);
      font-size: 1.05rem;
      font-weight: 700;
      line-height: 1.6;
      color: #111;
      margin-bottom: 10px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .note-card-arrow {
      font-family: var(--font-en);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      color: var(--weby-red);
      font-weight: 900;
    }
    .note-main-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 60px auto 0;
      padding: 18px 50px;
      background: transparent;
      color: var(--weby-red);
      border: 2px solid var(--weby-red);
      font-family: var(--font-en);
      font-weight: 900;
      font-size: 0.9rem;
      letter-spacing: 0.25em;
      text-decoration: none;
      border-radius: 2px;
      transition: background 0.3s, color 0.3s;
    }
    .note-main-cta:hover {
      background: var(--weby-red);
      color: #fff;
    }
    .learn-more-footer {
      text-align: center;
    }
    .social-row {
      display: flex;
      justify-content: center;
      gap: 28px;
      margin: 80px auto 0;
      padding-top: 40px;
      border-top: 1px solid var(--line-gray);
      max-width: 640px;
    }
    .social-row a {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      text-decoration: none;
      color: #111;
      font-family: var(--font-en);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      transition: color 0.3s, transform 0.3s;
    }
    .social-row a:hover {
      color: var(--weby-red);
      transform: translateY(-2px);
    }
    .social-row i {
      font-size: 1.5rem;
    }
    @media (max-width: 768px) {
      .learn-more {
        padding: 56px 0;
      }
      .learn-more h2 {
        font-size: 1.7rem;
      }
      .note-grid {
        grid-template-columns: 1fr;
        padding: 0 18px;
        gap: 14px;
      }
      .social-row {
        gap: 16px;
        padding: 0 18px;
        flex-wrap: wrap;
      }
    }

    /* --- WHY We Exist (Brief D-02) --- */
    .why-we-exist {
      background: #fff;
      padding: 140px 0;
      position: relative;
      overflow: hidden;
    }
    .why-we-exist::before {
      content: 'WHY';
      position: absolute;
      top: 50%;
      right: -4%;
      transform: translateY(-50%);
      font-family: var(--font-en);
      font-size: 24vw;
      font-weight: 900;
      letter-spacing: -0.02em;
      pointer-events: none;
      white-space: nowrap;
      line-height: 1;
      /* Halftone/dot fill — letter shape composed of fine dots.
         Applies on all viewports; tuned fainter + higher density
         + smaller dot radius for subtle texture. */
      color: transparent;
      -webkit-text-fill-color: transparent;
      background-image: radial-gradient(circle, rgba(255, 31, 75, 0.30) 18%, transparent 20%);
      background-size: 3px 3px;
      background-repeat: repeat;
      -webkit-background-clip: text;
      background-clip: text;
    }
    .why-inner {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 80px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
      position: relative;
      z-index: 1;
    }
    .why-visual {
      position: relative;
    }
    .why-visual-primary {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    }
    .why-visual-secondary {
      display: block;
      width: 55%;
      height: auto;
      border-radius: 8px;
      position: absolute;
      right: -30px;
      bottom: -40px;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
      border: 6px solid #fff;
    }
    .why-text h2 {
      font-family: var(--font-serif);
      font-size: 2.8rem;
      font-weight: 700;
      color: #111;
      line-height: 1.5;
      letter-spacing: 0.03em;
      margin-top: 24px;
      margin-bottom: 40px;
    }
    .why-text h2 em {
      color: var(--weby-red);
      font-style: normal;
    }
    .why-body {
      color: var(--text-gray);
      font-size: 0.98rem;
      line-height: 2.0;
    }
    .why-body p {
      margin-bottom: 1.4em;
    }
    .why-body p:last-child {
      margin-bottom: 0;
    }
    .why-body .why-highlight {
      color: #111;
      font-weight: 700;
    }
    .why-body .why-list {
      margin: 1.4em 0;
      padding-left: 0;
      list-style: none;
    }
    .why-body .why-list li {
      padding-left: 22px;
      position: relative;
      margin-bottom: 10px;
    }
    .why-body .why-list li::before {
      content: '▸';
      position: absolute;
      left: 0;
      color: var(--weby-red);
      font-weight: 900;
    }
    @media (max-width: 768px) {
      .why-we-exist {
        padding: 56px 0;
      }
      .why-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 18px;
      }
      .why-text h2 {
        font-size: 1.5rem;
        line-height: 1.5;
      }
      .why-body {
        font-size: 0.85rem;
        line-height: 1.85;
      }
      .why-body .why-list li {
        margin-bottom: 6px;
      }
      .why-visual-secondary {
        width: 50%;
        right: -10px;
        bottom: -20px;
      }
    }

    /* --- Sticky Side CTA / 長期インターン (Brief D-05) --- */
    .sticky-side-cta {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      background: var(--weby-red);
      color: #fff;
      padding: 22px 16px;
      border-radius: 10px 0 0 10px;
      box-shadow: -6px 6px 24px rgba(0, 0, 0, 0.18);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      z-index: 997;
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s;
      text-decoration: none;
      min-width: 96px;
      max-width: 120px;
      text-align: center;
    }
    .sticky-side-cta.is-hidden {
      transform: translate(110%, -50%);
      opacity: 0;
      pointer-events: none;
    }
    .ssc-label {
      font-family: var(--font-en);
      font-size: 0.6rem;
      font-weight: 900;
      letter-spacing: 0.18em;
      opacity: 0.9;
    }
    .ssc-main {
      font-family: var(--font-serif);
      font-size: 1rem;
      font-weight: 700;
      margin: 4px 0;
      line-height: 1.2;
    }
    .ssc-sub {
      font-size: 0.62rem;
      opacity: 0.85;
      line-height: 1.4;
    }
    .ssc-cta {
      font-family: var(--font-en);
      font-size: 0.65rem;
      font-weight: 900;
      letter-spacing: 0.15em;
      margin-top: 10px;
      padding: 6px 12px;
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: 2px;
    }
    @media (max-width: 768px) {
      .sticky-side-cta {
        display: none;
      }
    }

    /* --- Virtual Office Tour (Brief D-09) --- */
    .virtual-tour {
      max-width: 1100px;
      margin: 0 auto 64px;
      padding: 0 40px;
    }
    .virtual-tour-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 20px;
      gap: 20px;
      flex-wrap: wrap;
    }
    .virtual-tour-title {
      font-family: var(--font-en);
      font-size: 0.9rem;
      letter-spacing: 0.3em;
      color: var(--weby-red);
      font-weight: 900;
    }
    .virtual-tour-title::before {
      content: '▶ ';
      font-size: 0.7em;
    }
    .virtual-tour-sub {
      font-family: var(--font-serif);
      font-size: 0.85rem;
      color: #555;
    }
    .virtual-tour-sub a {
      color: var(--weby-red);
      text-decoration: none;
      border-bottom: 1px solid var(--weby-red);
    }
    .virtual-tour-frame {
      position: relative;
      aspect-ratio: 16 / 9;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
      background: #0d0d0d;
    }
    .virtual-tour-frame iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }
    /* Loading placeholder while iframe initializes */
    .virtual-tour-frame::before {
      content: 'バーチャルツアーを読み込み中...';
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.85rem;
      font-family: var(--font-en);
      letter-spacing: 0.15em;
    }
    .virtual-tour-frame iframe {
      position: relative;
      z-index: 1;
    }
    @media (max-width: 768px) {
      .virtual-tour {
        padding: 0 16px;
        margin-bottom: 48px;
      }
      .virtual-tour-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }
      .virtual-tour-title {
        font-size: 0.75rem;
      }
    }
    @media (prefers-reduced-motion: reduce) {
      /* Loading text only; iframe motion is user-driven so don't disable */
      .virtual-tour-frame::before { animation: none; }
    }

    .gallery-item {
      position: relative;
      height: 450px;
      overflow: hidden;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 1.5s ease;
      filter: brightness(0.9);
    }

    .gallery-item {
      cursor: zoom-in;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
      filter: brightness(1);
    }

    /* Lightbox */
    .lightbox-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.92);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      cursor: zoom-out;
    }

    .lightbox-overlay.open {
      display: flex;
    }

    .lightbox-img {
      max-width: 90vw;
      max-height: 88vh;
      object-fit: contain;
      display: block;
      animation: lightboxIn 0.3s cubic-bezier(0.4,0,0.2,1) both;
    }

    @keyframes lightboxIn {
      from { opacity: 0; transform: scale(0.93); }
      to   { opacity: 1; transform: scale(1); }
    }

    .lightbox-caption {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--font-en);
      font-size: 0.7rem;
      letter-spacing: 0.4em;
      color: rgba(255,255,255,0.5);
      white-space: nowrap;
    }

    .lightbox-close {
      position: absolute;
      top: 24px;
      right: 32px;
      font-size: 1.8rem;
      color: rgba(255,255,255,0.6);
      background: none;
      border: none;
      cursor: pointer;
      line-height: 1;
      transition: color 0.2s;
    }

    .lightbox-close:hover {
      color: var(--weby-red);
    }

    .g-label {
      position: absolute;
      bottom: 40px;
      left: 40px;
      color: white;
      z-index: 10;
      text-align: left;
    }

    .g-loc {
      font-family: var(--font-en);
      font-weight: 900;
      font-size: 0.8rem;
      letter-spacing: 0.4em;
      color: var(--weby-red);
      margin-bottom: 8px;
      display: block;
    }

    .g-title {
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
    }

    .gallery-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 40%);
    }

    /* --- Business Section --- */
    .business-section {
      background: #FAFAFA;
      padding: 160px 0;
      position: relative;
      overflow: hidden;
    }

    /* Common large decorative background text (#28) */
    .section-bg-text,
    .business-section::before,
    .faq-section::before,
    .ceo-section::before {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-family: var(--font-en);
      font-weight: 900;
      letter-spacing: -0.02em;
      pointer-events: none;
      white-space: nowrap;
      line-height: 1;
    }

    .business-section::before {
      content: 'BUSINESS';
      left: -2%;
      font-size: 20vw;
      color: rgba(0, 0, 0, 0.06);
    }

    .biz-categories {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 100px;
      position: relative;
      z-index: 1;
    }

    .biz-category {
      background: white;
      border-radius: 4px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .biz-cat-top {
      background: linear-gradient(135deg, #111 60%, #2a0008 100%);
      padding: 48px 48px 40px;
      position: relative;
      overflow: hidden;
    }

    .biz-cat-top::before {
      content: attr(data-num);
      position: absolute;
      right: -10px;
      top: -20px;
      font-family: var(--font-en);
      font-size: 10rem;
      font-weight: 900;
      color: rgba(255, 31, 75,0.12);
      line-height: 1;
      pointer-events: none;
    }

    .biz-cat-top::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--weby-red);
    }

    .biz-cat-top-en {
      font-family: var(--font-en);
      font-size: 0.65rem;
      letter-spacing: 0.5em;
      color: rgba(255, 31, 75,0.8);
      display: block;
      margin-bottom: 16px;
    }

    .biz-cat-top-num {
      font-family: var(--font-en);
      font-size: 3.5rem;
      font-weight: 900;
      color: var(--weby-red);
      line-height: 1;
      display: block;
      margin-bottom: 12px;
      text-shadow: 0 0 40px rgba(255, 31, 75,0.4);
    }

    .biz-cat-top-title {
      font-size: 1.6rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: 0.05em;
    }

    .biz-cat-body {
      padding: 48px 48px 56px;
      flex: 1;
      border: 1px solid #EEE;
      border-top: none;
      border-radius: 0 0 4px 4px;
    }

    .biz-service-icon {
      color: var(--weby-red);
      margin-right: 10px;
      font-size: 1.1rem;
      vertical-align: baseline;
    }

    .biz-service {
      padding: 24px 0;
      border-bottom: 1px solid #EEE;
      position: relative;
      transition: 0.3s;
    }

    .biz-service:first-child {
      padding-top: 0;
    }

    .biz-service:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .biz-service:hover {
      padding-left: 10px;
    }

    .biz-service:hover .biz-service-name {
      color: var(--weby-red);
    }

    .biz-service-tag {
      font-family: var(--font-en);
      font-size: 0.65rem;
      letter-spacing: 0.4em;
      color: var(--weby-red);
      display: block;
      margin-bottom: 8px;
    }

    .biz-service-name {
      font-size: 1.2rem;
      font-weight: 900;
      color: #111;
      display: block;
      margin-bottom: 8px;
      font-family: var(--font-jp);
    }

    .biz-service-url {
      font-family: var(--font-en);
      font-size: 0.72rem;
      color: #bbb;
      letter-spacing: 0.05em;
      display: block;
      margin-bottom: 8px;
    }

    .biz-service-desc {
      font-size: 0.9rem;
      color: #555;
      line-height: 1.9;
      margin-top: 6px;
    }

    .biz-highlight .biz-service-name {
      color: var(--weby-red);
    }

    /* --- Training Section --- */
    .training-section {
      background: #FAFAFA;
      padding: 120px 0 160px;
      position: relative;
      overflow: hidden;
    }

    /* 研修フロータイムライン */
    .training-flow {
      display: flex;
      align-items: stretch;
      gap: 0;
      margin-bottom: 100px;
      position: relative;
      z-index: 1;
    }

    .training-flow-item {
      flex: 1;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    /* 矢印: カードの右端に食い込む形で表示 */
    .training-flow-item:not(:last-child) .training-flow-card::after {
      content: '';
      position: absolute;
      top: 0;
      right: -20px;
      width: 0;
      height: 0;
      border-top: 50px solid transparent;
      border-bottom: 50px solid transparent;
      border-left: 20px solid #fff;
      z-index: 3;
      filter: drop-shadow(2px 0 0 #EEE);
    }

    /* 矢印の赤アウトライン（影で見せる）*/
    .training-flow-item:not(:last-child) .training-flow-card::before {
      content: '';
      position: absolute;
      top: 0;
      right: -24px;
      width: 0;
      height: 0;
      border-top: 50px solid transparent;
      border-bottom: 50px solid transparent;
      border-left: 24px solid rgba(255, 31, 75,0.15);
      z-index: 2;
    }

    .training-flow-card {
      background: #fff;
      border: 1px solid #EEE;
      border-right: none;
      padding: 32px 28px 32px 24px;
      height: 100%;
      min-height: 180px;
      position: relative;
      overflow: visible;
      transition: background 0.3s;
      box-sizing: border-box;
    }

    .training-flow-item:last-child .training-flow-card {
      border: 1px solid var(--weby-red);
      background: var(--weby-red);
    }

    .training-flow-card:hover {
      background: #FAFAFA;
    }

    .training-flow-item:last-child .training-flow-card:hover {
      background: #FF1F4B;
    }

    .training-flow-phase {
      font-family: var(--font-en);
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.45em;
      color: var(--weby-red);
      display: block;
      margin-bottom: 10px;
    }

    .training-flow-item:last-child .training-flow-phase {
      color: rgba(255,255,255,0.7);
    }

    .training-flow-month {
      font-family: var(--font-en);
      font-size: 2rem;
      font-weight: 900;
      color: #111;
      line-height: 1;
      display: block;
      margin-bottom: 12px;
    }

    .training-flow-item:last-child .training-flow-month {
      color: #fff;
    }

    .training-flow-title {
      font-size: 0.82rem;
      font-weight: 900;
      color: #111;
      margin-bottom: 8px;
      line-height: 1.5;
    }

    .training-flow-item:last-child .training-flow-title {
      color: #fff;
    }

    .training-flow-desc {
      font-size: 0.75rem;
      color: #888;
      line-height: 1.7;
    }

    .training-flow-item:last-child .training-flow-desc {
      color: rgba(255,255,255,0.75);
    }

    .training-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      align-items: stretch;
      position: relative;
      z-index: 1;
    }

    .training-text {
      padding: 80px 80px 80px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .training-text .m-script {
      color: var(--weby-red);
    }

    .training-text h2 {
      font-size: 3.2rem;
      font-weight: 700;
      color: #111;
      line-height: 1.25;
      margin: 24px 0 40px;
    }

    .training-text h2 em {
      font-style: normal;
      color: var(--weby-red);
    }

    .training-step {
      display: flex;
      gap: 20px;
      padding: 28px 0;
      border-bottom: 1px solid #EEE;
    }

    .training-step:first-of-type {
      border-top: 1px solid #EEE;
    }

    .training-step-num {
      font-family: var(--font-en);
      font-size: 2rem;
      font-weight: 900;
      color: var(--weby-red);
      opacity: 0.3;
      line-height: 1;
      flex-shrink: 0;
      width: 48px;
    }

    .training-step-title {
      font-size: 1rem;
      font-weight: 900;
      color: #111;
      margin-bottom: 6px;
    }

    .training-step-desc {
      font-size: 0.875rem;
      color: #888;
      line-height: 1.8;
    }

    /* Training photo animations */
    @keyframes trainingFloat {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }
    @keyframes trainingFloatSlow {
      0%, 100% { transform: translateY(0px) rotate(-1deg); }
      50% { transform: translateY(-14px) rotate(1deg); }
    }
    @keyframes trainingScale {
      0%, 100% { transform: scale(1.02); }
      50% { transform: scale(1.06); }
    }
    @keyframes trainingSlideIn {
      from { opacity: 0; transform: translateX(40px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes trainingFadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Training: asymmetric bento grid — 7 photos */
    .training-photos {
      display: grid;
      grid-template-columns: 3fr 2fr;
      grid-template-rows: 240px 200px 200px 200px;
      gap: 6px;
      margin-right: -80px;
    }

    /* 全写真共通 */
    .training-photos > div {
      overflow: hidden;
    }
    .training-photos > div img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
      transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
    }
    .training-photos > div:hover img {
      transform: scale(1.06);
    }

    /* メイン: 左・縦2行 */
    .training-photo-main {
      grid-column: 1;
      grid-row: 1 / 3;
      animation: trainingSlideIn 0.8s cubic-bezier(0.4,0,0.2,1) both;
    }
    .training-photo-main img {
      animation: trainingScale 10s ease-in-out infinite;
    }

    /* 右上 */
    .training-photo-sub {
      grid-column: 2;
      grid-row: 1;
      animation: trainingFadeUp 1s 0.15s cubic-bezier(0.4,0,0.2,1) both;
    }

    /* 右中 */
    .training-photo-accent {
      grid-column: 2;
      grid-row: 2;
      animation: trainingFadeUp 1s 0.25s cubic-bezier(0.4,0,0.2,1) both;
    }

    /* 左3行目 */
    .training-photo-mini {
      grid-column: 1;
      grid-row: 3;
      animation: trainingFadeUp 1s 0.35s cubic-bezier(0.4,0,0.2,1) both;
    }

    /* 右3行目 */
    .training-photo-mini2 {
      grid-column: 2;
      grid-row: 3;
      animation: trainingFadeUp 1s 0.45s cubic-bezier(0.4,0,0.2,1) both;
    }

    /* 左4行目 */
    .training-photo-extra1 {
      grid-column: 1;
      grid-row: 4;
      overflow: hidden;
      animation: trainingFadeUp 1s 0.55s cubic-bezier(0.4,0,0.2,1) both;
    }
    .training-photo-extra1 img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
    }
    .training-photo-extra1:hover img { transform: scale(1.06); }

    /* 右4行目 */
    .training-photo-extra2 {
      grid-column: 2;
      grid-row: 4;
      overflow: hidden;
      animation: trainingFadeUp 1s 0.65s cubic-bezier(0.4,0,0.2,1) both;
    }
    .training-photo-extra2 img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
    }
    .training-photo-extra2:hover img { transform: scale(1.06); }

    .training-red-bar {
      position: absolute;
      left: -20px;
      top: 10%;
      width: 4px;
      height: 40%;
      background: var(--weby-red);
    }

    /* --- Workers Story (Restored White BG) --- */
    .workers-section {
      background: white;
      padding: 160px 0;
    }

    .workers-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 80px;
    }

    .worker-card {
      height: 750px;
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .worker-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 1.2s;
    }

    .worker-card:hover img {
      transform: scale(1.05);
    }

    .worker-info {
      position: absolute;
      bottom: 60px;
      left: 60px;
      color: white;
      z-index: 10;
    }

    .worker-tag {
      color: var(--weby-red);
      font-family: var(--font-en);
      font-weight: 900;
      font-size: 0.95rem;
      letter-spacing: 0.4em;
      display: block;
      margin-bottom: 15px;
    }

    .worker-quote {
      font-weight: 700;
      font-size: 1.8rem;
      line-height: 1.5;
    }

    .worker-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
    }

    .worker-hover-hint {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.8);
      z-index: 20;
      background: rgba(255, 31, 75, 0.9);
      color: white;
      font-family: var(--font-en);
      font-size: 0.75rem;
      font-weight: 900;
      letter-spacing: 0.4em;
      padding: 14px 28px;
      opacity: 0;
      transition: 0.4s;
      pointer-events: none;
      white-space: nowrap;
    }

    .worker-card:hover .worker-hover-hint {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    /* --- Worker Carousel --- */
    .workers-section {
      background: white;
      padding: 160px 0;
    }

    .carousel-wrapper {
      position: relative;
      margin-top: 80px;
      overflow: hidden;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .carousel-slide {
      min-width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      align-items: stretch;
      min-height: 680px;
    }

    .carousel-img {
      height: 600px;
      overflow: hidden;
      position: relative;
    }

    .carousel-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      display: block;
    }

    .carousel-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, transparent 60%, white 100%);
    }

    .carousel-info {
      padding: 80px 70px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: white;
    }

    .carousel-tag {
      font-family: var(--font-en);
      color: var(--weby-red);
      font-size: 0.8rem;
      font-weight: 900;
      letter-spacing: 0.4em;
      display: block;
      margin-bottom: 20px;
    }

    .carousel-name {
      font-size: 3rem;
      font-weight: 900;
      color: #111;
      margin-bottom: 10px;
      letter-spacing: 0.05em;
    }

    .carousel-quote {
      font-family: var(--font-serif);
      font-size: 1.3rem;
      color: #555;
      line-height: 1.8;
      border-left: 3px solid var(--weby-red);
      padding-left: 20px;
      margin: 30px 0 40px;
    }

    .carousel-detail {
      font-size: 0.95rem;
      color: #555;
      line-height: 2.0;
    }

    .carousel-controls {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 50px;
    }

    .carousel-btn {
      width: 52px;
      height: 52px;
      border: 1px solid #EEE;
      background: white;
      cursor: pointer;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
      color: #111;
    }

    .carousel-btn:hover {
      background: var(--weby-red);
      color: white;
      border-color: var(--weby-red);
    }

    .carousel-dots {
      display: flex;
      gap: 8px;
    }

    .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #EEE;
      cursor: pointer;
      transition: 0.3s;
      /* #22: button element reset (was <div> before) */
      appearance: none;
      border: none;
      padding: 0;
    }

    .carousel-dot.active {
      background: var(--weby-red);
    }

    .career-timeline {
      margin-top: 40px;
      padding-top: 30px;
      border-top: 1px solid #EEE;
    }

    .career-label {
      font-family: var(--font-en);
      font-size: 0.7rem;
      letter-spacing: 0.4em;
      color: #bbb;
      margin-bottom: 20px;
      display: block;
    }

    .career-steps {
      display: flex;
      align-items: flex-start;
      gap: 0;
    }

    .career-step {
      flex: 1;
      position: relative;
    }

    .career-step:not(:last-child)::after {
      content: '→';
      position: absolute;
      right: -10px;
      top: 8px;
      color: var(--weby-red);
      font-size: 0.9rem;
    }

    .career-step-head {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin-bottom: 10px;
    }

    .career-step-num {
      font-family: var(--font-en);
      font-size: 1.4rem;
      font-weight: 900;
      color: var(--weby-red);
      line-height: 1;
    }

    .career-step-year {
      font-size: 0.72rem;
      color: #888;
    }

    .career-step-body {
      background: #f9f9f9;
      border-left: 2px solid var(--weby-red);
      padding: 12px 14px;
      margin-right: 20px;
      font-size: 0.82rem;
      color: #555;
      line-height: 1.6;
      min-height: 60px;
    }

    /* --- Recruit Section (Recovered FULL INFO) --- */
    .recruit-section {
      background: #FAFAFA;
      padding: 120px 0 140px;
    }

    .recruit-wrap {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
      margin-top: 60px;
      background: #EEE;
      border: 2px solid #EEE;
      border-radius: 6px;
      overflow: hidden;
    }

    .r-row {
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding: 18px 22px;
      background: #fff;
      align-items: flex-start;
    }

    .r-row.r-wide {
      grid-column: 1 / 3;
    }

    .r-label {
      font-weight: 900;
      color: var(--weby-red);
      font-family: var(--font-jp);
      letter-spacing: 0.05em;
      font-size: 0.76rem;
      display: block;
    }

    .r-data {
      line-height: 1.7;
      font-size: 0.88rem;
      letter-spacing: 0.02em;
      color: #111;
    }

    .r-h3 {
      font-size: 1.5rem;
      font-weight: 900;
      border-left: 12px solid var(--weby-red);
      padding-left: 25px;
      margin-bottom: 25px;
      display: block;
      color: #111;
    }

    .r-p {
      color: #555;
      padding-left: 35px;
      margin-bottom: 40px;
    }

    /* --- Footer --- */
    footer {
      background: #0d0d0d;
      color: white;
    }

    .f-entry-bar {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 60px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .f-entry-text {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .f-entry-label {
      font-family: var(--font-en);
      font-size: 0.7rem;
      letter-spacing: 0.5em;
      color: rgba(255, 255, 255, 0.35);
    }

    .f-h2 {
      font-family: var(--font-en);
      font-size: 2.2rem;
      font-weight: 900;
      letter-spacing: 0.1em;
      color: white;
      margin: 0;
    }

    .f-bottom {
      padding: 32px 0 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      flex-direction: column;
    }

    .f-logo {
      height: 80px;
      width: auto;
      /* Invert black WeBy mark to white on dark footer background */
      filter: brightness(0) invert(1);
      opacity: 0.9;
    }

    .f-copy {
      font-size: 0.62rem;
      color: rgba(255, 255, 255, 0.18);
      font-family: var(--font-en);
      letter-spacing: 0.12em;
    }

    .nav-entry {
      background: var(--weby-red);
      color: white !important;
      border-radius: 4px;
      box-shadow: 0 4px 15px rgba(255, 31, 75, 0.2);
    }

    /* --- FAQ Section --- */
    .faq-section {
      background: #0d0d0d;
      padding: 140px 0 80px;
      position: relative;
      overflow: hidden;
    }

    .faq-section::before {
      content: 'FAQ';
      left: -2%;
      font-size: 22vw;
      color: rgba(255, 255, 255, 0.06);
    }

    .faq-section .m-script {
      color: var(--weby-red);
    }

    .faq-section h2 {
      color: #fff;
    }

    .faq-list {
      max-width: 860px;
      margin: 80px auto 0;
      position: relative;
      z-index: 1;
    }

    .faq-item {
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .faq-item:last-child {
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .faq-q {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 32px 0;
      cursor: pointer;
      user-select: none;
      transition: opacity 0.2s;
      /* #13: button element reset (keep layout identical to former div) */
      appearance: none;
      background: transparent;
      border: none;
      width: 100%;
      text-align: left;
      font: inherit;
      color: inherit;
    }

    .faq-q:hover {
      opacity: 0.75;
    }

    .faq-q-mark {
      font-family: var(--font-en);
      font-size: 1.1rem;
      font-weight: 900;
      color: var(--weby-red);
      flex-shrink: 0;
      width: 32px;
    }

    .faq-q-text {
      flex: 1;
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.02em;
      line-height: 1.6;
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      border: 1px solid rgba(255, 31, 75,0.5);
      border-radius: 50%;
      flex-shrink: 0;
      position: relative;
      transition: background 0.3s, border-color 0.3s;
    }

    .faq-icon::before,
    .faq-icon::after {
      content: '';
      position: absolute;
      background: var(--weby-red);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }

    .faq-icon::before {
      width: 12px;
      height: 1.5px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .faq-icon::after {
      width: 1.5px;
      height: 12px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .faq-item.open .faq-icon {
      background: var(--weby-red);
      border-color: var(--weby-red);
    }

    .faq-item.open .faq-icon::before,
    .faq-item.open .faq-icon::after {
      background: #fff;
    }

    .faq-item.open .faq-icon::after {
      transform: translate(-50%, -50%) rotate(90deg);
      opacity: 0;
    }

    .faq-a {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item.open .faq-a {
      max-height: 400px;
    }

    .faq-a-inner {
      display: flex;
      gap: 20px;
      padding: 0 0 36px 0;
    }

    .faq-a-mark {
      font-family: var(--font-en);
      font-size: 1.1rem;
      font-weight: 900;
      color: rgba(255,255,255,0.25);
      flex-shrink: 0;
      width: 32px;
    }

    .faq-a-text {
      flex: 1;
      font-size: 0.95rem;
      color: rgba(255,255,255,0.65);
      line-height: 2;
    }

    /* --- Job Board (Image Banner Style) --- */
    .jobboard-section {
      background: white;
      padding: 60px 0 80px;
    }

    .jb-label {
      font-family: var(--font-en);
      font-size: 0.75rem;
      letter-spacing: 0.6em;
      color: #888;
      margin-bottom: 40px;
      display: block;
      text-align: center;
    }

    .jb-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .jb-card {
      display: block;
      text-decoration: none;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: 0.3s;
      position: relative;
      /* Let image drive the height (H-1): no fixed height, just cap it */
      max-height: 280px;
    }
    .jb-card img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .jb-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

    .jb-card-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      opacity: 0;
      transition: 0.3s;
    }

    .jb-card:hover .jb-card-overlay {
      opacity: 1;
    }

    .jb-card-cta {
      font-family: var(--font-en);
      font-size: 0.75rem;
      font-weight: 900;
      letter-spacing: 0.3em;
      color: white;
      background: var(--weby-red);
      padding: 10px 20px;
    }

    /* --- Worker Modal --- */
    .wmodal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: 0.4s;
    }

    .wmodal-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    .wmodal-box {
      background: white;
      width: 90%;
      max-width: 760px;
      max-height: 88vh;
      overflow-y: auto;
      padding: 80px 70px;
      position: relative;
    }

    .wmodal-close {
      position: absolute;
      top: 30px;
      right: 30px;
      background: none;
      border: none;
      font-size: 2rem;
      cursor: pointer;
      color: #111;
      line-height: 1;
    }

    .wm-tag {
      font-family: var(--font-en);
      color: var(--weby-red);
      font-size: 0.85rem;
      font-weight: 900;
      letter-spacing: 0.4em;
      display: block;
      margin-bottom: 20px;
    }

    .wm-name {
      font-size: 2.8rem;
      font-weight: 900;
      margin-bottom: 15px;
      letter-spacing: 0.1em;
    }

    .wm-quote {
      font-family: var(--font-serif);
      font-size: 1.2rem;
      color: #555;
      border-left: 3px solid var(--weby-red);
      padding-left: 20px;
      margin-bottom: 60px;
      line-height: 1.8;
    }

    .wm-intro {
      font-size: 1.05rem;
      color: #555;
      line-height: 2.0;
      margin-bottom: 50px;
      padding: 24px 28px;
      background: #f9f9f9;
      border-left: none;
    }

    .wm-section {
      margin-bottom: 50px;
    }

    .wm-label {
      font-family: var(--font-en);
      font-size: 0.8rem;
      letter-spacing: 0.5em;
      font-weight: 900;
      color: #888;
      margin-bottom: 30px;
    }

    .wm-timeline {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .wm-trow {
      display: flex;
      gap: 30px;
      padding: 18px 0;
      border-bottom: 1px solid #EEE;
      align-items: center;
    }

    .wm-time {
      font-family: var(--font-en);
      font-weight: 900;
      color: var(--weby-red);
      font-size: 0.9rem;
      min-width: 55px;
    }

    .wm-task {
      font-size: 1.05rem;
      color: #111;
    }

    .wm-reward {
      font-size: 1.1rem;
      line-height: 2.2;
      color: #555;
    }

    /* --- Budo Animation --- */
    .m-budo {
      position: absolute;
      right: 5%;
      top: 50%;
      transform: translateY(-50%);
      font-family: var(--font-serif);
      font-size: 22vw;
      font-weight: 900;
      color: transparent;
      -webkit-text-stroke: 1px rgba(0, 0, 0, 0.06);
      letter-spacing: -0.05em;
      pointer-events: none;
      line-height: 1;
      user-select: none;
    }

    .m-budo.animate {
      animation: budoWrite 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

    @keyframes budoWrite {
      0% {
        -webkit-text-stroke: 1px rgba(0, 0, 0, 0);
        color: transparent;
      }

      30% {
        -webkit-text-stroke: 1px rgba(255, 31, 75, 0.15);
      }

      100% {
        -webkit-text-stroke: 1px rgba(0, 0, 0, 0.08);
        color: transparent;
      }
    }

    .message-section {
      position: relative;
      overflow: hidden;
    }

    /* CEO Message Section */
    .ceo-section {
      background: #0d0d0d;
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }
    .ceo-section::before {
      content: 'CEO';
      right: -20px;
      font-size: 18rem;
      color: rgba(255, 255, 255, 0.06);
    }
    .ceo-inner {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 80px;
      align-items: center;
    }
    .ceo-photo-wrap {
      position: relative;
    }
    .ceo-photo-wrap img {
      width: 100%;
      height: auto;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: center 25%;
      display: block;
    }
    .ceo-photo-wrap::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60%;
      height: 4px;
      background: var(--weby-red);
    }
    .ceo-content {
      color: #fff;
    }
    .ceo-tag {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      color: var(--weby-red);
      text-transform: uppercase;
      margin-bottom: 20px;
      display: block;
    }
    .ceo-title {
      font-size: 1.9rem;
      font-weight: 700;
      line-height: 1.5;
      margin-bottom: 40px;
      color: #fff;
      font-family: 'Noto Serif JP', serif;
    }
    .ceo-body {
      font-size: 0.9rem;
      line-height: 2;
      color: #bbb;
      font-family: 'Noto Serif JP', serif;
    }
    .ceo-body p {
      margin-bottom: 1.4em;
    }
    .ceo-body p:last-child { margin-bottom: 0; }
    .ceo-name {
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid #2a2a2a;
    }
    .ceo-name-role {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      color: #555;
      margin-bottom: 6px;
    }
    .ceo-name-jp {
      font-size: 1.1rem;
      font-weight: 700;
      color: #fff;
      font-family: 'Noto Serif JP', serif;
    }
    /* --- Hamburger Menu --- */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 30px;
      height: 30px;
      cursor: pointer;
      z-index: 1001;
      background: none;
      border: none;
      padding: 0;
    }
    .hamburger span {
      display: block;
      width: 100%;
      height: 2px;
      background: #fff;
      transition: 0.3s;
    }
    header.scrolled .hamburger span {
      background: #111;
    }
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    @media (max-width: 1024px) {
      header {
        padding: 0 30px;
        height: 80px;
      }

      header.scrolled {
        height: 70px;
      }

      nav a {
        margin-left: 30px;
        font-size: 0.7rem;
      }

      .hero-h1,
      .m-copy {
        font-size: 3rem;
      }

      .f-grid {
        flex-direction: column;
        align-items: center;
        gap: 60px;
        text-align: center;
      }

      .f-right {
        text-align: center;
      }

      .biz-categories,
      .workers-grid,
      .gallery-full,
      .jb-grid {
        display: flex;
        flex-direction: column;
        height: auto !important;
      }

      .gallery-item {
        width: 100%;
      }

      .biz-cat-top {
        padding: 36px 30px 28px;
      }

      .biz-cat-top-num {
        font-size: 2.5rem;
      }

      .biz-cat-top-title {
        font-size: 1.3rem;
      }

      .biz-cat-body {
        padding: 36px 30px 44px;
      }

      .r-label {
        width: 100%;
      }

      .gallery-item {
        height: 350px;
        width: 100%;
      }

      .wmodal-box {
        padding: 50px 30px;
      }

      /* Training inner: stack on tablet */
      .training-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .training-text {
        padding: 0;
      }

      .training-photos {
        margin-right: 0;
        grid-template-rows: 200px 180px 180px 180px;
      }

      /* Carousel: stack on tablet */
      .carousel-slide {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .carousel-img {
        height: 400px;
      }

      .carousel-img::after {
        background: linear-gradient(to bottom, transparent 60%, white 100%);
      }

      .carousel-info {
        padding: 40px 40px 60px;
      }

      .carousel-name {
        font-size: 2.2rem;
      }

      /* Career timeline: keep horizontal 3-column layout on tablet.
         Tighten gap and margin-right so 3 cards fit on narrower widths. */
      .career-step-body {
        margin-right: 12px;
      }
    }

    @media (max-width: 768px) {
      /* --- Header / Navigation --- */
      header {
        padding: 0 20px;
        height: 80px;
      }

      header.scrolled {
        height: 70px;
      }

      .hamburger {
        display: flex;
      }

      nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        display: flex;
      }

      nav.open {
        right: 0;
      }

      nav a {
        margin-left: 0;
        margin-bottom: 30px;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8) !important;
      }

      .nav-entry {
        text-align: center;
        margin-top: 20px;
        padding: 16px 35px;
      }

      .logo img {
        height: 46px;
      }

      /* --- Container --- */
      .container {
        padding: 0 20px;
      }

      /* --- Sections general (tightened for mobile density) --- */
      section {
        padding: 56px 0;
      }

      /* --- Hero --- */
      .hero-h1 {
        font-size: 1.85rem;
        letter-spacing: 0.06em;
        line-height: 1.55;
      }

      .hero-2026 {
        font-size: 0.7rem;
        letter-spacing: 0.35em;
        margin-bottom: 18px;
      }

      .scroll-line-container {
        height: 60px;
      }

      /* --- News Bar --- */
      .news-bar-inner {
        flex-direction: column;
      }

      .news-bar-label {
        padding: 8px 18px;
        justify-content: center;
        font-size: 0.65rem;
      }

      .news-item {
        flex-wrap: wrap;
        gap: 6px 14px;
        padding: 10px 18px;
      }

      .news-text {
        width: 100%;
        font-size: 0.75rem;
      }

      .news-date {
        font-size: 0.68rem;
      }

      /* --- Message Section --- */
      .message-section {
        padding: 64px 0;
      }

      .m-script {
        font-size: 0.75rem;
        letter-spacing: 0.35em;
        margin-bottom: 18px;
      }

      .m-copy {
        font-size: 1.55rem;
        line-height: 1.75;
        margin-bottom: 32px;
        letter-spacing: 0.04em;
      }

      .m-detail {
        font-size: 0.92rem;
        line-height: 1.95;
      }

      .m-detail p[style] {
        font-size: 1.2rem !important;
        margin-bottom: 24px !important;
      }

      .m-budo {
        font-size: 40vw;
        right: -5%;
      }

      /* --- Gallery --- */
      .gallery-section {
        padding: 56px 0;
      }

      .gallery-header h2 {
        font-size: 2rem !important;
      }

      .gallery-full {
        grid-template-columns: 1fr;
      }

      .gallery-item {
        height: 210px;
        width: 100%;
        flex-shrink: 0;
      }

      .g-label {
        bottom: 16px;
        left: 16px;
      }

      .g-title {
        font-size: 1.15rem;
      }

      .g-loc {
        font-size: 0.65rem;
      }

      /* --- CEO Section --- */
      .ceo-section {
        padding: 56px 0;
      }

      .ceo-inner {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .ceo-photo-wrap img {
        aspect-ratio: 3/4;
        max-width: 260px;
        max-height: none;
        margin: 0 auto;
        object-position: center 20%;
      }

      /* Mobile ghost-typography: 2x up-sized for impact + opacity
         bumped on light-bg sections (red/black on white needs more
         contrast than white on black). */
      .why-we-exist::before {
        font-size: 46vw;
        right: -12%;
        /* Dot-fill inherits from base; only size/position changes on mobile */
      }
      .business-section::before {
        font-size: 42vw;
        color: rgba(0, 0, 0, 0.09);        /* was 0.06 */
      }
      .recruit-cta::before {
        font-size: 38vw;
      }
      .faq-section::before {
        font-size: 42vw;
      }
      .ceo-section::before {
        font-size: 42vw;
        right: -10%;
      }

      .ceo-title {
        font-size: 1.3rem;
        line-height: 1.55;
      }

      .ceo-body {
        font-size: 0.82rem;
        line-height: 1.85;
      }

      /* --- Business Section --- */
      .business-section {
        padding: 56px 0;
      }

      .business-section .container h2 {
        font-size: 2rem !important;
      }

      .biz-categories {
        margin-top: 32px;
        gap: 12px;
      }

      .biz-cat-top {
        padding: 22px 18px 18px;
      }

      .biz-cat-top::before {
        font-size: 5rem;
      }

      .biz-cat-top-num {
        font-size: 1.7rem;
      }

      .biz-cat-top-title {
        font-size: 1rem;
      }

      .biz-cat-body {
        padding: 18px 18px 24px;
      }

      .biz-service-name {
        font-size: 0.95rem;
      }

      .biz-service-desc {
        font-size: 0.78rem;
        line-height: 1.75;
      }

      /* --- Training Section --- */
      .training-section {
        padding: 56px 0 64px;
      }

      .training-section .container h2 {
        font-size: 1.75rem !important;
      }

      .training-section .container p br {
        display: none;
      }

      .training-flow {
        flex-direction: column;
        gap: 0;
        margin-bottom: 40px;
      }

      .training-flow-item:not(:last-child) .training-flow-card::after,
      .training-flow-item:not(:last-child) .training-flow-card::before {
        display: none;
      }

      .training-flow-card {
        border-right: 1px solid #EEE;
        min-height: auto;
        padding: 18px 18px;
      }

      .training-flow-item:last-child .training-flow-card {
        border: 1px solid var(--weby-red);
      }

      .training-inner {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .training-text {
        padding: 0;
      }

      .training-text h2 {
        font-size: 1.75rem;
      }

      .training-photos {
        margin-right: 0;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 170px 170px 170px 170px;
      }

      /* Reset grid positions: no spanning on mobile */
      .training-photo-main {
        grid-column: 1;
        grid-row: 1;
      }

      .training-photo-sub {
        grid-column: 2;
        grid-row: 1;
      }

      .training-photo-accent {
        grid-column: 1;
        grid-row: 2;
      }

      .training-photo-mini {
        grid-column: 2;
        grid-row: 2;
      }

      .training-photo-mini2 {
        grid-column: 1;
        grid-row: 3;
      }

      .training-photo-extra1 {
        grid-column: 2;
        grid-row: 3;
      }

      .training-photo-extra2 {
        grid-column: 1 / -1;
        grid-row: 4;
      }

      .training-red-bar {
        display: none;
      }

      /* --- Workers / Carousel --- */
      .workers-section {
        padding: 56px 0;
      }

      .workers-section h2 {
        font-size: 2rem !important;
      }

      .carousel-wrapper {
        margin-top: 28px;
      }

      /* Mobile carousel: image + overlaid prev/next arrows, dots moved above text */
      .carousel-slide {
        grid-template-columns: 1fr;
        min-height: auto;
        position: relative; /* reference for absolute-positioned arrow buttons */
      }

      .carousel-img {
        height: 260px;
        position: relative;
      }

      .carousel-img::after {
        background: linear-gradient(to bottom, transparent 55%, white 100%);
      }

      .carousel-info {
        padding: 16px 18px 28px;
        /* flex-column already; allow children to reorder */
      }

      .carousel-tag {
        font-size: 0.68rem;
        letter-spacing: 0.3em;
        margin-bottom: 10px;
      }

      .carousel-name {
        font-size: 1.5rem;
        margin-bottom: 6px;
      }

      .carousel-quote {
        font-size: 1rem;
        line-height: 1.7;
        padding-left: 14px;
        margin: 14px 0 18px;
      }

      .carousel-detail {
        font-size: 0.82rem;
        line-height: 1.85;
      }

      .career-timeline {
        margin-top: 20px;
        padding-top: 18px;
      }

      .career-label {
        font-size: 0.62rem;
        margin-bottom: 12px;
      }

      /* Career timeline: 3-column horizontal layout on mobile.
         Compact spacing and typography so steps fit on narrow screens. */
      .career-steps {
        gap: 0;
      }

      .career-step:not(:last-child)::after {
        content: '→';
        font-size: 0.75rem;
        right: -6px;
        top: 6px;
      }

      .career-step-head {
        margin-bottom: 4px;
        gap: 4px;
      }

      .career-step-num {
        font-size: 1.15rem;
      }

      .career-step-year {
        font-size: 0.65rem;
      }

      .career-step-body {
        margin-right: 8px;
        padding: 10px 10px;
        font-size: 0.75rem;
        line-height: 1.5;
        min-height: auto;
      }

      /* Pull the controls block to the top of info so dots sit right under the image */
      .carousel-controls {
        order: -1;
        margin-top: 0;
        margin-bottom: 14px;
        justify-content: center;
        gap: 14px;
      }

      /* Prev/Next arrows become absolute overlays on the image area */
      .carousel-controls .carousel-btn {
        position: absolute;
        top: 110px; /* ~ half of image height (260px / 2) - half of btn (40/2) */
        width: 40px;
        height: 40px;
        background: rgba(17, 17, 17, 0.55);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.35);
        backdrop-filter: blur(4px);
        font-size: 1rem;
        z-index: 3;
      }

      .carousel-controls .carousel-btn:hover,
      .carousel-controls .carousel-btn:active {
        background: var(--weby-red);
        border-color: var(--weby-red);
        color: #fff;
      }

      .carousel-controls .carousel-btn:nth-child(1) {
        left: 10px;
      }

      .carousel-controls .carousel-btn:nth-child(2) {
        right: 10px;
        left: auto;
      }

      .carousel-dots {
        gap: 10px;
        justify-content: center;
        width: 100%;
      }

      .carousel-dot {
        width: 9px;
        height: 9px;
      }

      /* --- Recruit Section --- */
      .recruit-section {
        padding: 56px 0;
      }

      .recruit-section h2 {
        font-size: 2rem !important;
      }

      .recruit-wrap {
        grid-template-columns: 1fr;
        margin-top: 24px;
      }

      .r-row.r-wide {
        grid-column: 1;
      }

      .r-row {
        padding: 12px 14px;
        gap: 3px;
      }

      .r-label {
        font-size: 0.68rem;
      }

      .r-data {
        font-size: 0.76rem;
        line-height: 1.55;
      }

      /* --- FAQ Section --- */
      .faq-section {
        padding: 56px 0 40px;
      }

      .faq-section h2 {
        font-size: 2rem !important;
      }

      .faq-list {
        margin-top: 32px;
      }

      .faq-q {
        padding: 18px 0;
        gap: 12px;
      }

      .faq-q-mark {
        font-size: 0.9rem;
        width: 22px;
      }

      .faq-q-text {
        font-size: 0.88rem;
        line-height: 1.6;
      }

      .faq-icon {
        width: 22px;
        height: 22px;
      }

      .faq-a-inner {
        gap: 12px;
        padding-bottom: 18px;
      }

      .faq-a-mark {
        width: 22px;
        font-size: 0.9rem;
      }

      .faq-a-text {
        font-size: 0.82rem;
        line-height: 1.8;
      }

      .faq-item:hover {
        padding-left: 0;
      }

      /* --- Job Board --- */
      .jobboard-section {
        padding: 28px 0 48px;
      }

      .jb-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .jb-card {
        height: 150px;
      }

      /* --- Footer --- */
      footer .container div[style*="padding: 48px"] {
        padding: 24px 0 16px !important;
      }

      footer a[style*="padding:18px 56px"] {
        padding: 14px 34px !important;
        font-size: 0.85rem !important;
      }

      .f-entry-bar {
        flex-direction: column;
        text-align: center;
        gap: 18px;
        padding: 28px 0;
      }

      .f-h2 {
        font-size: 1.4rem;
      }

      /* --- Modal --- */
      .wmodal-box {
        padding: 32px 18px;
        width: 95%;
      }

      .wm-name {
        font-size: 1.7rem;
      }

      .wm-quote {
        font-size: 0.95rem;
      }

      .wm-trow {
        gap: 12px;
      }

      /* --- Lightbox --- */
      .lightbox-img {
        max-width: 95vw;
      }

      .lightbox-close {
        top: 16px;
        right: 16px;
      }

      .lightbox-caption {
        font-size: 0.6rem;
        bottom: 20px;
      }
    }

    @media (max-width: 480px) {
      section {
        padding: 48px 0;
      }

      .hero-h1 {
        font-size: 1.5rem;
        letter-spacing: 0.04em;
        line-height: 1.5;
      }

      .m-copy {
        font-size: 1.3rem;
        line-height: 1.75;
      }

      .m-detail {
        font-size: 0.85rem;
        line-height: 1.85;
      }

      .m-detail p[style] {
        font-size: 1.1rem !important;
        margin-bottom: 20px !important;
      }

      .gallery-item {
        height: 180px;
      }

      .training-photos {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 130px) 150px;
      }

      .training-photo-main {
        grid-column: 1;
        grid-row: 1;
      }

      .training-photo-sub {
        grid-column: 2;
        grid-row: 1;
      }

      .training-photo-accent {
        grid-column: 1;
        grid-row: 2;
      }

      .training-photo-mini {
        grid-column: 2;
        grid-row: 2;
      }

      .training-photo-mini2 {
        grid-column: 1;
        grid-row: 3;
      }

      .training-photo-extra1 {
        grid-column: 2;
        grid-row: 3;
      }

      .training-photo-extra2 {
        grid-column: 1 / -1;
        grid-row: 4;
      }

      .carousel-img {
        height: 220px;
      }

      /* Re-center overlay arrows for smaller image on 480px */
      .carousel-controls .carousel-btn {
        top: 90px; /* ~ 220/2 - 40/2 */
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
      }

      .carousel-name {
        font-size: 1.35rem;
      }

      .carousel-quote {
        font-size: 0.95rem;
        margin: 12px 0 16px;
      }

      .carousel-detail {
        font-size: 0.78rem;
      }

      /* Career timeline: keep 3-column layout, tighten further for <=480px. */
      .career-step-num {
        font-size: 1rem;
      }

      .career-step-year {
        font-size: 0.6rem;
      }

      .career-step-body {
        margin-right: 6px;
        padding: 8px 8px;
        font-size: 0.72rem;
        line-height: 1.45;
      }

      .career-step:not(:last-child)::after {
        font-size: 0.7rem;
        right: -4px;
        top: 5px;
      }

      .ceo-title {
        font-size: 1.15rem;
      }

      .biz-cat-top-title {
        font-size: 0.95rem;
      }

      .workers-section h2,
      .business-section .container h2,
      .faq-section h2,
      .recruit-section h2 {
        font-size: 1.75rem !important;
      }

      .gallery-header h2 {
        font-size: 1.75rem !important;
      }

      .training-section .container h2 {
        font-size: 1.5rem !important;
      }
    }

    /* --- News Bar --- */
    .news-bar {
      background: #111;
      padding: 0;
      overflow: hidden;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .news-bar-inner {
      display: flex;
      align-items: stretch;
    }

    .news-bar-label {
      background: var(--weby-red);
      color: white;
      font-family: var(--font-en);
      font-size: 0.7rem;
      font-weight: 900;
      letter-spacing: 0.35em;
      padding: 16px 28px;
      white-space: nowrap;
      flex-shrink: 0;
      display: flex;
      align-items: center;
    }

    .news-list {
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .news-item {
      display: flex;
      align-items: center;
      gap: 32px;
      padding: 14px 36px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      transition: 0.2s;
      cursor: default;
    }

    .news-item:last-child {
      border-bottom: none;
    }

    .news-item:hover {
      background: rgba(255, 255, 255, 0.03);
    }

    .news-date {
      font-family: var(--font-en);
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.35);
      letter-spacing: 0.1em;
      white-space: nowrap;
    }

    .news-text {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.75);
      letter-spacing: 0.05em;
    }

    .news-tag {
      font-family: var(--font-en);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      color: var(--weby-red);
      border: 1px solid var(--weby-red);
      padding: 2px 8px;
      white-space: nowrap;
    }

    /* ============ Common Card Hover Utilities (#29) ============ */
    /* Lift: slight translateY + stronger shadow on hover */
    .card-hover-lift {
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .card-hover-lift:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }
    /* Scale: image inside container zooms subtly on parent hover */
    .card-hover-scale > img,
    .card-hover-scale img {
      transition: transform 1.2s;
    }
    .card-hover-scale:hover > img,
    .card-hover-scale:hover img {
      transform: scale(1.06);
    }

    /* ============ Common Gradient Overlays (#30) ============ */
    /* All overlays are pointer-events: none; typically used with position:absolute */
    .gradient-overlay-bottom-dark {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
      pointer-events: none;
    }
    .gradient-overlay-bottom-medium {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 40%);
      pointer-events: none;
    }
    .gradient-overlay-bottom-soft {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
      pointer-events: none;
    }
    .gradient-overlay-right-white {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, transparent 60%, white 100%);
      pointer-events: none;
    }

    /* ============ Accessibility: Focus Visible (#7, #8, #9) ============ */
    /* Only hide outline when focus is not keyboard-driven */
    :focus:not(:focus-visible) {
      outline: none;
    }
    :focus-visible {
      outline: 2px solid var(--weby-red);
      outline-offset: 3px;
      border-radius: 2px;
    }
    /* Dark backgrounds or red-filled elements: white outline for contrast */
    .faq-q:focus-visible,
    .wmodal-close:focus-visible,
    .lightbox-close:focus-visible,
    header.top-transparent nav a:focus-visible,
    header.scrolled nav a:focus-visible,
    footer a:focus-visible,
    .nav-entry:focus-visible,
    .hamburger:focus-visible {
      outline: 2px solid #fff;
      outline-offset: 3px;
    }
    /* Explicit rules for carousel elements (beat color: inheritance) */
    .carousel-btn:focus-visible {
      outline: 2px solid var(--weby-red);
      outline-offset: 3px;
    }
    .carousel-dot:focus-visible {
      outline: 2px solid var(--weby-red);
      outline-offset: 4px;
      border-radius: 50%;
    }

    /* ============ Accessibility ============ */

    /* Focus-visible outlines for keyboard users (WCAG 2.4.7) */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible,
    [tabindex]:focus-visible,
    summary:focus-visible {
      outline: 2px solid var(--weby-red);
      outline-offset: 3px;
      border-radius: 2px;
    }
    /* On dark sections, flip to white outline for contrast */
    .ceo-section :focus-visible,
    .recruit-cta :focus-visible,
    .faq-section :focus-visible,
    footer#entry :focus-visible,
    .mobile-sticky-cta :focus-visible,
    .hero :focus-visible {
      outline-color: #fff;
    }
    /* Skip mouse-click outlines (keyboard-only focus ring) */
    :focus:not(:focus-visible) {
      outline: none;
    }

    /* Motion preferences (#5) — full coverage */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      .reveal { opacity: 1; transform: none; transition: none; }
      .char { opacity: 1 !important; transform: none !important; transition: none !important; }
      .hero-bg { transform: none !important; }
      .carousel-track { transition: none; }
      html { scroll-behavior: auto; }
    }
