/* source: index.html */
/* ============================================================
   FAZOM Corporate Site — Top Page v2
   ============================================================ */

:root {
  /* ---- カラーパレット（BtoB ライトブルー基調） ---- */
  --navy: #0A2540;
  --navy-soft: #1A3A5C;
  --navy-90: rgba(10, 37, 64, 0.9);
  --navy-70: rgba(10, 37, 64, 0.7);
  --navy-50: rgba(10, 37, 64, 0.5);
  --navy-20: rgba(10, 37, 64, 0.2);
  --navy-10: rgba(10, 37, 64, 0.1);

  --light-blue: #A8C5DC;
  --light-blue-mid: #7BA8C8;
  --light-blue-pale: #E8F1F8;
  --light-blue-paler: #F4F9FC;
  --light-blue-deep: #5A8FC2;

  --accent: #3D7AB0;

  --white: #FFFFFF;
  --off-white: #FAFBFD;
  --sub-text: #4A6B85;
  --line: #E1EAF2;
  --line-soft: #EEF3F8;

  /* ---- 旧変数との互換レイヤー ---- */
  --wf-bg: var(--white);
  --wf-surface: var(--light-blue-paler);
  --wf-surface-2: var(--light-blue-pale);
  --wf-surface-3: #DCEAF5;
  --wf-border: var(--line);
  --wf-text: var(--navy);
  --wf-text-2: var(--sub-text);
  --wf-text-3: var(--light-blue-mid);
  --wf-accent: var(--accent);
  --wf-accent-2: var(--light-blue-deep);
  --wf-max: 1200px;
  --wf-gutter: 24px;

  /* ---- フォント ---- */
  --font-serif-en: 'Fraunces', serif;
  --font-sans-en: 'Manrope', sans-serif;
  --font-serif-jp: 'Noto Serif JP', serif;
  --font-sans-jp: 'Noto Sans JP', sans-serif;

  /* ---- タイプスケール（日本語最適化） ---- */
  --fs-display: clamp(44px, 5vw, 64px);
  --fs-h1: clamp(36px, 4.2vw, 56px);
  --fs-h2: clamp(28px, 3vw, 40px);
  --fs-h3: clamp(22px, 2.4vw, 32px);
  --fs-h4: 17px;
  --fs-body: 15px;
  --fs-small: 13px;
  --fs-caption: 11px;

  /* ---- 行間 ---- */
  --lh-heading: 1.25;
  --lh-body: 1.85;

  /* ---- 字間（日本語向け） ---- */
  --ls-display: 0.12em;
  --ls-heading: 0.04em;
  --ls-body: 0.02em;

  /* ---- 角丸 ---- */
  --r-xs: 2px;
  --r-sm: 3px;
  --r-md: 4px;
  --r-lg: 8px;
  --r-xl: 8px;
  --r-pill: 999px;

  /* ---- レイアウト ---- */
  --section-pad: 120px;

  /* ---- モーション ---- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;
}


* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans-jp);
  font-weight: 400;
  background: var(--wf-bg);
  color: var(--wf-text);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  width: min(var(--wf-max), calc(100% - 48px));
  margin: 0 auto;
}


/* ---- HEADER ---- */
.wf-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
}
.wf-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
}
.wf-header-logo {
  display: flex;
  align-items: center;
  height: 28px;
}
.wf-header-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.wf-header-logo svg {
  height: 28px;
  width: auto;
}
/* モバイルメニューはデフォルト非表示 */
.wf-mobile-menu {
  display: none;
}
.wf-header-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.wf-header-nav a {
  color: var(--wf-text-2);
  font-size: var(--fs-small);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
  letter-spacing: 0.01em;
  position: relative;
}
.wf-header-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--wf-accent);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.wf-header-nav a:hover { color: var(--wf-text); }
.wf-header-nav a:hover::after { width: 100%; }
.wf-header-cta {
  padding: 8px 24px;
  border-radius: var(--r-sm);
  background: var(--wf-accent);
  color: #fff;
  font-size: var(--fs-small);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
  cursor: pointer;
}
.wf-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(61,122,176,0.25);
}
/* スマホ専用改行: PCでは非表示 */
.sp-br { display: none; }
.wf-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}
.wf-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--wf-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---- HERO ---- */
.wf-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.wf-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
  z-index: 0;
}
.wf-hero-bg-text {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans-en);
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 800;
  letter-spacing: 0.06em;
  white-space: nowrap;
  color: rgba(255,255,255,0.03);
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
.wf-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: center;
}
.wf-hero-copy {}
.wf-hero-eyebrow {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(168,197,220,0.12);
  border: 1px solid rgba(168,197,220,0.25);
  color: var(--light-blue);
  font-family: var(--font-sans-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.wf-hero-headline {
  font-family: var(--font-sans-jp);
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 20px;
}
.wf-hero-sub {
  display: block;
  font-size: var(--fs-h4);
  font-weight: 500;
  letter-spacing: var(--ls-heading);
  color: rgba(255,255,255,0.75);
  line-height: var(--lh-heading);
  margin-top: 12px;
  margin-bottom: 8px;
}
.wf-hero-lead {
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: var(--lh-body);
}
.wf-hero-actions {
  display: flex;
  gap: 12px;
}
.wf-hero-actions .btn-primary {
  padding: 14px 40px;
  border-radius: var(--r-md);
  background: var(--wf-accent);
  color: #fff;
  font-size: var(--fs-body);
  font-weight: 700;
  text-decoration: none;
  border: none;
  letter-spacing: var(--ls-body);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.wf-hero-actions .btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wf-hero-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61,122,176,0.4), 0 0 0 1px rgba(90,143,194,0.4);
}
.wf-hero-actions .btn-primary:hover::before {
  opacity: 1;
}
.wf-hero-actions .btn-secondary {
  padding: 14px 40px;
  border-radius: var(--r-md);
  background: transparent;
  color: #fff;
  font-size: var(--fs-body);
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.5);
  letter-spacing: var(--ls-body);
  position: relative;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
  cursor: pointer;
}
.wf-hero-actions .btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--light-blue);
  background: rgba(168,197,220,0.1);
  color: var(--light-blue);
}
.wf-hero-visual {
  position: relative;
}

/* ---- BRIDGE ---- */
.wf-bridge {
  background: var(--white);
  padding: var(--section-pad, 100px) 0;
  position: relative;
}
.wf-bridge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.wf-bridge-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.wf-bridge-title {
  font-family: var(--font-serif-jp);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--navy);
  white-space: nowrap;
}
.wf-bridge-title .accent-mark {
  color: var(--accent);
}
.wf-bridge-lead {
  font-size: var(--fs-body);
  color: var(--sub-text);
  line-height: 2;
  letter-spacing: 0.04em;
}
.wf-bridge-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.wf-bridge-item {
  background: var(--light-blue-paler);
  padding: 44px 28px 36px;
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  border: 1px solid transparent;
}
.wf-bridge-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--light-blue-mid), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.wf-bridge-item:hover {
  transform: translateY(-5px);
  border-color: var(--light-blue);
  box-shadow: 0 16px 36px -12px rgba(10,37,64,0.12);
}
.wf-bridge-item:hover::before {
  transform: scaleX(1);
}
.wf-bridge-num {
  font-family: var(--font-serif-en);
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.wf-bridge-item-title {
  font-family: var(--font-serif-jp);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  line-height: 1.5;
  color: var(--navy);
}
.wf-bridge-reading {
  display: inline-block;
  font-family: var(--font-sans-jp);
  font-size: 13px;
  font-weight: 400;
  color: var(--sub-text);
  margin-left: 4px;
  letter-spacing: 0.03em;
}
.wf-bridge-desc {
  font-size: 13px;
  color: var(--sub-text);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}
.wf-bridge-visual {
  width: 200px;
  height: 65px;
  margin-top: 32px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.wf-bridge-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.wf-bridge-item:hover .wf-bridge-visual {
  transform: scale(1.06) rotate(3deg);
}

/* ---- TRUST BAR ---- */

/* ---- PRODUCT SHOWCASE ---- */
.wf-product {
  padding: 80px 0;
}
.wf-product-header {
  text-align: center;
  margin-bottom: 48px;
}
.wf-product-header h2 {
  font-size: var(--fs-h1);
  font-weight: 900;
  letter-spacing: var(--ls-heading);
  line-height: var(--lh-heading);
  margin-bottom: 16px;
}
.wf-product-header p {
  font-size: var(--fs-body);
  color: var(--wf-text-2);
  max-width: 560px;
  margin: 0 auto;
  line-height: var(--lh-body);
}
.wf-product-video-area {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--wf-surface);
  padding: 4px;
}
.wf-product-video-inner {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.wf-product-tabs {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  justify-content: center;
}
.wf-product-tab {
  padding: 8px 20px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: transparent;
  color: var(--sub-text);
  font-size: var(--fs-small);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.wf-product-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.wf-product-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.wf-product-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  will-change: opacity;
}
.wf-product-panel.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* ---- BORDER DRAW OVERLAY ---- */
.wf-border-draw {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(61,122,176,0.3));
}
.wf-border-rect {
  fill: none;
  stroke: rgba(61,122,176,0.55);
  stroke-width: 1.5;
  stroke-dasharray: 2964;
  stroke-dashoffset: 2964;
  stroke-linecap: round;
}
.wf-border-draw.drawing .wf-border-rect {
  animation: borderDraw 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes borderDraw {
  from { stroke-dashoffset: 2964; }
  to { stroke-dashoffset: 0; }
}

/* ---- IDLE: shimmer sweep ---- */
.wf-product-panel.active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(168,197,220,0.08) 47%, rgba(168,197,220,0.14) 50%, rgba(168,197,220,0.08) 53%, transparent 60%);
  animation: panelShimmer 8s ease-in-out 3s infinite backwards;
  pointer-events: none;
  z-index: 3;
}
@keyframes panelShimmer {
  0%, 25% { transform: translateX(-160%); }
  75%, 100% { transform: translateX(160%); }
}

/* ---- IDLE: donut rotation ---- */
.wf-product-panel.active .anim-donut {
  animation: idleDonutSpin 30s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes idleDonutSpin { to { transform: rotate(360deg); } }

/* ---- IDLE: polyline draw-in ---- */
.anim-line-draw {
  transition: stroke-dashoffset 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}
.wf-product-panel.active .anim-line-draw {
  stroke-dashoffset: 0 !important;
}

/* ---- IDLE: bar grow ---- */
.anim-bar-draw {
  transition: stroke-dashoffset 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.wf-product-panel.active .anim-bar-draw {
  stroke-dashoffset: 0 !important;
}

/* ---- IDLE: score circle draw ---- */
.anim-score-draw {
  transition: stroke-dashoffset 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}
.wf-product-panel.active .anim-score-draw {
  stroke-dashoffset: 0 !important;
}

/* ---- IDLE: blinking notification dot ---- */
.wf-product-panel.active .anim-blink {
  animation: blinkDot 3s ease-in-out infinite;
}
@keyframes blinkDot {
  0%, 70%, 100% { opacity: 0; }
  35%, 55% { opacity: 1; }
}

/* ---- IDLE: pulsing data point ---- */
.wf-product-panel.active .anim-pulse {
  animation: pulsePoint 2.5s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes pulsePoint {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.8); opacity: 1; }
}

/* ---- IDLE: gentle float up-down ---- */
.wf-product-panel.active .anim-float {
  animation: gentleFloat 4s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ---- IDLE: score value glow ---- */
.wf-product-panel.active .anim-glow {
  animation: scoreGlow 3s ease-in-out infinite;
}
@keyframes scoreGlow {
  0%, 100% { filter: drop-shadow(0 0 0px transparent); }
  50% { filter: drop-shadow(0 0 6px rgba(61,122,176,0.35)); }
}

/* ---- IDLE: row highlight sweep ---- */
.wf-product-panel.active .anim-row-sweep {
  animation: rowSweep 8s ease-in-out infinite;
}
@keyframes rowSweep {
  0%, 100% { opacity: 0; }
  12%, 20% { opacity: 1; }
  28% { opacity: 0; }
}
.wf-product-panel.active .anim-row-sweep-2 {
  animation: rowSweep2 8s ease-in-out infinite;
}
@keyframes rowSweep2 {
  0%, 28% { opacity: 0; }
  36%, 44% { opacity: 1; }
  52% { opacity: 0; }
}
.wf-product-panel.active .anim-row-sweep-3 {
  animation: rowSweep3 8s ease-in-out infinite;
}
@keyframes rowSweep3 {
  0%, 52% { opacity: 0; }
  60%, 68% { opacity: 1; }
  76%, 100% { opacity: 0; }
}

/* ---- FEATURES ---- */

/* ---- BUSINESS (事業内容) ---- */
.wf-business {
  padding: var(--section-pad, 100px) 0;
  background: var(--white);
}
.wf-business-header {
  text-align: center;
  margin-bottom: 64px;
}
.wf-business-header h2 {
  font-size: var(--fs-h1);
  font-weight: 900;
  letter-spacing: var(--ls-heading);
  line-height: var(--lh-heading);
  margin-bottom: 16px;
}
.wf-business-header p {
  font-size: var(--fs-body);
  color: var(--sub-text);
  line-height: var(--lh-body);
}
.wf-business-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.wf-business-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  padding: 52px;
  background: var(--off-white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.wf-business-card:hover {
  border-color: var(--light-blue);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(10,37,64,0.08);
}
.wf-business-left {
  position: relative;
  z-index: 2;
}
.wf-business-label {
  display: inline-block;
  font-family: var(--font-sans-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  padding: 6px 14px;
  background: var(--light-blue-pale);
  border-radius: 20px;
  margin-bottom: 20px;
}
.wf-business-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wf-business-name-en {
  font-family: var(--font-serif-en);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--navy);
}
.wf-business-name-jp {
  font-family: var(--font-sans-jp);
  font-size: 14px;
  font-weight: 500;
  color: var(--sub-text);
  letter-spacing: 0.1em;
}
.wf-business-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.wf-business-desc {
  font-size: var(--fs-body);
  color: var(--navy-70);
  line-height: 2;
  letter-spacing: 0.04em;
}
.wf-business-card-deco {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 240px;
  height: 240px;
  opacity: 0.4;
  pointer-events: none;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.wf-business-card:hover .wf-business-card-deco {
  transform: scale(1.12) rotate(12deg);
}
.wf-business-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--wf-text);
  text-decoration: none;
}
/* ::after arrow removed — SVG icon handles arrow */
.wf-business-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.wf-business-link:hover svg {
  transform: translate(3px, -3px);
}

/* ---- MISSION ---- */
.wf-mission {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.wf-mission-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, var(--light-blue-pale), transparent 60%);
}
.wf-mission-grid {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.wf-mission-grid svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  min-width: 900px;
  min-height: 600px;
}
/* グロー脈動 */
@keyframes gridPulse {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}
.wf-grid-glow {
  animation: gridPulse 4s ease-in-out infinite;
  transform-origin: center;
}
.wf-grid-glow:nth-child(2n) { animation-delay: -1s; }
.wf-grid-glow:nth-child(3n) { animation-delay: -2.5s; }
.wf-grid-glow:nth-child(5n) { animation-delay: -0.7s; }
.wf-grid-glow:nth-child(7n) { animation-delay: -3.2s; }

/* グリッドライン上を走る光の粒 */
@keyframes travelH {
  0%   { transform: translateX(-60px); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(960px); opacity: 0; }
}
@keyframes travelV {
  0%   { transform: translateY(-60px); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(560px); opacity: 0; }
}
.wf-grid-particle-h {
  animation: travelH 6s linear infinite;
}
.wf-grid-particle-v {
  animation: travelV 5s linear infinite;
}

/* グリッドライン自体のフェードイン波 */
@keyframes lineReveal {
  0%, 100% { opacity: 0.06; }
  50% { opacity: 0.22; }
}
.wf-grid-line-anim {
  animation: lineReveal 8s ease-in-out infinite;
}
.wf-mission-content {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.wf-mission-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-bottom: 24px;
}
.wf-mission-content p {
  font-size: var(--fs-body);
  color: var(--sub-text);
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.wf-mission-content p strong {
  color: var(--navy);
  font-weight: 700;
}
.wf-mission-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--r-md);
  border: 1px solid var(--wf-border);
  color: var(--wf-text);
  font-size: var(--fs-body);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: var(--ls-body);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background 0.3s ease;
  cursor: pointer;
}
.wf-mission-link:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: var(--light-blue-paler);
}

/* ---- NEWS ---- */
.wf-news {
  padding: 80px 0;
}
.wf-news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}
.wf-news-header h2 {
  font-size: var(--fs-h2);
  font-weight: 900;
  letter-spacing: var(--ls-heading);
  line-height: var(--lh-heading);
}
.wf-news-more {
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--wf-accent);
  text-decoration: none;
}
.wf-news-list {
  display: grid;
  gap: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--wf-surface);
}
.wf-news-item {
  display: grid;
  grid-template-columns: 120px auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line-soft);
  text-decoration: none;
  color: inherit;
  transition: background 0.3s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), padding-left 0.3s ease;
}
.wf-news-item:last-child { border-bottom: none; }
.wf-news-item:hover {
  background: var(--light-blue-pale);
  padding-left: 32px;
}
.wf-news-date {
  font-size: var(--fs-small);
  color: var(--wf-text-3);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.wf-news-badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: var(--fs-caption);
  font-weight: 700;
  background: var(--light-blue-pale);
  color: var(--wf-accent);
}
.wf-news-title {
  font-size: var(--fs-body);
  font-weight: 700;
}

/* ---- BOTTOM CTA ---- */
.wf-bottom-cta {
  padding: 80px 0;
}
.wf-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.wf-bottom-card {
  background: var(--wf-surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.wf-bottom-card:hover {
  border-color: var(--light-blue-mid);
  background: var(--light-blue-paler);
}
.wf-bottom-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--light-blue-pale);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.wf-bottom-card-icon svg {
  width: 28px;
  height: 28px;
}
.wf-bottom-card-icon.contact-icon {
  background: var(--light-blue-pale);
  border-color: var(--line);
}
.wf-bottom-card-features {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.wf-bottom-card-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--wf-text-3);
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--light-blue-paler);
  border: 1px solid var(--line-soft);
}
.wf-bottom-card-features span svg {
  width: 12px;
  height: 12px;
}
.wf-bottom-card h3 {
  font-size: var(--fs-h3);
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: var(--ls-heading);
  line-height: var(--lh-heading);
}
.wf-bottom-card p {
  font-size: var(--fs-body);
  color: var(--wf-text-2);
  margin-bottom: 24px;
  line-height: var(--lh-body);
}
.wf-bottom-card .btn {
  display: inline-flex;
  padding: 14px 36px;
  border-radius: var(--r-md);
  font-size: var(--fs-body);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: var(--ls-body);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background 0.3s ease;
}
.wf-bottom-card .btn-primary {
  background: var(--wf-accent);
  color: #fff;
}
.wf-bottom-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61,122,176,0.25), 0 0 0 1px rgba(61,122,176,0.3);
}
.wf-bottom-card .btn-outline {
  background: transparent;
  color: var(--wf-text);
  border: 1px solid var(--wf-border);
}
.wf-bottom-card .btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: var(--light-blue-paler);
}

/* ---- RECRUIT ---- */
.wf-recruit {
  padding: var(--section-pad, 100px) 0;
  background: var(--light-blue-paler);
}
.wf-recruit-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.wf-recruit-inner h2 {
  font-size: var(--fs-h1);
  font-weight: 900;
  letter-spacing: var(--ls-heading);
  line-height: var(--lh-heading);
  margin-bottom: 16px;
}
.wf-recruit-lead {
  font-size: var(--fs-body);
  color: var(--sub-text);
  line-height: var(--lh-body);
  margin-bottom: 20px;
}
.wf-recruit-desc {
  font-size: var(--fs-body);
  color: var(--navy-70);
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.wf-recruit-positions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.wf-recruit-positions span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 600;
}

/* ---- CONTACT ---- */
.wf-contact {
  padding: var(--section-pad, 100px) 0;
  background: var(--white);
}
.wf-contact-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.wf-contact-inner h2 {
  font-size: var(--fs-h1);
  font-weight: 900;
  letter-spacing: var(--ls-heading);
  line-height: var(--lh-heading);
  margin-bottom: 16px;
}
.wf-contact-lead {
  font-size: var(--fs-body);
  color: var(--sub-text);
  line-height: var(--lh-body);
  margin-bottom: 48px;
}
.wf-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.wf-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 36px 24px;
  background: var(--off-white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  text-decoration: none;
  color: var(--navy);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.wf-contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--light-blue);
  box-shadow: 0 12px 32px rgba(10,37,64,0.08);
}
.wf-contact-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-blue-pale);
  border-radius: 12px;
}
.wf-contact-card-icon svg {
  width: 24px;
  height: 24px;
}
.wf-contact-card h4 {
  font-size: var(--fs-body);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ---- FOOTER ---- */
.wf-footer {
  padding: 80px 0 0;
  background: var(--navy);
  color: #fff;
}
.wf-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 28px;
}
.wf-footer-brand-sub {
  font-family: var(--font-sans-en);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
  margin-bottom: 8px;
}
.wf-footer-brand p {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.7);
  line-height: var(--lh-body);
}
.wf-footer-links h4 {
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.wf-footer-links a {
  display: block;
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.wf-footer-links a:hover {
  color: var(--light-blue);
}
.wf-footer-copyright {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ---- レスポンシブ（タブレット） ---- */
@media (max-width: 960px) {
  .wf-hero-content,
  .wf-business-card,
  .wf-bottom-grid,
  .wf-contact-grid,
  .wf-footer-grid {
    grid-template-columns: 1fr;
  }
  .wf-bridge-items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .wf-hero {
    padding: 80px 0 60px;
    min-height: auto;
  }
  .wf-hero-visual {
    margin-top: 32px;
  }
}

/* ---- レスポンシブ（スマホ） ---- */
@media (max-width: 640px) {
  /* -- 基本 -- */
  :root {
    --fs-display: clamp(32px, 8vw, 44px);
    --fs-h1: clamp(24px, 6vw, 32px);
    --fs-h2: clamp(22px, 5.5vw, 28px);
    --fs-h3: clamp(20px, 5vw, 24px);
  }
  .container {
    width: calc(100% - 32px);
  }

  /* -- ヘッダー -- */
  .wf-header-nav { display: none; }
  .wf-header-cta { display: none; }
  .wf-header-inner {
    padding: 10px 16px;
  }
  .wf-hamburger {
    display: flex;
  }
  /* モバイルメニュー展開時 */
  .wf-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(12, 16, 24, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  .wf-mobile-menu.open {
    display: flex;
  }
  .wf-mobile-menu a {
    display: block;
    padding: 18px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--wf-text);
    text-decoration: none;
    letter-spacing: 0.02em;
    text-align: center;
    border-bottom: 1px solid var(--line-soft);
    width: 80%;
    transition: color 0.2s ease;
  }
  .wf-mobile-menu a:last-child {
    border-bottom: none;
  }
  .wf-mobile-menu a.mobile-cta {
    margin-top: 24px;
    padding: 14px 40px;
    border-radius: var(--r-md);
    background: var(--wf-accent);
    color: #fff;
    border-bottom: none;
    width: auto;
  }
  .wf-mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--wf-text);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* -- ヒーロー -- */
  .wf-hero {
    padding: 60px 0 40px;
    min-height: auto;
  }
  .wf-hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .wf-hero-eyebrow {
    font-size: 11px;
    padding: 5px 12px;
  }
  .wf-hero-sub {
    font-size: var(--fs-body);
  }
  .wf-hero-lead {
    font-size: 14px;
    max-width: 100%;
  }
  .wf-hero-actions {
    flex-direction: column;
  }
  .wf-hero-actions .btn-primary,
  .wf-hero-actions .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 24px;
  }
  .wf-hero-visual {
    margin-top: 8px;
  }

  /* -- 導入企業 / Trust -- */

  /* -- プロダクトショーケース -- */
  .wf-product {
    padding: 48px 0;
  }
  .wf-product-header {
    margin-bottom: 32px;
  }
  .wf-product-video-area {
    padding: 2px;
  }

  /* -- FAZOMができること -- */

  /* -- ミーティングデモ -- */

  /* -- サービス -- */
  .wf-services {
    padding: 48px 0;
  }
  .wf-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wf-service-card {
    padding: 28px;
    min-height: auto;
  }

  /* -- ミッション -- */
  .wf-mission {
    padding: 60px 0;
  }
  .wf-mission-grid svg {
    min-width: 600px;
    min-height: 400px;
  }

  /* -- ニュース -- */
  .wf-news {
    padding: 48px 0;
  }
  .wf-news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .wf-news-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 20px;
  }
  .wf-news-item:hover {
    padding-left: 20px;
  }

  /* -- 採用 / お問い合わせ -- */
  .wf-bottom-cta {
    padding: 48px 0;
  }
  .wf-bottom-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wf-bottom-card {
    padding: 28px;
  }
  .wf-bottom-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 16px;
  }
  .wf-bottom-card-icon svg {
    width: 24px;
    height: 24px;
  }
  .wf-bottom-card-features {
    gap: 8px;
  }
  .wf-bottom-card .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* -- パフォーマンス: スマホで重い描画を軽量化 -- */
  .ambient-glow {
    display: none !important;
  }
  .wf-mission-grid .wf-grid-particle-h,
  .wf-mission-grid .wf-grid-particle-v {
    display: none;
  }
  .wf-mission-grid .wf-grid-line-anim {
    animation: none;
  }
  .wf-mission-grid .wf-grid-glow {
    animation-duration: 6s;
  }

  /* -- フッター -- */
  .wf-footer {
    padding: 36px 0 48px;
  }
  .wf-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .wf-footer-brand {
    grid-column: 1 / -1;
  }

  /* -- テキスト改行対策 -- */
  h1, h2, h3, h4 {
    overflow-wrap: break-word;
    word-break: keep-all;
    line-break: strict;
  }
  /* スマホではPC向けの<br>を無効化して自然な折り返しに */
  .wf-product-header p br,
  /* スマホ専用改行を有効化 */
  .sp-br { display: inline; }
  .wf-hero-headline {
    font-size: clamp(32px, 8vw, 44px);
  }
  .wf-hero-sub {
    font-size: clamp(16px, 4vw, 20px);
  }
  .wf-hero-lead {
    font-size: 14px;
    max-width: 100%;
  }
  .wf-mission-content h2 {
    font-size: clamp(24px, 6.5vw, 36px);
    line-height: 1.6;
  }
  .wf-mission-content p {
    font-size: 14px;
    max-width: 100%;
  }
  .wf-mission-link {
    padding: 12px 28px;
    font-size: 14px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .wf-product-header h2,
  .wf-services-header h2 {
    font-size: clamp(24px, 6vw, 32px);
  }
  .wf-product-header p,
  .wf-service-card h3 {
    font-size: clamp(20px, 5vw, 24px);
  }
  .wf-service-card p {
    font-size: 14px;
  }

  /* -- ホバー無効化（スクロールアニメに切替） -- */
  .wf-service-card:hover {
    transform: none;
  }
  .wf-bottom-card:hover {
    border-color: var(--line-soft);
    background: var(--wf-surface);
  }

  /* -- スクロールアニメ: .in-view でトリガー -- */
  /* カード1: 商談記録 */
  /* カード2: 営業の型 */
  /* カード3: 振り返り */
  /* カード4: 育成 */
  /* カード5: 優先順位 */
  /* カード6: チーム分析 */
  /* SVG glow */
  /* ミーティングデモ */
}

/* ---- スクロール連動アンビエントグロー ---- */
.ambient-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ambient-glow::before,
.ambient-glow::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 1s ease,
              background 1.4s ease;
  will-change: transform, opacity;
}
.ambient-glow::before {
  width: 700px;
  height: 700px;
  background: rgba(61,122,176,0.12);
  top: -200px;
  left: -100px;
  opacity: 0.7;
}
.ambient-glow::after {
  width: 600px;
  height: 600px;
  background: rgba(168,197,220,0.15);
  bottom: -200px;
  right: -100px;
  opacity: 0.5;
}
/* セクションごとのグロー位置 */
body[data-glow="hero"] .ambient-glow::before { transform: translate(10vw, 10vh); background: rgba(61,122,176,0.14); opacity: 0.7; }
body[data-glow="hero"] .ambient-glow::after  { transform: translate(-5vw, -20vh); background: rgba(168,197,220,0.15); opacity: 0.6; }

body[data-glow="trust"] .ambient-glow::before { transform: translate(30vw, 20vh); background: rgba(61,122,176,0.08); opacity: 0.45; }
body[data-glow="trust"] .ambient-glow::after  { transform: translate(-20vw, -10vh); background: rgba(168,197,220,0.10); opacity: 0.4; }

body[data-glow="product"] .ambient-glow::before { transform: translate(50vw, 15vh); background: rgba(61,122,176,0.12); opacity: 0.6; }
body[data-glow="product"] .ambient-glow::after  { transform: translate(10vw, -30vh); background: rgba(168,197,220,0.12); opacity: 0.45; }

body[data-glow="features"] .ambient-glow::before { transform: translate(20vw, 30vh); background: rgba(61,122,176,0.10); opacity: 0.55; }
body[data-glow="features"] .ambient-glow::after  { transform: translate(-30vw, 0vh); background: rgba(168,197,220,0.10); opacity: 0.45; }

body[data-glow="meeting"] .ambient-glow::before { transform: translate(60vw, 10vh); background: rgba(61,122,176,0.12); opacity: 0.6; }
body[data-glow="meeting"] .ambient-glow::after  { transform: translate(20vw, -15vh); background: rgba(168,197,220,0.15); opacity: 0.55; }

body[data-glow="services"] .ambient-glow::before { transform: translate(5vw, 25vh); background: rgba(61,122,176,0.10); opacity: 0.55; }
body[data-glow="services"] .ambient-glow::after  { transform: translate(-40vw, -5vh); background: rgba(168,197,220,0.12); opacity: 0.5; }

body[data-glow="mission"] .ambient-glow::before { transform: translate(35vw, 20vh); background: rgba(61,122,176,0.15); opacity: 0.7; }
body[data-glow="mission"] .ambient-glow::after  { transform: translate(-10vw, -10vh); background: rgba(168,197,220,0.18); opacity: 0.6; }

body[data-glow="news"] .ambient-glow::before { transform: translate(50vw, 30vh); background: rgba(61,122,176,0.08); opacity: 0.45; }
body[data-glow="news"] .ambient-glow::after  { transform: translate(-20vw, -20vh); background: rgba(168,197,220,0.08); opacity: 0.35; }

body[data-glow="cta"] .ambient-glow::before { transform: translate(15vw, 15vh); background: rgba(61,122,176,0.12); opacity: 0.6; }
body[data-glow="cta"] .ambient-glow::after  { transform: translate(-25vw, -5vh); background: rgba(168,197,220,0.15); opacity: 0.55; }

/* 各セクションにposition:relativeを確保 */
section, footer { position: relative; z-index: 1; }

/* ============================================================
   LOADER — シンプルFAZOMロゴ表示
   ============================================================ */
.loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.loader-overlay.done {
  opacity: 0;
  pointer-events: none;
}

/* ---- ロゴ表示 ---- */
.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.loader-logo img {
  width: 180px;
  height: auto;
  opacity: 0;
  transform: translateY(8px);
  animation: loaderLogoIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
@keyframes loaderLogoIn {
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* 下線アクセント */
.loader-line {
  width: 0;
  height: 1px;
  background: var(--light-blue);
  margin-top: 24px;
  opacity: 0.6;
  animation: loaderLineIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}
@keyframes loaderLineIn {
  0%   { width: 0; }
  100% { width: 60px; }
}

/* ---- ページ本体の表示制御 ---- */
body.loading .ambient-glow,
body.loading header,
body.loading section,
body.loading footer {
  opacity: 0;
}
body.loaded .ambient-glow,
body.loaded header,
body.loaded section,
body.loaded footer {
  animation: pageContentIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes pageContentIn {
  0%   { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* source: index.html */
@keyframes drawLine {
                from { stroke-dashoffset: 900; }
                to { stroke-dashoffset: 0; }
              }
              @keyframes fadeInUp {
                from { opacity: 0; transform: translateY(8px); }
                to { opacity: 1; transform: translateY(0); }
              }
              @keyframes pulseRing {
                0%, 100% { transform: scale(1); opacity: 0.3; }
                50% { transform: scale(1.7); opacity: 0; }
              }
              @keyframes heroBarReveal {
                from { stroke-dashoffset: 100; }
                to { stroke-dashoffset: 0; }
              }
              @keyframes scanLine {
                0% { transform: translateY(0); opacity: 0; }
                10% { opacity: 0.4; }
                90% { opacity: 0.4; }
                100% { transform: translateY(240px); opacity: 0; }
              }
              @keyframes blink {
                0%, 100% { opacity: 1; }
                50% { opacity: 0.3; }
              }
              @keyframes sidebarPulse {
                0%, 100% { stroke-opacity: 0.5; }
                50% { stroke-opacity: 0.9; }
              }
              @keyframes heroDotFloat {
                0%, 100% { transform: translateY(0); }
                50% { transform: translateY(-3px); }
              }
              @keyframes heroNotifSlide {
                from { opacity: 0; transform: translateX(12px); }
                to { opacity: 1; transform: translateX(0); }
              }
              .hero-draw { stroke-dasharray: 900; animation: drawLine 2.5s ease-out forwards; }
              .hero-draw-sub { stroke-dasharray: 900; animation: drawLine 3s ease-out 0.4s forwards; stroke-dashoffset: 900; }
              .hero-fade1 { animation: fadeInUp 0.6s ease-out 1.2s both; }
              .hero-fade2 { animation: fadeInUp 0.6s ease-out 1.5s both; }
              .hero-fade3 { animation: fadeInUp 0.6s ease-out 1.8s both; }
              .hero-fade4 { animation: fadeInUp 0.6s ease-out 2.1s both; }
              .hero-pulse { transform-box: fill-box; transform-origin: center; animation: pulseRing 2.5s ease-in-out infinite 2s; }
              .hero-bar1 { stroke-dasharray: 90; stroke-dashoffset: 90; animation: heroBarReveal 1.2s ease-out 2s both; }
              .hero-bar2 { stroke-dasharray: 72; stroke-dashoffset: 72; animation: heroBarReveal 1.2s ease-out 2.2s both; }
              .hero-bar3 { stroke-dasharray: 100; stroke-dashoffset: 100; animation: heroBarReveal 1.2s ease-out 2.4s both; }
              .hero-bar4 { stroke-dasharray: 64; stroke-dashoffset: 64; animation: heroBarReveal 1.2s ease-out 2.6s both; }
              .hero-scan { animation: scanLine 4s linear infinite 2.5s; }
              .hero-blink { animation: blink 1.5s ease-in-out infinite 2s; }
              .hero-sidebar { animation: sidebarPulse 3s ease-in-out infinite; }
              .hero-dot-float { transform-box: fill-box; transform-origin: center; animation: heroDotFloat 3s ease-in-out infinite; }
              .hero-notif { animation: heroNotifSlide 0.5s ease-out 2.8s both; }

/* source: recruit/index.html */
/* ============================================================
   FAZOM Corporate Site — /recruit (採用情報)
   ============================================================ */

:root {
  --navy: #0A2540;
  --navy-soft: #1A3A5C;
  --navy-90: rgba(10, 37, 64, 0.9);
  --navy-70: rgba(10, 37, 64, 0.7);
  --navy-50: rgba(10, 37, 64, 0.5);
  --navy-20: rgba(10, 37, 64, 0.2);
  --navy-10: rgba(10, 37, 64, 0.1);
  --light-blue: #A8C5DC;
  --light-blue-mid: #7BA8C8;
  --light-blue-pale: #E8F1F8;
  --light-blue-paler: #F4F9FC;
  --light-blue-deep: #5A8FC2;
  --accent: #3D7AB0;
  --white: #FFFFFF;
  --off-white: #FAFBFD;
  --sub-text: #4A6B85;
  --line: #E1EAF2;
  --line-soft: #EEF3F8;

  --wf-bg: var(--white);
  --wf-surface: var(--light-blue-paler);
  --wf-border: var(--line);
  --wf-text: var(--navy);
  --wf-text-2: var(--sub-text);
  --wf-accent: var(--accent);
  --wf-max: 1200px;

  --font-serif-en: 'Fraunces', serif;
  --font-sans-en: 'Manrope', sans-serif;
  --font-serif-jp: 'Noto Serif JP', serif;
  --font-sans-jp: 'Noto Sans JP', sans-serif;

  --fs-display: clamp(44px, 5vw, 64px);
  --fs-h1: clamp(36px, 4.2vw, 56px);
  --fs-h2: clamp(28px, 3vw, 40px);
  --fs-h3: clamp(22px, 2.4vw, 32px);
  --fs-h4: 17px;
  --fs-body: 15px;
  --fs-small: 13px;
  --fs-caption: 11px;

  --lh-heading: 1.25;
  --lh-body: 1.85;
  --ls-heading: 0.04em;
  --ls-body: 0.02em;

  --r-sm: 3px;
  --r-md: 4px;
  --r-lg: 8px;
  --r-pill: 999px;
  --section-pad: 120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-sans-jp), var(--font-sans-en), sans-serif;
  color: var(--wf-text);
  background: var(--wf-bg);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  font-size: var(--fs-body);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container { width: min(var(--wf-max), calc(100% - 48px)); margin: 0 auto; }

/* ---- HEADER ---- */
.wf-header { position: sticky; top: 0; z-index: 100; padding: 12px 0; }
.wf-header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 20px; background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-soft); border-radius: var(--r-lg);
}
.wf-header-logo { display: flex; align-items: center; height: 28px; }
.wf-header-logo a { display: flex; align-items: center; text-decoration: none; }
.wf-header-logo svg { height: 28px; width: auto; }
.wf-mobile-menu { display: none; }
.wf-header-nav { display: flex; gap: 24px; align-items: center; }
.wf-header-nav a {
  color: var(--wf-text-2); font-size: var(--fs-small); font-weight: 700;
  text-decoration: none; transition: color 0.25s ease; position: relative;
}
.wf-header-nav a::after {
  content: ""; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--wf-accent);
  transition: width 0.3s var(--ease-out);
}
.wf-header-nav a:hover { color: var(--wf-text); }
.wf-header-nav a:hover::after { width: 100%; }
.wf-header-nav a.current { color: var(--wf-text); }
.wf-header-nav a.current::after { width: 100%; }
.wf-header-cta {
  padding: 8px 24px; border-radius: var(--r-sm); background: var(--wf-accent);
  color: #fff; font-size: var(--fs-small); font-weight: 700; text-decoration: none;
  white-space: nowrap; transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}
.wf-header-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(61,122,176,0.25); }
.wf-hamburger {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: none; border: 1px solid var(--line);
  border-radius: 8px; cursor: pointer; flex-direction: column; gap: 5px; padding: 0;
}
.wf-hamburger span { display: block; width: 20px; height: 1.5px; background: var(--wf-text); border-radius: 2px; }

/* ---- PAGE HERO ---- */
.page-hero { padding: 100px 0 60px; background: var(--wf-surface); border-bottom: 1px solid var(--line-soft); }
.page-hero-eyebrow {
  font-family: var(--font-sans-en); font-size: var(--fs-caption); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-serif-jp); font-size: var(--fs-h2); font-weight: 600;
  letter-spacing: var(--ls-heading); line-height: var(--lh-heading); color: var(--navy); margin-bottom: 20px;
}
.page-hero-lead { font-size: var(--fs-body); color: var(--sub-text); line-height: var(--lh-body); }

/* ---- SECTIONS ---- */
.recruit-section { padding: var(--section-pad) 0; }
.recruit-section + .recruit-section { padding-top: 0; }

/* ---- SECTION HEADING ---- */
.section-eyebrow {
  font-family: var(--font-sans-en); font-size: var(--fs-caption); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-serif-jp); font-size: var(--fs-h3); font-weight: 600;
  letter-spacing: var(--ls-heading); line-height: var(--lh-heading); color: var(--navy); margin-bottom: 24px;
}

/* ---- FULL-WIDTH CARD (Culture) ---- */
.culture-card {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: var(--r-lg);
  padding: 48px 56px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.culture-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(10, 37, 64, 0.06);
}
.culture-card p {
  font-size: var(--fs-body);
  color: var(--sub-text);
  line-height: var(--lh-body);
}

/* ---- POSITION CARDS ---- */
.position-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.position-card {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.position-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(10, 37, 64, 0.06);
}
.position-card h3 {
  font-family: var(--font-sans-jp);
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 12px;
}
.position-card p {
  font-size: var(--fs-body);
  color: var(--sub-text);
  line-height: var(--lh-body);
  flex: 1;
  margin-bottom: 24px;
}
.position-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--wf-accent);
  text-decoration: none;
  transition: gap 0.25s var(--ease-out), color 0.25s ease;
}
.position-card-link:hover {
  gap: 10px;
  color: var(--navy);
}

/* ---- TWO-COLUMN CARDS ---- */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.info-card {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: var(--r-lg);
  padding: 40px 40px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(10, 37, 64, 0.06);
}
.info-card h3 {
  font-family: var(--font-sans-jp);
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 20px;
}
.info-card p {
  font-size: var(--fs-body);
  color: var(--sub-text);
  line-height: var(--lh-body);
}
.stance-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.stance-list li {
  position: relative;
  padding-left: 20px;
  font-size: var(--fs-body);
  color: var(--sub-text);
  line-height: var(--lh-body);
  margin-bottom: 10px;
}
.stance-list li:last-child { margin-bottom: 0; }
.stance-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wf-accent);
}

/* ---- FOOTER ---- */
.wf-footer { background: var(--navy); color: #fff; padding: 64px 0 40px; }
.wf-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; }
.wf-footer-brand-sub {
  font-family: var(--font-sans-en); font-size: var(--fs-caption);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--light-blue);
  margin-top: 12px; margin-bottom: 12px;
}
.wf-footer-brand p { font-size: var(--fs-small); color: rgba(255,255,255,0.6); line-height: 1.8; }
.wf-footer-links h4 {
  font-size: var(--fs-caption); font-weight: 700; letter-spacing: 0.08em;
  color: var(--light-blue); margin-bottom: 16px; text-transform: uppercase;
}
.wf-footer-links a {
  display: block; font-size: var(--fs-small); color: rgba(255,255,255,0.6);
  text-decoration: none; margin-bottom: 10px; transition: color 0.2s ease;
}
.wf-footer-links a:hover { color: #fff; }
.wf-footer-copyright {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--fs-caption); color: rgba(255,255,255,0.35);
}

/* ---- ANIMATIONS ---- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* ---- MOBILE MENU ---- */
.wf-mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--navy-90); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center;
}
.wf-mobile-menu.open { display: flex; }
.wf-mobile-menu a {
  display: block; padding: 18px 0; font-size: 18px; font-weight: 700; color: #fff;
  text-decoration: none; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); width: 80%;
}
.wf-mobile-menu a:last-child { border-bottom: none; }
.wf-mobile-menu a.mobile-cta {
  margin-top: 24px; padding: 14px 40px; border-radius: var(--r-md);
  background: var(--wf-accent); color: #fff; border-bottom: none; width: auto;
}
.wf-mobile-close {
  position: absolute; top: 20px; right: 20px; width: 40px; height: 40px;
  background: none; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  color: #fff; font-size: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .wf-header-nav { display: none; }
  .wf-header-cta { display: none; }
  .wf-hamburger { display: flex; }
  .page-hero { padding: 80px 0 40px; }
  .recruit-section { padding: 80px 0; }
  .recruit-section + .recruit-section { padding-top: 0; }
  .culture-card { padding: 32px 24px; }
  .position-grid { grid-template-columns: 1fr; }
  .two-col-grid { grid-template-columns: 1fr; }
  .info-card { padding: 32px 24px; }
  .wf-footer-grid { grid-template-columns: 1fr; }
  .wf-footer-copyright { flex-direction: column; gap: 4px; text-align: center; }
}

/* source: contact/index.html */
/* ============================================================
   FAZOM Corporate Site — /contact (お問い合わせ)
   ============================================================ */

:root {
  --navy: #0A2540;
  --navy-soft: #1A3A5C;
  --navy-90: rgba(10, 37, 64, 0.9);
  --navy-70: rgba(10, 37, 64, 0.7);
  --navy-50: rgba(10, 37, 64, 0.5);
  --navy-20: rgba(10, 37, 64, 0.2);
  --navy-10: rgba(10, 37, 64, 0.1);
  --light-blue: #A8C5DC;
  --light-blue-mid: #7BA8C8;
  --light-blue-pale: #E8F1F8;
  --light-blue-paler: #F4F9FC;
  --light-blue-deep: #5A8FC2;
  --accent: #3D7AB0;
  --white: #FFFFFF;
  --off-white: #FAFBFD;
  --sub-text: #4A6B85;
  --line: #E1EAF2;
  --line-soft: #EEF3F8;

  --wf-bg: var(--white);
  --wf-surface: var(--light-blue-paler);
  --wf-border: var(--line);
  --wf-text: var(--navy);
  --wf-text-2: var(--sub-text);
  --wf-accent: var(--accent);
  --wf-max: 1200px;

  --font-serif-en: 'Fraunces', serif;
  --font-sans-en: 'Manrope', sans-serif;
  --font-serif-jp: 'Noto Serif JP', serif;
  --font-sans-jp: 'Noto Sans JP', sans-serif;

  --fs-display: clamp(44px, 5vw, 64px);
  --fs-h1: clamp(36px, 4.2vw, 56px);
  --fs-h2: clamp(28px, 3vw, 40px);
  --fs-h3: clamp(22px, 2.4vw, 32px);
  --fs-h4: 17px;
  --fs-body: 15px;
  --fs-small: 13px;
  --fs-caption: 11px;

  --lh-heading: 1.25;
  --lh-body: 1.85;
  --ls-heading: 0.04em;
  --ls-body: 0.02em;

  --r-sm: 3px;
  --r-md: 4px;
  --r-lg: 8px;
  --r-pill: 999px;
  --section-pad: 120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-sans-jp), var(--font-sans-en), sans-serif;
  color: var(--wf-text);
  background: var(--wf-bg);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  font-size: var(--fs-body);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container { width: min(var(--wf-max), calc(100% - 48px)); margin: 0 auto; }

/* ---- HEADER ---- */
.wf-header { position: sticky; top: 0; z-index: 100; padding: 12px 0; }
.wf-header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 20px; background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-soft); border-radius: var(--r-lg);
}
.wf-header-logo { display: flex; align-items: center; height: 28px; }
.wf-header-logo a { display: flex; align-items: center; text-decoration: none; }
.wf-header-logo svg { height: 28px; width: auto; }
.wf-mobile-menu { display: none; }
.wf-header-nav { display: flex; gap: 24px; align-items: center; }
.wf-header-nav a {
  color: var(--wf-text-2); font-size: var(--fs-small); font-weight: 700;
  text-decoration: none; transition: color 0.25s ease; position: relative;
}
.wf-header-nav a::after {
  content: ""; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--wf-accent);
  transition: width 0.3s var(--ease-out);
}
.wf-header-nav a:hover { color: var(--wf-text); }
.wf-header-nav a:hover::after { width: 100%; }
.wf-header-nav a.current { color: var(--wf-text); }
.wf-header-nav a.current::after { width: 100%; }
.wf-header-cta {
  padding: 8px 24px; border-radius: var(--r-sm); background: var(--wf-accent);
  color: #fff; font-size: var(--fs-small); font-weight: 700; text-decoration: none;
  white-space: nowrap; transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}
.wf-header-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(61,122,176,0.25); }
.wf-hamburger {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: none; border: 1px solid var(--line);
  border-radius: 8px; cursor: pointer; flex-direction: column; gap: 5px; padding: 0;
}
.wf-hamburger span { display: block; width: 20px; height: 1.5px; background: var(--wf-text); border-radius: 2px; }

/* ---- PAGE HERO ---- */
.page-hero { padding: 100px 0 60px; background: var(--wf-surface); border-bottom: 1px solid var(--line-soft); }
.page-hero-eyebrow {
  font-family: var(--font-sans-en); font-size: var(--fs-caption); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-serif-jp); font-size: var(--fs-h2); font-weight: 600;
  letter-spacing: var(--ls-heading); line-height: var(--lh-heading); color: var(--navy); margin-bottom: 20px;
}
.page-hero-lead { font-size: var(--fs-body); color: var(--sub-text); line-height: var(--lh-body); max-width: 720px; }

/* ---- CONTACT SECTION ---- */
.contact-section { padding: var(--section-pad) 0; }
.contact-card {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: var(--r-lg);
  padding: 48px 56px;
  max-width: 760px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
}
.contact-row {
  display: contents;
}
.contact-label,
.contact-value {
  padding: 20px 0;
  border-bottom: 1px solid var(--wf-border);
}
.contact-row:last-child .contact-label,
.contact-row:last-child .contact-value {
  border-bottom: none;
}
.contact-label {
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.contact-value {
  font-size: var(--fs-body);
  color: var(--sub-text);
  line-height: var(--lh-body);
}
.contact-value a {
  color: var(--wf-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-value a:hover {
  color: var(--navy);
}
.contact-types {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-types li {
  display: inline-block;
  padding: 4px 14px;
  font-size: var(--fs-small);
  font-weight: 500;
  background: var(--light-blue-pale);
  color: var(--accent);
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
}
.contact-note {
  margin-top: 32px;
  font-size: var(--fs-small);
  color: var(--navy-50);
  line-height: var(--lh-body);
}

/* ---- FOOTER ---- */
.wf-footer { background: var(--navy); color: #fff; padding: 64px 0 40px; }
.wf-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; }
.wf-footer-brand-sub {
  font-family: var(--font-sans-en); font-size: var(--fs-caption);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--light-blue);
  margin-top: 12px; margin-bottom: 12px;
}
.wf-footer-brand p { font-size: var(--fs-small); color: rgba(255,255,255,0.6); line-height: 1.8; }
.wf-footer-links h4 {
  font-size: var(--fs-caption); font-weight: 700; letter-spacing: 0.08em;
  color: var(--light-blue); margin-bottom: 16px; text-transform: uppercase;
}
.wf-footer-links a {
  display: block; font-size: var(--fs-small); color: rgba(255,255,255,0.6);
  text-decoration: none; margin-bottom: 10px; transition: color 0.2s ease;
}
.wf-footer-links a:hover { color: #fff; }
.wf-footer-copyright {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--fs-caption); color: rgba(255,255,255,0.35);
}

/* ---- ANIMATIONS ---- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* ---- MOBILE MENU ---- */
.wf-mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--navy-90); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center;
}
.wf-mobile-menu.open { display: flex; }
.wf-mobile-menu a {
  display: block; padding: 18px 0; font-size: 18px; font-weight: 700; color: #fff;
  text-decoration: none; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); width: 80%;
}
.wf-mobile-menu a:last-child { border-bottom: none; }
.wf-mobile-menu a.mobile-cta {
  margin-top: 24px; padding: 14px 40px; border-radius: var(--r-md);
  background: var(--wf-accent); color: #fff; border-bottom: none; width: auto;
}
.wf-mobile-close {
  position: absolute; top: 20px; right: 20px; width: 40px; height: 40px;
  background: none; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  color: #fff; font-size: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}

@media (max-width: 768px) {
  .wf-header-nav { display: none; }
  .wf-header-cta { display: none; }
  .wf-hamburger { display: flex; }
  .page-hero { padding: 80px 0 40px; }
  .contact-section { padding: 80px 0; }
  .contact-card { padding: 32px 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-label { padding-bottom: 4px; border-bottom: none; }
  .contact-value { padding-top: 0; }
  .wf-footer-grid { grid-template-columns: 1fr; }
  .wf-footer-copyright { flex-direction: column; gap: 4px; text-align: center; }
}

/* source: privacy/index.html */
/* ============================================================
   FAZOM Corporate Site — /privacy (プライバシーポリシー)
   ============================================================ */

:root {
  --navy: #0A2540;
  --navy-soft: #1A3A5C;
  --navy-90: rgba(10, 37, 64, 0.9);
  --navy-70: rgba(10, 37, 64, 0.7);
  --navy-50: rgba(10, 37, 64, 0.5);
  --navy-20: rgba(10, 37, 64, 0.2);
  --navy-10: rgba(10, 37, 64, 0.1);
  --light-blue: #A8C5DC;
  --light-blue-mid: #7BA8C8;
  --light-blue-pale: #E8F1F8;
  --light-blue-paler: #F4F9FC;
  --light-blue-deep: #5A8FC2;
  --accent: #3D7AB0;
  --white: #FFFFFF;
  --off-white: #FAFBFD;
  --sub-text: #4A6B85;
  --line: #E1EAF2;
  --line-soft: #EEF3F8;

  --wf-bg: var(--white);
  --wf-surface: var(--light-blue-paler);
  --wf-border: var(--line);
  --wf-text: var(--navy);
  --wf-text-2: var(--sub-text);
  --wf-accent: var(--accent);
  --wf-max: 1200px;

  --font-serif-en: 'Fraunces', serif;
  --font-sans-en: 'Manrope', sans-serif;
  --font-serif-jp: 'Noto Serif JP', serif;
  --font-sans-jp: 'Noto Sans JP', sans-serif;

  --fs-display: clamp(44px, 5vw, 64px);
  --fs-h1: clamp(36px, 4.2vw, 56px);
  --fs-h2: clamp(28px, 3vw, 40px);
  --fs-h3: clamp(22px, 2.4vw, 32px);
  --fs-h4: 17px;
  --fs-body: 15px;
  --fs-small: 13px;
  --fs-caption: 11px;

  --lh-heading: 1.25;
  --lh-body: 1.85;
  --ls-heading: 0.04em;
  --ls-body: 0.02em;

  --r-sm: 3px;
  --r-md: 4px;
  --r-lg: 8px;
  --r-pill: 999px;
  --section-pad: 120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-sans-jp), var(--font-sans-en), sans-serif;
  color: var(--wf-text);
  background: var(--wf-bg);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  font-size: var(--fs-body);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container { width: min(var(--wf-max), calc(100% - 48px)); margin: 0 auto; }

/* ---- HEADER ---- */
.wf-header { position: sticky; top: 0; z-index: 100; padding: 12px 0; }
.wf-header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 20px; background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-soft); border-radius: var(--r-lg);
}
.wf-header-logo { display: flex; align-items: center; height: 28px; }
.wf-header-logo a { display: flex; align-items: center; text-decoration: none; }
.wf-header-logo svg { height: 28px; width: auto; }
.wf-mobile-menu { display: none; }
.wf-header-nav { display: flex; gap: 24px; align-items: center; }
.wf-header-nav a {
  color: var(--wf-text-2); font-size: var(--fs-small); font-weight: 700;
  text-decoration: none; transition: color 0.25s ease; position: relative;
}
.wf-header-nav a::after {
  content: ""; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--wf-accent);
  transition: width 0.3s var(--ease-out);
}
.wf-header-nav a:hover { color: var(--wf-text); }
.wf-header-nav a:hover::after { width: 100%; }
.wf-header-nav a.current { color: var(--wf-text); }
.wf-header-nav a.current::after { width: 100%; }
.wf-header-cta {
  padding: 8px 24px; border-radius: var(--r-sm); background: var(--wf-accent);
  color: #fff; font-size: var(--fs-small); font-weight: 700; text-decoration: none;
  white-space: nowrap; transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}
.wf-header-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(61,122,176,0.25); }
.wf-hamburger {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: none; border: 1px solid var(--line);
  border-radius: 8px; cursor: pointer; flex-direction: column; gap: 5px; padding: 0;
}
.wf-hamburger span { display: block; width: 20px; height: 1.5px; background: var(--wf-text); border-radius: 2px; }

/* ---- PAGE HERO ---- */
.page-hero { padding: 100px 0 60px; background: var(--wf-surface); border-bottom: 1px solid var(--line-soft); }
.page-hero-eyebrow {
  font-family: var(--font-sans-en); font-size: var(--fs-caption); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-serif-jp); font-size: var(--fs-h2); font-weight: 600;
  letter-spacing: var(--ls-heading); line-height: var(--lh-heading); color: var(--navy); margin-bottom: 20px;
}
.page-hero-lead { font-size: var(--fs-body); color: var(--sub-text); line-height: var(--lh-body); max-width: 720px; }

/* ---- PRIVACY CARDS ---- */
.privacy-section { padding: var(--section-pad) 0; }
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.privacy-card {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: var(--r-lg);
  padding: 32px;
}
.privacy-card-number {
  font-family: var(--font-sans-en);
  font-size: var(--fs-caption);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}
.privacy-card h3 {
  font-family: var(--font-sans-jp);
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--navy);
  line-height: var(--lh-heading);
  margin-bottom: 12px;
}
.privacy-card p {
  font-size: var(--fs-body);
  color: var(--sub-text);
  line-height: var(--lh-body);
}
.privacy-card a {
  color: var(--wf-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}
.privacy-card a:hover { color: var(--navy); }

/* ---- FOOTER ---- */
.wf-footer { background: var(--navy); color: #fff; padding: 64px 0 40px; }
.wf-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; }
.wf-footer-brand-sub {
  font-family: var(--font-sans-en); font-size: var(--fs-caption);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--light-blue);
  margin-top: 12px; margin-bottom: 12px;
}
.wf-footer-brand p { font-size: var(--fs-small); color: rgba(255,255,255,0.6); line-height: 1.8; }
.wf-footer-links h4 {
  font-size: var(--fs-caption); font-weight: 700; letter-spacing: 0.08em;
  color: var(--light-blue); margin-bottom: 16px; text-transform: uppercase;
}
.wf-footer-links a {
  display: block; font-size: var(--fs-small); color: rgba(255,255,255,0.6);
  text-decoration: none; margin-bottom: 10px; transition: color 0.2s ease;
}
.wf-footer-links a:hover { color: #fff; }
.wf-footer-copyright {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--fs-caption); color: rgba(255,255,255,0.35);
}

/* ---- ANIMATIONS ---- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* ---- MOBILE MENU ---- */
.wf-mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--navy-90); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center;
}
.wf-mobile-menu.open { display: flex; }
.wf-mobile-menu a {
  display: block; padding: 18px 0; font-size: 18px; font-weight: 700; color: #fff;
  text-decoration: none; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); width: 80%;
}
.wf-mobile-menu a:last-child { border-bottom: none; }
.wf-mobile-menu a.mobile-cta {
  margin-top: 24px; padding: 14px 40px; border-radius: var(--r-md);
  background: var(--wf-accent); color: #fff; border-bottom: none; width: auto;
}
.wf-mobile-close {
  position: absolute; top: 20px; right: 20px; width: 40px; height: 40px;
  background: none; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  color: #fff; font-size: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}

@media (max-width: 768px) {
  .wf-header-nav { display: none; }
  .wf-header-cta { display: none; }
  .wf-hamburger { display: flex; }
  .privacy-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 80px 0 40px; }
  .privacy-section { padding: 80px 0; }
  .wf-footer-grid { grid-template-columns: 1fr; }
  .wf-footer-copyright { flex-direction: column; gap: 4px; text-align: center; }
}

/* source: business/index.html */
/* ============================================================
   FAZOM Corporate Site — /business (事業内容)
   ============================================================ */

:root {
  --navy: #0A2540;
  --navy-soft: #1A3A5C;
  --navy-90: rgba(10, 37, 64, 0.9);
  --navy-70: rgba(10, 37, 64, 0.7);
  --navy-50: rgba(10, 37, 64, 0.5);
  --navy-20: rgba(10, 37, 64, 0.2);
  --navy-10: rgba(10, 37, 64, 0.1);
  --light-blue: #A8C5DC;
  --light-blue-mid: #7BA8C8;
  --light-blue-pale: #E8F1F8;
  --light-blue-paler: #F4F9FC;
  --light-blue-deep: #5A8FC2;
  --accent: #3D7AB0;
  --white: #FFFFFF;
  --off-white: #FAFBFD;
  --sub-text: #4A6B85;
  --line: #E1EAF2;
  --line-soft: #EEF3F8;

  --wf-bg: var(--white);
  --wf-surface: var(--light-blue-paler);
  --wf-surface-2: var(--light-blue-pale);
  --wf-border: var(--line);
  --wf-text: var(--navy);
  --wf-text-2: var(--sub-text);
  --wf-text-3: var(--light-blue-mid);
  --wf-accent: var(--accent);
  --wf-max: 1200px;
  --wf-gutter: 24px;

  --font-serif-en: 'Fraunces', serif;
  --font-sans-en: 'Manrope', sans-serif;
  --font-serif-jp: 'Noto Serif JP', serif;
  --font-sans-jp: 'Noto Sans JP', sans-serif;

  --fs-display: clamp(44px, 5vw, 64px);
  --fs-h1: clamp(36px, 4.2vw, 56px);
  --fs-h2: clamp(28px, 3vw, 40px);
  --fs-h3: clamp(22px, 2.4vw, 32px);
  --fs-h4: 17px;
  --fs-body: 15px;
  --fs-small: 13px;
  --fs-caption: 11px;

  --lh-heading: 1.25;
  --lh-body: 1.85;
  --ls-display: 0.12em;
  --ls-heading: 0.04em;
  --ls-body: 0.02em;

  --r-xs: 2px;
  --r-sm: 3px;
  --r-md: 4px;
  --r-lg: 8px;
  --r-xl: 8px;
  --r-pill: 999px;
  --section-pad: 120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;
}

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

html {
  font-family: var(--font-sans-jp), var(--font-sans-en), sans-serif;
  color: var(--wf-text);
  background: var(--wf-bg);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  font-size: var(--fs-body);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  width: min(var(--wf-max), calc(100% - 48px));
  margin: 0 auto;
}

/* ---- HEADER ---- */
.wf-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
}
.wf-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
}
.wf-header-logo { display: flex; align-items: center; height: 28px; }
.wf-header-logo a { display: flex; align-items: center; text-decoration: none; }
.wf-header-logo svg { height: 28px; width: auto; }
.wf-mobile-menu { display: none; }
.wf-header-nav { display: flex; gap: 24px; align-items: center; }
.wf-header-nav a {
  color: var(--wf-text-2);
  font-size: var(--fs-small);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
  letter-spacing: 0.01em;
  position: relative;
}
.wf-header-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--wf-accent);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.wf-header-nav a:hover { color: var(--wf-text); }
.wf-header-nav a:hover::after { width: 100%; }
.wf-header-nav a.current { color: var(--wf-text); }
.wf-header-nav a.current::after { width: 100%; }
.wf-header-cta {
  padding: 8px 24px;
  border-radius: var(--r-sm);
  background: var(--wf-accent);
  color: #fff;
  font-size: var(--fs-small);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
  cursor: pointer;
}
.wf-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(61,122,176,0.25);
}
.wf-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px; padding: 0;
}
.wf-hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--wf-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 100px 0 60px;
  background: var(--light-blue-paler);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero-eyebrow {
  font-family: var(--font-sans-en);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-serif-jp);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: var(--ls-heading);
  line-height: var(--lh-heading);
  color: var(--navy);
  margin-bottom: 20px;
}
.page-hero-lead {
  font-size: var(--fs-body);
  color: var(--sub-text);
  line-height: var(--lh-body);
  max-width: 720px;
}

/* ---- SECTION COMMON ---- */
.biz-section {
  padding: var(--section-pad) 0;
}
.biz-section.bg-pale {
  background: var(--light-blue-paler);
}
.section-label {
  font-family: var(--font-sans-en);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* ---- BUSINESS CARDS ---- */
.biz-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.biz-card {
  position: relative;
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: var(--r-lg);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}
.biz-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10,37,64,0.06);
}
.biz-card-eyebrow {
  font-family: var(--font-sans-en);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--accent);
  border-radius: var(--r-pill);
}
.biz-card-name {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}
.biz-card-name img {
  display: block;
}
.biz-card-name-sub {
  font-family: var(--font-sans-jp);
  font-size: 14px;
  font-weight: 500;
  color: var(--sub-text);
  letter-spacing: 0.1em;
}
.biz-card-body {
  font-size: var(--fs-body);
  color: var(--navy);
  line-height: var(--lh-body);
  margin-bottom: 28px;
}
.biz-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--wf-accent);
  text-decoration: none;
  transition: gap 0.3s var(--ease-out);
}
.biz-card-link:hover { gap: 10px; }
.biz-card-link svg {
  width: 16px; height: 16px;
  transition: transform 0.3s var(--ease-out);
}
.biz-card-link:hover svg { transform: translate(2px, -2px); }
.biz-card-deco {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 240px;
  height: 240px;
  opacity: 0.08;
  pointer-events: none;
}
.biz-card-deco img {
  width: 100%;
  height: auto;
}

/* ---- VISION BAND ---- */
.vision-band {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 64px 56px;
  color: #fff;
}
.vision-band-eyebrow {
  font-family: var(--font-sans-en);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light-blue);
  margin-bottom: 16px;
}
.vision-band h3 {
  font-family: var(--font-serif-jp);
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: var(--ls-heading);
  margin-bottom: 16px;
}
.vision-band p {
  font-size: var(--fs-body);
  color: var(--light-blue);
  line-height: var(--lh-body);
  max-width: 640px;
}

/* ---- FOOTER ---- */
.wf-footer {
  background: var(--navy);
  color: #fff;
  padding: 64px 0 40px;
}
.wf-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.wf-footer-brand-sub {
  font-family: var(--font-sans-en);
  font-size: var(--fs-caption);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-blue);
  margin-top: 12px;
  margin-bottom: 12px;
}
.wf-footer-brand p {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}
.wf-footer-links h4 {
  font-size: var(--fs-caption);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--light-blue);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.wf-footer-links a {
  display: block;
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.wf-footer-links a:hover { color: #fff; }
.wf-footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--fs-caption);
  color: rgba(255,255,255,0.35);
}

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- MOBILE MENU ---- */
.wf-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--navy-90);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.wf-mobile-menu.open { display: flex; }
.wf-mobile-menu a {
  display: block;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  width: 80%;
}
.wf-mobile-menu a:last-child { border-bottom: none; }
.wf-mobile-menu a.mobile-cta {
  margin-top: 24px;
  padding: 14px 40px;
  border-radius: var(--r-md);
  background: var(--wf-accent);
  color: #fff;
  border-bottom: none;
  width: auto;
}
.wf-mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .wf-header-nav { display: none; }
  .wf-header-cta { display: none; }
  .wf-hamburger { display: flex; }
  .biz-card { grid-template-columns: 1fr; gap: 24px; padding: 36px 24px; }
  .vision-band { padding: 40px 28px; }
  .page-hero { padding: 80px 0 40px; }
  .biz-section { padding: 80px 0; }
  .wf-footer-grid { grid-template-columns: 1fr; }
  .wf-footer-copyright {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}

/* source: about/index.html */
/* ============================================================
   FAZOM Corporate Site — /about (私たちについて)
   ============================================================ */

:root {
  --navy: #0A2540;
  --navy-soft: #1A3A5C;
  --navy-90: rgba(10, 37, 64, 0.9);
  --navy-70: rgba(10, 37, 64, 0.7);
  --navy-50: rgba(10, 37, 64, 0.5);
  --navy-20: rgba(10, 37, 64, 0.2);
  --navy-10: rgba(10, 37, 64, 0.1);
  --light-blue: #A8C5DC;
  --light-blue-mid: #7BA8C8;
  --light-blue-pale: #E8F1F8;
  --light-blue-paler: #F4F9FC;
  --light-blue-deep: #5A8FC2;
  --accent: #3D7AB0;
  --white: #FFFFFF;
  --off-white: #FAFBFD;
  --sub-text: #4A6B85;
  --line: #E1EAF2;
  --line-soft: #EEF3F8;

  --wf-bg: var(--white);
  --wf-surface: var(--light-blue-paler);
  --wf-surface-2: var(--light-blue-pale);
  --wf-border: var(--line);
  --wf-text: var(--navy);
  --wf-text-2: var(--sub-text);
  --wf-text-3: var(--light-blue-mid);
  --wf-accent: var(--accent);
  --wf-max: 1200px;
  --wf-gutter: 24px;

  --font-serif-en: 'Fraunces', serif;
  --font-sans-en: 'Manrope', sans-serif;
  --font-serif-jp: 'Noto Serif JP', serif;
  --font-sans-jp: 'Noto Sans JP', sans-serif;

  --fs-display: clamp(44px, 5vw, 64px);
  --fs-h1: clamp(36px, 4.2vw, 56px);
  --fs-h2: clamp(28px, 3vw, 40px);
  --fs-h3: clamp(22px, 2.4vw, 32px);
  --fs-h4: 17px;
  --fs-body: 15px;
  --fs-small: 13px;
  --fs-caption: 11px;

  --lh-heading: 1.25;
  --lh-body: 1.85;
  --ls-display: 0.12em;
  --ls-heading: 0.04em;
  --ls-body: 0.02em;

  --r-xs: 2px;
  --r-sm: 3px;
  --r-md: 4px;
  --r-lg: 8px;
  --r-xl: 8px;
  --r-pill: 999px;
  --section-pad: 120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;
}

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

html {
  font-family: var(--font-sans-jp), var(--font-sans-en), sans-serif;
  color: var(--wf-text);
  background: var(--wf-bg);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  font-size: var(--fs-body);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  width: min(var(--wf-max), calc(100% - 48px));
  margin: 0 auto;
}

/* ---- HEADER ---- */
.wf-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
}
.wf-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
}
.wf-header-logo { display: flex; align-items: center; height: 28px; }
.wf-header-logo a { display: flex; align-items: center; text-decoration: none; }
.wf-header-logo svg { height: 28px; width: auto; }
.wf-mobile-menu { display: none; }
.wf-header-nav { display: flex; gap: 24px; align-items: center; }
.wf-header-nav a {
  color: var(--wf-text-2);
  font-size: var(--fs-small);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
  letter-spacing: 0.01em;
  position: relative;
}
.wf-header-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--wf-accent);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.wf-header-nav a:hover { color: var(--wf-text); }
.wf-header-nav a:hover::after { width: 100%; }
.wf-header-nav a.current { color: var(--wf-text); }
.wf-header-nav a.current::after { width: 100%; }
.wf-header-cta {
  padding: 8px 24px;
  border-radius: var(--r-sm);
  background: var(--wf-accent);
  color: #fff;
  font-size: var(--fs-small);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
  cursor: pointer;
}
.wf-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(61,122,176,0.25);
}
.wf-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px; padding: 0;
}
.wf-hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--wf-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 100px 0 60px;
  background: var(--light-blue-paler);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero-eyebrow {
  font-family: var(--font-sans-en);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-serif-jp);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: var(--ls-heading);
  line-height: var(--lh-heading);
  color: var(--navy);
  margin-bottom: 20px;
}
.page-hero-lead {
  font-family: var(--font-serif-jp);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* ---- 共通セクション ---- */
.about-section {
  padding: var(--section-pad) 0;
}
.about-section.bg-pale {
  background: var(--light-blue-paler);
}
.about-section.bg-light {
  background: var(--light-blue-pale);
}

.section-label {
  font-family: var(--font-sans-en);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-heading {
  font-family: var(--font-serif-jp);
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: var(--ls-heading);
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 40px;
}
.section-heading-large {
  font-family: var(--font-serif-jp);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 40px;
}
.section-body {
  font-size: var(--fs-body);
  color: var(--navy);
  line-height: var(--lh-body);
  max-width: 680px;
}
.section-body p {
  margin-bottom: 1.6em;
}
.section-body p:last-child {
  margin-bottom: 0;
}

/* ---- セクション1: 自己定義文 ---- */
.about-definition {
  max-width: 720px;
}

/* ---- セクション2: Mission ---- */
.mission-block {
  position: relative;
  padding: 64px 0 56px;
}
.mission-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--light-blue));
  border-radius: 2px;
}
.mission-statement {
  font-family: var(--font-serif-jp);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.55;
  color: var(--navy);
  margin-bottom: 40px;
}
.mission-sub {
  font-family: var(--font-sans-en);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 12px;
}
.mission-body {
  font-size: var(--fs-body);
  color: var(--sub-text);
  line-height: var(--lh-body);
  max-width: 640px;
  position: relative;
  padding-left: 24px;
  border-left: 2px solid var(--line);
}
.mission-body p {
  margin-bottom: 1.4em;
}
.mission-body p:last-child {
  margin-bottom: 0;
}
.mission-closing {
  margin-top: 48px;
  font-family: var(--font-serif-jp);
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
}

/* ---- セクション3: マネージャーフレームワーク（対比レイアウト） ---- */
.fw-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 48px 0 40px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(10,37,64,0.06);
}
.fw-side {
  padding: 40px 36px;
}
.fw-side--ai {
  background: var(--navy);
  color: #fff;
}
.fw-side--human {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: none;
}
.fw-side-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.fw-side--ai .fw-side-label {
  color: var(--light-blue);
}
.fw-side--human .fw-side-label {
  color: var(--accent);
}
.fw-role {
  margin-bottom: 28px;
}
.fw-role:last-child {
  margin-bottom: 0;
}
.fw-role-name {
  font-size: var(--fs-body);
  font-weight: 700;
  margin-bottom: 6px;
}
.fw-side--ai .fw-role-name { color: #fff; }
.fw-side--human .fw-role-name { color: var(--navy); }
.fw-role-note {
  font-size: 14px;
  line-height: 1.7;
}
.fw-side--ai .fw-role-note { color: rgba(255,255,255,0.7); }
.fw-side--human .fw-role-note { color: var(--sub-text); }
.fw-divider-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-bottom: 20px;
}
.fw-side--ai .fw-divider-icon {
  background: rgba(168,197,220,0.15);
}
.fw-side--human .fw-divider-icon {
  background: var(--bg-pale);
}
.fw-bottom-message {
  margin-top: 40px;
  padding: 32px 36px;
  background: var(--bg-pale);
  border-radius: var(--r-lg);
  font-size: var(--fs-body);
  line-height: 1.9;
  color: var(--navy);
}

/* ---- セクション4: 事業の全体像 ---- */
.business-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 40px;
}
.business-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px 40px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.business-card + .business-card {
  margin-top: 20px;
}
.business-card:hover {
  border-color: var(--light-blue);
  box-shadow: 0 8px 28px rgba(168,197,220,0.18);
}
.business-card-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.biz-tag {
  display: inline-block;
  width: fit-content;
  font-size: 11px;
  font-weight: 600;
  color: var(--sub-text);
  background: var(--bg-pale);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 4px 10px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.biz-logo {
  font-family: var(--font-sans-en);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.biz-reading {
  font-size: var(--fs-small);
  color: var(--sub-text);
  margin-top: 2px;
}
.business-card-right {
  padding-top: 4px;
}
.business-card-desc {
  font-size: var(--fs-body);
  color: var(--sub-text);
  line-height: var(--lh-body);
  margin-bottom: 20px;
}
.biz-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}
.biz-link:hover {
  color: var(--accent);
}
.biz-link span {
  font-size: 13px;
  transition: transform 0.3s var(--ease-out);
}
.biz-link:hover span {
  transform: translateX(3px);
}

/* ---- セクション5: 代表メッセージ導線 ---- */
.ceo-lead-section {
  padding: 80px 0;
  background: var(--navy);
  color: #fff;
}
.ceo-lead-inner {
  max-width: 680px;
}
.ceo-lead-heading {
  font-family: var(--font-serif-jp);
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: var(--ls-heading);
  line-height: 1.4;
  color: #fff;
  margin-bottom: 20px;
}
.ceo-lead-text {
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.75);
  line-height: var(--lh-body);
  margin-bottom: 36px;
}
.ceo-lead-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: var(--fs-body);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s var(--ease-out);
}
.ceo-lead-cta:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* ---- CTA LINK (汎用) ---- */
.section-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  padding: 14px 36px;
  border-radius: var(--r-sm);
  background: var(--accent);
  color: #fff;
  font-size: var(--fs-body);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}
.section-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61,122,176,0.25);
}

/* ---- FOOTER ---- */
.wf-footer {
  padding: 80px 0 0;
  background: var(--navy);
  color: #fff;
}
.wf-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 28px;
}
.wf-footer-brand-sub {
  font-family: var(--font-sans-en);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
  margin-bottom: 8px;
}
.wf-footer-brand p {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.7);
  line-height: var(--lh-body);
}
.wf-footer-links h4 {
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.wf-footer-links a {
  display: block;
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.wf-footer-links a:hover { color: var(--light-blue); }
.wf-footer-copyright {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- レスポンシブ（タブレット） ---- */
@media (max-width: 960px) {
  .wf-footer-grid { grid-template-columns: 1fr; }
  .fw-split { grid-template-columns: 1fr; }
  .fw-side--human { border-left: 1px solid var(--line); border-top: none; }
  .business-card { grid-template-columns: 1fr; gap: 24px; }
}

/* ---- レスポンシブ（スマホ） ---- */
@media (max-width: 640px) {
  .mission-block { padding: 48px 0 40px; }
  .mission-block::before { width: 36px; }
  .mission-body { padding-left: 16px; }
  .mission-closing { margin-top: 36px; }
  :root {
    --fs-display: clamp(32px, 8vw, 44px);
    --fs-h1: clamp(24px, 6vw, 32px);
    --fs-h2: clamp(22px, 5.5vw, 28px);
    --fs-h3: clamp(20px, 5vw, 24px);
  }
  .container { width: calc(100% - 32px); }

  .wf-header-nav { display: none; }
  .wf-header-cta { display: none; }
  .wf-header-inner { padding: 10px 16px; }
  .wf-hamburger { display: flex; }
  .wf-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(12, 16, 24, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  .wf-mobile-menu.open { display: flex; }
  .wf-mobile-menu a {
    display: block;
    padding: 18px 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.02em;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 80%;
  }
  .wf-mobile-menu a:last-child { border-bottom: none; }
  .wf-mobile-menu a.mobile-cta {
    margin-top: 24px;
    padding: 14px 40px;
    border-radius: var(--r-md);
    background: var(--wf-accent);
    color: #fff;
    border-bottom: none;
    width: auto;
  }
  .wf-mobile-close {
    position: absolute;
    top: 20px; right: 20px;
    width: 40px; height: 40px;
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page-hero { padding: 80px 0 40px; }
  .about-section { padding: 80px 0; }
  .fw-split { grid-template-columns: 1fr; }
  .fw-side { padding: 28px 24px; }
  .fw-side--human { border-left: 1px solid var(--line); border-top: none; }
  .fw-bottom-message { padding: 24px 20px; }
  .business-card { grid-template-columns: 1fr; gap: 20px; padding: 32px 24px; }
  .wf-footer-grid { grid-template-columns: 1fr; }
  .wf-footer-copyright {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}

/* source: mission/index.html */
/* ============================================================
   FAZOM Corporate Site — /mission
   ============================================================ */

:root {
  --navy: #0A2540;
  --navy-soft: #1A3A5C;
  --navy-90: rgba(10, 37, 64, 0.9);
  --navy-70: rgba(10, 37, 64, 0.7);
  --navy-50: rgba(10, 37, 64, 0.5);
  --navy-20: rgba(10, 37, 64, 0.2);
  --navy-10: rgba(10, 37, 64, 0.1);
  --light-blue: #A8C5DC;
  --light-blue-mid: #7BA8C8;
  --light-blue-pale: #E8F1F8;
  --light-blue-paler: #F4F9FC;
  --light-blue-deep: #5A8FC2;
  --accent: #3D7AB0;
  --white: #FFFFFF;
  --off-white: #FAFBFD;
  --sub-text: #4A6B85;
  --line: #E1EAF2;
  --line-soft: #EEF3F8;

  --wf-bg: var(--white);
  --wf-surface: var(--light-blue-paler);
  --wf-surface-2: var(--light-blue-pale);
  --wf-border: var(--line);
  --wf-text: var(--navy);
  --wf-text-2: var(--sub-text);
  --wf-text-3: var(--light-blue-mid);
  --wf-accent: var(--accent);
  --wf-max: 1200px;
  --wf-gutter: 24px;

  --font-serif-en: 'Fraunces', serif;
  --font-sans-en: 'Manrope', sans-serif;
  --font-serif-jp: 'Noto Serif JP', serif;
  --font-sans-jp: 'Noto Sans JP', sans-serif;

  --fs-display: clamp(44px, 5vw, 64px);
  --fs-h1: clamp(36px, 4.2vw, 56px);
  --fs-h2: clamp(28px, 3vw, 40px);
  --fs-h3: clamp(22px, 2.4vw, 32px);
  --fs-h4: 17px;
  --fs-body: 15px;
  --fs-small: 13px;
  --fs-caption: 11px;

  --lh-heading: 1.25;
  --lh-body: 1.85;
  --ls-display: 0.12em;
  --ls-heading: 0.04em;
  --ls-body: 0.02em;

  --r-xs: 2px;
  --r-sm: 3px;
  --r-md: 4px;
  --r-lg: 8px;
  --r-xl: 8px;
  --r-pill: 999px;
  --section-pad: 120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;
}

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

html {
  font-family: var(--font-sans-jp), var(--font-sans-en), sans-serif;
  color: var(--wf-text);
  background: var(--wf-bg);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  font-size: var(--fs-body);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  width: min(var(--wf-max), calc(100% - 48px));
  margin: 0 auto;
}

/* ---- HEADER ---- */
.wf-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
}
.wf-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
}
.wf-header-logo { display: flex; align-items: center; height: 28px; }
.wf-header-logo a { display: flex; align-items: center; text-decoration: none; }
.wf-header-logo svg { height: 28px; width: auto; }
.wf-mobile-menu { display: none; }
.wf-header-nav { display: flex; gap: 24px; align-items: center; }
.wf-header-nav a {
  color: var(--wf-text-2);
  font-size: var(--fs-small);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
  letter-spacing: 0.01em;
  position: relative;
}
.wf-header-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--wf-accent);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.wf-header-nav a:hover { color: var(--wf-text); }
.wf-header-nav a:hover::after { width: 100%; }
.wf-header-nav a.current { color: var(--wf-text); }
.wf-header-nav a.current::after { width: 100%; }
.wf-header-cta {
  padding: 8px 24px;
  border-radius: var(--r-sm);
  background: var(--wf-accent);
  color: #fff;
  font-size: var(--fs-small);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
  cursor: pointer;
}
.wf-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(61,122,176,0.25);
}
.wf-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px; padding: 0;
}
.wf-hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--wf-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 100px 0 60px;
  background: var(--light-blue-paler);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero-eyebrow {
  font-family: var(--font-sans-en);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-serif-jp);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: var(--ls-heading);
  line-height: var(--lh-heading);
  color: var(--navy);
  margin-bottom: 20px;
}
.page-hero-lead {
  font-size: var(--fs-body);
  color: var(--sub-text);
  line-height: var(--lh-body);
  max-width: 720px;
}

/* ---- SECTION COMMON ---- */
.mission-section {
  padding: var(--section-pad) 0;
}
.mission-section.bg-pale {
  background: var(--light-blue-paler);
}
.section-label {
  font-family: var(--font-sans-en);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-heading {
  font-family: var(--font-serif-jp);
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: var(--ls-heading);
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 40px;
}

/* ---- CARDS GRID ---- */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.mission-card {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}
.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10,37,64,0.06);
}
.mission-card h3 {
  font-family: var(--font-serif-jp);
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.mission-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mission-card li {
  font-size: var(--fs-body);
  color: var(--navy);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}
.mission-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---- DIRECTION BAND ---- */
.direction-band {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 64px 56px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.direction-band-eyebrow {
  font-family: var(--font-sans-en);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light-blue);
  margin-bottom: 16px;
}
.direction-band h3 {
  font-family: var(--font-serif-jp);
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: var(--ls-heading);
  margin-bottom: 16px;
}
.direction-band p {
  font-size: var(--fs-body);
  color: var(--light-blue);
  line-height: var(--lh-body);
}
.direction-band .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-sm);
  background: var(--wf-accent);
  color: #fff;
  font-size: var(--fs-body);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
  flex-shrink: 0;
}
.direction-band .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61,122,176,0.35);
}
.direction-band .btn svg {
  width: 16px; height: 16px;
}

/* ---- FOOTER ---- */
.wf-footer {
  background: var(--navy);
  color: #fff;
  padding: 64px 0 40px;
}
.wf-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.wf-footer-brand-sub {
  font-family: var(--font-sans-en);
  font-size: var(--fs-caption);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-blue);
  margin-top: 12px;
  margin-bottom: 12px;
}
.wf-footer-brand p {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}
.wf-footer-links h4 {
  font-size: var(--fs-caption);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--light-blue);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.wf-footer-links a {
  display: block;
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.wf-footer-links a:hover { color: #fff; }
.wf-footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--fs-caption);
  color: rgba(255,255,255,0.35);
}

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- MOBILE MENU ---- */
.wf-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--navy-90);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.wf-mobile-menu.open { display: flex; }
.wf-mobile-menu a {
  display: block;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  width: 80%;
}
.wf-mobile-menu a:last-child { border-bottom: none; }
.wf-mobile-menu a.mobile-cta {
  margin-top: 24px;
  padding: 14px 40px;
  border-radius: var(--r-md);
  background: var(--wf-accent);
  color: #fff;
  border-bottom: none;
  width: auto;
}
.wf-mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .wf-header-nav { display: none; }
  .wf-header-cta { display: none; }
  .wf-hamburger { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .direction-band {
    flex-direction: column;
    padding: 40px 28px;
    text-align: center;
  }
  .page-hero { padding: 80px 0 40px; }
  .mission-section { padding: 80px 0; }
  .wf-footer-grid { grid-template-columns: 1fr; }
  .wf-footer-copyright {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}

/* source: news/index.html */
/* ============================================================
   FAZOM Corporate Site — /news (お知らせ)
   ============================================================ */

:root {
  --navy: #0A2540;
  --navy-soft: #1A3A5C;
  --navy-90: rgba(10, 37, 64, 0.9);
  --navy-70: rgba(10, 37, 64, 0.7);
  --navy-50: rgba(10, 37, 64, 0.5);
  --navy-20: rgba(10, 37, 64, 0.2);
  --navy-10: rgba(10, 37, 64, 0.1);
  --light-blue: #A8C5DC;
  --light-blue-mid: #7BA8C8;
  --light-blue-pale: #E8F1F8;
  --light-blue-paler: #F4F9FC;
  --light-blue-deep: #5A8FC2;
  --accent: #3D7AB0;
  --white: #FFFFFF;
  --off-white: #FAFBFD;
  --sub-text: #4A6B85;
  --line: #E1EAF2;
  --line-soft: #EEF3F8;

  --wf-bg: var(--white);
  --wf-surface: var(--light-blue-paler);
  --wf-border: var(--line);
  --wf-text: var(--navy);
  --wf-text-2: var(--sub-text);
  --wf-accent: var(--accent);
  --wf-max: 1200px;

  --font-serif-en: 'Fraunces', serif;
  --font-sans-en: 'Manrope', sans-serif;
  --font-serif-jp: 'Noto Serif JP', serif;
  --font-sans-jp: 'Noto Sans JP', sans-serif;

  --fs-display: clamp(44px, 5vw, 64px);
  --fs-h1: clamp(36px, 4.2vw, 56px);
  --fs-h2: clamp(28px, 3vw, 40px);
  --fs-h3: clamp(22px, 2.4vw, 32px);
  --fs-h4: 17px;
  --fs-body: 15px;
  --fs-small: 13px;
  --fs-caption: 11px;

  --lh-heading: 1.25;
  --lh-body: 1.85;
  --ls-heading: 0.04em;
  --ls-body: 0.02em;

  --r-sm: 3px;
  --r-md: 4px;
  --r-lg: 8px;
  --r-pill: 999px;
  --section-pad: 120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-sans-jp), var(--font-sans-en), sans-serif;
  color: var(--wf-text);
  background: var(--wf-bg);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  font-size: var(--fs-body);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container { width: min(var(--wf-max), calc(100% - 48px)); margin: 0 auto; }

/* ---- HEADER ---- */
.wf-header { position: sticky; top: 0; z-index: 100; padding: 12px 0; }
.wf-header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 20px; background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-soft); border-radius: var(--r-lg);
}
.wf-header-logo { display: flex; align-items: center; height: 28px; }
.wf-header-logo a { display: flex; align-items: center; text-decoration: none; }
.wf-header-logo svg { height: 28px; width: auto; }
.wf-mobile-menu { display: none; }
.wf-header-nav { display: flex; gap: 24px; align-items: center; }
.wf-header-nav a {
  color: var(--wf-text-2); font-size: var(--fs-small); font-weight: 700;
  text-decoration: none; transition: color 0.25s ease; position: relative;
}
.wf-header-nav a::after {
  content: ""; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--wf-accent);
  transition: width 0.3s var(--ease-out);
}
.wf-header-nav a:hover { color: var(--wf-text); }
.wf-header-nav a:hover::after { width: 100%; }
.wf-header-nav a.current { color: var(--wf-text); }
.wf-header-nav a.current::after { width: 100%; }
.wf-header-cta {
  padding: 8px 24px; border-radius: var(--r-sm); background: var(--wf-accent);
  color: #fff; font-size: var(--fs-small); font-weight: 700; text-decoration: none;
  white-space: nowrap; transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}
.wf-header-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(61,122,176,0.25); }
.wf-hamburger {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: none; border: 1px solid var(--line);
  border-radius: 8px; cursor: pointer; flex-direction: column; gap: 5px; padding: 0;
}
.wf-hamburger span { display: block; width: 20px; height: 1.5px; background: var(--wf-text); border-radius: 2px; }

/* ---- PAGE HERO ---- */
.page-hero { padding: 100px 0 60px; background: var(--wf-surface); border-bottom: 1px solid var(--line-soft); }
.page-hero-eyebrow {
  font-family: var(--font-sans-en); font-size: var(--fs-caption); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-serif-jp); font-size: var(--fs-h2); font-weight: 600;
  letter-spacing: var(--ls-heading); line-height: var(--lh-heading); color: var(--navy); margin-bottom: 20px;
}
.page-hero-lead { font-size: var(--fs-body); color: var(--sub-text); line-height: var(--lh-body); max-width: 720px; }

/* ---- NEWS LIST ---- */
.news-section { padding: var(--section-pad) 0; }
.news-list {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.news-item {
  display: grid;
  grid-template-columns: 120px auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 28px 32px;
  text-decoration: none;
  color: var(--wf-text);
  border-bottom: 1px solid var(--wf-border);
  transition: background 0.25s ease;
}
.news-item:last-child { border-bottom: none; }
.news-item:hover { background: var(--light-blue-pale); }
.news-date {
  font-family: var(--font-sans-en);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--sub-text);
  letter-spacing: 0.04em;
}
.news-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: var(--fs-caption);
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.news-badge.info { background: var(--light-blue-pale); color: var(--accent); }
.news-badge.biz { background: #E8F5E9; color: #2E7D32; }
.news-badge.recruit { background: #FFF3E0; color: #E65100; }
.news-title {
  font-family: var(--font-sans-jp);
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}

/* ---- FOOTER ---- */
.wf-footer { background: var(--navy); color: #fff; padding: 64px 0 40px; }
.wf-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; }
.wf-footer-brand-sub {
  font-family: var(--font-sans-en); font-size: var(--fs-caption);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--light-blue);
  margin-top: 12px; margin-bottom: 12px;
}
.wf-footer-brand p { font-size: var(--fs-small); color: rgba(255,255,255,0.6); line-height: 1.8; }
.wf-footer-links h4 {
  font-size: var(--fs-caption); font-weight: 700; letter-spacing: 0.08em;
  color: var(--light-blue); margin-bottom: 16px; text-transform: uppercase;
}
.wf-footer-links a {
  display: block; font-size: var(--fs-small); color: rgba(255,255,255,0.6);
  text-decoration: none; margin-bottom: 10px; transition: color 0.2s ease;
}
.wf-footer-links a:hover { color: #fff; }
.wf-footer-copyright {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--fs-caption); color: rgba(255,255,255,0.35);
}

/* ---- ANIMATIONS ---- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* ---- MOBILE MENU ---- */
.wf-mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--navy-90); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center;
}
.wf-mobile-menu.open { display: flex; }
.wf-mobile-menu a {
  display: block; padding: 18px 0; font-size: 18px; font-weight: 700; color: #fff;
  text-decoration: none; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); width: 80%;
}
.wf-mobile-menu a:last-child { border-bottom: none; }
.wf-mobile-menu a.mobile-cta {
  margin-top: 24px; padding: 14px 40px; border-radius: var(--r-md);
  background: var(--wf-accent); color: #fff; border-bottom: none; width: auto;
}
.wf-mobile-close {
  position: absolute; top: 20px; right: 20px; width: 40px; height: 40px;
  background: none; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  color: #fff; font-size: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}

@media (max-width: 768px) {
  .wf-header-nav { display: none; }
  .wf-header-cta { display: none; }
  .wf-hamburger { display: flex; }
  .news-item { grid-template-columns: 1fr; gap: 8px; }
  .page-hero { padding: 80px 0 40px; }
  .news-section { padding: 80px 0; }
  .wf-footer-grid { grid-template-columns: 1fr; }
  .wf-footer-copyright { flex-direction: column; gap: 4px; text-align: center; }
}

/* source: company/index.html */
/* ============================================================
   FAZOM Corporate Site — /company (会社概要)
   ============================================================ */

:root {
  /* ---- カラーパレット（BtoB ライトブルー基調） ---- */
  --navy: #0A2540;
  --navy-soft: #1A3A5C;
  --navy-90: rgba(10, 37, 64, 0.9);
  --navy-70: rgba(10, 37, 64, 0.7);
  --navy-50: rgba(10, 37, 64, 0.5);
  --navy-20: rgba(10, 37, 64, 0.2);
  --navy-10: rgba(10, 37, 64, 0.1);

  --light-blue: #A8C5DC;
  --light-blue-mid: #7BA8C8;
  --light-blue-pale: #E8F1F8;
  --light-blue-paler: #F4F9FC;
  --light-blue-deep: #5A8FC2;

  --accent: #3D7AB0;

  --white: #FFFFFF;
  --off-white: #FAFBFD;
  --sub-text: #4A6B85;
  --line: #E1EAF2;
  --line-soft: #EEF3F8;

  /* ---- 旧変数との互換レイヤー ---- */
  --wf-bg: var(--white);
  --wf-surface: var(--light-blue-paler);
  --wf-surface-2: var(--light-blue-pale);
  --wf-surface-3: #DCEAF5;
  --wf-border: var(--line);
  --wf-text: var(--navy);
  --wf-text-2: var(--sub-text);
  --wf-text-3: var(--light-blue-mid);
  --wf-accent: var(--accent);
  --wf-accent-2: var(--light-blue-deep);
  --wf-max: 1200px;
  --wf-gutter: 24px;

  /* ---- フォント ---- */
  --font-serif-en: 'Fraunces', serif;
  --font-sans-en: 'Manrope', sans-serif;
  --font-serif-jp: 'Noto Serif JP', serif;
  --font-sans-jp: 'Noto Sans JP', sans-serif;

  /* ---- タイプスケール ---- */
  --fs-display: clamp(44px, 5vw, 64px);
  --fs-h1: clamp(36px, 4.2vw, 56px);
  --fs-h2: clamp(28px, 3vw, 40px);
  --fs-h3: clamp(22px, 2.4vw, 32px);
  --fs-h4: 17px;
  --fs-body: 15px;
  --fs-small: 13px;
  --fs-caption: 11px;

  /* ---- 行間 ---- */
  --lh-heading: 1.25;
  --lh-body: 1.85;

  /* ---- 字間 ---- */
  --ls-display: 0.12em;
  --ls-heading: 0.04em;
  --ls-body: 0.02em;

  /* ---- 角丸 ---- */
  --r-xs: 2px;
  --r-sm: 3px;
  --r-md: 4px;
  --r-lg: 8px;
  --r-xl: 8px;
  --r-pill: 999px;

  /* ---- レイアウト ---- */
  --section-pad: 120px;

  /* ---- モーション ---- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;
}

/* ---- リセット＆基盤 ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-family: var(--font-sans-jp), var(--font-sans-en), sans-serif;
  color: var(--wf-text);
  background: var(--wf-bg);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  font-size: var(--fs-body);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  width: min(var(--wf-max), calc(100% - 48px));
  margin: 0 auto;
}

/* ---- HEADER ---- */
.wf-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
}
.wf-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
}
.wf-header-logo {
  display: flex;
  align-items: center;
  height: 28px;
}
.wf-header-logo a { display: flex; align-items: center; text-decoration: none; }
.wf-header-logo svg {
  height: 28px;
  width: auto;
}
.wf-mobile-menu {
  display: none;
}
.wf-header-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.wf-header-nav a {
  color: var(--wf-text-2);
  font-size: var(--fs-small);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
  letter-spacing: 0.01em;
  position: relative;
}
.wf-header-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--wf-accent);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.wf-header-nav a:hover { color: var(--wf-text); }
.wf-header-nav a:hover::after { width: 100%; }
.wf-header-nav a.current {
  color: var(--wf-text);
}
.wf-header-nav a.current::after {
  width: 100%;
}
.wf-header-cta {
  padding: 8px 24px;
  border-radius: var(--r-sm);
  background: var(--wf-accent);
  color: #fff;
  font-size: var(--fs-small);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
  cursor: pointer;
}
.wf-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(61,122,176,0.25);
}
.wf-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}
.wf-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--wf-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---- PAGE HERO (下層共通) ---- */
.page-hero {
  padding: 100px 0 60px;
  background: var(--light-blue-paler);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero-eyebrow {
  font-family: var(--font-sans-en);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-serif-jp);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: var(--ls-heading);
  line-height: var(--lh-heading);
  color: var(--navy);
  margin-bottom: 20px;
}
.page-hero-lead {
  font-size: var(--fs-body);
  color: var(--sub-text);
  line-height: var(--lh-body);
  max-width: 560px;
}

/* ---- COMPANY INFO TABLE ---- */
.company-section {
  padding: var(--section-pad) 0;
}
.company-section + .company-section {
  padding-top: 0;
}

.section-label {
  font-family: var(--font-sans-en);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-heading {
  font-family: var(--font-serif-jp);
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: var(--ls-heading);
  line-height: var(--lh-heading);
  color: var(--navy);
  margin-bottom: 48px;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table tr {
  border-bottom: 1px solid var(--line);
}
.company-table tr:last-child {
  border-bottom: none;
}
.company-table th {
  text-align: left;
  vertical-align: top;
  padding: 20px 24px 20px 0;
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--navy);
  width: 160px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.company-table td {
  padding: 20px 0;
  font-size: var(--fs-body);
  color: var(--navy);
  line-height: var(--lh-body);
}
.company-table td small {
  display: block;
  font-size: var(--fs-small);
  color: var(--sub-text);
  margin-top: 4px;
}

/* ---- AWARDS LIST ---- */
.awards-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.awards-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: var(--fs-body);
  color: var(--navy);
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.awards-list li:last-child {
  border-bottom: none;
}
.award-year {
  font-family: var(--font-sans-en);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
  min-width: 48px;
}
.award-name {
  color: var(--navy);
}

/* ---- TIMELINE (沿革) ---- */
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}
.timeline-item {
  position: relative;
  padding-bottom: 36px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--light-blue);
  border: 2px solid var(--accent);
}
.timeline-year {
  font-family: var(--font-sans-en);
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.timeline-text {
  font-size: var(--fs-body);
  color: var(--navy);
  line-height: var(--lh-body);
}

/* ---- CTA SECTION ---- */
.company-cta-section {
  padding: 80px 0;
  background: var(--light-blue-pale);
  text-align: center;
}
.company-cta-heading {
  font-family: var(--font-serif-jp);
  font-size: var(--fs-h4);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}
.company-cta-text {
  font-size: var(--fs-body);
  color: var(--sub-text);
  margin-bottom: 32px;
  line-height: var(--lh-body);
}
.company-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: var(--r-sm);
  background: var(--accent);
  color: #fff;
  font-size: var(--fs-body);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}
.company-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61,122,176,0.25);
}

/* ---- FOOTER ---- */
.wf-footer {
  padding: 80px 0 0;
  background: var(--navy);
  color: #fff;
}
.wf-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 28px;
}
.wf-footer-brand-sub {
  font-family: var(--font-sans-en);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
  margin-bottom: 8px;
}
.wf-footer-brand p {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.7);
  line-height: var(--lh-body);
}
.wf-footer-links h4 {
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.wf-footer-links a {
  display: block;
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.wf-footer-links a:hover {
  color: var(--light-blue);
}
.wf-footer-copyright {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- レスポンシブ（タブレット） ---- */
@media (max-width: 960px) {
  .wf-footer-grid {
    grid-template-columns: 1fr;
  }
  .company-table th {
    width: 120px;
  }
  .timeline {
    padding-left: 32px;
  }
}

/* ---- レスポンシブ（スマホ） ---- */
@media (max-width: 640px) {
  :root {
    --fs-display: clamp(32px, 8vw, 44px);
    --fs-h1: clamp(24px, 6vw, 32px);
    --fs-h2: clamp(22px, 5.5vw, 28px);
    --fs-h3: clamp(20px, 5vw, 24px);
  }
  .container {
    width: calc(100% - 32px);
  }

  /* ヘッダー */
  .wf-header-nav { display: none; }
  .wf-header-cta { display: none; }
  .wf-header-inner { padding: 10px 16px; }
  .wf-hamburger { display: flex; }
  .wf-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(12, 16, 24, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  .wf-mobile-menu.open { display: flex; }
  .wf-mobile-menu a {
    display: block;
    padding: 18px 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.02em;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 80%;
    transition: color 0.2s ease;
  }
  .wf-mobile-menu a:last-child { border-bottom: none; }
  .wf-mobile-menu a.mobile-cta {
    margin-top: 24px;
    padding: 14px 40px;
    border-radius: var(--r-md);
    background: var(--wf-accent);
    color: #fff;
    border-bottom: none;
    width: auto;
  }
  .wf-mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ページヒーロー */
  .page-hero {
    padding: 80px 0 40px;
  }

  /* テーブル縦積み */
  .company-table,
  .company-table tbody,
  .company-table tr,
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }
  .company-table tr {
    padding: 16px 0;
  }
  .company-table th {
    padding: 0 0 4px 0;
    font-size: var(--fs-small);
    color: var(--accent);
  }
  .company-table td {
    padding: 0;
  }

  /* アワードリスト */
  .awards-list li {
    flex-direction: column;
    gap: 4px;
  }

  /* タイムライン */
  .timeline {
    padding-left: 28px;
  }
  .timeline-item::before {
    left: -21px;
  }
  .timeline::before {
    left: 7px;
  }

  /* フッター */
  .wf-footer-grid {
    grid-template-columns: 1fr;
  }
  .wf-footer-copyright {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}

/* source: news/service-site-launch/index.html */
/* ============================================================
   FAZOM Corporate Site — News Detail
   ============================================================ */

:root {
  --navy: #0A2540;
  --navy-soft: #1A3A5C;
  --navy-90: rgba(10, 37, 64, 0.9);
  --navy-70: rgba(10, 37, 64, 0.7);
  --navy-50: rgba(10, 37, 64, 0.5);
  --navy-20: rgba(10, 37, 64, 0.2);
  --navy-10: rgba(10, 37, 64, 0.1);
  --light-blue: #A8C5DC;
  --light-blue-mid: #7BA8C8;
  --light-blue-pale: #E8F1F8;
  --light-blue-paler: #F4F9FC;
  --light-blue-deep: #5A8FC2;
  --accent: #3D7AB0;
  --white: #FFFFFF;
  --off-white: #FAFBFD;
  --sub-text: #4A6B85;
  --line: #E1EAF2;
  --line-soft: #EEF3F8;

  --wf-bg: var(--white);
  --wf-surface: var(--light-blue-paler);
  --wf-border: var(--line);
  --wf-text: var(--navy);
  --wf-text-2: var(--sub-text);
  --wf-accent: var(--accent);
  --wf-max: 1200px;

  --font-serif-en: 'Fraunces', serif;
  --font-sans-en: 'Manrope', sans-serif;
  --font-serif-jp: 'Noto Serif JP', serif;
  --font-sans-jp: 'Noto Sans JP', sans-serif;

  --fs-display: clamp(44px, 5vw, 64px);
  --fs-h1: clamp(36px, 4.2vw, 56px);
  --fs-h2: clamp(28px, 3vw, 40px);
  --fs-h3: clamp(22px, 2.4vw, 32px);
  --fs-h4: 17px;
  --fs-body: 15px;
  --fs-small: 13px;
  --fs-caption: 11px;

  --lh-heading: 1.25;
  --lh-body: 1.85;
  --ls-heading: 0.04em;
  --ls-body: 0.02em;

  --r-sm: 3px;
  --r-md: 4px;
  --r-lg: 8px;
  --r-pill: 999px;
  --section-pad: 120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-sans-jp), var(--font-sans-en), sans-serif;
  color: var(--wf-text);
  background: var(--wf-bg);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  font-size: var(--fs-body);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container { width: min(var(--wf-max), calc(100% - 48px)); margin: 0 auto; }

/* ---- HEADER ---- */
.wf-header { position: sticky; top: 0; z-index: 100; padding: 12px 0; }
.wf-header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 20px; background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-soft); border-radius: var(--r-lg);
}
.wf-header-logo { display: flex; align-items: center; height: 28px; }
.wf-header-logo a { display: flex; align-items: center; text-decoration: none; }
.wf-header-logo svg { height: 28px; width: auto; }
.wf-mobile-menu { display: none; }
.wf-header-nav { display: flex; gap: 24px; align-items: center; }
.wf-header-nav a {
  color: var(--wf-text-2); font-size: var(--fs-small); font-weight: 700;
  text-decoration: none; transition: color 0.25s ease; position: relative;
}
.wf-header-nav a::after {
  content: ""; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--wf-accent);
  transition: width 0.3s var(--ease-out);
}
.wf-header-nav a:hover { color: var(--wf-text); }
.wf-header-nav a:hover::after { width: 100%; }
.wf-header-nav a.current { color: var(--wf-text); }
.wf-header-nav a.current::after { width: 100%; }
.wf-header-cta {
  padding: 8px 24px; border-radius: var(--r-sm); background: var(--wf-accent);
  color: #fff; font-size: var(--fs-small); font-weight: 700; text-decoration: none;
  white-space: nowrap; transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}
.wf-header-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(61,122,176,0.25); }
.wf-hamburger {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: none; border: 1px solid var(--line);
  border-radius: 8px; cursor: pointer; flex-direction: column; gap: 5px; padding: 0;
}
.wf-hamburger span { display: block; width: 20px; height: 1.5px; background: var(--wf-text); border-radius: 2px; }

/* ---- PAGE HERO ---- */
.page-hero { padding: 100px 0 60px; background: var(--wf-surface); border-bottom: 1px solid var(--line-soft); }
.page-hero-eyebrow {
  font-family: var(--font-sans-en); font-size: var(--fs-caption); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-serif-jp); font-size: var(--fs-h3); font-weight: 600;
  letter-spacing: var(--ls-heading); line-height: 1.5; color: var(--navy); margin-bottom: 0;
  max-width: 720px;
}

/* ---- ARTICLE ---- */
.article-section { padding: var(--section-pad) 0; }
.article-container { max-width: 720px; margin: 0 auto; }
.article-meta {
  display: flex; align-items: center; gap: 16px; margin-bottom: 48px;
  padding-bottom: 32px; border-bottom: 1px solid var(--wf-border);
}
.article-date {
  font-family: var(--font-sans-en); font-size: var(--fs-small);
  font-weight: 500; color: var(--sub-text); letter-spacing: 0.04em;
}
.article-badge {
  display: inline-block; padding: 3px 10px; font-size: var(--fs-caption);
  font-weight: 700; letter-spacing: 0.04em; border-radius: var(--r-pill); white-space: nowrap;
}
.article-badge.info { background: var(--light-blue-pale); color: var(--accent); }
.article-badge.biz { background: #E8F5E9; color: #2E7D32; }
.article-badge.recruit { background: #FFF3E0; color: #E65100; }
.article-body p {
  font-size: var(--fs-body); line-height: var(--lh-body); color: var(--wf-text);
  margin-bottom: 24px;
}
.article-body p:last-child { margin-bottom: 0; }
.article-back {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 64px;
  padding: 12px 28px; border: 1px solid var(--wf-border); border-radius: var(--r-pill);
  font-size: var(--fs-small); font-weight: 600; color: var(--wf-text-2);
  text-decoration: none; transition: background 0.25s ease, color 0.25s ease;
}
.article-back:hover { background: var(--wf-surface); color: var(--wf-text); }
.article-back::before { content: "\2190"; }

/* ---- FOOTER ---- */
.wf-footer { background: var(--navy); color: #fff; padding: 64px 0 40px; }
.wf-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; }
.wf-footer-brand-sub {
  font-family: var(--font-sans-en); font-size: var(--fs-caption);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--light-blue);
  margin-top: 12px; margin-bottom: 12px;
}
.wf-footer-brand p { font-size: var(--fs-small); color: rgba(255,255,255,0.6); line-height: 1.8; }
.wf-footer-links h4 {
  font-size: var(--fs-caption); font-weight: 700; letter-spacing: 0.08em;
  color: var(--light-blue); margin-bottom: 16px; text-transform: uppercase;
}
.wf-footer-links a {
  display: block; font-size: var(--fs-small); color: rgba(255,255,255,0.6);
  text-decoration: none; margin-bottom: 10px; transition: color 0.2s ease;
}
.wf-footer-links a:hover { color: #fff; }
.wf-footer-copyright {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--fs-caption); color: rgba(255,255,255,0.35);
}

/* ---- ANIMATIONS ---- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* ---- MOBILE MENU ---- */
.wf-mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--navy-90); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center;
}
.wf-mobile-menu.open { display: flex; }
.wf-mobile-menu a {
  display: block; padding: 18px 0; font-size: 18px; font-weight: 700; color: #fff;
  text-decoration: none; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); width: 80%;
}
.wf-mobile-menu a:last-child { border-bottom: none; }
.wf-mobile-menu a.mobile-cta {
  margin-top: 24px; padding: 14px 40px; border-radius: var(--r-md);
  background: var(--wf-accent); color: #fff; border-bottom: none; width: auto;
}
.wf-mobile-close {
  position: absolute; top: 20px; right: 20px; width: 40px; height: 40px;
  background: none; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  color: #fff; font-size: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}

@media (max-width: 768px) {
  .wf-header-nav { display: none; }
  .wf-header-cta { display: none; }
  .wf-hamburger { display: flex; }
  .page-hero { padding: 80px 0 40px; }
  .article-section { padding: 80px 0; }
  .wf-footer-grid { grid-template-columns: 1fr; }
  .wf-footer-copyright { flex-direction: column; gap: 4px; text-align: center; }
}

/* source: recruit/sales-cs/index.html */
/* ============================================================
   FAZOM Corporate Site — /recruit/sales-cs
   ============================================================ */

:root {
  --navy: #0A2540;
  --navy-soft: #1A3A5C;
  --navy-90: rgba(10, 37, 64, 0.9);
  --navy-70: rgba(10, 37, 64, 0.7);
  --navy-50: rgba(10, 37, 64, 0.5);
  --navy-20: rgba(10, 37, 64, 0.2);
  --navy-10: rgba(10, 37, 64, 0.1);
  --light-blue: #A8C5DC;
  --light-blue-mid: #7BA8C8;
  --light-blue-pale: #E8F1F8;
  --light-blue-paler: #F4F9FC;
  --light-blue-deep: #5A8FC2;
  --accent: #3D7AB0;
  --white: #FFFFFF;
  --off-white: #FAFBFD;
  --sub-text: #4A6B85;
  --line: #E1EAF2;
  --line-soft: #EEF3F8;

  --wf-bg: var(--white);
  --wf-surface: var(--light-blue-paler);
  --wf-border: var(--line);
  --wf-text: var(--navy);
  --wf-text-2: var(--sub-text);
  --wf-accent: var(--accent);
  --wf-max: 1200px;

  --font-serif-en: 'Fraunces', serif;
  --font-sans-en: 'Manrope', sans-serif;
  --font-serif-jp: 'Noto Serif JP', serif;
  --font-sans-jp: 'Noto Sans JP', sans-serif;

  --fs-display: clamp(44px, 5vw, 64px);
  --fs-h1: clamp(36px, 4.2vw, 56px);
  --fs-h2: clamp(28px, 3vw, 40px);
  --fs-h3: clamp(22px, 2.4vw, 32px);
  --fs-h4: 17px;
  --fs-body: 15px;
  --fs-small: 13px;
  --fs-caption: 11px;

  --lh-heading: 1.25;
  --lh-body: 1.85;
  --ls-heading: 0.04em;
  --ls-body: 0.02em;

  --r-sm: 3px;
  --r-md: 4px;
  --r-lg: 8px;
  --r-pill: 999px;
  --section-pad: 120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-sans-jp), var(--font-sans-en), sans-serif;
  color: var(--wf-text);
  background: var(--wf-bg);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  font-size: var(--fs-body);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container { width: min(var(--wf-max), calc(100% - 48px)); margin: 0 auto; }

/* ---- HEADER ---- */
.wf-header { position: sticky; top: 0; z-index: 100; padding: 12px 0; }
.wf-header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 20px; background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-soft); border-radius: var(--r-lg);
}
.wf-header-logo { display: flex; align-items: center; height: 28px; }
.wf-header-logo a { display: flex; align-items: center; text-decoration: none; }
.wf-header-logo svg { height: 28px; width: auto; }
.wf-mobile-menu { display: none; }
.wf-header-nav { display: flex; gap: 24px; align-items: center; }
.wf-header-nav a {
  color: var(--wf-text-2); font-size: var(--fs-small); font-weight: 700;
  text-decoration: none; transition: color 0.25s ease; position: relative;
}
.wf-header-nav a::after {
  content: ""; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--wf-accent);
  transition: width 0.3s var(--ease-out);
}
.wf-header-nav a:hover { color: var(--wf-text); }
.wf-header-nav a:hover::after { width: 100%; }
.wf-header-nav a.current { color: var(--wf-text); }
.wf-header-nav a.current::after { width: 100%; }
.wf-header-cta {
  padding: 8px 24px; border-radius: var(--r-sm); background: var(--wf-accent);
  color: #fff; font-size: var(--fs-small); font-weight: 700; text-decoration: none;
  white-space: nowrap; transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}
.wf-header-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(61,122,176,0.25); }
.wf-hamburger {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: none; border: 1px solid var(--line);
  border-radius: 8px; cursor: pointer; flex-direction: column; gap: 5px; padding: 0;
}
.wf-hamburger span { display: block; width: 20px; height: 1.5px; background: var(--wf-text); border-radius: 2px; }

/* ---- PAGE HERO ---- */
.page-hero { padding: 100px 0 60px; background: var(--wf-surface); border-bottom: 1px solid var(--line-soft); }
.page-hero-eyebrow {
  font-family: var(--font-sans-en); font-size: var(--fs-caption); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-serif-jp); font-size: var(--fs-h2); font-weight: 600;
  letter-spacing: var(--ls-heading); line-height: var(--lh-heading); color: var(--navy); margin-bottom: 20px;
}
.page-hero-lead { font-size: var(--fs-body); color: var(--sub-text); line-height: var(--lh-body); max-width: 720px; }

/* ---- SECTIONS ---- */
.detail-section { padding: var(--section-pad) 0; }

/* ---- DETAIL CARDS 2x2 ---- */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.detail-card {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: var(--r-lg);
  padding: 40px 40px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.detail-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(10, 37, 64, 0.06);
}
.detail-card h3 {
  font-family: var(--font-sans-jp);
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 20px;
}
.detail-card p {
  font-size: var(--fs-body);
  color: var(--sub-text);
  line-height: var(--lh-body);
}
.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.detail-list li {
  position: relative;
  padding-left: 20px;
  font-size: var(--fs-body);
  color: var(--sub-text);
  line-height: var(--lh-body);
  margin-bottom: 10px;
}
.detail-list li:last-child { margin-bottom: 0; }
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wf-accent);
}

/* ---- CTA ---- */
.cta-section { padding: 0 0 var(--section-pad); text-align: center; }
.cta-btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: var(--r-sm);
  background: var(--wf-accent);
  color: #fff;
  font-size: var(--fs-body);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(61,122,176,0.3);
}

/* ---- BACK LINK ---- */
.back-link-section { padding: 0 0 var(--section-pad); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--wf-accent);
  text-decoration: none;
  transition: gap 0.25s var(--ease-out), color 0.25s ease;
}
.back-link:hover { gap: 10px; color: var(--navy); }

/* ---- FOOTER ---- */
.wf-footer { background: var(--navy); color: #fff; padding: 64px 0 40px; }
.wf-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; }
.wf-footer-brand-sub {
  font-family: var(--font-sans-en); font-size: var(--fs-caption);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--light-blue);
  margin-top: 12px; margin-bottom: 12px;
}
.wf-footer-brand p { font-size: var(--fs-small); color: rgba(255,255,255,0.6); line-height: 1.8; }
.wf-footer-links h4 {
  font-size: var(--fs-caption); font-weight: 700; letter-spacing: 0.08em;
  color: var(--light-blue); margin-bottom: 16px; text-transform: uppercase;
}
.wf-footer-links a {
  display: block; font-size: var(--fs-small); color: rgba(255,255,255,0.6);
  text-decoration: none; margin-bottom: 10px; transition: color 0.2s ease;
}
.wf-footer-links a:hover { color: #fff; }
.wf-footer-copyright {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--fs-caption); color: rgba(255,255,255,0.35);
}

/* ---- ANIMATIONS ---- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* ---- MOBILE MENU ---- */
.wf-mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--navy-90); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center;
}
.wf-mobile-menu.open { display: flex; }
.wf-mobile-menu a {
  display: block; padding: 18px 0; font-size: 18px; font-weight: 700; color: #fff;
  text-decoration: none; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); width: 80%;
}
.wf-mobile-menu a:last-child { border-bottom: none; }
.wf-mobile-menu a.mobile-cta {
  margin-top: 24px; padding: 14px 40px; border-radius: var(--r-md);
  background: var(--wf-accent); color: #fff; border-bottom: none; width: auto;
}
.wf-mobile-close {
  position: absolute; top: 20px; right: 20px; width: 40px; height: 40px;
  background: none; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  color: #fff; font-size: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .wf-header-nav { display: none; }
  .wf-header-cta { display: none; }
  .wf-hamburger { display: flex; }
  .page-hero { padding: 80px 0 40px; }
  .detail-section { padding: 80px 0; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-card { padding: 32px 24px; }
  .cta-section { padding: 0 0 80px; }
  .back-link-section { padding: 0 0 80px; }
  .wf-footer-grid { grid-template-columns: 1fr; }
  .wf-footer-copyright { flex-direction: column; gap: 4px; text-align: center; }
}

/* source: recruit/is-marketing/index.html */
/* ============================================================
   FAZOM Corporate Site — /recruit/is-marketing
   ============================================================ */

:root {
  --navy: #0A2540;
  --navy-soft: #1A3A5C;
  --navy-90: rgba(10, 37, 64, 0.9);
  --navy-70: rgba(10, 37, 64, 0.7);
  --navy-50: rgba(10, 37, 64, 0.5);
  --navy-20: rgba(10, 37, 64, 0.2);
  --navy-10: rgba(10, 37, 64, 0.1);
  --light-blue: #A8C5DC;
  --light-blue-mid: #7BA8C8;
  --light-blue-pale: #E8F1F8;
  --light-blue-paler: #F4F9FC;
  --light-blue-deep: #5A8FC2;
  --accent: #3D7AB0;
  --white: #FFFFFF;
  --off-white: #FAFBFD;
  --sub-text: #4A6B85;
  --line: #E1EAF2;
  --line-soft: #EEF3F8;

  --wf-bg: var(--white);
  --wf-surface: var(--light-blue-paler);
  --wf-border: var(--line);
  --wf-text: var(--navy);
  --wf-text-2: var(--sub-text);
  --wf-accent: var(--accent);
  --wf-max: 1200px;

  --font-serif-en: 'Fraunces', serif;
  --font-sans-en: 'Manrope', sans-serif;
  --font-serif-jp: 'Noto Serif JP', serif;
  --font-sans-jp: 'Noto Sans JP', sans-serif;

  --fs-display: clamp(44px, 5vw, 64px);
  --fs-h1: clamp(36px, 4.2vw, 56px);
  --fs-h2: clamp(28px, 3vw, 40px);
  --fs-h3: clamp(22px, 2.4vw, 32px);
  --fs-h4: 17px;
  --fs-body: 15px;
  --fs-small: 13px;
  --fs-caption: 11px;

  --lh-heading: 1.25;
  --lh-body: 1.85;
  --ls-heading: 0.04em;
  --ls-body: 0.02em;

  --r-sm: 3px;
  --r-md: 4px;
  --r-lg: 8px;
  --r-pill: 999px;
  --section-pad: 120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-sans-jp), var(--font-sans-en), sans-serif;
  color: var(--wf-text);
  background: var(--wf-bg);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  font-size: var(--fs-body);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container { width: min(var(--wf-max), calc(100% - 48px)); margin: 0 auto; }

/* ---- HEADER ---- */
.wf-header { position: sticky; top: 0; z-index: 100; padding: 12px 0; }
.wf-header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 20px; background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-soft); border-radius: var(--r-lg);
}
.wf-header-logo { display: flex; align-items: center; height: 28px; }
.wf-header-logo a { display: flex; align-items: center; text-decoration: none; }
.wf-header-logo svg { height: 28px; width: auto; }
.wf-mobile-menu { display: none; }
.wf-header-nav { display: flex; gap: 24px; align-items: center; }
.wf-header-nav a {
  color: var(--wf-text-2); font-size: var(--fs-small); font-weight: 700;
  text-decoration: none; transition: color 0.25s ease; position: relative;
}
.wf-header-nav a::after {
  content: ""; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--wf-accent);
  transition: width 0.3s var(--ease-out);
}
.wf-header-nav a:hover { color: var(--wf-text); }
.wf-header-nav a:hover::after { width: 100%; }
.wf-header-nav a.current { color: var(--wf-text); }
.wf-header-nav a.current::after { width: 100%; }
.wf-header-cta {
  padding: 8px 24px; border-radius: var(--r-sm); background: var(--wf-accent);
  color: #fff; font-size: var(--fs-small); font-weight: 700; text-decoration: none;
  white-space: nowrap; transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}
.wf-header-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(61,122,176,0.25); }
.wf-hamburger {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: none; border: 1px solid var(--line);
  border-radius: 8px; cursor: pointer; flex-direction: column; gap: 5px; padding: 0;
}
.wf-hamburger span { display: block; width: 20px; height: 1.5px; background: var(--wf-text); border-radius: 2px; }

/* ---- PAGE HERO ---- */
.page-hero { padding: 100px 0 60px; background: var(--wf-surface); border-bottom: 1px solid var(--line-soft); }
.page-hero-eyebrow {
  font-family: var(--font-sans-en); font-size: var(--fs-caption); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-serif-jp); font-size: var(--fs-h2); font-weight: 600;
  letter-spacing: var(--ls-heading); line-height: var(--lh-heading); color: var(--navy); margin-bottom: 20px;
}
.page-hero-lead { font-size: var(--fs-body); color: var(--sub-text); line-height: var(--lh-body); max-width: 720px; }

/* ---- SECTIONS ---- */
.detail-section { padding: var(--section-pad) 0; }

/* ---- DETAIL CARDS 2x2 ---- */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.detail-card {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: var(--r-lg);
  padding: 40px 40px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.detail-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(10, 37, 64, 0.06);
}
.detail-card h3 {
  font-family: var(--font-sans-jp);
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 20px;
}
.detail-card p {
  font-size: var(--fs-body);
  color: var(--sub-text);
  line-height: var(--lh-body);
}
.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.detail-list li {
  position: relative;
  padding-left: 20px;
  font-size: var(--fs-body);
  color: var(--sub-text);
  line-height: var(--lh-body);
  margin-bottom: 10px;
}
.detail-list li:last-child { margin-bottom: 0; }
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wf-accent);
}

/* ---- CTA ---- */
.cta-section { padding: 0 0 var(--section-pad); text-align: center; }
.cta-btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: var(--r-sm);
  background: var(--wf-accent);
  color: #fff;
  font-size: var(--fs-body);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(61,122,176,0.3);
}

/* ---- BACK LINK ---- */
.back-link-section { padding: 0 0 var(--section-pad); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--wf-accent);
  text-decoration: none;
  transition: gap 0.25s var(--ease-out), color 0.25s ease;
}
.back-link:hover { gap: 10px; color: var(--navy); }

/* ---- FOOTER ---- */
.wf-footer { background: var(--navy); color: #fff; padding: 64px 0 40px; }
.wf-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; }
.wf-footer-brand-sub {
  font-family: var(--font-sans-en); font-size: var(--fs-caption);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--light-blue);
  margin-top: 12px; margin-bottom: 12px;
}
.wf-footer-brand p { font-size: var(--fs-small); color: rgba(255,255,255,0.6); line-height: 1.8; }
.wf-footer-links h4 {
  font-size: var(--fs-caption); font-weight: 700; letter-spacing: 0.08em;
  color: var(--light-blue); margin-bottom: 16px; text-transform: uppercase;
}
.wf-footer-links a {
  display: block; font-size: var(--fs-small); color: rgba(255,255,255,0.6);
  text-decoration: none; margin-bottom: 10px; transition: color 0.2s ease;
}
.wf-footer-links a:hover { color: #fff; }
.wf-footer-copyright {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--fs-caption); color: rgba(255,255,255,0.35);
}

/* ---- ANIMATIONS ---- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* ---- MOBILE MENU ---- */
.wf-mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--navy-90); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center;
}
.wf-mobile-menu.open { display: flex; }
.wf-mobile-menu a {
  display: block; padding: 18px 0; font-size: 18px; font-weight: 700; color: #fff;
  text-decoration: none; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); width: 80%;
}
.wf-mobile-menu a:last-child { border-bottom: none; }
.wf-mobile-menu a.mobile-cta {
  margin-top: 24px; padding: 14px 40px; border-radius: var(--r-md);
  background: var(--wf-accent); color: #fff; border-bottom: none; width: auto;
}
.wf-mobile-close {
  position: absolute; top: 20px; right: 20px; width: 40px; height: 40px;
  background: none; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  color: #fff; font-size: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .wf-header-nav { display: none; }
  .wf-header-cta { display: none; }
  .wf-hamburger { display: flex; }
  .page-hero { padding: 80px 0 40px; }
  .detail-section { padding: 80px 0; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-card { padding: 32px 24px; }
  .cta-section { padding: 0 0 80px; }
  .back-link-section { padding: 0 0 80px; }
  .wf-footer-grid { grid-template-columns: 1fr; }
  .wf-footer-copyright { flex-direction: column; gap: 4px; text-align: center; }
}

/* source: recruit/engineer/index.html */
/* ============================================================
   FAZOM Corporate Site — /recruit/engineer
   ============================================================ */

:root {
  --navy: #0A2540;
  --navy-soft: #1A3A5C;
  --navy-90: rgba(10, 37, 64, 0.9);
  --navy-70: rgba(10, 37, 64, 0.7);
  --navy-50: rgba(10, 37, 64, 0.5);
  --navy-20: rgba(10, 37, 64, 0.2);
  --navy-10: rgba(10, 37, 64, 0.1);
  --light-blue: #A8C5DC;
  --light-blue-mid: #7BA8C8;
  --light-blue-pale: #E8F1F8;
  --light-blue-paler: #F4F9FC;
  --light-blue-deep: #5A8FC2;
  --accent: #3D7AB0;
  --white: #FFFFFF;
  --off-white: #FAFBFD;
  --sub-text: #4A6B85;
  --line: #E1EAF2;
  --line-soft: #EEF3F8;

  --wf-bg: var(--white);
  --wf-surface: var(--light-blue-paler);
  --wf-border: var(--line);
  --wf-text: var(--navy);
  --wf-text-2: var(--sub-text);
  --wf-accent: var(--accent);
  --wf-max: 1200px;

  --font-serif-en: 'Fraunces', serif;
  --font-sans-en: 'Manrope', sans-serif;
  --font-serif-jp: 'Noto Serif JP', serif;
  --font-sans-jp: 'Noto Sans JP', sans-serif;

  --fs-display: clamp(44px, 5vw, 64px);
  --fs-h1: clamp(36px, 4.2vw, 56px);
  --fs-h2: clamp(28px, 3vw, 40px);
  --fs-h3: clamp(22px, 2.4vw, 32px);
  --fs-h4: 17px;
  --fs-body: 15px;
  --fs-small: 13px;
  --fs-caption: 11px;

  --lh-heading: 1.25;
  --lh-body: 1.85;
  --ls-heading: 0.04em;
  --ls-body: 0.02em;

  --r-sm: 3px;
  --r-md: 4px;
  --r-lg: 8px;
  --r-pill: 999px;
  --section-pad: 120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-sans-jp), var(--font-sans-en), sans-serif;
  color: var(--wf-text);
  background: var(--wf-bg);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  font-size: var(--fs-body);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container { width: min(var(--wf-max), calc(100% - 48px)); margin: 0 auto; }

/* ---- HEADER ---- */
.wf-header { position: sticky; top: 0; z-index: 100; padding: 12px 0; }
.wf-header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 20px; background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-soft); border-radius: var(--r-lg);
}
.wf-header-logo { display: flex; align-items: center; height: 28px; }
.wf-header-logo a { display: flex; align-items: center; text-decoration: none; }
.wf-header-logo svg { height: 28px; width: auto; }
.wf-mobile-menu { display: none; }
.wf-header-nav { display: flex; gap: 24px; align-items: center; }
.wf-header-nav a {
  color: var(--wf-text-2); font-size: var(--fs-small); font-weight: 700;
  text-decoration: none; transition: color 0.25s ease; position: relative;
}
.wf-header-nav a::after {
  content: ""; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--wf-accent);
  transition: width 0.3s var(--ease-out);
}
.wf-header-nav a:hover { color: var(--wf-text); }
.wf-header-nav a:hover::after { width: 100%; }
.wf-header-nav a.current { color: var(--wf-text); }
.wf-header-nav a.current::after { width: 100%; }
.wf-header-cta {
  padding: 8px 24px; border-radius: var(--r-sm); background: var(--wf-accent);
  color: #fff; font-size: var(--fs-small); font-weight: 700; text-decoration: none;
  white-space: nowrap; transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}
.wf-header-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(61,122,176,0.25); }
.wf-hamburger {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: none; border: 1px solid var(--line);
  border-radius: 8px; cursor: pointer; flex-direction: column; gap: 5px; padding: 0;
}
.wf-hamburger span { display: block; width: 20px; height: 1.5px; background: var(--wf-text); border-radius: 2px; }

/* ---- PAGE HERO ---- */
.page-hero { padding: 100px 0 60px; background: var(--wf-surface); border-bottom: 1px solid var(--line-soft); }
.page-hero-eyebrow {
  font-family: var(--font-sans-en); font-size: var(--fs-caption); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-serif-jp); font-size: var(--fs-h2); font-weight: 600;
  letter-spacing: var(--ls-heading); line-height: var(--lh-heading); color: var(--navy); margin-bottom: 20px;
}
.page-hero-lead { font-size: var(--fs-body); color: var(--sub-text); line-height: var(--lh-body); max-width: 720px; }

/* ---- SECTIONS ---- */
.detail-section { padding: var(--section-pad) 0; }

/* ---- DETAIL CARDS 2x2 ---- */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.detail-card {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: var(--r-lg);
  padding: 40px 40px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.detail-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(10, 37, 64, 0.06);
}
.detail-card h3 {
  font-family: var(--font-sans-jp);
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 20px;
}
.detail-card p {
  font-size: var(--fs-body);
  color: var(--sub-text);
  line-height: var(--lh-body);
}
.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.detail-list li {
  position: relative;
  padding-left: 20px;
  font-size: var(--fs-body);
  color: var(--sub-text);
  line-height: var(--lh-body);
  margin-bottom: 10px;
}
.detail-list li:last-child { margin-bottom: 0; }
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wf-accent);
}

/* ---- CTA ---- */
.cta-section { padding: 0 0 var(--section-pad); text-align: center; }
.cta-btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: var(--r-sm);
  background: var(--wf-accent);
  color: #fff;
  font-size: var(--fs-body);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(61,122,176,0.3);
}

/* ---- BACK LINK ---- */
.back-link-section { padding: 0 0 var(--section-pad); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--wf-accent);
  text-decoration: none;
  transition: gap 0.25s var(--ease-out), color 0.25s ease;
}
.back-link:hover { gap: 10px; color: var(--navy); }

/* ---- FOOTER ---- */
.wf-footer { background: var(--navy); color: #fff; padding: 64px 0 40px; }
.wf-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; }
.wf-footer-brand-sub {
  font-family: var(--font-sans-en); font-size: var(--fs-caption);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--light-blue);
  margin-top: 12px; margin-bottom: 12px;
}
.wf-footer-brand p { font-size: var(--fs-small); color: rgba(255,255,255,0.6); line-height: 1.8; }
.wf-footer-links h4 {
  font-size: var(--fs-caption); font-weight: 700; letter-spacing: 0.08em;
  color: var(--light-blue); margin-bottom: 16px; text-transform: uppercase;
}
.wf-footer-links a {
  display: block; font-size: var(--fs-small); color: rgba(255,255,255,0.6);
  text-decoration: none; margin-bottom: 10px; transition: color 0.2s ease;
}
.wf-footer-links a:hover { color: #fff; }
.wf-footer-copyright {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--fs-caption); color: rgba(255,255,255,0.35);
}

/* ---- ANIMATIONS ---- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* ---- MOBILE MENU ---- */
.wf-mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--navy-90); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center;
}
.wf-mobile-menu.open { display: flex; }
.wf-mobile-menu a {
  display: block; padding: 18px 0; font-size: 18px; font-weight: 700; color: #fff;
  text-decoration: none; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); width: 80%;
}
.wf-mobile-menu a:last-child { border-bottom: none; }
.wf-mobile-menu a.mobile-cta {
  margin-top: 24px; padding: 14px 40px; border-radius: var(--r-md);
  background: var(--wf-accent); color: #fff; border-bottom: none; width: auto;
}
.wf-mobile-close {
  position: absolute; top: 20px; right: 20px; width: 40px; height: 40px;
  background: none; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  color: #fff; font-size: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .wf-header-nav { display: none; }
  .wf-header-cta { display: none; }
  .wf-hamburger { display: flex; }
  .page-hero { padding: 80px 0 40px; }
  .detail-section { padding: 80px 0; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-card { padding: 32px 24px; }
  .cta-section { padding: 0 0 80px; }
  .back-link-section { padding: 0 0 80px; }
  .wf-footer-grid { grid-template-columns: 1fr; }
  .wf-footer-copyright { flex-direction: column; gap: 4px; text-align: center; }
}

/* ---- TOP PAGE DYNAMIC FIXES ---- */
.wf-news-empty {
  padding: 24px;
  color: var(--wf-text-2);
}
.wf-news-item:visited,
.wf-news-title:visited,
.wf-news-more:visited {
  color: inherit;
}
.wf-news-badge.biz {
  background: #E8F5E9;
  color: #2E7D32;
}
.wf-news-badge.recruit {
  background: #FFF3E0;
  color: #E65100;
}
.wf-news-badge.info {
  background: var(--light-blue-pale);
  color: var(--wf-accent);
}
.wf-recruit-cta,
.wf-recruit-cta:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  padding: 14px 36px;
  border-radius: var(--r-sm);
  background: var(--accent);
  color: #fff;
  font-size: var(--fs-body);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}
.wf-recruit-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61,122,176,0.25);
}
@media (max-width: 640px) {
  .wf-recruit-cta {
    width: 100%;
  }
}


/* ============================================================
   Contact Form / Thanks Page
   ============================================================ */
.contact-form-section,
.thanks-section {
  padding: var(--section-pad) 0;
}

.contact-form-card,
.thanks-card {
  max-width: 840px;
  margin: 0 auto;
  padding: 48px 56px;
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: var(--r-lg);
}

.contact-form-intro {
  margin-bottom: 32px;
}

.contact-form-intro h2,
.thanks-card h2 {
  font-family: var(--font-serif-jp);
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-form-intro p,
.thanks-card p {
  font-size: var(--fs-body);
  color: var(--sub-text);
  line-height: var(--lh-body);
}

.hubspot-form-wrap {
  min-height: 240px;
}

.hubspot-form-wrap .hbspt-form form {
  display: grid;
  gap: 20px;
}

.hubspot-form-wrap .hs-form-field > label,
.hubspot-form-wrap .legal-consent-container .hs-richtext,
.hubspot-form-wrap .hs-error-msgs label {
  font-size: var(--fs-small);
  color: var(--navy);
}

.hubspot-form-wrap input[type="text"],
.hubspot-form-wrap input[type="email"],
.hubspot-form-wrap input[type="tel"],
.hubspot-form-wrap input[type="number"],
.hubspot-form-wrap select,
.hubspot-form-wrap textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid var(--wf-border);
  border-radius: var(--r-md);
  background: #fff;
  color: var(--wf-text);
  font-size: var(--fs-body);
  line-height: 1.6;
}

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

.hubspot-form-wrap input:focus,
.hubspot-form-wrap select:focus,
.hubspot-form-wrap textarea:focus {
  outline: none;
  border-color: var(--wf-accent);
  box-shadow: 0 0 0 3px rgba(61,122,176,0.12);
}

.hubspot-form-wrap .actions {
  margin-top: 8px;
}

.hubspot-form-wrap .hs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--r-sm);
  background: var(--wf-accent);
  color: #fff;
  font-size: var(--fs-body);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}

.hubspot-form-wrap .hs-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(61,122,176,0.25);
}

.hubspot-form-wrap ul.no-list {
  list-style: none;
  padding-left: 0;
}

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

.thanks-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.thanks-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  text-decoration: none;
  font-size: var(--fs-body);
  font-weight: 700;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease, background 0.2s ease;
}

.thanks-btn-primary {
  background: var(--wf-accent);
  color: #fff;
}

.thanks-btn-secondary {
  background: #fff;
  color: var(--wf-text);
  border: 1px solid var(--wf-border);
}

.thanks-btn:hover {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .contact-form-section,
  .thanks-section {
    padding: 80px 0;
  }

  .contact-form-card,
  .thanks-card {
    padding: 32px 24px;
  }

  .thanks-actions {
    flex-direction: column;
  }

  .thanks-btn,
  .hubspot-form-wrap .hs-button {
    width: 100%;
  }
}
