/* =============================================
   Enmish Corporate Site — Design System & Styles
   ============================================= */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Colors — minimal palette, #6CBBA5 accent */
  --color-primary: #6CBBA5;
  --color-primary-dark: #4a9e86;
  --color-primary-darker: #3a8771;
  --color-primary-light: rgba(108, 187, 165, 0.08);
  --color-primary-mid: rgba(108, 187, 165, 0.15);
  --color-secondary: #1a1a1a;
  --color-secondary-light: #333333;
  --color-bg-white: #ffffff;
  --color-bg-gray: #f8faf9;
  --color-bg-dark: #1a1a1a;
  --color-accent: #6CBBA5;
  --color-text: #222222;
  --color-text-light: #666666;
  --color-border: #e5e5e5;

  /* Typography */
  --font-heading: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, "Meiryo", sans-serif;
  --font-condensed: "Poppins", "Helvetica Neue", Arial, "Hiragino Sans", sans-serif;

  /* Spacing */
  --section-padding: 160px 0;
  --container-width: 1440px;

  /* Header */
  --header-height: 72px;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

  /* Light green background */
  --color-bg-green-light: #eef7f4;

  /* ── Liquid Glass Design Tokens (iOS 26 style) ── */
  --glass-blur: blur(20px) saturate(180%);
  --glass-blur-strong: blur(30px) saturate(200%);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-bg-hover: rgba(255, 255, 255, 0.14);
  --glass-border: 1px solid rgba(255, 255, 255, 0.18);
  --glass-border-hover: 1px solid rgba(255, 255, 255, 0.30);
  --glass-shadow:
    0 8px 32px rgba(31, 38, 135, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06);
  --glass-shadow-hover:
    0 12px 48px rgba(31, 38, 135, 0.18),
    0 4px 12px rgba(0, 0, 0, 0.08);
  /* Specular highlight — top edge inner glow */
  --glass-highlight:
    inset 0 1px 0 rgba(255, 255, 255, 0.40),
    inset 0 0 20px -5px rgba(255, 255, 255, 0.25);
  --glass-highlight-hover:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.55),
    inset 0 0 24px -4px rgba(255, 255, 255, 0.35);
  --glass-radius: 20px;
  --glass-radius-sm: 14px;
  --glass-radius-lg: 28px;
  --glass-transition: cubic-bezier(0.4, 0, 0.2, 1);

  /* Liquid Glass — dark variant (on colored backgrounds) */
  --glass-dark-bg: rgba(255, 255, 255, 0.06);
  --glass-dark-bg-hover: rgba(255, 255, 255, 0.12);
  --glass-dark-border: 1px solid rgba(255, 255, 255, 0.12);
  --glass-dark-shadow:
    0 8px 32px rgba(0, 0, 0, 0.20),
    0 2px 8px rgba(0, 0, 0, 0.10);
  --glass-dark-highlight:
    inset 0 1px 0 rgba(255, 255, 255, 0.20),
    inset 0 0 16px -6px rgba(255, 255, 255, 0.15);

  /* ── Maximalist Design Tokens ── */
  --max-watermark-font: clamp(120px, 18vw, 280px);
  --max-watermark-opacity: 0.04;
  --max-grain-opacity: 0.04;
  --max-video-opacity: 0.55;
  --max-video-overlay: linear-gradient(180deg,
    rgba(255,255,255,0.70) 0%, rgba(255,255,255,0.50) 50%, rgba(255,255,255,0.70) 100%);
  --max-video-overlay-dark: linear-gradient(180deg,
    rgba(26,26,26,0.65) 0%, rgba(26,26,26,0.45) 50%, rgba(26,26,26,0.65) 100%);
}

/* =============================================
   Shared fixed video background (Hero ~ Service)
   ============================================= */
.shared-video-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.shared-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  opacity: var(--max-video-opacity);
}

.shared-video-overlay {
  position: absolute;
  inset: 0;
  background: var(--max-video-overlay);
  z-index: 1;
}

@media (max-width: 768px) {
  .shared-video-bg { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  .shared-video-bg { display: none; }
}

/* =============================================
   Full-page Scroll (Top page only)
   JS-controlled: one scroll = one section transition
   ============================================= */
@media (min-width: 769px) {
  html.snap-scroll {
    overflow: hidden;
    height: 100vh;
  }

  html.snap-scroll body {
    overflow: hidden;
    height: 100vh;
  }

  html.snap-scroll .snap-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    will-change: transform;
    z-index: 1;
  }

  .snap-section {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
  }

}

/* On mobile, normal scroll */
@media (max-width: 768px) {
  html.snap-scroll,
  html.snap-scroll body {
    overflow: auto;
    height: auto;
  }

  .snap-section {
    min-height: auto;
    max-height: none;
    height: auto;
    overflow: visible;
  }

  .snap-wrapper {
    position: relative !important;
    transform: none !important;
    z-index: 1;
  }
}

/* Liquid Glass navigation dots */
.snap-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.30),
    0 6px 24px rgba(31, 38, 135, 0.10);
}

.snap-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(108,187,165,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  padding: 0;
}

.snap-nav-dot:hover {
  background: rgba(108,187,165,0.50);
  transform: scale(1.4);
}

.snap-nav-dot.active {
  background: var(--color-primary);
  box-shadow: 0 0 8px rgba(108,187,165,0.40);
}

@media (max-width: 768px) {
  .snap-nav {
    display: none;
  }
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg-white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

/* ── Film Grain (Noise Texture) Overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  opacity: var(--max-grain-opacity);
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

@media (prefers-reduced-motion: reduce) {
  body::after {
    display: none;
  }
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-primary);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.sp-only { display: none; }
.sp-hide { display: inline; }

/* =============================================
   Page Loader
   ============================================= */
/* Liquid Glass loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 252, 251, 0.92);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s var(--ease-out-expo), visibility 0.7s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.loader-logo {
  width: 180px;
  height: auto;
  opacity: 0;
  transform: translateY(8px);
  animation: loaderLogoIn 0.6s var(--ease-out-expo) 0.15s forwards;
}

@keyframes loaderLogoIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* System boot UI */
.loader-system {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: loaderLogoIn 0.5s var(--ease-out-expo) 0.5s forwards;
}

.loader-progress {
  width: 320px;
  height: 3px;
  background: rgba(108,187,165,0.12);
  border: 1px solid rgba(108,187,165,0.10);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}

.loader-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg,
    rgba(108,187,165,0.6) 0%,
    rgba(108,187,165,1) 100%);
  border-radius: 100px;
  transition: width 0.15s linear;
  box-shadow: 0 0 12px rgba(108,187,165,0.35);
}

.loader-status {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--color-text-light);
  min-height: 1.2em;
}

/* --- Section Heading Pattern (EN + JP) --- */
.section-heading {
  margin-bottom: 72px;
  text-align: center;
}

.section-heading--left {
  text-align: left;
}

.section-heading .en {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-heading .jp {
  display: block;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 1px;
}

.section-heading .service-heading-large {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(108, 187, 165, 0.7);
  margin-bottom: 0;
}
.news .section-heading .service-heading-large {
  margin-bottom: 24px;
}
.cta-heading .service-heading-large {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 24px;
}

.section-lead {
  margin-top: 24px;
  margin-bottom: 48px;
  font-size: 17px;
  color: var(--color-text-light);
  line-height: 1.9;
}

/* =============================================
   A. Header
   ============================================= */
/* --- Liquid Glass Header --- */
.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  width: calc(100% - 48px);
  max-width: var(--container-width);
  margin: 0 auto;
  height: var(--header-height);
  z-index: 1000;
  border-radius: var(--glass-radius);
  /* Liquid Glass header */
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow:
    var(--glass-highlight),
    var(--glass-shadow);
  border: var(--glass-border);
  transition:
    box-shadow 0.4s var(--glass-transition),
    background 0.4s var(--glass-transition),
    border-color 0.4s var(--glass-transition);
}

/* Specular shine — top edge highlight */
.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.60) 30%,
    rgba(255, 255, 255, 0.80) 50%,
    rgba(255, 255, 255, 0.60) 70%,
    transparent 100%);
  border-radius: 1px;
  pointer-events: none;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.16);
  box-shadow:
    var(--glass-highlight-hover),
    var(--glass-shadow-hover);
  border-color: rgba(255, 255, 255, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 36px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 100%;
}

/* Liquid Glass nav links */
.header-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-secondary);
  letter-spacing: 0.3px;
  position: relative;
  padding: 0 24px;
  border-radius: 0;
  display: flex;
  align-items: center;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.header-nav a:not(.btn-cta)::after {
  /* Remove underline — replaced by glass pill hover */
  display: none;
}

.header-nav a:not(.btn-cta):hover {
  color: var(--color-primary-dark);
  background: rgba(255, 255, 255, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 4px 16px rgba(31, 38, 135, 0.06);
}

/* Contact CTA — Liquid Glass tinted */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  border-radius: var(--glass-radius-sm);
  color: #fff;
  background: #6cbba5;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.30),
    inset 0 0 12px -4px rgba(255, 255, 255, 0.20),
    0 6px 24px rgba(31, 38, 135, 0.15);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  transition:
    background 0.3s var(--glass-transition),
    transform 0.2s var(--glass-transition),
    box-shadow 0.3s var(--glass-transition);
}

.btn-cta:hover {
  color: #fff;
  background: #5aab95;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.40),
    inset 0 0 16px -3px rgba(255, 255, 255, 0.30),
    0 10px 36px rgba(31, 38, 135, 0.20);
}

/* Contact CTA inside header — stretch to full header height */
.header-nav .btn-recruit {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 0 36px;
  background: #6cbba5;
  color: #ffffff;
  font-weight: 600;
  transition: background 0.3s ease;
}

.header-nav .btn-recruit:hover {
  background: #5aab95;
}

.header-nav .btn-recruit::after {
  display: none;
}

.header-nav .btn-cta {
  align-self: stretch;
  display: flex;
  align-items: center;
  border-radius: 0;
  padding: 0 36px;
  color: #ffffff;
  background: #032841;
  transition: background 0.3s ease, color 0.3s ease;
}

.header-nav .btn-cta:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #032841;
  transform: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 4px 16px rgba(31, 38, 135, 0.06);
}

/* Liquid Glass large CTA button */
.btn-cta--large {
  padding: 20px 80px;
  font-size: 16px;
  border-radius: var(--glass-radius-lg);
  background: #6cbba5;
  border: none;
}

.btn-cta--large:hover {
  background: #5aab95;
  transform: translateY(-2px);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-secondary);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   B. Hero Area
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Bottom fade: removed for shared video background continuity */
.hero::after {
  display: none;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* hero-video removed — replaced by .shared-video-bg */

/* Blurred accent pill (#6CBBA5) */
.hero-blur-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #6cbba5;
  z-index: 1;
  opacity: 0.75;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-secondary);
  padding: 0 24px;
}

.hero-content .main-copy {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(38px, 7.5vw, 108px);
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.35;
  margin-bottom: 32px;
  color: #203d35;
  opacity: 0;
  transform: translateY(30px);
}

.hero-content .main-copy.hero-split-text {
  opacity: 1;
  transform: none;
}

.hero-accent {
  color: #ffffff;
  font-style: italic;
  margin-right: 0.15em;
}

.hero-content .sub-copy {
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.8;
  color: var(--color-text-light);
  opacity: 0;
  transform: translateY(20px);
}

/* Hero action buttons */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  opacity: 0;
  transform: translateY(20px);
}

/* Liquid Glass hero buttons */
.btn-hero-primary {
  display: inline-block;
  padding: 18px 48px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: var(--glass-radius-lg);
  color: var(--color-primary-dark) !important;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 0 16px -4px rgba(255, 255, 255, 0.25),
    0 6px 24px rgba(31, 38, 135, 0.10);
  transition: all 0.3s var(--glass-transition);
}

.btn-hero-primary:hover {
  color: var(--color-primary-dark) !important;
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.60),
    inset 0 0 20px -3px rgba(255, 255, 255, 0.35),
    0 10px 40px rgba(31, 38, 135, 0.16);
}

.btn-hero-secondary {
  display: inline-block;
  padding: 18px 48px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: var(--glass-radius-lg);
  color: #ffffff !important;
  background: #6cbba5;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 0 12px -4px rgba(255, 255, 255, 0.18),
    0 6px 24px rgba(31, 38, 135, 0.15);
  transition: all 0.3s var(--glass-transition);
}

.btn-hero-secondary:hover {
  color: #ffffff !important;
  background: #5aab95;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.35),
    inset 0 0 16px -3px rgba(255, 255, 255, 0.25),
    0 10px 40px rgba(31, 38, 135, 0.20);
}

/* Hero scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}

.hero-scroll-indicator span {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--color-text-light);
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 300;
}

.hero-scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-text-light), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* Hero side decoration text */
.hero-side-text {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  z-index: 2;
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.06);
  font-weight: 300;
  white-space: nowrap;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* =============================================
   C. Mission / Vision
   ============================================= */
.mission {
  position: relative;
  padding: 180px 0;
  background: transparent;
  overflow: hidden;
}

/* Mission snap padding is in Snap Scroll Section Overrides block */

.mission-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out-expo);
}

.mission-grid-bg.visible {
  opacity: 1;
}

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-visual {
  position: relative;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-visual::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.5) 50%, transparent 80%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.mission-visual > * {
  position: relative;
  z-index: 1;
}

.mission-img {
  width: 100%;
}

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

.mission-jp {
  position: relative;
}

.mission-jp .mission-label {
  display: block;
  position: relative;
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(108, 187, 165, 0.7);
  margin-bottom: 4px;
  pointer-events: none;
}

.mission-label-line {
  display: none;
}

.mission-jp h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.5;
  margin-bottom: 36px;
}

.mission-jp > p {
  font-size: 17px;
  line-height: 2.1;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.mission-jp > p:last-of-type {
  margin-bottom: 0;
}

/* PURPOSE block inside mission/vision */
.purpose-block {
  margin-top: 80px;
}

.purpose-title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 20px;
}

.purpose-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: purpose;
}

.purpose-list li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 8px;
  padding-left: 2em;
  text-indent: -2em;
}

.purpose-list li::before {
  counter-increment: purpose;
  content: "①";
}

.purpose-list li:nth-child(1)::before { content: "①"; }
.purpose-list li:nth-child(2)::before { content: "②"; }
.purpose-list li:nth-child(3)::before { content: "③"; }
.purpose-list li:nth-child(4)::before { content: "④"; }
.purpose-list li:nth-child(5)::before { content: "⑤"; }

/* Mission Links */
.mission-links {
  display: flex;
  gap: 16px;
  margin-top: 48px;
}

.mission-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border: 1px solid #6cbba5;
  border-radius: 40px;
  color: #6cbba5;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.mission-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.mission-link svg {
  transition: transform 0.3s ease;
}

.mission-link:hover svg {
  transform: translateX(4px);
}


/* =============================================
   D. Service Section
   ============================================= */
.service {
  padding: var(--section-padding);
  background: transparent;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Liquid Glass service cards */
.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: var(--glass-radius);
  box-shadow:
    var(--glass-highlight),
    var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: background 0.4s var(--glass-transition), box-shadow 0.4s var(--glass-transition), transform 0.4s var(--glass-transition);
  overflow: hidden;
  color: var(--color-text);
}

.service-card:first-child {
  border-top: var(--glass-border);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease-out-expo);
  z-index: 1;
}

.service-card:hover {
  background: var(--glass-bg-hover);
  box-shadow:
    var(--glass-highlight-hover),
    var(--glass-shadow-hover);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-gray);
  min-height: 400px;
  padding: 0;
  overflow: hidden;
  transition: background 0.4s ease;
}

/* Service card image */
.service-card-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease-out-expo);
}

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

.service-card:hover .service-card-visual {
  background: var(--color-bg-gray);
}

/* Legacy icon fallback */
.service-card-visual .icon {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: 8px;
  color: var(--color-primary);
  transition: background 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-card-visual .icon {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.05);
}

.service-card-visual .icon svg {
  width: 64px;
  height: 64px;
  transition: stroke 0.3s ease;
}

.service-card:hover .service-card-visual .icon svg {
  stroke: #fff;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
}

.service-card-num {
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.service-card-content h3 {
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-card-content p {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tags li {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary-dark);
  background: rgba(108, 187, 165, 0.06);
  border: 1px solid rgba(108, 187, 165, 0.14);
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(8px) saturate(180%);
}

.service-more {
  display: flex;
  justify-content: center;
  margin-top: 96px;
}

/* =============================================
   D2. Case Study Section — Carousel
   ============================================= */
.casestudy {
  padding: var(--section-padding);
  padding-bottom: 100px;
  background: var(--color-bg-white);
}

/* Allow button shadow to render without being clipped by snap-section overflow */
.casestudy.snap-section {
  overflow: visible;
}

.casestudy .section-heading {
  margin-bottom: 56px;
}

/* Carousel container — overflow visible on sides for peek effect */
.casestudy-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 0 48px;
}

/* Track holds all slides in a row */
.casestudy-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s var(--ease-out-expo);
  will-change: transform;
  padding: 12px calc(12.5vw + 12px) 0;
}

/* Liquid Glass case study slides */
.casestudy-slide {
  flex: 0 0 calc(25vw - 24px);
  min-width: calc(25vw - 24px);
  display: block;
  border-radius: var(--glass-radius);
  overflow: hidden;
  background: var(--glass-bg);
  border: var(--glass-border);
  box-shadow:
    var(--glass-highlight),
    var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--color-text);
  transition: box-shadow 0.4s var(--glass-transition), transform 0.4s var(--glass-transition), background 0.4s var(--glass-transition);
}

.casestudy-slide:hover {
  background: var(--glass-bg-hover);
  box-shadow:
    var(--glass-highlight-hover),
    var(--glass-shadow-hover);
  transform: translateY(-6px);
  color: var(--color-text);
}

/* 16:9 image area */
.casestudy-slide-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-bg-gray);
  overflow: hidden;
}

.casestudy-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo);
}

.casestudy-slide:hover .casestudy-slide-img img {
  transform: scale(1.05);
}

.casestudy-slide-img .casestudy-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--color-primary);
  opacity: 0.3;
}

.casestudy-slide-img .casestudy-card-placeholder svg {
  width: 48px;
  height: 48px;
}

.casestudy-slide-body {
  padding: 24px 24px 28px;
}

.casestudy-slide-body .casestudy-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(108, 187, 165, 0.06);
  border: 1px solid rgba(108, 187, 165, 0.14);
  color: var(--color-primary-dark);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.casestudy-slide-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
}

.casestudy-slide-body p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Carousel nav controls */
.casestudy-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

/* Liquid Glass carousel buttons */
.casestudy-carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.50);
  border-radius: 50%;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.60) 0%,
    rgba(255,255,255,0.35) 100%);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.55),
    0 2px 8px rgba(0,0,0,0.06);
  color: var(--color-secondary);
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.casestudy-carousel-btn:hover {
  background: linear-gradient(135deg,
    rgba(108,187,165,0.85) 0%,
    rgba(74,158,134,0.90) 100%);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  transform: scale(1.05);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.35),
    0 4px 16px rgba(108,187,165,0.25);
}

/* Pagination dots */
.casestudy-carousel-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.casestudy-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.casestudy-carousel-dot:hover {
  background: var(--color-primary);
  transform: scale(1.2);
}

.casestudy-carousel-dot.active {
  background: var(--color-primary);
  transform: scale(1.25);
}

/* "事例紹介一覧へ" button */
.casestudy-more {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  padding-bottom: 20px;
}

/* =============================================
   Recruit Section
   ============================================= */
.recruit {
  padding: var(--section-padding);
  background: var(--color-bg-white);
}

/* Recruit Photo Grid Background */
.recruit {
  position: relative;
  overflow: hidden;
}

.recruit-photo-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  z-index: 0;
}

.recruit-photo {
  overflow: hidden;
}

.recruit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recruit-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 1;
}

.recruit-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}

.recruit-content {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.6);
  padding: 48px 40px;
  border-radius: 12px;
}

.recruit .section-heading {
  text-align: center;
}

.recruit-lead {
  font-size: 17px;
  color: var(--color-text-light);
  line-height: 2.1;
  margin-bottom: 40px;
}

/* Liquid Glass recruit card */
.recruit-hero-card {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  border-radius: var(--glass-radius-lg);
  overflow: hidden;
  background: rgba(74, 158, 134, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.20),
    inset 0 0 20px -6px rgba(255, 255, 255, 0.15),
    0 12px 48px rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(8px) saturate(180%);
  color: #fff;
  transition: transform 0.5s var(--glass-transition), box-shadow 0.5s var(--glass-transition);
}

.recruit-hero-card:hover {
  transform: translateY(-8px);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.30),
    inset 0 0 24px -4px rgba(255, 255, 255, 0.22),
    0 24px 64px rgba(31, 38, 135, 0.24);
  color: #fff;
}

.recruit-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 80%, rgba(108, 187, 165, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(108, 187, 165, 0.15) 0%, transparent 40%);
  pointer-events: none;
}

.recruit-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 48px 40px;
}

.recruit-hero-en {
  font-family: var(--font-condensed);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: 4px;
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0.95;
}

.recruit-hero-catch {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}

.recruit-hero-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.15) 0%,
    rgba(255,255,255,0.05) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.20);
  color: #fff;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.recruit-hero-card:hover .recruit-hero-arrow {
  background: linear-gradient(135deg,
    rgba(255,255,255,0.30) 0%,
    rgba(255,255,255,0.12) 100%);
  border-color: rgba(255,255,255,0.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.30), 0 4px 12px rgba(0,0,0,0.10);
  transform: translateX(4px);
}

/* =============================================
   E. Numbers / Achievements
   ============================================= */
.numbers {
  padding: var(--section-padding);
  background: var(--color-primary);
  color: #fff;
}

.numbers .section-heading .jp {
  color: #fff;
}

.numbers .number-card {
  color: #fff;
}

/* Numbers bar chart canvas */
.numbers-chart-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.number-card {
  text-align: center;
}

/* Liquid Glass number cards (dark variant) */
.number-card-inner {
  position: relative;
  padding: 40px 16px;
  background: var(--glass-dark-bg);
  border: var(--glass-dark-border);
  border-radius: var(--glass-radius);
  box-shadow:
    var(--glass-dark-highlight),
    var(--glass-dark-shadow);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  transition: background 0.3s var(--glass-transition), box-shadow 0.3s var(--glass-transition), transform 0.3s var(--glass-transition);
  overflow: hidden;
}

.number-card-inner:hover {
  background: var(--glass-dark-bg-hover);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.30),
    inset 0 0 20px -4px rgba(255,255,255,0.20),
    0 12px 40px rgba(0,0,0,0.18);
  transform: translateY(-4px);
}

.number-card-deco {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.number-card .value {
  font-family: var(--font-heading);
  font-size: clamp(52px, 5.5vw, 72px);
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  position: relative;
}

.number-card .unit {
  font-family: var(--font-heading);
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  letter-spacing: 1px;
}

.number-card .label {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

/* =============================================
   F. News / Topics
   ============================================= */
.news {
  padding: var(--section-padding);
  background: var(--color-bg-white);
}

.news .container {
  max-width: 1100px;
}

.news .news-card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.news-more-wrap {
  text-align: center;
  margin-top: 40px;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 48px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: var(--glass-radius-sm);
  background: #6cbba5;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.30),
    inset 0 0 12px -4px rgba(255, 255, 255, 0.20),
    0 6px 24px rgba(31, 38, 135, 0.15);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  position: relative;
  overflow: hidden;
  transition:
    background 0.3s var(--glass-transition),
    transform 0.2s var(--glass-transition),
    box-shadow 0.3s var(--glass-transition),
    gap 0.3s var(--glass-transition);
}

.btn-more:hover {
  color: #fff;
  background: #5aab95;
  transform: translateY(-2px);
  gap: 12px;
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.40),
    inset 0 0 16px -3px rgba(255, 255, 255, 0.30),
    0 10px 36px rgba(31, 38, 135, 0.20);
}

.btn-more svg {
  transition: transform 0.3s var(--ease-out-expo);
}

.btn-more:hover svg {
  transform: translateX(4px);
}

.news-date {
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-light);
  letter-spacing: 1px;
  flex-shrink: 0;
}

.news-tag {
  font-size: 13px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 100px;
  background: rgba(108, 187, 165, 0.06);
  border: 1px solid rgba(108, 187, 165, 0.14);
  color: var(--color-primary-dark);
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.news-tag--service {
  background: rgba(74, 158, 134, 0.1);
  color: var(--color-primary-dark);
}

.news-tag--media {
  background: rgba(44, 110, 94, 0.08);
  color: var(--color-secondary);
}

.news-tag--recruit {
  background: rgba(108, 187, 165, 0.1);
  color: var(--color-primary-dark);
}

.news-title {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-secondary);
  line-height: 1.5;
}

.news-arrow {
  flex-shrink: 0;
  color: var(--color-text-light);
  transition: color 0.3s ease, transform 0.3s ease;
}

.news-item:hover .news-arrow {
  color: var(--color-primary);
  transform: translateX(4px);
}

/* =============================================
   G. About / Company Info
   ============================================= */
.about {
  padding: var(--section-padding);
  background: #ffffff;
}

/* Liquid Glass about table */
.about-table {
  max-width: 800px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: var(--glass-radius);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.about-table dl {
  display: grid;
  grid-template-columns: 200px 1fr;
}

.about-table dt,
.about-table dd {
  padding: 24px 36px;
  font-size: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.about-table dt {
  font-weight: 700;
  color: var(--color-secondary);
  background: rgba(108, 187, 165, 0.04);
  letter-spacing: 0.5px;
}

.about-table dd {
  color: var(--color-text);
  line-height: 1.7;
}

.about-table dt:last-of-type,
.about-table dd:last-of-type {
  border-bottom: none;
}

/* =============================================
   H. Contact CTA
   ============================================= */
/* Liquid Glass contact CTA */
.contact-cta {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(160deg,
    rgba(108,187,165,1) 0%,
    rgba(74,158,134,1) 50%,
    rgba(58,135,113,1) 100%);
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.contact-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.4;
}

.contact-cta-inner {
  position: relative;
  z-index: 2;
}

.contact-cta .cta-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
  line-height: 1.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
}

/* =============================================
   I. Footer
   ============================================= */
/* Liquid Glass footer (dark) */
.site-footer {
  background: linear-gradient(180deg,
    rgba(26,26,26,0.95) 0%,
    rgba(20,20,20,1) 100%);
  padding: 64px 0 32px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 24px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 12px;
  line-height: 1.8;
}

.footer-sns {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  margin-left: 18px;
}

.footer-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.footer-sns a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.footer-nav {
  display: flex;
  gap: 64px;
}

.footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-group h4 {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.footer-nav-group a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s ease;
}

.footer-nav-group a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11px;
  letter-spacing: 0.5px;
}

.footer-policy {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer-policy a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.footer-policy a:hover {
  color: #fff;
}

/* =============================================
   Child Page — Shared Styles
   ============================================= */
.subpage-hero {
  position: relative;
  min-height: 60vh;
  padding: 120px 0 80px;
  background: #ffffff;
  display: flex;
  align-items: center;
  text-align: left;
  overflow: hidden;
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/img/bg/subpage-hero-bg.png") center 60% / cover no-repeat;
  opacity: 0.85;
  pointer-events: none;
}

.subpage-hero .container {
  position: relative;
  z-index: 1;
}

.subpage-hero .section-heading .en {
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 0;
}

.subpage-hero .section-heading {
  text-align: left;
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-light);
}

.breadcrumb a {
  color: var(--color-text);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb span {
  color: var(--color-text-light);
  opacity: 0.5;
}

/* Footer Breadcrumb */
.footer-breadcrumb {
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-white);
}

.footer-breadcrumb .breadcrumb {
  margin-bottom: 0;
}

.page-content {
  padding: 0 0 160px;
}

.news-single-page {
  position: relative;
  padding-top: 140px;
}

.news-single-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: url("../assets/img/bg/subpage-hero-bg.png") center 60% / cover no-repeat;
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}

.news-single-page .news-article-header {
  margin-bottom: 32px;
}

.news-single-page > .container {
  position: relative;
  z-index: 1;
}

.page-content .container {
  max-width: 1100px;
}

.page-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-primary);
}

.page-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-top: 12px;
  margin-bottom: 0;
}

.page-content p {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 20px;
}

.policy-signature {
  margin-top: 48px;
  text-align: right;
  line-height: 2;
}

.page-content ul,
.page-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
  list-style: disc;
}

.page-content li {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
}

/* Service detail page */
.service-detail-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.service-detail-info h2 {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 16px;
}

.service-detail-info p {
  color: var(--color-text-light);
}

.service-detail-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-gray);
  border-radius: 8px;
  padding: 48px;
  min-height: 280px;
}

.service-detail-visual svg {
  width: 120px;
  height: 120px;
  color: var(--color-primary);
}

.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.service-feature-card {
  padding: 32px;
  background: var(--color-bg-gray);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.service-feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.service-feature-card p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 0;
}

.service-flow {
  margin-bottom: 48px;
}

.service-flow-steps {
  display: flex;
  gap: 16px;
}

.service-flow-step {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  position: relative;
}

.service-flow-step::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid var(--color-primary);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.service-flow-step:last-child::after {
  display: none;
}

.service-flow-step .step-num {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.service-flow-step h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-secondary);
}

/* =============================================
   Service Page — Detailed Layout
   ============================================= */

/* Intro */
.svc-intro {
  padding: 0 0 80px;
  text-align: center;
}

.svc-intro-catch {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  color: var(--color-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.svc-intro-lead {
  font-size: 15px;
  line-height: 2.1;
  color: var(--color-text-light);
  margin-bottom: 48px;
}

.svc-intro-anchors {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.svc-anchor-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.svc-anchor-btn:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
  color: var(--color-secondary);
}

.svc-anchor-num {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--color-primary);
}

/* Service Detail Sections */
.svc-detail {
  padding: var(--section-padding);
  scroll-margin-top: var(--header-height);
  background: #ffffff;
}

.svc-detail[id] {
  scroll-margin-top: 100px;
}

.svc-detail > .container {
  padding: 0 60px;
}

.svc-detail + .svc-detail {
  border-top: 1px solid var(--color-border);
}

.svc-detail--gray {
  background: #ffffff;
}

.svc-detail-header {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

.svc-detail-num {
  display: block;
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.svc-detail-title {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 900;
  color: var(--color-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
}

.svc-detail-desc {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.svc-detail-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-gray);
  border-radius: 8px;
  padding: 0;
  min-height: 320px;
  overflow: hidden;
}

.svc-detail--gray .svc-detail-visual {
  background: var(--color-bg-gray);
}

.svc-detail-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.svc-detail-visual svg {
  width: 120px;
  height: 120px;
  color: var(--color-primary);
}

/* Feature Cards */
.svc-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.svc-feature-card {
  padding: 36px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.svc-detail--gray .svc-feature-card {
  background: #fff;
}

.svc-feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.svc-feature-icon svg {
  width: 28px;
  height: 28px;
}

.svc-feature-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.svc-feature-card p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-light);
}

/* Sub heading */
.svc-sub-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 24px;
}

/* Flow */
.svc-flow {
  margin-bottom: 48px;
}

/* Badges */
.svc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.svc-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--color-primary-light);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary-dark);
}

.svc-badge svg {
  flex-shrink: 0;
  color: var(--color-primary);
}

/* BPaaS Highlight */
.svc-highlight {
  margin-top: 16px;
}

.svc-highlight-inner {
  padding: 48px;
  background: var(--color-secondary);
  border-radius: 8px;
  color: #fff;
}

.svc-highlight-label {
  margin-bottom: 24px;
}

.svc-highlight-inner h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 16px;
}

.svc-highlight-inner p {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.svc-highlight-stats {
  display: flex;
  gap: 40px;
}

.svc-highlight-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.svc-highlight-stat-num {
  font-family: var(--font-condensed);
  font-size: 42px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 1px;
  line-height: 1.2;
}

.svc-highlight-stat-num small {
  font-size: 24px;
  font-weight: 400;
}

.svc-highlight-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}

/* Strengths Section */
.svc-strengths {
  padding: var(--section-padding);
  background: #f0f9f6;
  color: var(--color-text);
}

.svc-strengths .section-heading .en {
  color: rgba(108, 187, 165, 0.4);
}

.svc-strengths .section-heading .jp {
  color: var(--color-secondary);
}

.svc-strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.svc-strength-card {
  padding: 40px 32px;
  background: #ffffff;
  border: none;
  border-radius: 8px;
}

.svc-strength-num {
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
  color: rgba(108, 187, 165, 0.5);
  margin-bottom: 20px;
}

.svc-strength-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #6CBBA5;
  margin-bottom: 12px;
}

.svc-strength-card p {
  font-size: 14px;
  line-height: 1.9;
  color: #666666;
}

/* =============================================
   Recruit Page
   ============================================= */

/* Recruit Message */
.recruit-msg {
  padding: 100px 0 80px;
  text-align: center;
}

.recruit-msg-catch {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--color-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.recruit-msg-lead {
  font-size: 15px;
  line-height: 2.1;
  color: var(--color-text-light);
}

/* Culture */
.recruit-culture {
  padding: var(--section-padding);
  background: var(--color-bg-white);
}

.recruit-culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.recruit-culture-card {
  padding: 40px 32px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.recruit-culture-card:hover {
  border-color: rgba(108, 187, 165, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.recruit-culture-num {
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.recruit-culture-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.recruit-culture-card p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-light);
}

/* Recruit Points List (5 numbered items) */
.recruit-points-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.recruit-point-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
}

.recruit-point-item:first-child {
  border-top: 1px solid var(--color-border);
}

.recruit-point-item .recruit-point-num {
  font-family: var(--font-condensed);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-primary);
  width: 56px;
  flex-shrink: 0;
  text-align: center;
}

.recruit-point-item .recruit-point-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-secondary);
  line-height: 1.6;
}

/* Benefit / Merit Section */
.recruit-benefits-section {
  padding: var(--section-padding);
  background: var(--color-bg-gray);
}

.recruit-merit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.recruit-merit-card {
  padding: 40px 32px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.recruit-merit-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.recruit-merit-num {
  font-family: var(--font-condensed);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.recruit-merit-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.recruit-merit-card p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-light);
}

/* Interview Section */
.recruit-interview {
  padding: var(--section-padding);
  background: var(--color-bg-white);
}

.recruit-interview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.recruit-interview-card {
  display: block;
  padding: 32px 28px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.recruit-interview-card:hover {
  border-color: rgba(108, 187, 165, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
  color: var(--color-text);
}

.recruit-interview-body {
  display: flex;
  flex-direction: column;
}

.recruit-interview-role {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.recruit-interview-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.recruit-interview-card p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text-light);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* FAQ Section */
.recruit-faq {
  padding: var(--section-padding);
  background: var(--color-bg-gray);
}

.recruit-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.recruit-faq-item {
  border-bottom: 1px solid var(--color-border);
}

.recruit-faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.recruit-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-secondary);
  line-height: 1.6;
  gap: 16px;
  font-family: inherit;
}

.recruit-faq-q:hover {
  color: var(--color-primary);
}

.recruit-faq-icon {
  flex-shrink: 0;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.recruit-faq-item.is-open .recruit-faq-icon {
  transform: rotate(45deg);
}

.recruit-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.recruit-faq-item.is-open .recruit-faq-a {
  max-height: 300px;
}

.recruit-faq-a p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-light);
  padding: 0 0 24px;
}

/* Benefits */
.recruit-benefits {
  padding: var(--section-padding);
  background: var(--color-bg-gray);
}

.recruit-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.recruit-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.recruit-benefit:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.recruit-benefit svg {
  flex-shrink: 0;
  color: var(--color-primary);
}

/* Job listings */
.recruit-jobs {
  padding: var(--section-padding);
}

.recruit-job-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.recruit-job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
  background: none;
  color: var(--color-text);
  transition: color 0.3s ease;
}

.recruit-job-card:first-child {
  border-top: 1px solid var(--color-border);
}

.recruit-job-card:hover {
  color: var(--color-primary);
}

.recruit-job-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.recruit-job-header h3 {
  font-size: 17px;
  font-weight: 600;
  color: inherit;
}

.recruit-job-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-text-light);
  transition: all 0.3s ease;
}

.recruit-job-card:hover .recruit-job-arrow {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateX(4px);
}

/* =============================================
   Contact Page
   ============================================= */

.contact-page {
  padding: 0 0 160px;
}

.contact-page-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 860px;
  margin: 0 auto;
}

.contact-page-catch {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  color: var(--color-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: center;
}

.contact-page-lead {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-light);
  margin-bottom: 0;
  text-align: center;
}

.contact-page-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-page-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-page-item svg {
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 2px;
}

.contact-page-item-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-primary-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-page-item span:last-child {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text);
}

.contact-page-form-wrap {
  padding: 48px;
  background: var(--color-bg-gray);
  border-radius: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* News list page */
.news-list-page .news-list {
  max-width: none;
  margin: 0 auto;
}

/* --- News filter bar --- */
.news-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.news-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.news-filter-btn {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  background: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-filter-btn:hover,
.news-filter-btn.active {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.news-year-select {
  appearance: none;
  -webkit-appearance: none;
  padding: 8px 36px 8px 16px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-bg-white) url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  cursor: pointer;
  transition: border-color 0.3s ease;
  flex-shrink: 0;
}

.news-year-select:hover,
.news-year-select:focus {
  border-color: var(--color-primary);
  outline: none;
}

/* --- News card grid --- */
.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-bg-white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  color: var(--color-text);
}

.news-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  color: var(--color-text);
}

.news-card-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: var(--color-bg-gray);
  overflow: hidden;
}

.news-card-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out-quart);
}

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

.news-card-thumb-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
}

.news-card-thumb-placeholder svg {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.25);
}

.news-card-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px;
  flex: 1;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-card-meta .news-date {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-light);
  letter-spacing: 0.5px;
}

.news-card-meta .news-tag {
  font-size: 11px;
  padding: 2px 10px;
}

.news-card-title {
  margin: 16px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* News detail page */
.news-detail-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.news-detail-header h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.6;
}

.news-detail-hero {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.news-detail-hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.news-detail-body {
  margin-bottom: 48px;
}

.news-detail-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--color-secondary);
}

.news-detail-body h4 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--color-secondary);
}

.news-detail-body p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.news-detail-body ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.news-detail-body ul li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.news-detail-body a {
  color: var(--color-primary);
  text-decoration: underline;
}

.news-detail-body a:hover {
  opacity: 0.7;
}

.news-detail-img {
  margin: 24px 0;
  border-radius: 8px;
  overflow: hidden;
}

.news-detail-img img {
  max-width: 100%;
  height: auto;
  display: block;
}

.news-detail-nav {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.news-detail-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-light);
}

.news-detail-nav a:hover {
  color: var(--color-primary);
}

/* Company page */
.company-page .about-table {
  max-width: 100%;
}

/* Recruit page */
.recruit-page .recruit-inner {
  margin-bottom: 60px;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
  border-color: rgba(108, 187, 165, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.job-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-secondary);
  margin: 0 0 8px;
}

.job-card p {
  font-size: 13px;
  color: var(--color-text-light);
  margin: 0;
}

.job-card .btn-cta {
  flex-shrink: 0;
}

/* Contact page */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.form-group label .required {
  font-size: 11px;
  color: #e53e3e;
  margin-left: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-bg-white);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 40px;
}

/* =============================================
   Case Study List Page
   ============================================= */
.case-list-page .container {
  max-width: 1200px;
}

.case-list-page .page-content {
  padding-top: 80px;
}

.case-list-lead {
  text-align: center;
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 48px;
  line-height: 1.8;
}

/* Tag Filter */
.case-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.case-filter-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  background: var(--color-bg-white);
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.case-filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.case-filter-btn.active {
  border-color: var(--color-primary);
  color: #fff;
  background: var(--color-primary);
}

/* Case List Grid — 3 columns */
.case-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Case List Card */
.case-list-card {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s var(--ease-out-quart);
}

.case-list-card:hover {
  border-color: rgba(108, 187, 165, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
  color: var(--color-text);
}

.case-list-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-bg-gray);
  overflow: hidden;
}

.case-list-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out-quart);
}

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

.case-list-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--color-primary);
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.case-list-card:hover .case-list-card-placeholder {
  opacity: 0.5;
}

.case-list-card-placeholder svg {
  width: 48px;
  height: 48px;
}

.case-list-card-body {
  padding: 24px 24px 28px;
}

.case-list-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.case-list-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  letter-spacing: 0.5px;
}

.case-list-card-company {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
}

.case-list-card-desc {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Pagination */
.case-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}

.case-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-bg-white);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-condensed);
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.case-page-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.case-page-btn.active {
  border-color: var(--color-primary);
  color: #fff;
  background: var(--color-primary);
}

.case-page-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
  cursor: default;
}

.case-page-prev,
.case-page-next {
  min-width: 44px;
  padding: 0;
}

/* Child page CTA */
.child-cta {
  padding: 80px 0;
  background: var(--color-bg-gray);
  text-align: center;
}

.child-cta p {
  font-size: 15px;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.child-cta--green {
  background: #6cbba5;
}

.child-cta--green p {
  color: #fff;
}

/* =============================================
   Case Study Detail Page
   ============================================= */
.case-detail {
  position: relative;
  padding: 140px 0 120px;
  background: var(--color-bg-white);
}

.case-detail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: url("../assets/img/bg/subpage-hero-bg.png") center 60% / cover no-repeat;
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}

.case-detail-header {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.case-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.case-detail-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  letter-spacing: 0.5px;
}

.case-detail-company {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.case-detail-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Hero Image */
.case-detail-hero-img {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0 24px;
}

.case-detail-hero-img .case-detail-img-inner {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-bg-gray);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-detail-hero-img .case-detail-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-detail-hero-img .case-detail-img-placeholder {
  color: var(--color-primary);
  opacity: 0.25;
}

.case-detail-hero-img .case-detail-img-placeholder svg {
  width: 80px;
  height: 80px;
}

/* Detail Body */
.case-detail-body {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Lead */
.case-detail-lead {
  margin-top: 48px;
  font-size: 16px;
  line-height: 2;
  color: var(--color-text);
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}

/* Interviewee */
.case-detail-person {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--color-bg-gray);
  border-radius: 8px;
}

.case-detail-person-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}

.case-detail-person-avatar svg {
  width: 28px;
  height: 28px;
}

.case-detail-person-info {
  flex: 1;
}

.case-detail-person-role {
  font-size: 12px;
  color: var(--color-text-light);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.case-detail-person-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-secondary);
}

/* Summary Boxes (導入の目的 / 課題) */
.case-detail-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.case-detail-summary-box {
  padding: 28px 28px 24px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
}

.case-detail-summary-box--purpose {
  border-left: 4px solid var(--color-primary);
}

.case-detail-summary-box--challenge {
  border-left: 4px solid var(--color-secondary);
}

.case-detail-summary-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.case-detail-summary-box--purpose .case-detail-summary-label {
  color: var(--color-primary);
}

.case-detail-summary-box--challenge .case-detail-summary-label {
  color: var(--color-secondary);
}

.case-detail-summary-label svg {
  width: 18px;
  height: 18px;
}

.case-detail-summary-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-detail-summary-box li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text);
  padding-left: 16px;
  position: relative;
}

.case-detail-summary-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.case-detail-summary-box--purpose li::before {
  background: var(--color-primary);
}

.case-detail-summary-box--challenge li::before {
  background: var(--color-secondary);
}

/* Article Body Content */
.case-detail-content {
  margin-top: 56px;
}

.case-detail-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.6;
  margin-top: 56px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-primary);
}

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

.case-detail-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.case-detail-content p {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 20px;
}

/* Q&A Interview Style */
.case-detail-qa {
  margin-top: 32px;
}

.case-detail-q {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  margin-top: 40px;
}

.case-detail-q:first-child {
  margin-top: 0;
}

.case-detail-q-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-condensed);
  letter-spacing: 0.5px;
}

.case-detail-q-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.7;
  padding-top: 2px;
}

.case-detail-a {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 20px;
  padding-left: 40px;
}

/* Inline Image in Article */
.case-detail-img {
  margin: 36px 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-bg-gray);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-detail-img-placeholder {
  color: var(--color-primary);
  opacity: 0.2;
}

.case-detail-img-placeholder svg {
  width: 56px;
  height: 56px;
}

/* Highlight Box */
.case-detail-highlight {
  margin: 40px 0;
  padding: 28px 32px;
  background: var(--color-primary-light);
  border-radius: 8px;
  border-left: 4px solid var(--color-primary);
}

.case-detail-highlight p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 0;
}

/* Navigation Back */
.case-detail-nav {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

.case-detail-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-light);
  padding: 12px 32px;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.case-detail-nav-back:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: var(--color-primary-light);
}

/* =============================================
   Company Page
   ============================================= */

/* Company Section Padding */
.company-section {
  padding: var(--section-padding);
}

.company-section--dark {
  background: var(--color-bg-dark);
  color: #fff;
}

.company-section--accent {
  background: #f0f9f6;
  color: var(--color-text);
}

.company-section--gray {
  background: var(--color-bg-gray);
}

/* Company Hero */
.company-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.company-hero-img {
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-hero-placeholder {
  color: rgba(255, 255, 255, 0.08);
}

.company-hero-placeholder svg {
  width: 200px;
  height: 200px;
}

.company-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.company-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 64px;
}

.company-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.company-hero-breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.company-hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

.company-hero-breadcrumb span:last-child {
  color: rgba(255, 255, 255, 0.8);
}

.company-hero-heading {
  text-align: left;
}

.company-hero-heading .en {
  color: rgba(255, 255, 255, 0.5);
}

.company-hero-heading .jp {
  color: #fff;
}

/* 代表メッセージ */
#message > .container,
#history > .container,
#access > .container {
  max-width: 960px;
}

.company-message {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  margin-top: 56px;
  align-items: start;
}

.company-message-photo {
  width: 280px;
  height: 360px;
  border-radius: 8px;
  background: var(--color-bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.company-message-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.company-message-name {
  margin-top: 20px;
  text-align: center;
}

.company-message-role {
  display: block;
  font-size: 12px;
  color: var(--color-text-light);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.company-message-person {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 1px;
}

.company-message-catch {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  color: var(--color-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.company-message-body p {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 20px;
}

.company-message-body p:last-child {
  margin-bottom: 0;
}

/* MISSION / VISION / PURPOSE */
.company-mvp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.company-mvp-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.company-section--accent .company-mvp-card {
  border-color: rgba(108, 187, 165, 0.2);
  background: #fff;
}

.company-section--accent .company-mvp-card:hover {
  border-color: rgba(108, 187, 165, 0.2);
  background: #fff;
}

.company-section--accent .company-mvp-label-en {
  color: #6cbba5;
  border-color: #6cbba5;
}

.company-section--accent .company-mvp-title {
  color: #60A894;
}

.company-section--accent .company-mvp-desc {
  color: var(--color-text-light);
}

.company-purpose-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: purpose;
  text-align: left;
}

.company-purpose-list li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 8px;
  padding-left: 2em;
  text-indent: -2em;
}

.company-purpose-list li:nth-child(1)::before { content: "\2460\00a0"; }
.company-purpose-list li:nth-child(2)::before { content: "\2461\00a0"; }
.company-purpose-list li:nth-child(3)::before { content: "\2462\00a0"; }
.company-purpose-list li:nth-child(4)::before { content: "\2463\00a0"; }
.company-purpose-list li:nth-child(5)::before { content: "\2464\00a0"; }

.company-mvp-card {
  padding: 48px 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.company-mvp-card:hover {
  border-color: var(--color-primary);
  background: rgba(108, 187, 165, 0.06);
}

.company-mvp-label-en {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  padding: 6px 16px;
  border: 1px solid var(--color-primary);
  border-radius: 100px;
  margin-bottom: 24px;
}

.company-mvp-lead {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.company-mvp-title {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  color: #6cbba5;
  line-height: 1.7;
  margin-bottom: 20px;
}

.company-mvp-desc {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
}

/* 認定パートナー */
.company-partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.company-partner-card {
  padding: 20px 28px;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--color-border);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.company-partner-card:hover {
  box-shadow: none;
  transform: none;
}

.company-partner-icon {
  width: 160px;
  height: 80px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-partner-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.company-partner-card h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.company-partner-card p {
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 16px;
}

.company-partner-note {
  display: block;
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* 役員紹介 */
.company-officers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  margin-top: 56px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.company-officer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.company-officer-photo {
  width: 200px;
  height: 260px;
  border-radius: 8px;
  background: var(--color-bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.company-officer-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-officer-placeholder {
  color: var(--color-primary);
  opacity: 0.2;
}

.company-officer-placeholder svg {
  width: 48px;
  height: 48px;
}

.company-officer-role {
  display: block;
  font-size: 12px;
  color: var(--color-text-light);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.company-officer-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.company-officer-bio {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text);
}
.company-officer-sns {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.company-officer-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 31, 51, 0.2);
  border-radius: 50%;
  color: var(--color-text);
  transition: background 0.3s, color 0.3s;
}
.company-officer-sns a:hover {
  color: rgba(0, 31, 51, 0.2);
}

/* 沿革 Timeline */
.company-timeline {
  margin-top: 56px;
  position: relative;
  padding-left: 0;
}

.company-timeline::before {
  content: "";
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.company-timeline-item {
  display: flex;
  gap: 48px;
  padding: 24px 0;
  position: relative;
}

.company-timeline-item::before {
  content: "";
  position: absolute;
  left: 115px;
  top: 38px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-bg-gray);
  z-index: 1;
}

.company-timeline-date {
  flex-shrink: 0;
  width: 90px;
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-secondary);
  letter-spacing: 1px;
  padding-top: 0;
}

.company-timeline-content {
  flex: 1;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  padding-left: 32px;
  padding-top: 4px;
}

/* アクセスマップ */
.company-access {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
}

.company-access-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 16px;
}

.company-access-info p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 24px;
}

.company-access-routes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.company-access-route {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text);
}

.company-access-route svg {
  flex-shrink: 0;
  color: var(--color-primary);
}

.company-access-map {
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-bg-gray);
  min-height: 360px;
}

.company-access-map iframe {
  display: block;
}

/* =============================================
   Maximalist — Section Video Backgrounds
   ============================================= */
.section-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.section-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  opacity: var(--max-video-opacity);
}

.section-video-overlay {
  position: absolute;
  inset: 0;
  background: var(--max-video-overlay);
  z-index: 1;
}

.numbers .section-video-overlay {
  background: linear-gradient(180deg,
    rgba(108,187,165,0.65) 0%, rgba(108,187,165,0.45) 50%, rgba(108,187,165,0.65) 100%);
}

.contact-cta .section-video-overlay {
  background: var(--max-video-overlay-dark);
}

/* Ensure content sits above video */
.snap-section > .container {
  position: relative;
  z-index: 2;
}

/* Hero children: keep their original position, just ensure z-index */
.hero-content {
  z-index: 3;
}

.hero-overlay,
.hero-blur-accent {
  z-index: 1;
}

.hero-scroll-indicator {
  z-index: 3;
}

.mission-grid-bg {
  z-index: 1;
}

/* Contact inner */
.contact-cta-inner {
  position: relative;
  z-index: 3;
}

.contact-canvas {
  z-index: 2;
}

@media (max-width: 768px) {
  .section-video-bg {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-video-bg {
    display: none;
  }
}

/* =============================================
   Maximalist — Section Watermarks
   ============================================= */
.section-watermark {
  position: absolute;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: var(--max-watermark-font);
  font-weight: 900;
  letter-spacing: -4px;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: var(--max-watermark-opacity);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 0.85;
}

/* Dark/teal sections use white watermark */
.numbers .section-watermark,
.contact-cta .section-watermark {
  color: #fff;
  opacity: 0.06;
}

/* Numbers section watermark — on teal bg */
.numbers .section-watermark {
  opacity: 0.08;
}

/* Per-section watermark positioning */
.hero .section-watermark {
  bottom: 10%;
  left: -2%;
  transform: rotate(-8deg);
}

.mission .section-watermark {
  top: 8%;
  right: -2%;
}

.service .section-watermark {
  bottom: 12%;
  left: -2%;
}

.casestudy .section-watermark {
  top: 8%;
  right: -2%;
}

.numbers .section-watermark {
  top: 10%;
  left: 3%;
}

.recruit .section-watermark {
  bottom: 8%;
  left: -2%;
  right: auto;
}

.contact-cta .section-watermark {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .section-watermark {
    font-size: clamp(60px, 14vw, 120px);
    opacity: 0.03;
  }
}

/* =============================================
   Maximalist — Decorative Geometric Shapes
   ============================================= */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(108, 187, 165, 0.12);
  pointer-events: none;
  z-index: 1;
}

.deco-circle--1 {
  width: 300px;
  height: 300px;
  top: -60px;
  right: -80px;
}

.deco-circle--2 {
  width: 200px;
  height: 200px;
  bottom: -40px;
  left: -60px;
}

.deco-circle--3 {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 5%;
}

/* Dark sections: white deco circles */
.numbers .deco-circle,
.contact-cta .deco-circle {
  border-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .deco-circle {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .deco-circle {
    display: none;
  }
}

/* =============================================
   Maximalist — Gradient Mesh Blobs
   ============================================= */
.section-blur-accent {
  position: absolute;
  border-radius: 9999px;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
  background: var(--color-primary);
}

.mission .section-blur-accent {
  width: 500px;
  height: 300px;
  top: 20%;
  right: -10%;
}

.service .section-blur-accent {
  width: 400px;
  height: 250px;
  bottom: 10%;
  left: -8%;
}

.recruit .section-blur-accent {
  width: 450px;
  height: 280px;
  top: 15%;
  left: -5%;
}

@media (max-width: 768px) {
  .section-blur-accent {
    opacity: 0.15;
    filter: blur(60px);
  }
  .mission .section-blur-accent {
    width: 250px;
    height: 150px;
  }
  .service .section-blur-accent {
    width: 200px;
    height: 130px;
  }
  .recruit .section-blur-accent {
    width: 220px;
    height: 140px;
  }
}

/* =============================================
   Snap Scroll Section Overrides (Desktop)
   - Header height is offset via padding-top.
   - Service card images use aspect-ratio for responsive sizing.
   ============================================= */
@media (min-width: 769px) {

  /* ---- Global: offset for fixed header ---- */
  .snap-scroll .snap-section:not(:first-child) {
    padding-top: var(--header-height);
  }

  /* All snap-section > .container fill remaining space */
  .snap-scroll .snap-section > .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    overflow: hidden;
  }
  /* Case Study: container is heading only, carousel is sibling */
  .snap-scroll .casestudy > .container {
    flex: 0 0 auto;
    justify-content: flex-start;
  }

  .snap-scroll .section-heading {
    margin-bottom: clamp(16px, 2vh, 32px);
    flex-shrink: 0;
  }
  .snap-scroll .section-lead {
    margin-top: 8px;
  }

  /* ---- Mission ---- */
  .snap-scroll .mission {
    padding-bottom: clamp(16px, 3vh, 40px);
  }
  .snap-scroll .mission-inner {
    gap: clamp(24px, 4vh, 48px);
    flex: 1;
    min-height: 0;
  }
  .snap-scroll .mission-img {
    max-height: 100%;
  }
  .snap-scroll .mission-img img {
    max-height: 100%;
    width: auto;
  }
  .snap-scroll .mission-jp h2 {
    font-size: clamp(22px, 2.8vw, 42px);
    margin-bottom: clamp(16px, 2vh, 36px);
  }
  .snap-scroll .mission-jp > p {
    font-size: clamp(14px, 1.2vw, 17px);
    line-height: 1.9;
    margin-bottom: clamp(8px, 1vh, 16px);
  }
  .snap-scroll .purpose-block {
    margin-top: clamp(32px, 5vh, 80px);
  }
  .snap-scroll .purpose-title {
    font-size: clamp(22px, 2.8vw, 42px);
    margin-bottom: clamp(8px, 1vh, 16px);
  }
  .snap-scroll .purpose-list li {
    font-size: clamp(12px, 1.1vw, 15px);
    line-height: 1.7;
    margin-bottom: 4px;
  }

  /* ---- Service ---- */
  .snap-scroll .service {
    padding-bottom: clamp(12px, 2vh, 20px);
  }
  .snap-scroll .service-grid {
    flex-direction: row;
    gap: clamp(8px, 1.2vw, 16px);
    flex: 0 1 auto;
    min-height: 0;
    align-items: stretch;
  }
  .snap-scroll .service-card {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    border-bottom: none;
    border: var(--glass-border);
    border-radius: var(--glass-radius);
    min-height: 0;
  }
  .snap-scroll .service-card:first-child {
    border-top: var(--glass-border);
  }
  .snap-scroll .service-card::before {
    height: 4px;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
  }
  .snap-scroll .service-card:hover::before {
    transform: scaleX(1);
  }
  /* Image area: fixed aspect-ratio, no stretch */
  .snap-scroll .service-card-visual {
    min-height: 0;
    flex: 0 0 auto;
    aspect-ratio: 5 / 3;
  }
  .snap-scroll .service-card-img {
    min-height: 0;
    height: 100%;
  }
  .snap-scroll .service-card-body {
    padding: clamp(10px, 1.5vh, 16px) clamp(14px, 1.2vw, 20px);
    flex: 0 0 auto;
    overflow: hidden;
  }
  .snap-scroll .service-card-num {
    margin-bottom: clamp(4px, 0.5vh, 8px);
    font-size: 13px;
  }
  .snap-scroll .service-card-content h3 {
    font-size: clamp(16px, 1.6vw, 22px);
    margin-bottom: clamp(6px, 0.8vh, 12px);
  }
  .snap-scroll .service-card-content p {
    font-size: clamp(12px, 1vw, 14px);
    line-height: 1.7;
    margin-bottom: clamp(6px, 0.8vh, 12px);
  }
  .snap-scroll .service-tags {
    gap: 6px;
  }
  .snap-scroll .service-tags li {
    font-size: 12px;
    padding: 4px 10px;
  }
  .snap-scroll .service-more {
    margin-top: clamp(16px, 3vh, 48px);
    flex-shrink: 0;
  }

  /* ---- Case Study ---- */
  .snap-scroll .casestudy {
    padding-bottom: clamp(20px, 3vh, 48px);
  }
  .snap-scroll .casestudy-carousel {
    flex: 0 1 auto;
    min-height: 0;
    padding-bottom: clamp(16px, 2vh, 48px);
  }
  .snap-scroll .casestudy-slide-img {
    aspect-ratio: 16 / 9;
  }
  .snap-scroll .casestudy-slide-body {
    padding: clamp(12px, 1.5vh, 24px) clamp(16px, 1.2vw, 24px);
  }

  /* ---- Numbers ---- */
  .snap-scroll .numbers {
    padding-bottom: clamp(24px, 4vh, 60px);
  }
  .snap-scroll .numbers .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .snap-scroll .number-card-inner {
    padding: clamp(24px, 3vh, 48px) 16px clamp(20px, 2.5vh, 40px);
  }
  .snap-scroll .number-card .value {
    font-size: clamp(36px, 5vw, 72px);
  }
  .snap-scroll .number-card .label {
    margin-top: clamp(8px, 1vh, 16px);
  }

  /* ---- Recruit ---- */
  .snap-scroll .recruit {
    padding-bottom: clamp(20px, 3vh, 48px);
  }
  .snap-scroll .recruit-inner {
    gap: clamp(24px, 4vw, 64px);
  }
  .snap-scroll .recruit-lead {
    font-size: clamp(14px, 1.2vw, 17px);
    margin-bottom: clamp(16px, 2vh, 40px);
    line-height: 1.9;
  }
  .snap-scroll .recruit-points {
    margin-bottom: clamp(16px, 2vh, 36px);
  }

  /* ---- News ---- */
  .snap-scroll .news {
    padding-bottom: clamp(20px, 3vh, 48px);
  }
  .snap-scroll .news .container {
    max-width: 1100px;
  }

  /* ---- Contact + Footer (combined section) ---- */
  .snap-scroll .snap-footer-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-height: 100vh;
  }
  .snap-scroll .snap-footer-wrap .contact-cta {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 3vh, 48px) 0;
  }
  .snap-scroll .snap-footer-wrap .site-footer {
    flex-shrink: 0;
  }

  /* ---- Marquee inside snap sections ---- */
  .snap-scroll .marquee-section {
    border-top: none;
    border-bottom: none;
    padding: clamp(8px, 1.5vh, 20px) 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    opacity: 0.35;
  }
}

/* =============================================
   Custom Cursor
   ============================================= */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  pointer-events: none;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-circle {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--color-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
  opacity: 0.5;
  position: absolute;
  top: 3px;
  left: 3px;
}

.cursor-circle.is-hover {
  width: 64px;
  height: 64px;
  background: rgba(108, 187, 165, 0.08);
  border-color: var(--color-primary);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .custom-cursor { display: none; }
}

@media (hover: none) {
  .custom-cursor { display: none; }
}

/* =============================================
   Marquee
   ============================================= */
.marquee-section {
  display: none;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.marquee-text {
  font-family: var(--font-heading);
  font-size: clamp(60px, 8vw, 120px);
  font-weight: 900;
  letter-spacing: 2px;
  padding-right: 48px;
  -webkit-text-stroke: 2px var(--color-border);
  color: transparent;
}

/* Marquee on dark sections */
.numbers .marquee-text {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.12);
}

.numbers .marquee-section {
  border-color: rgba(255, 255, 255, 0.08);
}

/* =============================================
   Button Ripple & Hover Effects
   ============================================= */
.btn-cta {
  position: relative;
  overflow: hidden;
}

.btn-cta .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-effect 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn-cta svg,
.btn-hero-primary svg,
.btn-hero-secondary svg {
  transition: transform 0.3s var(--ease-out-expo);
}

.btn-cta:hover svg {
  transform: translateX(4px);
}

/* =============================================
   Scroll Animations
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1024px) {
  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card-visual {
    min-height: 240px;
  }

  .service-card-img {
    min-height: 240px;
  }

  .service-card-body {
    padding: 40px 32px;
  }

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

  .mission {
    padding: 120px 0;
  }

  .mission-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .mission-img {
    max-width: 400px;
    margin: 0 auto;
  }

  .recruit-inner {
    padding: 60px 0;
  }

  .recruit-hero-card {
    max-width: 360px;
  }

  .casestudy-track {
    padding: 0 24px;
  }

  .casestudy-slide {
    flex: 0 0 calc((100vw - 96px) / 3);
    min-width: calc((100vw - 96px) / 3);
  }

  .case-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-detail-header {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }

  .svc-strengths-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .svc-highlight-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .company-message {
    grid-template-columns: 240px 1fr;
    gap: 48px;
  }

  .company-message-photo {
    width: 240px;
    height: 300px;
  }

  .company-mvp-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .company-mvp-stack {
    gap: 24px;
  }

  .company-mvp-card {
    padding: 36px 28px;
  }

  .company-officers-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .company-access {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .news-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .recruit-interview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .recruit-merit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
    --section-padding: 100px 0;
  }

  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    border-radius: 14px;
  }

  .header-inner {
    padding: 0 20px;
  }

  .header-logo img {
    height: 32px;
    width: auto;
  }

  .subpage-hero {
    min-height: 40vh;
    padding: 100px 0 48px;
  }

  .subpage-hero .section-heading .en {
    font-size: 48px;
  }

  .sp-only { display: inline; }
  .sp-hide { display: none; }

  /* Mobile fullscreen nav — Liquid Glass overlay */
  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 32px 32px;
    gap: 8px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s var(--ease-out-expo), opacity 0.5s var(--ease-out-expo);
  }

  .header-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header-nav a {
    font-size: 18px;
    padding: 16px 32px;
    border-radius: 0;
    width: 100%;
    text-align: center;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 31, 51, 0.1);
  }

  .header-nav a:not(.btn-cta):hover {
    background: rgba(108, 187, 165, 0.12);
  }

  .header-nav .btn-recruit,
  .header-nav .btn-cta {
    padding: 16px 32px;
    width: 100%;
    text-align: center;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 31, 51, 0.1);
    border-radius: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    max-height: none;
    background: transparent;
    padding-bottom: 15vh;
  }

  .mission {
    background: linear-gradient(to bottom, var(--color-bg-green-light) 0%, var(--color-bg-white) 30%);
  }

  .service {
    background: var(--color-bg-green-light);
  }

  .hero-blur-accent {
    width: 400px;
    height: 200px;
    filter: blur(60px);
  }

  .hero-side-text {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 240px;
    text-align: center;
  }

  .section-heading .jp {
    font-size: 28px;
  }

  .mission {
    padding: 100px 0;
  }

  .service-grid {
    gap: 24px;
    padding: 0 16px;
  }

  .service-card-visual {
    min-height: 200px;
  }

  .service-card-img {
    min-height: 200px;
  }

  .service-card-body {
    padding: 32px 24px;
  }

  .casestudy-track {
    padding: 0 12.5vw;
    gap: 24px;
  }

  .casestudy-slide {
    flex: 0 0 75vw;
    min-width: 75vw;
  }

  .casestudy-slide-body h3 {
    font-size: 15px;
  }

  .casestudy-carousel-btn {
    width: 44px;
    height: 44px;
  }

  .contact-cta {
    padding: 100px 0;
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .number-card-inner {
    padding: 32px 12px;
  }

  .about-table dl {
    grid-template-columns: 1fr;
  }

  .about-table dt {
    padding-bottom: 8px;
    border-bottom: none;
  }

  .about-table dd {
    padding-top: 0;
  }

  .recruit-hero-card {
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }

  .recruit-hero-content {
    padding: 32px 28px;
  }

  .recruit-hero-en {
    font-size: 32px;
  }

  .recruit-content {
    padding: 60px 20px 32px;
    text-align: center;
  }

  .recruit-lead {
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-sns {
    justify-content: center;
    margin-left: 0;
  }

  .footer-nav {
    justify-content: center;
    gap: 40px;
  }

  .footer-nav-group {
    align-items: center;
  }

  .news-item {
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .news-title {
    flex-basis: 100%;
    order: 10;
  }

  .news-arrow {
    display: none;
  }

  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .news-filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .news-filter {
    justify-content: center;
  }

  .news-year-select {
    align-self: flex-end;
  }

  .news-card-grid,
  .news .news-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-card {
    flex-direction: row;
  }

  .news-card-thumb {
    width: 120px;
    min-width: 120px;
    padding-top: 0;
    aspect-ratio: 16 / 9;
  }

  .news-card-body {
    padding: 16px;
    gap: 8px;
  }

  .news-card-title {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }

  .contact-cta .cta-heading .jp {
    font-size: 28px;
  }

  .company-hero {
    height: 360px;
  }

  .company-hero-content {
    padding-bottom: 40px;
  }

  .company-message {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .company-message-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .company-message-photo {
    width: 200px;
    height: 260px;
  }

  .company-partner-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .company-officer-card {
    gap: 20px;
  }

  .company-officer-photo {
    width: 160px;
    height: 200px;
    margin: 0 auto;
  }

  .company-officer-sns {
    justify-content: center;
    margin-top: 20px;
  }

  .company-timeline::before {
    left: 80px;
  }

  .company-timeline-item::before {
    left: 75px;
  }

  .company-timeline-date {
    width: 56px;
    font-size: 14px;
  }

  .company-timeline-content {
    padding-left: 24px;
    font-size: 14px;
  }

  .company-timeline-item {
    gap: 32px;
  }
}

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

  .number-card .value {
    font-size: 36px;
  }

  .btn-cta--large {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  .service-detail-header {
    grid-template-columns: 1fr;
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  .service-flow-steps {
    flex-direction: column;
  }

  .service-flow-step::after {
    display: block;
    right: auto;
    left: 50%;
    top: auto;
    bottom: -12px;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--color-primary);
    border-bottom: none;
  }

  .svc-intro-lead br {
    display: none;
  }

  .svc-intro-anchors {
    flex-direction: column;
    align-items: center;
  }

  .svc-anchor-btn {
    width: 100%;
    max-width: 360px;
  }

  .svc-detail-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .svc-detail-visual {
    min-height: 200px;
    padding: 0;
    order: -1;
  }

  .svc-detail-img {
    min-height: 200px;
  }

  .svc-features-grid {
    grid-template-columns: 1fr;
  }

  .svc-highlight-inner {
    padding: 32px;
  }

  .svc-highlight-stats {
    gap: 20px;
  }

  .svc-highlight-stat-num {
    font-size: 32px;
  }

  .recruit-culture-grid {
    grid-template-columns: 1fr;
  }

  .recruit-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .recruit-merit-grid {
    grid-template-columns: 1fr;
  }

  .recruit-interview-grid {
    grid-template-columns: 1fr;
  }

  .recruit-interview-card {
    padding: 24px 20px;
  }

  .recruit-point-item .recruit-point-num {
    font-size: 22px;
    width: 44px;
  }

  .recruit-point-item .recruit-point-text {
    font-size: 15px;
  }

  .contact-page-inner {
    gap: 32px;
  }

  .contact-page-form-wrap {
    padding: 32px;
  }

  .case-list-grid {
    grid-template-columns: 1fr;
  }

  .case-filter {
    gap: 8px;
  }

  .case-filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .case-detail-person {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .case-detail-a {
    padding-left: 0;
  }

  .company-hero {
    height: 280px;
  }

  .company-hero-content {
    padding-bottom: 32px;
  }

  .company-timeline::before {
    display: none;
  }

  .company-timeline-item::before {
    display: none;
  }

  .company-timeline-item {
    flex-direction: column;
    gap: 4px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
  }

  .company-timeline-date {
    width: auto;
    font-size: 13px;
    color: var(--color-primary);
  }

  .company-timeline-content {
    padding-left: 0;
    padding-top: 0;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .recruit-benefits-grid {
    grid-template-columns: 1fr;
  }

  .recruit-job-header h3 {
    font-size: 15px;
  }

  .recruit-point-item {
    gap: 16px;
    padding: 20px 0;
  }

  .recruit-point-item .recruit-point-num {
    font-size: 18px;
    width: 36px;
  }

  .recruit-point-item .recruit-point-text {
    font-size: 14px;
  }

  .recruit-faq-q {
    font-size: 14px;
    padding: 20px 0;
  }

  .contact-page-form-wrap {
    padding: 24px;
  }
}

/* =============================================
   Company Page — Bold Redesign (#6cbba5 base)
   Scoped under body.company-page to avoid side effects

   Palette:
     Deep green  : #0f2420  (dark sections)
     Primary     : #6cbba5  (feature sections)
     Primary dark: #5aa893  (hover)
     Pale green  : #f0f9f6  (light-alt sections)
     White       : #ffffff  (light sections)
   ============================================= */

/* --- Global container padding --- */
body.company-page .container {
  padding: 0 clamp(24px, 6vw, 120px);
}

/* --- Header CTA group (Recruit + Contact outside header bar) --- */

/* --- 1. Hero --- */

/* Hero split-text animation (shared across pages) */
.hero-split-text {
  overflow: visible;
}

.hero-split-text .hero-char {
  display: inline-block;
  opacity: 0;
}


/* --- 2. CEO Message --- */
body.company-page #message {
  background: #6cbba5;
  color: #fff;
  position: relative;
  overflow: hidden;
}

#message-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

body.company-page #message > .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

body.company-page #message .section-heading {
  text-align: left;
  position: relative;
}

body.company-page #message .section-heading .en {
  position: absolute;
  top: -20px;
  left: 0;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: -1px;
  line-height: 1;
  pointer-events: none;
}

body.company-page #message .section-heading .jp {
  position: relative;
  z-index: 1;
  color: #fff;
}

body.company-page .message-bg-text {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: -1px;
  margin-bottom: 24px;
  pointer-events: none;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

body.company-page .company-message {
  grid-template-columns: 300px 1fr;
  gap: 72px;
  position: relative;
}

body.company-page .company-message-photo {
  width: 340px;
  height: 440px;
  border-radius: 4px;
  position: relative;
  background: #4a9e86;
}

body.company-page .company-message-photo::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  z-index: -1;
}

body.company-page .company-message-name {
  text-align: left;
}

body.company-page .company-message-role {
  color: rgba(255, 255, 255, 0.65);
}

body.company-page .company-message-person {
  color: #fff;
}

body.company-page .company-message-body p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 2;
}

body.company-page .company-message-body .company-message-name {
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  text-align: right;
}

/* --- Message Decorative Shapes --- */
body.company-page .message-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

body.company-page .message-deco-circle1 {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  top: 80px;
  right: 40px;
}

body.company-page .message-deco-circle2 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  bottom: 60px;
  left: 20px;
}

body.company-page .message-deco-line {
  width: 120px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  bottom: 100px;
  right: 60px;
}

/* --- 3. Vision / Purpose --- */
body.company-page #mvp {
  background: #0f2420;
  color: #fff;
  position: relative;
  overflow: hidden;
}

#mvp-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

body.company-page #mvp > .container {
  position: relative;
  z-index: 1;
}

body.company-page #mvp .company-mvp-stack {
  max-width: 880px;
}

body.company-page #mvp .company-mvp-card {
  border: none;
  border-bottom: 1px solid rgba(108, 187, 165, 0.2);
  border-radius: 0;
  background: transparent;
  padding: 64px 0;
  text-align: left;
}

body.company-page #mvp .company-mvp-card:last-child {
  border-bottom: none;
}

body.company-page #mvp .company-mvp-card:hover {
  background: transparent;
  border-color: rgba(108, 187, 165, 0.2);
}

body.company-page #mvp .company-mvp-label-en {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 700;
  color: #6cbba5;
  border: none;
  padding: 0;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
  text-transform: uppercase;
}

body.company-page #mvp .company-mvp-title {
  font-size: clamp(24px, 3vw, 36px);
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
}

body.company-page #mvp .company-mvp-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 2;
}

body.company-page #mvp .company-purpose-list li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 2;
}

/* Enmish 7 grid */
.enmish7-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.enmish7-item {
  padding: 28px 20px;
  background: rgba(108, 187, 165, 0.08);
  border: 1px solid rgba(108, 187, 165, 0.18);
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.enmish7-item:hover {
  background: rgba(108, 187, 165, 0.14);
  border-color: rgba(108, 187, 165, 0.4);
}

.enmish7-letter {
  font-family: var(--font-condensed);
  font-size: 36px;
  font-weight: 700;
  color: #6cbba5;
  line-height: 1;
}

.enmish7-en {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
}

.enmish7-ja {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

/* --- 4. Overview --- */
body.company-page #overview {
  background: #fff;
  color: var(--color-text);
}

body.company-page #overview .section-heading {
  text-align: left;
  position: relative;
}

body.company-page #overview .section-heading .en {
  position: absolute;
  top: -20px;
  left: 0;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 700;
  color: rgba(108, 187, 165, 0.08);
  letter-spacing: -1px;
  line-height: 1;
  pointer-events: none;
}

body.company-page #overview .section-heading .jp {
  position: relative;
  z-index: 1;
  color: var(--color-secondary);
}

body.company-page .about-table {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  max-width: 100%;
}

body.company-page .about-table dl {
  grid-template-columns: 240px 1fr;
}

body.company-page .about-table dt,
body.company-page .about-table dd {
  padding: 28px 36px;
  font-size: 16px;
  border-bottom: 1px solid rgba(108, 187, 165, 0.12);
}

body.company-page .about-table dt {
  background: transparent;
  font-weight: 700;
  color: var(--color-secondary);
}

body.company-page .about-table dd {
  color: var(--color-text);
  line-height: 1.8;
}

/* --- 5. Partners --- */
body.company-page #partner {
  background: #6cbba5;
  color: #fff;
}

body.company-page #partner .section-heading .en {
  color: rgba(255, 255, 255, 0.18);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
}

body.company-page #partner .section-heading .jp {
  color: #fff;
}

body.company-page .company-partner-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

body.company-page .company-partner-card {
  background: #fff;
  border: none;
  border-radius: 12px;
  padding: 40px 24px;
  justify-content: flex-start;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.company-page .company-partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
}

body.company-page .company-partner-icon {
  width: 220px;
  height: 110px;
  margin: 0 auto 20px;
  padding-bottom: 0;
  border-bottom: none;
}

body.company-page .company-partner-icon img {
  filter: none;
  opacity: 1;
}

body.company-page .company-partner-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.4;
  margin-bottom: 8px;
}

body.company-page .company-partner-desc {
  flex: 1;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.6;
}

/* --- 6. Board Members --- */
body.company-page #officers {
  background: #f0f9f6;
  color: var(--color-text);
}

body.company-page #officers .section-heading {
  text-align: left;
  position: relative;
}

body.company-page #officers .section-heading .en {
  position: absolute;
  top: -20px;
  left: 0;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 700;
  color: rgba(108, 187, 165, 0.1);
  letter-spacing: -1px;
  line-height: 1;
  pointer-events: none;
}

body.company-page #officers .section-heading .jp {
  position: relative;
  z-index: 1;
  color: var(--color-secondary);
}

body.company-page .company-officers-grid {
  grid-template-columns: 1fr;
  gap: 80px;
  max-width: 100%;
}

body.company-page .company-officer-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  text-align: left;
  align-items: start;
}

body.company-page .company-officer-photo {
  width: 320px;
  height: 420px;
  border-radius: 4px;
}

body.company-page .company-officer-role {
  font-size: 13px;
  font-weight: 600;
  color: #6cbba5;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

body.company-page .company-officer-name {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 24px;
  letter-spacing: 2px;
  line-height: 1.2;
}

body.company-page .company-officer-bio {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-light);
}

.company-officer-sns {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.company-officer-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-text-light);
  border: 1px solid rgba(108, 187, 165, 0.3);
  border-radius: 50%;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.company-officer-sns a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

/* --- 7. History --- */
body.company-page #history {
  background: #0f2420;
  color: #fff;
}

body.company-page #history > .container {
  max-width: 960px;
}

body.company-page #history .section-heading {
  text-align: left;
  position: relative;
}

body.company-page #history .section-heading .en {
  position: absolute;
  top: -20px;
  left: 0;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 700;
  color: rgba(108, 187, 165, 0.1);
  letter-spacing: -1px;
  line-height: 1;
  pointer-events: none;
}

body.company-page #history .section-heading .jp {
  position: relative;
  z-index: 1;
  color: #fff;
}

body.company-page .company-timeline::before {
  background: rgba(108, 187, 165, 0.3);
}

body.company-page .company-timeline-item::before {
  background: #6cbba5;
  border-color: #0f2420;
  box-shadow: 0 0 14px rgba(108, 187, 165, 0.5);
}

body.company-page .company-timeline-date {
  font-size: clamp(18px, 2vw, 22px);
  color: #6cbba5;
  font-weight: 600;
}

body.company-page .company-timeline-content {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

/* --- 8. Access --- */
body.company-page #access {
  background: #fff;
  color: var(--color-text);
}

body.company-page #access > .container {
  max-width: 1100px;
}

body.company-page #access .section-heading {
  text-align: left;
  position: relative;
}

body.company-page #access .section-heading .en {
  position: absolute;
  top: -20px;
  left: 0;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 700;
  color: rgba(108, 187, 165, 0.08);
  letter-spacing: -1px;
  line-height: 1;
  pointer-events: none;
}

body.company-page #access .section-heading .jp {
  position: relative;
  z-index: 1;
  color: var(--color-secondary);
}

body.company-page .company-access-map {
  min-height: 420px;
}

/* --- 9. CTA --- */
/* =============================================
   Company Page Bold — Responsive (768px)
   ============================================= */
@media (max-width: 768px) {


  body.company-page .company-message {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  body.company-page .company-message-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  body.company-page .company-message-photo {
    width: 280px;
    height: 360px;
  }

  body.company-page .company-message-photo::after {
    display: none;
  }

  body.company-page .message-bg-text {
    font-size: clamp(32px, 8vw, 48px);
    line-height: 1.5;
    margin-bottom: -12px;
  }

  body.company-page .message-deco {
    display: none;
  }

  body.company-page .company-partner-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body.company-page .company-officer-card {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  body.company-page .company-officer-photo {
    width: 240px;
    height: 320px;
    margin: 0 auto;
  }

  body.company-page .company-officer-role {
    margin-top: 8px;
  }

  body.company-page .company-timeline::before {
    display: none;
  }

  body.company-page .company-timeline-item::before {
    display: none;
  }

  body.company-page .company-timeline-item {
    flex-direction: column;
    gap: 4px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(108, 187, 165, 0.2);
  }

  body.company-page .company-timeline-date {
    width: auto;
    font-size: 14px;
  }

  body.company-page .company-timeline-content {
    padding-left: 0;
    padding-top: 0;
  }

  body.company-page #message .section-heading .en,
  body.company-page #overview .section-heading .en,
  body.company-page #officers .section-heading .en,
  body.company-page #history .section-heading .en,
  body.company-page #access .section-heading .en,
  body.company-page #partner .section-heading .en {
    position: static;
    font-size: 40px;
    margin-bottom: 0;
  }

  body.company-page #message .section-heading .jp,
  body.company-page #overview .section-heading .jp,
  body.company-page #officers .section-heading .jp,
  body.company-page #history .section-heading .jp,
  body.company-page #access .section-heading .jp,
  body.company-page #partner .section-heading .jp {
    position: relative;
    z-index: 1;
    margin-top: -36px;
  }

  body.company-page #mvp .company-mvp-label-en {
    font-size: 40px;
  }

  .enmish7-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .enmish7-item {
    padding: 20px 12px;
  }

  .enmish7-letter {
    font-size: 28px;
  }

  .enmish7-en {
    font-size: 11px;
  }

  .enmish7-ja {
    font-size: 13px;
  }

  body.company-page .about-table dl {
    grid-template-columns: 1fr;
  }

  body.company-page .about-table dt {
    padding: 20px 20px 8px;
    border-bottom: none;
  }

  body.company-page .about-table dd {
    padding: 0 20px 20px;
  }

  body.company-page .company-access {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   Company Page Bold — Responsive (1024px)
   ============================================= */
@media (max-width: 1024px) and (min-width: 769px) {
  body.company-page .company-message {
    grid-template-columns: 300px 1fr;
    gap: 48px;
  }

  body.company-page .company-message-photo {
    width: 320px;
    height: 420px;
  }

  body.company-page .company-partner-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  body.company-page .company-officer-card {
    grid-template-columns: 260px 1fr;
    gap: 48px;
  }

  body.company-page .company-officer-photo {
    width: 260px;
    height: 340px;
  }
}
