/* =========================================================
   LET Inc. — Mid-Career Recruit LP / Pattern 03
   Theme: Editorial × Modern Minimal
   既存の "ダークブルー基調" / "ブルーグラデーション基調" と
   差別化するため、オフホワイト基調 + ビビッドな差し色 で構築。
   ========================================================= */

:root {
  --c-bg: #f5f7fb;          /* 参考LPに合わせた寒色寄りのオフホワイト */
  --c-bg-dark: #0a1f3d;     /* 参考LPのダークネイビー */
  --c-bg-soft: #e6ecf5;     /* ライトブルー寄り */
  --c-ink: #0d1f3d;         /* 本文のネイビー */
  --c-ink-2: #4a5878;
  --c-line: #d6dde8;
  --c-accent: #1a4cff;      /* メインアクセント = ビビッドブルー（参考LPに準拠） */
  --c-accent-2: #4d7fff;    /* ライトブルー（サブ） */
  --c-accent-deep: #0a2890; /* ダークブルー（コントラスト用） */
  --c-yellow: #f3c623;
  --r: 6px;
  --maxw: 1320px;
  --maxw-wide: 1480px;
  --pad: clamp(20px, 4vw, 72px);
  --font-jp: "Noto Sans JP", system-ui, sans-serif;
  --font-en: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
}

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

/* Disable italic globally — this LP uses sans-serif only, no decorative serif italic */
em, i, address, cite, dfn, var { font-style: normal; }
body {
  margin: 0;
  font-family: var(--font-jp);
  background: var(--c-bg);
  color: var(--c-ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.25; }
p { margin: 0 0 1em; }
small { font-size: 0.78em; }

/* ===== Photo placeholders ===== */
.photo-placeholder {
  position: relative;
  width: 100%;
  background:
    repeating-linear-gradient(45deg, #dde3ee 0 8px, #e6ecf5 8px 16px);
  border: 1px dashed #a8b3c8;
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #5a6a87;
  text-align: center;
  padding: 16px;
  overflow: hidden;
}
.photo-placeholder::before,
.photo-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.photo-placeholder::before {
  background: linear-gradient(180deg, transparent 0 calc(50% - 1px), #a8b3c8 50%, transparent calc(50% + 1px) 100%);
  opacity: 0.35;
}
.photo-placeholder::after {
  background: linear-gradient(90deg, transparent 0 calc(50% - 1px), #a8b3c8 50%, transparent calc(50% + 1px) 100%);
  opacity: 0.35;
}
.photo-placeholder .ph-label {
  position: relative;
  z-index: 2;
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: clamp(14px, 1.6vw, 22px);
  background: var(--c-bg);
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--c-accent);
  border: 1px solid var(--c-line);
}
.photo-placeholder .ph-sub {
  position: relative;
  z-index: 2;
  font-size: 11px;
  color: #6a7a96;
  letter-spacing: 0.04em;
}
/* When a placeholder contains an actual image (.has-photo),
   render the image full-cover and hide the No-Photo overlay. */
.photo-placeholder.has-photo {
  background: var(--c-bg-soft);
  border: 0;
}
.photo-placeholder.has-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.photo-placeholder.has-photo::before,
.photo-placeholder.has-photo::after,
.photo-placeholder.has-photo > .ph-label,
.photo-placeholder.has-photo > .ph-sub {
  display: none;
}

.ratio-1-1   { aspect-ratio: 1 / 1; }
.ratio-3-4   { aspect-ratio: 3 / 4; }
.ratio-4-3   { aspect-ratio: 4 / 3; }
.ratio-4-5   { aspect-ratio: 4 / 5; }
.ratio-9-16  { aspect-ratio: 9 / 16; }
.ratio-16-9  { aspect-ratio: 16 / 9; }
.ratio-21-9  { aspect-ratio: 21 / 9; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 247, 251, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.header-inner {
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding: 16px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.logo-mark {
  display: inline-block;
  color: var(--c-accent);
  font-size: 22px;
  transform: translateY(2px);
}
.logo-text { font-size: 20px; }
.logo-text em { font-style: normal; font-weight: 400; opacity: 0.7; font-size: 0.8em; }
.primary-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.primary-nav a { position: relative; padding: 4px 0; }
.primary-nav a:not(.nav-cta):hover { color: var(--c-accent); }
.nav-cta {
  background: var(--c-ink);
  color: var(--c-bg);
  padding: 10px 18px;
  border-radius: 999px;
  transition: 0.2s;
}
.nav-cta:hover { background: var(--c-accent); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--c-ink); }

@media (max-width: 880px) {
  .primary-nav { display: none; }
  .hamburger { display: flex; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 14px;
  transition: 0.25s;
  border: 1px solid transparent;
}
.btn span { transition: transform 0.25s; }
.btn:hover span { transform: translateX(4px); }
.btn-primary { background: var(--c-accent); color: #fff; }
.btn-primary:hover { background: var(--c-ink); }
.btn-ghost { background: transparent; color: var(--c-ink); border-color: var(--c-line); }
.btn-ghost:hover { background: var(--c-ink); color: var(--c-bg); }
.btn-line { background: var(--c-ink); color: var(--c-bg); }
.btn-line:hover { background: var(--c-accent-2); }
.btn.big {
  padding: 18px 28px;
  font-size: 15px;
}
.btn.big small {
  font-size: 11px;
  opacity: 0.8;
  margin-left: -4px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  border-bottom: 1px solid var(--c-line);
  background:
    radial-gradient(circle at 10% 20%, rgba(26, 76, 255, 0.08), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(26, 76, 255, 0.06), transparent 40%),
    var(--c-bg);
  overflow: hidden;
}

/* Giant LET watermark */
.hero-watermark {
  position: absolute;
  bottom: -8%;
  right: -3%;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(180px, 32vw, 560px);
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(21, 23, 28, 0.08);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* NOW HIRING circular badge */
.hero-badge {
  position: absolute;
  top: clamp(96px, 12vw, 160px);
  right: clamp(20px, 4vw, 64px);
  width: clamp(120px, 12vw, 168px);
  height: clamp(120px, 12vw, 168px);
  z-index: 4;
  pointer-events: none;
}
.hero-badge .badge-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 18s linear infinite;
}
.hero-badge .badge-outer {
  fill: var(--c-ink);
}
.hero-badge .badge-text {
  fill: var(--c-bg);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.hero-badge .badge-core {
  position: absolute;
  inset: 18%;
  background: var(--c-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(14px, 1.2vw, 18px);
  letter-spacing: 0.08em;
  line-height: 1.05;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 880px) {
  .hero-badge { top: 88px; right: 16px; width: 96px; height: 96px; }
}
.hero-grid {
  position: relative;
  z-index: 2;
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 88px) var(--pad) clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-areas:
    "meta meta"
    "copy visual";
  gap: clamp(40px, 5vw, 72px) clamp(48px, 6vw, 96px);
  align-items: start;
}
.hero-meta {
  grid-area: meta;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.16em;
  border-top: 1px solid var(--c-ink);
  border-bottom: 1px solid var(--c-ink);
  padding: 10px 0;
}
.hero-meta .tag { font-weight: 700; }
.hero-meta .issue { color: var(--c-ink-2); }

.hero-copy { grid-area: copy; padding-top: 16px; }
.kicker {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--c-accent);
  font-weight: 700;
  margin: 0 0 24px;
}
.kicker.light { color: var(--c-accent); }
.hero-title {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: clamp(28px, 4.2vw, 72px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  white-space: nowrap;
}
.hero-title .line { display: inline; }
.hero-title .accent {
  color: var(--c-accent);
}
.hero-title em {
  font-style: normal;
  font-weight: 900;
  position: relative;
  padding: 0 0.05em;
}
.hero-title em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.18em;
  background: rgba(26, 76, 255, 0.18);
  z-index: -1;
}
.hero-lead {
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 2;
  color: var(--c-ink-2);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-tags {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--c-ink-2);
}
.hero-tags li {
  padding: 6px 12px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.hero-visual {
  grid-area: visual;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-visual--text-only {
  min-height: 240px;
}
.hero-photo {
  aspect-ratio: 4 / 5;
  min-height: clamp(420px, 58vh, 640px);
  flex: 1;
}
.hero-vertical {
  position: absolute;
  top: 50%;
  right: -8px;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--c-ink-2);
  white-space: nowrap;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .hero-vertical { display: none; }
}
.hero-marquee-full {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--c-ink);
  color: var(--c-bg);
  padding: 18px 0;
  border-top: 1px solid var(--c-ink);
  border-bottom: 1px solid var(--c-ink);
  transform: rotate(-1deg);
  margin: 16px -2vw;
}
.marquee-track {
  display: inline-flex;
  gap: 28px;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: clamp(16px, 1.4vw, 22px);
  padding-left: 28px;
  align-items: center;
}
.marquee-track span:nth-child(even) { color: var(--c-accent); font-family: var(--font-jp); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section divider — brand strip between sections */
.brand-strip {
  background: var(--c-accent);
  color: #fff;
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.brand-strip .marquee-track {
  font-size: clamp(15px, 1.2vw, 20px);
  letter-spacing: 0.18em;
  animation-duration: 36s;
}
.brand-strip .marquee-track span:nth-child(even) { color: #fff; }

.hero-bottom {
  border-top: 1px solid var(--c-line);
  background: var(--c-bg-soft);
}
.kpi-strip {
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding: clamp(28px, 3vw, 40px) var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
}
.kpi {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 2px solid var(--c-accent);
  padding: 4px 0 4px 18px;
  position: relative;
}
.kpi .kpi-no {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-accent);
  font-weight: 700;
}
.kpi b {
  font-family: var(--font-en);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.kpi b small { font-size: 0.45em; margin-left: 4px; color: var(--c-ink-2); }
.kpi .kpi-label { font-size: 12px; color: var(--c-ink-2); letter-spacing: 0.05em; }

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "meta" "copy" "visual";
    gap: 24px;
    padding-bottom: 24px;
  }
  .kpi-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-title { white-space: normal; font-size: clamp(28px, 7vw, 48px); }
  .hero-visual--text-only { display: none; }
  .section { padding: clamp(56px, 9vw, 160px) var(--pad); }
}

/* ===== Section base ===== */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 160px) var(--pad);
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: end;
  gap: 16px 28px;
  margin-bottom: clamp(40px, 5vw, 72px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-line);
}
.sec-num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--c-accent);
}
.sec-en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--c-ink-2);
}
.sec-jp {
  grid-column: 1 / -1;
  font-size: clamp(32px, 4.2vw, 68px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-head.dark .sec-en,
.section-head.dark .sec-jp { color: inherit; }

/* Section sub-lead (intro paragraph below section head) */
.sec-lead {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 2;
  color: var(--c-ink-2);
  max-width: 720px;
  margin: -32px 0 56px;
  padding-left: 24px;
  border-left: 2px solid var(--c-accent);
}
.culture .sec-lead, .interview .sec-lead {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: calc(var(--pad) + 24px);
  padding-right: var(--pad);
  color: #c8c6bd;
}

/* ===== MESSAGE ===== */
.message-body {
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: start;
}
.message-photo .caption {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--c-ink-2);
  letter-spacing: 0.08em;
  margin-top: 12px;
}
.message-photo .caption strong { color: var(--c-ink); font-weight: 700; }
.big-quote {
  font-family: var(--font-jp);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--c-ink);
  border-left: 4px solid var(--c-accent);
  padding-left: 20px;
  margin-bottom: 32px;
  letter-spacing: -0.005em;
}
.message-bullets {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}
.message-bullets li {
  position: relative;
  padding-left: 24px;
  font-weight: 500;
}
.message-bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-accent);
  font-weight: 700;
}
@media (max-width: 880px) {
  .message-body { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== CULTURE ===== */
.culture-feature {
  background: linear-gradient(135deg, #1e57d8 0%, #1a4cff 55%, #103dc4 100%);
  color: #fff;
  max-width: none;
  padding: clamp(60px, 7vw, 110px) var(--pad);
  position: relative;
  overflow: hidden;
}
.culture-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 120px 120px;
  pointer-events: none;
}
.culture-feature-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.culture-photo .photo-placeholder {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
}
.culture-photo .photo-placeholder .ph-label,
.culture-photo .photo-placeholder .ph-sub {
  color: rgba(255, 255, 255, 0.7);
}
.culture-en {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.32em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}
.culture-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 16px 0 28px;
  line-height: 1.1;
}
.culture-desc {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 2;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}
@media (max-width: 880px) {
  .culture-feature-inner { grid-template-columns: 1fr; }
}

/* ===== WORK ===== */
.work-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.work-tabs .tab {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-ink-2);
  transition: 0.2s;
}
.work-tabs .tab:hover { color: var(--c-ink); border-color: var(--c-ink); }
.work-tabs .tab.is-active { background: var(--c-ink); color: var(--c-bg); border-color: var(--c-ink); }

.work-panel { display: none; }
.work-panel.is-active { display: block; }

.work-feature {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 88px);
  align-items: center;
  margin-bottom: clamp(56px, 7vw, 120px);
}
.work-tag {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--c-accent);
  font-weight: 700;
}
.work-detail h3 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 12px 0 20px;
}
.work-points {
  margin: 24px 0;
  display: grid;
  gap: 8px;
}
.work-points li { font-size: 14px; }
.work-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
}
.work-meta div { display: flex; flex-direction: column; gap: 4px; }
.work-meta span { font-size: 11px; letter-spacing: 0.08em; color: var(--c-ink-2); }
.work-meta b {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.work-meta b small { font-size: 0.55em; color: var(--c-ink-2); }

.work-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.2vw, 32px);
}
.work-points.compact { margin: 12px 0 0; gap: 4px; }
.work-points.compact li { font-size: 12px; color: var(--c-ink-2); }
.work-item {
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  padding: 24px;
  background: #fff;
  transition: 0.2s;
}
.work-item:hover { border-color: var(--c-accent); transform: translateY(-4px); }
.work-item .num {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  color: var(--c-line);
}
.work-item h4 { font-size: 20px; margin: 8px 0 12px; }
.work-item p { font-size: 13px; color: var(--c-ink-2); }
.work-item .photo-placeholder.small { margin-top: 16px; }
@media (max-width: 880px) {
  .work-feature, .work-list { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== CASES ===== */
.cases-dark {
  background: #0e2a5c;
  color: #fff;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  padding-top: clamp(60px, 7vw, 110px);
  padding-bottom: clamp(60px, 7vw, 110px);
}
.cases-dark .section-head {
  max-width: var(--maxw);
  margin: 0 auto clamp(40px, 5vw, 72px);
  padding-left: var(--pad);
  padding-right: var(--pad);
  border-color: rgba(255, 255, 255, 0.18);
}
.cases-dark .sec-num { color: #ff7a8a; }
.case-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
}
.case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #102f66;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: clamp(28px, 3vw, 44px);
}
.case-card .case-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(28px, 3vw, 44px);
}
.case-card .case-visual .photo-placeholder {
  width: 72%;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.case-card .case-visual .photo-placeholder.has-photo {
  background: transparent;
}
.case-card .case-visual .photo-placeholder.has-photo > img {
  object-fit: contain;
}
.case-card .case-visual .photo-placeholder .ph-label,
.case-card .case-visual .photo-placeholder .ph-sub {
  color: rgba(255, 255, 255, 0.55);
}
.case-card .case-tag {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #ff7a8a;
  font-weight: 600;
  margin-bottom: 14px;
}
.case-card h4 {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: 0.02em;
}
.case-card p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
@media (max-width: 880px) {
  .case-grid { grid-template-columns: 1fr; }
}

/* ===== NUMBERS ===== */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  overflow: hidden;
}
.num-card {
  position: relative;
  background: var(--c-bg);
  padding: clamp(28px, 2.8vw, 44px) clamp(20px, 2.2vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 0.25s;
  min-height: 220px;
}

/* Ring chart */
.num-card .ring {
  position: relative;
  width: clamp(64px, 5.5vw, 88px);
  height: clamp(64px, 5.5vw, 88px);
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.num-card .ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.num-card .ring .ring-bg {
  fill: none;
  stroke: var(--c-line);
  stroke-width: 2.4;
}
.num-card .ring .ring-fg {
  fill: none;
  stroke: var(--c-accent);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: calc(var(--p, 50) * 1) 100;
  transition: stroke-dasharray 1s ease;
}
.num-card:nth-child(4n) .ring .ring-fg { stroke: var(--c-accent-2); }
.num-card .ring-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  color: var(--c-accent);
}
.num-card .ring-icon > svg {
  width: 44%;
  height: 44%;
  display: block;
}
.num-card:nth-child(4n) .ring-icon { color: var(--c-accent-2); }
.num-card:hover { background: #fff; }
.num-card .label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--c-ink-2);
  font-family: var(--font-en);
  font-weight: 600;
  margin-top: 4px;
}
.num-card b {
  font-family: var(--font-en);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.num-card b small {
  font-size: 0.42em;
  color: var(--c-ink-2);
  margin-left: 4px;
  letter-spacing: 0;
  font-weight: 500;
}
.num-card b small sub {
  font-size: 0.7em;
  vertical-align: baseline;
  margin-left: 2px;
  font-family: var(--font-jp);
}
.num-card .hint { font-size: 12px; color: var(--c-ink-2); }
.num-card:nth-child(odd) b { color: var(--c-accent); }
.num-card:nth-child(4n) b { color: var(--c-accent-2); }
@media (max-width: 880px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== CAREER ===== */
.career-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 32px);
  position: relative;
}
.career-timeline::before {
  content: "";
  position: absolute;
  top: 132px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--c-line);
  z-index: 0;
}
.step {
  position: relative;
  padding: 0;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: 0.25s;
}
.step::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 22px;
  width: 14px;
  height: 14px;
  background: var(--c-bg);
  border: 2px solid var(--c-line);
  border-radius: 50%;
  z-index: 2;
}
.step.is-active {
  border-color: var(--c-accent);
  box-shadow: 0 16px 40px rgba(26, 76, 255, 0.18);
  transform: translateY(-6px);
}
.step.is-active::before {
  background: var(--c-accent);
  border-color: var(--c-accent);
  box-shadow: 0 0 0 6px rgba(26, 76, 255, 0.18);
}
.step-tag {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--c-accent);
  font-weight: 700;
}
.step .year {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-en);
  font-weight: 800;
  line-height: 0.9;
  margin: 4px 0 8px;
  border-bottom: 1px solid var(--c-line);
  padding-bottom: 16px;
}
.step .year b {
  font-size: clamp(56px, 5vw, 88px);
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--c-ink);
}
.step.is-active .year b { color: var(--c-accent); }
.step .year small {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--c-ink-2);
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}
.step h4 { font-size: 22px; margin: 4px 0 6px; font-weight: 800; }
.step p { font-size: 13px; color: var(--c-ink-2); margin: 0 0 12px; line-height: 1.85; }
.step-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
}
.step-skills li {
  font-size: 11px;
  padding: 4px 10px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  color: var(--c-ink-2);
  letter-spacing: 0.04em;
}
@media (max-width: 880px) {
  .career-timeline { grid-template-columns: 1fr; }
  .career-timeline::before { display: none; }
  .step { border-left: 2px solid var(--c-line); padding: 0 0 24px 24px; }
  .step.is-active { border-color: var(--c-accent); }
}

/* ===== INTERVIEW ===== */
.interview {
  background: var(--c-bg-dark);
  color: #efeee9;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.interview .section-head {
  max-width: var(--maxw);
  margin: 0 auto clamp(40px, 5vw, 72px);
  padding-left: var(--pad);
  padding-right: var(--pad);
  border-color: rgba(255, 255, 255, 0.15);
}
.interview-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 2.8vw, 40px);
}
.iv-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r);
  padding: clamp(20px, 2vw, 32px);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  transition: 0.25s;
}
.iv-card:hover { border-color: var(--c-accent); transform: translateY(-4px); }
.iv-card .photo-placeholder { margin-bottom: 20px; }
.iv-no {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #a8a597;
  font-weight: 700;
  margin-bottom: 4px;
}
.iv-tag {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--c-accent);
  font-weight: 700;
}
.iv-name {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 8px 0 16px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.iv-name em {
  font-family: var(--font-en);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #a8a597;
  font-weight: 600;
}
.iv-quote {
  font-size: 14px;
  line-height: 1.95;
  color: #d8d6cc;
  border-left: 2px solid var(--c-accent);
  padding-left: 16px;
  margin-bottom: 20px;
}
.iv-quote b { color: var(--c-accent); font-weight: 700; font-style: normal; }
.iv-desc {
  font-size: 14px;
  line-height: 1.95;
  color: #d8d6cc;
  margin: 0;
}
.iv-meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  display: grid;
  gap: 4px;
  font-size: 12px;
  color: #a8a597;
}

/* Featured large card */
.iv-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: clamp(24px, 3vw, 56px);
  padding: clamp(24px, 2.5vw, 40px);
}
.iv-featured .iv-photo {
  position: relative;
}
.iv-featured .photo-placeholder { margin-bottom: 12px; }
.iv-featured .iv-no {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--c-accent);
  color: #fff;
  padding: 6px 14px;
  letter-spacing: 0.2em;
  z-index: 4;
}
.iv-featured .iv-body { display: flex; flex-direction: column; justify-content: center; padding: 16px 0; }
.iv-name-lg {
  font-family: var(--font-en);
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 12px 0 24px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}
.iv-name-lg em {
  font-family: var(--font-en);
  font-style: normal;
  font-size: clamp(13px, 1vw, 16px);
  letter-spacing: 0.18em;
  color: #a8a597;
  font-weight: 600;
}
.iv-quote-lg {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.7;
  color: #efeee9;
  margin: 0 0 24px;
  border-left: 3px solid var(--c-accent);
  padding-left: 24px;
}
.iv-quote-lg b { color: var(--c-accent); font-family: var(--font-jp); font-weight: 700; }
.iv-text {
  font-size: 14px;
  line-height: 1.95;
  color: #c8c6bd;
  margin-bottom: 28px;
  max-width: 560px;
}
.iv-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  padding-top: 20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
  font-size: 12px;
}
.iv-meta-grid li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.iv-meta-grid li span {
  font-family: var(--font-en);
  letter-spacing: 0.16em;
  color: #80796a;
  font-size: 10px;
}
.iv-meta-grid li b {
  color: #efeee9;
  font-weight: 600;
  font-size: 13px;
}

@media (max-width: 880px) {
  .interview-grid { grid-template-columns: 1fr; }
  .iv-featured { grid-template-columns: 1fr; }
}

/* ===== ONE DAY SCHEDULE ===== */
.schedule-list {
  display: grid;
  gap: 12px;
  position: relative;
  padding-left: 32px;
  border-left: 2px solid var(--c-line);
}
.schedule-list li {
  position: relative;
  display: grid;
  grid-template-columns: 100px 220px 1fr;
  gap: clamp(20px, 2.4vw, 40px);
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  transition: 0.25s;
  align-items: center;
}
.schedule-list li::before {
  content: "";
  position: absolute;
  left: -42px;
  top: 50%;
  width: 14px;
  height: 14px;
  background: var(--c-bg);
  border: 2px solid var(--c-line);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: 0.25s;
}
.schedule-list li:hover {
  border-color: var(--c-accent);
  transform: translateX(4px);
}
.schedule-list li:hover::before {
  background: var(--c-accent);
  border-color: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(26, 76, 255, 0.18);
}
.schedule-list .sch-time {
  font-family: var(--font-en);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-accent);
  line-height: 1;
}
.schedule-list h4 {
  font-size: 17px;
  font-weight: 800;
}
.schedule-list p {
  font-size: 13px;
  color: var(--c-ink-2);
  margin: 0;
  line-height: 1.85;
}
@media (max-width: 880px) {
  .schedule-list { padding-left: 24px; }
  .schedule-list li { grid-template-columns: 1fr; gap: 8px; }
  .schedule-list li::before { left: -34px; top: 28px; }
}

/* ===== OFFICE ===== */
.office-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(clamp(160px, 16vw, 240px), auto);
  gap: clamp(12px, 1.4vw, 24px);
}
.office-gallery .photo-placeholder { height: 100%; }
.office-gallery .g-large { grid-column: span 2; grid-row: span 2; }
@media (max-width: 880px) {
  .office-gallery { grid-template-columns: repeat(2, 1fr); }
  .office-gallery .g-large { grid-column: span 2; grid-row: auto; }
}

/* ===== FLOW ===== */
.flow-list {
  counter-reset: flow;
  display: grid;
  gap: 16px;
}
.flow-list li {
  position: relative;
  display: grid;
  grid-template-columns: 140px 240px 1fr 32px;
  align-items: center;
  gap: clamp(20px, 2.5vw, 40px);
  padding: clamp(20px, 2.2vw, 32px) clamp(24px, 2.8vw, 40px);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  transition: 0.25s;
  overflow: hidden;
}
.flow-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--c-accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s;
}
.flow-list li:hover { border-color: var(--c-accent); transform: translateX(6px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06); }
.flow-list li:hover::before { transform: scaleY(1); }
.flow-list li.is-goal {
  background: linear-gradient(90deg, rgba(26, 76, 255, 0.06), transparent 60%);
  border-color: var(--c-accent);
}
.flow-list .step-num {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--c-accent);
  font-weight: 700;
}
.flow-list h4 { font-size: 22px; font-weight: 800; }
.flow-list p { font-size: 13px; color: var(--c-ink-2); margin: 0; }
.flow-list .step-arrow {
  font-family: var(--font-en);
  font-size: 22px;
  color: var(--c-line);
  text-align: right;
  transition: 0.2s;
}
.flow-list li:hover .step-arrow { color: var(--c-accent); transform: translateX(4px); }
.flow-list li.is-goal .step-arrow { color: var(--c-accent); }
@media (max-width: 880px) {
  .flow-list li { grid-template-columns: 1fr; gap: 8px; }
  .flow-list .step-arrow { display: none; }
}

/* ===== ENTRY ===== */
.entry {
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, rgba(26, 76, 255, 0.18), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(26, 76, 255, 0.12), transparent 50%),
    var(--c-bg-dark);
  color: #fff;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.entry-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(160px, 26vw, 480px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.entry-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
}
.entry .kicker {
  font-size: 13px;
  letter-spacing: 0.24em;
}
.entry-title em {
  font-style: normal;
  color: var(--c-accent);
  font-weight: 900;
  position: relative;
  padding: 0 0.05em;
}
.entry-title {
  font-size: clamp(36px, 5.4vw, 80px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 16px 0 24px;
}
.entry-title .accent {
  color: var(--c-accent);
}
.entry-lead {
  font-size: 16px;
  color: #c8c6bd;
  max-width: 620px;
  margin: 0 auto 40px;
}
.entry-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.entry-photo { max-width: 1080px; margin: 0 auto; }

/* ===== FAQ ===== */
.faq .faq-list { max-width: 960px; margin: 0 auto; }
.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--c-line);
}
.faq-list details {
  border-bottom: 1px solid var(--c-line);
  padding: 22px 0;
}
.faq-list summary {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: clamp(15px, 1.05vw, 17px);
  list-style: none;
  padding: 4px 0;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span {
  font-family: var(--font-en);
  color: var(--c-accent);
  font-size: 14px;
  letter-spacing: 0.1em;
}
.faq-list summary i {
  margin-left: auto;
  font-style: normal;
  font-size: 22px;
  color: var(--c-accent);
  transition: 0.2s;
  font-family: var(--font-en);
}
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p {
  margin: 16px 0 0 36px;
  font-size: 14px;
  color: var(--c-ink-2);
  line-height: 1.85;
}

/* ===== COMPANY ===== */
.company-table {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--c-line);
  max-width: 960px;
  margin: 0 auto;
}
.company-table > div {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--c-line);
  align-items: baseline;
}
.company-table dt {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--c-accent);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}
.company-table dd {
  margin: 0;
  font-size: 15px;
  color: var(--c-ink);
  font-weight: 500;
}
.company-table dd a { color: var(--c-accent); border-bottom: 1px solid currentColor; }
@media (max-width: 880px) {
  .company-table > div { grid-template-columns: 1fr; gap: 6px; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--c-bg-dark);
  color: #efeee9;
  padding: clamp(56px, 6vw, 96px) var(--pad) 32px;
}
.footer-top {
  max-width: var(--maxw-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: clamp(24px, 3vw, 56px);
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand .logo-text { font-size: 24px; }
.footer-tag {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #a8a597;
  margin: 12px 0 16px;
}
.footer-address {
  font-style: normal;
  font-size: 12px;
  line-height: 1.85;
  color: #a8a597;
}
.footer-address a { color: #efeee9; border-bottom: 1px solid currentColor; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.footer-nav a:hover { color: var(--c-accent); }
.footer-sns { display: flex; gap: 12px; }
.footer-sns a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  transition: 0.2s;
}
.footer-sns a:hover { background: var(--c-accent); border-color: var(--c-accent); }
.footer-bottom {
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: #80796a;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.08em;
}
@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ===== Floating CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--c-accent);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(26, 76, 255, 0.4);
  z-index: 40;
  transition: 0.25s;
}
.floating-cta:hover { background: var(--c-ink); transform: translateY(-2px); }
.floating-cta .fc-icon { font-size: 18px; }
.floating-cta .fc-text { display: flex; flex-direction: column; line-height: 1.2; }
.floating-cta .fc-text b { font-family: var(--font-en); font-size: 11px; letter-spacing: 0.16em; opacity: 0.85; }
.floating-cta .fc-text small { font-size: 14px; font-weight: 700; }
.floating-cta .fc-arrow { font-family: var(--font-en); }
@media (max-width: 600px) {
  .floating-cta { bottom: 16px; right: 16px; padding: 12px 18px; }
}

/* =========================================================
   PC / Desktop refinements
   - 1024px以上: タブレット〜小型PC
   - 1280px以上: スタンダードPC
   - 1600px以上: ワイドモニタ
   ========================================================= */
@media (min-width: 1024px) {
  .primary-nav { gap: 32px; }
  .primary-nav a { font-size: 13px; }
  .work-feature { grid-template-columns: 1fr 1.1fr; }
  .career-timeline::before { top: 38px; }
}

@media (min-width: 1280px) {
  /* Header — 余白とサイズに余裕を */
  .header-inner { padding: 18px var(--pad); }
  .logo-text { font-size: 22px; }
  .logo-mark { font-size: 24px; }

  /* Hero — タイトル/写真を堂々と見せる */
  .hero-title { font-size: clamp(44px, 4.4vw, 80px); }
  .hero-lead { font-size: 16px; max-width: 600px; }
  .hero-photo { min-height: 560px; }
  .hero-meta { font-size: 13px; }

  /* Section header */
  .sec-jp { font-size: clamp(44px, 4vw, 64px); }
  .sec-num, .sec-en { font-size: 13px; }

  /* Numbers — 4列を保ちつつ余裕を */
  .num-card { min-height: 200px; padding: 40px 28px; }
  .num-card b { font-size: clamp(44px, 3.6vw, 60px); }

  /* Culture / Interview / Cases / Work-list は3列維持 */

  /* Career timeline — ステップ間の見え方を調整 */
  .step h4 { font-size: 20px; }
  .step p { font-size: 14px; }
  .step .year { font-size: 32px; }

  /* Flow — 3カラムグリッドを活かす */
  .flow-list li { grid-template-columns: 160px 260px 1fr; }
  .flow-list h4 { font-size: 22px; }

  /* Entry */
  .entry-title { font-size: clamp(56px, 5vw, 88px); }
  .entry-lead { font-size: 17px; max-width: 680px; }

  /* Floating CTA — PCではやや大きめ */
  .floating-cta { padding: 16px 26px; bottom: 28px; right: 28px; }
  .floating-cta .fc-text small { font-size: 15px; }
}

@media (min-width: 1600px) {
  /* ワイドモニタ用：余白とタイポをさらにスケール */
  .hero-title { font-size: 88px; }
  .sec-jp { font-size: 72px; }
  .num-card b { font-size: 64px; }
  .entry-title { font-size: 96px; }
  .hero-photo { min-height: 640px; }
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  z-index: 120;
  width: min(420px, calc(100vw - 32px));
  padding: 22px 22px 20px;
  border-radius: 14px;
  background: #0e1a35;
  color: #e8ecf5;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-consent.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-consent .cookie-text {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 0.02em;
  color: #e8ecf5;
}
.cookie-consent .cookie-link {
  color: #ff7a8a;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 122, 138, 0.4);
}
.cookie-consent .cookie-link:hover { color: #ff9aa6; border-color: #ff9aa6; }
.cookie-consent .cookie-accept {
  display: block;
  margin-left: auto;
  padding: 12px 28px;
  border: none;
  border-radius: 999px;
  background: #ff7a8a;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cookie-consent .cookie-accept:hover { background: #ff8e9c; transform: translateY(-1px); }
@media (max-width: 600px) {
  .cookie-consent { padding: 18px; }
  .cookie-consent .cookie-text { font-size: 12.5px; }
}

/* タブレット (768px–1023px) でのレイアウト調整 */
@media (min-width: 768px) and (max-width: 1023px) {
  .interview-grid,
  .work-list,
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .numbers-grid { grid-template-columns: repeat(3, 1fr); }
  .career-timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .career-timeline::before { display: none; }
  .step { border-left: 2px solid var(--c-line); padding-left: 20px; }
  .step.is-active { border-color: var(--c-accent); }
  .office-gallery { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-sns { grid-column: 1 / -1; }
}

