    /* ========== RESET & BASE ========== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Noto Sans JP', sans-serif;
      color: #333;
      line-height: 1.8;
      background: #fff;
      overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }

    /* ========== CSS VARIABLES ========== */
    :root {
      --green: #4CB963;
      --green-dark: #3a9e50;
      --green-light: #e8f5e9;
      --green-bg: #5CC06D;
      --yellow: #F2C94C;
      --yellow-light: #FFF8E1;
      --orange: #E67E22;
      --dark: #1a1a1a;
      --gray: #666;
      --gray-light: #f7f7f7;
      --white: #ffffff;
      --section-padding: 100px 0;
      --container: 1100px;
    }

    /* ========== UTILITIES ========== */
    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 24px;
    }
    .section-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      color: var(--green);
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .section-title {
      font-size: 2rem;
      font-weight: 900;
      line-height: 1.4;
      margin-bottom: 16px;
    }
    .section-desc {
      font-size: 1rem;
      color: var(--gray);
      max-width: 640px;
    }
    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }
    .section-header .section-desc {
      margin: 0 auto;
    }

    /* ========== FADE-IN ANIMATION ========== */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .fade-in-delay-1 { transition-delay: 0.1s; }
    .fade-in-delay-2 { transition-delay: 0.2s; }
    .fade-in-delay-3 { transition-delay: 0.3s; }
    .fade-in-delay-4 { transition-delay: 0.4s; }

    /* ========== HEADER / NAV ========== */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,0.06);
      transition: box-shadow 0.3s, background 0.3s;
    }
    .site-header.scrolled {
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    }
    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
    }
    .logo {
      font-weight: 900;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .logo-img {
      height: 40px;
      width: auto;
    }
    .logo-sub {
      font-size: 0.65rem;
      color: var(--gray);
      font-weight: 500;
    }
    .header-left {
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .logo-corporate-link {
      font-size: 0.72rem;
      font-weight: 500;
      color: var(--gray);
      text-decoration: none;
      white-space: nowrap;
      padding: 8px 14px 8px 18px;
      border-left: 1px solid #e5e5e5;
      border-radius: 0 8px 8px 0;
      transition: color 0.2s, background 0.2s;
    }
    .logo-corporate-link:hover {
      color: var(--green-dark);
      background: var(--green-light);
    }
    .nav-links {
      display: flex;
      gap: 6px;
      list-style: none;
      font-size: 0.8rem;
      font-weight: 500;
      align-items: center;
    }
    .nav-links li a {
      position: relative;
      padding: 8px 14px;
      border-radius: 8px;
      transition: background 0.25s, color 0.25s;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
    }
    .nav-links li a .nav-en {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--green);
      transition: color 0.25s;
    }
    .nav-links li a .nav-ja {
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--dark);
      transition: color 0.25s;
    }
    .nav-links li a:hover {
      background: var(--green-light);
    }
    .nav-links li a:hover .nav-ja {
      color: var(--green-dark);
    }
    .nav-links li a.active {
      background: var(--green-light);
    }
    .nav-links li a.active .nav-en {
      color: var(--green-dark);
    }
    .nav-links li a.active .nav-ja {
      color: var(--green-dark);
      font-weight: 700;
    }
    .nav-links li a.active::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 50%;
      transform: translateX(-50%);
      width: 20px;
      height: 3px;
      background: var(--green);
      border-radius: 2px;
    }
    .nav-cta {
      background: var(--green);
      color: white !important;
      padding: 10px 24px !important;
      border-radius: 50px;
      font-weight: 700;
      transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
      display: flex !important;
      flex-direction: row !important;
      gap: 6px !important;
      align-items: center;
      box-shadow: 0 2px 12px rgba(76,185,99,0.25);
    }
    .nav-cta .nav-en { color: rgba(255,255,255,0.85) !important; }
    .nav-cta .nav-ja { color: white !important; font-weight: 700; }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
      box-shadow: 0 4px 20px rgba(76,185,99,0.35);
    }

    /* Mobile toggle */
    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      width: 44px;
      height: 44px;
      position: relative;
      z-index: 1002;
      border-radius: 8px;
      transition: background 0.3s;
    }
    .mobile-toggle:hover {
      background: var(--green-light);
    }
    .mobile-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--dark);
      position: absolute;
      left: 11px;
      transition: 0.3s ease;
      border-radius: 2px;
    }
    .mobile-toggle span:nth-child(1) { top: 13px; }
    .mobile-toggle span:nth-child(2) { top: 21px; }
    .mobile-toggle span:nth-child(3) { top: 29px; }
    .mobile-toggle.is-open span:nth-child(1) {
      top: 21px;
      transform: rotate(45deg);
      background: var(--green);
    }
    .mobile-toggle.is-open span:nth-child(2) {
      opacity: 0;
    }
    .mobile-toggle.is-open span:nth-child(3) {
      top: 21px;
      transform: rotate(-45deg);
      background: var(--green);
    }

    /* Full-screen mobile menu overlay */
    .mobile-menu-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 999;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(20px);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .mobile-menu-overlay.is-visible {
      display: flex;
      opacity: 1;
    }
    .mobile-menu-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      width: 80%;
      max-width: 400px;
    }
    .mobile-menu-list li {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .mobile-menu-overlay.is-visible .mobile-menu-list li {
      opacity: 1;
      transform: translateY(0);
    }
    .mobile-menu-overlay.is-visible .mobile-menu-list li:nth-child(1) { transition-delay: 0.05s; }
    .mobile-menu-overlay.is-visible .mobile-menu-list li:nth-child(2) { transition-delay: 0.1s; }
    .mobile-menu-overlay.is-visible .mobile-menu-list li:nth-child(3) { transition-delay: 0.15s; }
    .mobile-menu-overlay.is-visible .mobile-menu-list li:nth-child(4) { transition-delay: 0.2s; }
    .mobile-menu-overlay.is-visible .mobile-menu-list li:nth-child(5) { transition-delay: 0.25s; }
    .mobile-menu-overlay.is-visible .mobile-menu-list li:nth-child(6) { transition-delay: 0.3s; }
    .mobile-menu-overlay.is-visible .mobile-menu-list li:nth-child(7) { transition-delay: 0.35s; }
    .mobile-menu-list a {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 20px;
      border-radius: 12px;
      transition: background 0.25s;
      border-bottom: 1px solid rgba(0,0,0,0.04);
    }
    .mobile-menu-list a:hover {
      background: var(--green-light);
    }
    .mobile-menu-list a.active {
      background: var(--green-light);
    }
    .mobile-menu-num {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--green);
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(76,185,99,0.1);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .mobile-menu-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .mobile-menu-text .nav-en {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--green);
    }
    .mobile-menu-text .nav-ja {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--dark);
    }
    .mobile-menu-cta {
      margin-top: 16px;
      text-align: center;
    }
    .mobile-menu-cta a {
      display: inline-flex;
      justify-content: center;
      background: var(--green);
      color: white;
      padding: 16px 48px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      box-shadow: 0 4px 20px rgba(76,185,99,0.3);
      transition: background 0.3s, transform 0.2s;
      border-bottom: none;
    }
    .mobile-menu-cta a:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
    }

    /* ========== HERO ========== */
    .hero {
      position: relative;
      width: 100%;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 64px;
      background-color: #1a2e1a;
    }
    .hero-bg-pattern {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      pointer-events: none;
    }
    .hero-bg-pattern img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      animation: heroSlide 12s infinite;
    }
    .hero-bg-pattern img:nth-child(1) { animation-delay: -0.72s; }
    .hero-bg-pattern img:nth-child(2) { animation-delay: 2.28s; }
    .hero-bg-pattern img:nth-child(3) { animation-delay: 5.28s; }
    .hero-bg-pattern img:nth-child(4) { animation-delay: 8.28s; }
    @keyframes heroSlide {
      0% { opacity: 0; }
      4% { opacity: 1; }
      27% { opacity: 1; }
      31% { opacity: 0; }
      100% { opacity: 0; }
    }
    .hero-bg-pattern::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
      background: linear-gradient(135deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.2) 100%);
    }
    .hero-inner {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 24px;
      position: relative;
      z-index: 1;
    }
    .hero-content { max-width: 640px; }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,0.95);
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--green);
      box-shadow: 0 2px 12px rgba(0,0,0,0.15);
      margin-bottom: 24px;
    }
    .hero-badge-dot {
      width: 8px;
      height: 8px;
      background: var(--green);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }
    .hero-title {
      font-size: 3.2rem;
      font-weight: 900;
      line-height: 1.35;
      margin-bottom: 24px;
      color: white;
      text-shadow: 0 2px 16px rgba(0,0,0,0.3);
    }
    .hero-title .highlight {
      color: var(--yellow);
      position: relative;
    }
    .hero-subtitle {
      font-size: 1.25rem;
      font-weight: 700;
      color: white;
      margin-bottom: 40px;
      line-height: 2.1;
      text-shadow: 0 2px 12px rgba(0,0,0,0.5);
      border-left: 4px solid var(--yellow);
      padding-left: 16px;
    }
    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: 50px;
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: all 0.3s ease;
    }
    .btn-primary {
      background: var(--green);
      color: white;
      box-shadow: 0 4px 20px rgba(76,185,99,0.3);
    }
    .btn-primary:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 28px rgba(76,185,99,0.4);
    }
    .btn-outline {
      background: rgba(255,255,255,0.95);
      color: var(--dark);
      border: 2px solid rgba(255,255,255,0.8);
    }
    .btn-outline:hover {
      background: white;
      border-color: var(--green);
      color: var(--green);
      transform: translateY(-2px);
    }
    .hero-images {
      display: none;
    }
    .hero-tags {
      display: flex;
      gap: 10px;
      margin-top: 28px;
      flex-wrap: wrap;
    }
    .hero-tag {
      background: rgba(76,185,99,0.1);
      color: var(--green-dark);
      padding: 5px 14px;
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 700;
    }

    /* ========== MESSAGE ========== */
    .message-section {
      padding: var(--section-padding);
      background: var(--white);
    }
    .message-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .message-image {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    }
    .message-image img {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }
    .message-text h2 {
      font-size: 1.8rem;
      font-weight: 900;
      line-height: 1.5;
      margin-bottom: 20px;
    }
    .message-text h2 .green { color: var(--green); }
    .message-text p {
      color: var(--gray);
      margin-bottom: 16px;
      font-size: 0.95rem;
      line-height: 2;
    }
    .marker-yellow {
      background: linear-gradient(transparent 60%, rgba(242,201,76,0.35) 60%);
      padding: 0 2px;
    }
    .marker-green {
      background: linear-gradient(transparent 60%, rgba(76,185,99,0.25) 60%);
      padding: 0 2px;
    }
    .text-orange {
      color: var(--orange);
      font-weight: 700;
    }
    .text-green-bold {
      color: var(--green);
      font-weight: 700;
    }

    /* ========== NUMBERS (数字で見る) ========== */
    .numbers-section {
      padding: var(--section-padding);
      background: var(--green-bg);
      position: relative;
      overflow: hidden;
    }
    .numbers-section::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      background: rgba(255,255,255,0.05);
      border-radius: 50%;
    }
    .numbers-section .section-label { color: rgba(255,255,255,0.7); }
    .numbers-section .section-title { color: white; }
    .numbers-section .section-desc { color: rgba(255,255,255,0.8); }

    .numbers-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 20px;
    }
    .numbers-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }
    .numbers-grid-2 .number-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .number-card {
      background: white;
      border-radius: 16px;
      padding: 32px 20px;
      text-align: center;
      transition: transform 0.3s;
    }
    .number-card:hover {
      transform: translateY(-4px);
    }
    .number-card-icon {
      width: 140px;
      height: 140px;
      margin: 0 auto 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .number-card-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .number-card-label {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--gray);
      margin-bottom: 8px;
    }
    .number-card-sublabel {
      font-size: 0.7rem;
      color: #999;
      margin-top: -4px;
      margin-bottom: 8px;
    }
    .numbers-note {
      text-align: right;
      font-size: 0.72rem;
      color: rgba(255,255,255,0.5);
      margin-top: 12px;
    }
    .number-card-value {
      font-family: 'Montserrat', sans-serif;
      font-size: 3rem;
      font-weight: 900;
      color: var(--dark);
      line-height: 1.1;
    }
    .number-card-unit {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--gray);
      margin-left: 2px;
    }

    /* Sparkline chart for revenue card */
    .sparkline-chart {
      width: 100%;
      height: 100%;
    }
    /* SVG text font-size/family を CSS で明示指定して親CSS継承・SWELL の body font-size 16px の影響を遮断 */
    .sparkline-chart text {
      font-size: 7px;
      font-family: Arial, 'Helvetica Neue', sans-serif;
      fill: #666;
    }
    .sparkline-chart text[y="74"] {
      font-size: 8px;
      fill: #aaa;
    }
    .sparkline-chart text[fill="#3a9e50"] {
      font-size: 6.5px;
      fill: #3a9e50;
    }
    .sparkline-chart text[fill="#4CB963"] {
      fill: #4CB963;
    }
    .number-card-clients {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      margin-top: 8px;
    }
    .number-card-clients span {
      font-size: 0.7rem;
      font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
      color: #222;
      font-weight: 500;
      white-space: nowrap;
    }
    .number-card-clients .clients-more {
      color: var(--gray);
      font-size: 0.65rem;
    }

    /* Wide cards */
    .numbers-grid-wide {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .number-card-wide {
      background: white;
      border-radius: 16px;
      padding: 32px;
      display: flex;
      align-items: center;
      gap: 24px;
      transition: transform 0.3s;
    }
    .number-card-wide:hover {
      transform: translateY(-4px);
    }
    .number-card-wide .number-card-icon {
      margin: 0;
      flex-shrink: 0;
      width: 64px;
      height: 64px;
      font-size: 1.8rem;
    }
    .number-wide-content {
      flex: 1;
    }
    .number-wide-content .number-card-label {
      text-align: left;
      margin-bottom: 4px;
    }
    .number-wide-content .number-card-value {
      text-align: left;
    }
    .revenue-chart {
      display: flex;
      align-items: flex-end;
      gap: 8px;
      margin-top: 12px;
      height: 80px;
    }
    .revenue-bar {
      flex: 1;
      background: var(--green-light);
      border-radius: 8px 8px 0 0;
      position: relative;
      min-height: 20px;
      transition: height 1s ease;
    }
    .revenue-bar-label {
      position: absolute;
      top: -22px;
      left: 50%;
      transform: translateX(-50%);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.8rem;
      font-weight: 900;
      color: var(--dark);
      white-space: nowrap;
    }
    .revenue-bar-year {
      text-align: center;
      font-size: 0.65rem;
      color: var(--gray);
      margin-top: 4px;
    }

    .client-list {
      list-style: none;
      margin-top: 8px;
    }
    .client-list li {
      font-size: 0.82rem;
      color: var(--gray);
      padding: 3px 0;
      padding-left: 16px;
      position: relative;
    }
    .client-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      width: 6px;
      height: 6px;
      background: var(--green);
      border-radius: 50%;
      transform: translateY(-50%);
    }

    /* ========== WORK POINTS ========== */
    .work-section {
      padding: var(--section-padding);
      background: var(--gray-light);
    }
    .work-points {
      display: flex;
      flex-direction: column;
      gap: 48px;
    }
    .work-point {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.04);
      min-height: 380px;
    }
    .work-point:nth-child(even) {
      direction: rtl;
    }
    .work-point:nth-child(even) > * {
      direction: ltr;
    }
    .work-point-image {
      height: 100%;
      min-height: 320px;
    }
    .work-point-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .work-point-content {
      padding: 40px;
    }
    .work-point-number {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.75rem;
      font-weight: 900;
      color: var(--green);
      letter-spacing: 0.1em;
      margin-bottom: 8px;
    }
    .work-point-title {
      font-size: 1.5rem;
      font-weight: 900;
      margin-bottom: 16px;
      line-height: 1.5;
    }
    .work-point-text {
      color: var(--gray);
      font-size: 0.92rem;
      line-height: 1.9;
    }
    .work-point-tag {
      display: inline-block;
      background: var(--yellow-light);
      color: var(--orange);
      padding: 4px 14px;
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 700;
      margin-top: 16px;
    }

    /* ========== IDEAL CANDIDATE (求める人物像) ========== */
    .ideal-section {
      padding: var(--section-padding);
      background: var(--white);
    }
    .ideal-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      max-width: 960px;
      margin: 0 auto;
    }
    .ideal-card {
      background: var(--gray-light);
      border-radius: 16px;
      padding: 32px 20px;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .ideal-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    }
    .ideal-card-icon {
      width: 56px;
      height: 56px;
      background: var(--green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
    }
    .ideal-card-icon svg {
      width: 28px;
      height: 28px;
      stroke: white;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .ideal-card-title {
      font-size: 1rem;
      font-weight: 900;
      margin-bottom: 8px;
      color: var(--dark);
    }
    .ideal-card-text {
      font-size: 0.82rem;
      color: var(--gray);
      line-height: 1.7;
    }

    /* ========== TRAINING (研修・育成) ========== */
    .training-section {
      padding: var(--section-padding);
      background: var(--yellow-light);
    }
    .training-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 960px;
      margin: 0 auto;
    }
    .training-card {
      background: white;
      border-radius: 20px;
      padding: 36px 28px 32px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.06);
      position: relative;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .training-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.10);
    }
    .training-card-step {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.7rem;
      font-weight: 900;
      color: white;
      letter-spacing: 0.1em;
      margin-bottom: 16px;
      background: var(--orange);
      display: inline-block;
      padding: 5px 16px;
      border-radius: 50px;
    }
    .training-card-title {
      font-size: 1.15rem;
      font-weight: 900;
      margin-bottom: 12px;
      color: var(--dark);
    }
    .training-card-text {
      font-size: 0.85rem;
      color: var(--gray);
      line-height: 1.8;
      text-align: left;
    }
.training-grid .training-card:nth-child(1) { border-top: 4px solid var(--orange); }
    .training-grid .training-card:nth-child(2) { border-top: 4px solid var(--green); }
    .training-grid .training-card:nth-child(3) { border-top: 4px solid var(--yellow); }

    /* ========== BENEFITS DETAIL (福利厚生) ========== */
    .benefits-section {
      padding: var(--section-padding);
      background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 50%, #fff8e1 100%);
    }
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 960px;
      margin: 0 auto;
    }
    .benefit-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      padding: 28px 16px 24px;
      background: white;
      border-radius: 16px;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
      text-align: center;
    }
    .benefit-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .benefit-icon {
      width: 56px;
      height: 56px;
      background: var(--green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .benefit-icon svg {
      width: 28px;
      height: 28px;
      stroke: white;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .benefit-text {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.5;
    }

    /* ========== FLOW (選考フロー) ========== */
    .flow-section {
      padding: 48px 0;
      background: white;
    }
    .flow-steps {
      display: flex;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
      max-width: 960px;
      margin: 0 auto;
    }
    .flow-step {
      flex: 1;
      min-width: 120px;
      text-align: center;
      position: relative;
      padding: 0 12px;
    }
    .flow-step:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 28px;
      right: -8px;
      width: 16px;
      height: 16px;
      border-top: 3px solid var(--green);
      border-right: 3px solid var(--green);
      transform: rotate(45deg);
    }
    .flow-step-circle {
      width: 56px;
      height: 56px;
      background: var(--green);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 14px;
      color: white;
      font-family: 'Montserrat', sans-serif;
      font-size: 1.2rem;
      font-weight: 900;
      box-shadow: 0 4px 12px rgba(76,185,99,0.2);
    }
    .flow-step-label {
      font-size: 0.9rem;
      font-weight: 700;
    }
    .flow-step-desc {
      font-size: 0.75rem;
      color: var(--gray);
      margin-top: 4px;
    }

    /* ========== REQUIREMENTS (募集要項) ========== */
    .requirements-section {
      padding: var(--section-padding);
      background: var(--gray-light);
    }
    .req-table {
      max-width: 900px;
      margin: 0 auto;
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    }
    .req-row {
      display: grid;
      grid-template-columns: 180px 1fr;
      border-bottom: 1px solid #f0f0f0;
    }
    .req-row:last-child { border-bottom: none; }
    .req-label {
      background: var(--green-light);
      padding: 20px 24px;
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--green-dark);
      display: flex;
      align-items: center;
    }
    .req-value {
      padding: 20px 24px;
      font-size: 0.9rem;
      line-height: 1.9;
    }

    /* ========== RECRUIT CARDS ========== */
    .recruit-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 800px; margin: 0 auto; }
    .recruit-card { display: flex; flex-direction: column; align-items: center; text-align: center; background: white; border-radius: 20px; padding: 48px 32px 40px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; color: inherit; }
    .recruit-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.10); }
    .recruit-card--shinsotsu { border-top: 4px solid var(--green); }
    .recruit-card--career { border-top: 4px solid var(--orange); }
    .recruit-card-icon { width: 200px; height: 80px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
    .recruit-card-icon img { max-width: 100%; max-height: 100%; }
    .recruit-card-icon svg { width: 64px; height: 64px; }
    .recruit-card-title { font-size: 1.3rem; font-weight: 900; margin-bottom: 4px; }
    .recruit-card-sub { font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; color: var(--green); text-transform: uppercase; margin-bottom: 12px; }
    .recruit-card--career .recruit-card-sub { color: var(--orange); }
    .recruit-card-desc { font-size: 0.9rem; color: var(--gray); margin-bottom: 20px; }
    .recruit-card-arrow { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--green-light); transition: background 0.3s, transform 0.3s; }
    .recruit-card--career .recruit-card-arrow { background: #FFF3E0; }
    .recruit-card:hover .recruit-card-arrow { transform: translateX(4px); background: var(--green); }
    .recruit-card:hover .recruit-card-arrow svg { stroke: white; }
    .recruit-card--career:hover .recruit-card-arrow { background: var(--orange); }

    /* ========== CTA ========== */
    .cta-section {
      padding: 80px 0;
      background: linear-gradient(135deg, var(--green) 0%, #3a9e50 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 300px;
      height: 300px;
      background: rgba(255,255,255,0.05);
      border-radius: 50%;
    }
    .cta-title {
      font-size: 2rem;
      font-weight: 900;
      color: white;
      margin-bottom: 12px;
    }
    .cta-desc {
      color: rgba(255,255,255,0.85);
      margin-bottom: 32px;
      font-size: 1rem;
    }
    .btn-white {
      background: white;
      color: var(--green);
      padding: 16px 40px;
      font-size: 1rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    }

    /* ========== FOOTER ========== */
    .site-footer {
      background: var(--dark);
      color: rgba(255,255,255,0.6);
      padding: 64px 0 32px;
    }
    .footer-inner {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 48px;
      align-items: start;
    }
    .footer-brand {
      color: white;
      font-weight: 900;
      font-size: 1.1rem;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .footer-brand-icon {
      height: 36px;
      width: auto;
      flex-shrink: 0;
    }
    .footer-address {
      font-size: 0.8rem;
      line-height: 1.8;
      margin-bottom: 16px;
    }
    .footer-badges {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap;
    }
    .footer-badge {
      background: rgba(255,255,255,0.08);
      padding: 6px 14px;
      border-radius: 6px;
      font-size: 0.72rem;
      color: rgba(255,255,255,0.7);
      font-weight: 700;
      border: 1px solid rgba(255,255,255,0.08);
    }
    .footer-nav {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .footer-nav-group h4 {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--green);
      font-family: 'Montserrat', sans-serif;
      margin-bottom: 12px;
    }
    .footer-nav-group ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .footer-nav-group ul li a {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.6);
      transition: color 0.25s;
    }
    .footer-nav-group ul li a:hover {
      color: white;
    }
    .footer-copy {
      text-align: center;
      padding-top: 32px;
      margin-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.08);
      font-size: 0.72rem;
      max-width: var(--container);
      margin-left: auto;
      margin-right: auto;
      padding-left: 24px;
      padding-right: 24px;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 900px) {
      .hero-inner {
        padding: 60px 24px;
      }
      .hero-content { max-width: 100%; }
      .hero-title { font-size: 2.2rem; }
      .hero-buttons { justify-content: center; }
      .hero-tags { justify-content: center; }
      .message-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .numbers-grid-wide {
        grid-template-columns: 1fr;
      }
      .work-point {
        grid-template-columns: 1fr;
      }
      .work-point:nth-child(even) {
        direction: ltr;
      }
      .work-point-image {
        min-height: 220px;
      }
      .work-point-content {
        padding: 28px;
      }
      .recruit-cards { grid-template-columns: 1fr; max-width: 400px; }
      .req-row {
        grid-template-columns: 1fr;
      }
      .req-label {
        padding: 14px 20px;
      }
      .req-value {
        padding: 14px 20px;
      }
      .flow-step:not(:last-child)::after {
        display: none;
      }
      .flow-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }
      .ideal-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .training-grid {
        grid-template-columns: 1fr;
      }
      .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
      .section-title { font-size: 1.6rem; }
      .nav-links { display: none !important; }
      .logo-corporate-link { display: none; }
      .mobile-toggle { display: block; }
      .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .footer-nav {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 600px) {
      .numbers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
      .number-card {
        padding: 24px 14px;
      }
      .number-card-value {
        font-size: 2.2rem;
      }
      .ideal-grid {
        grid-template-columns: 1fr 1fr;
      }
      /* === 福利厚生: コンパクト横型カードグリッド === */
      .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }
      .benefit-item {
        flex-direction: row;
        padding: 12px;
        gap: 10px;
        text-align: left;
      }
      .benefit-icon {
        width: 36px;
        height: 36px;
      }
      .benefit-icon svg {
        width: 18px;
        height: 18px;
      }
      .benefit-text {
        font-size: 0.78rem;
      }
      .hero-title { font-size: 1.65rem; }
      .cta-title { font-size: 1.5rem; }
      .footer-nav {
        grid-template-columns: 1fr 1fr;
      }
      /* === 選考フロー: コンパクト縦タイムライン === */
      .flow-steps {
        align-items: stretch;
        gap: 0;
        max-width: 320px;
      }
      .flow-step {
        display: grid;
        grid-template-columns: 56px 7.5em 1fr;
        gap: 0 10px;
        align-items: center;
        text-align: left;
        padding: 0 0 16px 0;
      }
      .flow-step:last-child {
        padding-bottom: 0;
      }
      .flow-step:not(:last-child)::after {
        display: block !important;
        content: '';
        position: absolute;
        top: 56px;
        left: 28px;
        right: auto;
        width: 2px;
        height: calc(100% - 56px);
        border: none;
        background: var(--green);
        transform: none;
      }
      .flow-step-circle {
        align-self: center;
        margin: 0;
      }
    }
