:root {
  --primary-color: #00a4e4;
  --primary-light: #f0f5fa; 
  --secondary-color: #333333;
  --border-color: #e5e5e5; /* より繊細なグレー */
  --bg-white: #ffffff;
  --bg-gray: #fafafa;
  --text-primary: #111111;
  --text-secondary: #666666;
  --text-light: #aaaaaa;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

/* General */
body {
  margin: 0;
  padding: 0;
  /* エディトリアル・ミニマルなフォントスタック（游ゴシックや明朝を含めないシャープなゴシック） */
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-white);
  line-height: 1.8;
  font-size: 15px;
  letter-spacing: 0.05em; /* 文字間を空けて洗練させる */
  overflow-x: hidden;
}

/* Container to restrict max width for large monitors */
.main-wrapper {
  max-width: 1080px; /* 1440pxから大幅に縮小し、テキストが間延びしない洗練された中央寄せレイアウトに */
  margin: 0 auto;
  background-color: var(--bg-white);
  box-shadow: none; /* コンテンツ境界の影を消して自然に */
  position: relative; /* overflow: hidden を削除してスライダーの突き抜けを許可 */
}

a {
  color: var(--text-primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Typography */
.text-small { font-size: 14px; }
.text-secondary { color: var(--text-secondary); }
.text-large { font-size: 18px; }
.section-title { font-size: 24px; font-weight: bold; margin-bottom: 24px; border-bottom: 2px solid var(--primary-color); padding-bottom: 8px; display: inline-block; }
.hero-title { font-size: 32px; font-weight: bold; margin-bottom: 16px; }

/* Spacing */
.m-min { margin: 8px; }
.m-s { margin: 16px; }
.m-m { margin: 24px; }
.m-l { margin: 40px; }
.m-xl { margin: 60px; }
.p-s { padding: 16px; }
.p-m { padding: 24px; }
.p-l { padding: 40px; }
.p-xl { padding: 60px; }

/* Components */
/* Header Inner Container */
.header-inner {
  max-width: 1440px; 
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header {
  position: sticky;
  top: 0;
  background-color: rgba(255,255,255,0.9);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid var(--border-color); /* シャドウを消し極細の線に */
  padding: 16px 40px;
  z-index: 1000;
  box-shadow: none; 
}

.header-logo a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.header-logo a span {
  font-size: 9px;
  color: var(--secondary-color); /* 青ではなく黒系のサブカラー */
  letter-spacing: 0.2em;
  font-weight: normal;
  margin-top: 6px;
}
.header-logo a:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #d3e0ef;
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  cursor: pointer;
}

.header-menu-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #0f335c;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links > a {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: bold;
}
.nav-links > a:hover,
.nav-links > a.active {
  color: var(--primary-color);
  text-decoration: none;
}

/* サービス一覧: ホバー／キーボードフォーカスで開くドロップダウン */
.nav-dropdown {
  position: relative;
}

/* Trigger とパネル間のわずかな隙間を埋めて、移動中に閉じにくくする */
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: 100%;
  height: 14px;
}

.nav-dropdown__trigger {
  appearance: none;
  background: transparent;
  border: 0;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: bold;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
  margin: 0;
  cursor: pointer;
}

.nav-dropdown__trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.55;
  margin-top: 2px;
}

.nav-dropdown:hover .nav-dropdown__trigger,
.nav-dropdown:focus-within .nav-dropdown__trigger {
  color: var(--primary-color);
}

.nav-dropdown__panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  max-width: min(92vw, 320px);
  padding: 8px 0;
  margin: 6px 0 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 16px 40px -12px rgba(15, 56, 96, 0.22);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    visibility 0s linear 0.22s;
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.18s ease,
    visibility 0s linear 0s;
}

.nav-dropdown__panel a[role="menuitem"] {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b !important;
  text-decoration: none !important;
  white-space: nowrap;
}

.nav-dropdown__panel a[role="menuitem"]:hover {
  background: #f1f5f9;
  color: #005bb5 !important;
}

@media (max-width: 900px) {
  .nav-dropdown__panel {
    left: auto;
    right: 0;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-dropdown__panel {
    transition: none;
  }
}

.header-buttons {
  display: flex;
  gap: 12px;
}

.btn-header {
  font-size: 12px; /* 少し小さく */
  font-weight: normal;
  letter-spacing: 0.1em;
  padding: 12px 24px;
  border-radius: 0; /* 角丸を削除 */
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-header-outline {
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  background: transparent;
}
.btn-header-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-header-filled {
  border: 1px solid var(--primary-color);
  color: var(--bg-white);
  background: var(--primary-color);
}
.btn-header-filled:hover {
  background: #ffffff;
  color: var(--primary-color);
}

@media (max-width: 900px) {
  .header.header--responsive {
    padding: 12px 14px;
  }

  .header.header--responsive .header-inner {
    position: relative;
    align-items: center;
  }

  .header.header--responsive .header-logo a {
    font-size: 17px;
  }

  .header.header--responsive .header-logo a span {
    font-size: 8px;
    letter-spacing: 0.14em;
  }

  .header.header--responsive .header-menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .header.header--responsive .header-right {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    z-index: 1200;
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid #dbe6f2;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 40px -26px rgba(15, 56, 96, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  }

  .header.header--responsive.is-menu-open .header-right {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
  }

  .header.header--responsive.is-menu-open .header-menu-toggle__bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .header.header--responsive.is-menu-open .header-menu-toggle__bar:nth-child(2) {
    opacity: 0;
  }
  .header.header--responsive.is-menu-open .header-menu-toggle__bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .header.header--responsive .nav-links {
    display: grid;
    gap: 4px;
    align-items: stretch;
  }

  .header.header--responsive .nav-links > a,
  .header.header--responsive .nav-dropdown__trigger {
    width: 100%;
    min-height: 44px;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f8fbff;
  }

  .header.header--responsive .nav-dropdown::after {
    display: none;
  }

  .header.header--responsive .nav-dropdown__panel {
    position: static;
    transform: none;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin: 6px 0 0;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: none;
    border-color: #dbe6f2;
  }

  .header.header--responsive .nav-dropdown.is-open .nav-dropdown__panel {
    display: block;
  }

  .header.header--responsive .nav-dropdown.is-open .nav-dropdown__trigger {
    color: var(--primary-color);
  }

  .header.header--responsive .nav-dropdown__panel a[role="menuitem"] {
    white-space: normal;
  }

  .header.header--responsive .header-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .header.header--responsive .btn-header {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 12px;
  }
}

/* Fallback mobile header layout for static HTML pages
   (pages not yet using SiteHeader component) */
@media (max-width: 900px) {
  .header:not(.header--responsive) {
    padding: 12px 14px;
  }

  .header:not(.header--responsive) .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .header:not(.header--responsive) .header-logo a {
    font-size: 17px;
  }

  .header:not(.header--responsive) .header-logo a span {
    font-size: 8px;
    letter-spacing: 0.14em;
  }

  .header:not(.header--responsive) .header-right {
    display: grid;
    gap: 10px;
    align-items: stretch;
  }

  .header:not(.header--responsive) .nav-links {
    display: grid;
    gap: 6px;
  }

  .header:not(.header--responsive) .nav-links > a,
  .header:not(.header--responsive) .nav-dropdown__trigger {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f8fbff;
    justify-content: space-between;
    white-space: nowrap;
  }

  .header:not(.header--responsive) .nav-dropdown__panel {
    position: static;
    left: auto;
    right: auto;
    transform: none;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin: 6px 0 0;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: none;
    border-color: #dbe6f2;
  }

  .header:not(.header--responsive) .nav-dropdown:hover .nav-dropdown__panel,
  .header:not(.header--responsive) .nav-dropdown:focus-within .nav-dropdown__panel {
    display: block;
  }

  .header:not(.header--responsive) .nav-dropdown::after {
    display: none;
  }

  .header:not(.header--responsive) .header-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .header:not(.header--responsive) .btn-header {
    min-height: 44px;
    border-radius: 10px;
    padding: 10px 12px;
    justify-content: center;
    white-space: nowrap;
  }
}

/* Hero Section / FV */
.hero {
  position: relative;
  /* ブレンドモードや子の重なりがセクション外（body 側）まで伝わらないようにする */
  isolation: isolate;
  /* 純白だとキャラPNGの白い余白やカードが「四角い白」として際立つ。FVイラストのトーンに寄せる */
  background-color: #eaf3fa;
  padding: 80px 24px; /* 40pxから24pxに変更して全体と揃える */
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: none;
  min-height: 500px; /* overflow: hidden を削除してキャラクターの表示崩れを防ぐ */
}

/* 下層ページのページ見出し帯（背景・キャラなし）— TOP用 .hero の縦幅・見出しサイズを抑える */
.hero.hero--page {
  min-height: 0;
  padding: 40px 24px 36px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* 下層ヒーロー：長い1行にならないよう読み幅に寄せる */
.hero.hero--page .voice-case__crumb,
.hero.hero--page .hero-title,
.hero.hero--page .hero--page__lead {
  width: 100%;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.hero.hero--page .hero-title {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  line-height: 1.42;
}

.hero--page__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  max-width: 40rem;
  letter-spacing: 0.03em;
}

/* 詳細ヒーロー内：どのサービスを使ったか（来訪者が最初に確認する情報） */
.voice-case__services-used {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 56, 96, 0.12);
  max-width: 40rem;
}

.voice-case__services-used-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--primary-color);
}

.voice-case__services-used-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.voice-case__services-used-list a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-color);
  background: var(--bg-white);
  border: 1px solid var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.18s ease, color 0.18s ease;
}

.voice-case__services-used-list a:hover {
  background: var(--primary-color);
  color: var(--bg-white);
  text-decoration: none;
}

.voice-case__services-used-note {
  margin: 12px 0 0;
  max-width: 34rem;
}

.hero-bg-art {
  /* .main-wrapper が 1080px になっても、背景画像はモニターの端まで美しく広げるためのハック */
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(1.3); /* アニメーションの初期状態(scale)もここに統合 */
  transform-origin: center bottom;
  width: 100vw;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-color: #eaf3fa;
  background-image: url('../images/hero-bg.png'); /* ローカル画像に変更 */
  background-repeat: repeat-x;
  background-position: 0 bottom;
  background-size: auto 100%; /* 高さを揃えて横幅は元の比率に従う */
}

.hero-character {
  position: absolute;
  bottom: 0;
  left: 60%;
  transform: translateX(-50%) translateY(30px); /* アニメーション初期位置（Y:30px）を統合 */
  opacity: 0; /* アニメーションの初期状態（透明） */
  width: 90%; 
  max-width: 900px;
  min-width: 600px;
  z-index: 1;
  pointer-events: none;
  margin-bottom: -8%; /* 画像の余白に合わせて-8%に調整 */
}
.hero-character img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 50%;
  text-align: left;
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 32px;
  color: var(--text-primary);
  letter-spacing: 2px;
}
.hero-title span.blue {
  color: var(--primary-color);
}

.hero-desc {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 40px;
  color: var(--text-primary);
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-btn {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.1em;
  padding: 16px 32px;
  border-radius: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 200px;
  transition: all 0.3s ease;
}

.hero-btn-primary {
  background: var(--primary-color);
  color: var(--bg-white);
  border: 1px solid var(--primary-color);
}
.hero-btn-primary:hover {
  background: #ffffff;
  color: var(--primary-color);
}

.hero-btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.hero-btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0;
  border: 1px solid var(--border-color);
  padding: 24px;
  width: 260px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: none;
}

.stat-icon {
  color: var(--primary-color);
}

.stat-info {
  flex: 1;
}
.stat-label {
  font-size: 12px;
  font-weight: bold;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.stat-value {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-unit {
  font-size: 14px;
}

/* GSAP Animation Initial States */
.hero-title .line {
  /* 下から文字が飛び出すためのマスク処理 */
  overflow: hidden;
  padding-bottom: 0.2em; /* 文字のディセンダ（下部）が見切れないための余裕 */
  margin-bottom: -0.2em;
}

.hero-title .char {
  /* SplitTypeで分割された文字の初期位置（マスクの下に隠す） */
  transform: translateY(100%);
}

.hero-desc,
.hero-buttons,
.hero-stats .stat-card {
  /* フェードアップする要素の初期状態 */
  opacity: 0;
  transform: translateY(30px);
}

/* Category Bar */
.category-bar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color); /* 極細ラインに */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 28px 0 26px;
  position: relative;
  z-index: 10;
}

.category-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 20px;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 28px);
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .category-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .category-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 14px;
  }
}

@media (max-width: 400px) {
  .category-items {
    grid-template-columns: 1fr;
  }
}

.category-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
  padding: 10px 10px;
  min-height: 44px;
  box-sizing: border-box;
  border-radius: 10px;
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease;
  min-width: 0;
}

.category-item:hover {
  background: #f8fafc;
  opacity: 1;
}

.category-icon {
  color: var(--primary-color);
  flex-shrink: 0;
}

.category-text {
  min-width: 0;
}

.category-text h4 {
  font-size: 15px;
  font-weight: bold;
  color: var(--primary-color);
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.category-text p {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.45;
  white-space: normal;
}

.huge-logo-bg {
  /* 親 .main-wrapper の幅に依存せず、ビューポート基準で「JOBMARCH」を中央に */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
  text-align: center;
  /* どんな画面幅でも必ず1行で収まるようにvw（viewport width）を使う */
  font-size: min(15vw, 180px); /* 画面幅の15%だが最大180pxまでに制限 */
  font-family: Arial, sans-serif;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1; /* 見切れを防ぐため、1.0（等倍）に戻す */
  margin-top: 44px;
  margin-bottom: -6px;
  letter-spacing: 0; /* 文字が被らないようにリセット */
  white-space: nowrap;
  overflow: visible; /* hiddenを見切れないようvisibleに変更 */
  z-index: 2;
}

.section {
  padding: 60px 24px;
  max-width: 1024px;
  margin: 0 auto;
}

.section-services {
  padding-top: 88px;
  position: relative;
}

.solutions-heading {
  text-align: center;
  margin-bottom: 42px;
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.solutions-label {
  display: block;
  margin-bottom: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: Arial, sans-serif;
  color: var(--primary-color);
  font-size: clamp(24px, 4.2vw, 44px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solutions-heading-title {
  margin: 0;
  font-size: 32px;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: 0.06em;
  line-height: 1.35;
}

.solutions-heading-lead {
  margin-top: 12px;
  color: var(--text-secondary);
  font-size: 14px;
  letter-spacing: 0.05em;
}

.solutions-bridge-hint {
  margin: 14px auto 0;
  max-width: 520px;
  text-align: center;
  font-size: 12px;
  line-height: 1.75;
  color: #64748b;
  letter-spacing: 0.04em;
}

.solutions-bridge-hint strong {
  font-weight: 700;
  color: #475569;
}

.voices-cta {
  margin: 24px auto 72px;
  max-width: 920px;
  text-align: center;
  border: 1px solid #dce8f5;
  border-radius: 20px;
  padding: 48px 24px;
  background: linear-gradient(145deg, #f7fbff 0%, #ffffff 100%);
}

.voices-cta-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #4c7fb4;
}

.voices-cta-title {
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #14233a;
}

.voices-cta-text {
  margin: 0 auto 28px;
  max-width: 680px;
  font-size: 14px;
  line-height: 1.9;
  color: #4b5f77;
  letter-spacing: 0.05em;
}

.voices-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 320px;
  padding: 14px 28px;
  border: 1px solid #1c64b5;
  border-radius: 999px;
  background: #1c64b5;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.25s ease;
}

.voices-cta-button::after {
  content: "→";
  font-family: Arial, sans-serif;
}

.voices-cta-button:hover {
  background: #114f93;
  border-color: #114f93;
  text-decoration: none;
}

@media (max-width: 768px) {
  .voices-cta {
    padding: 36px 18px;
    border-radius: 16px;
  }

  .voices-cta-button {
    min-width: 100%;
  }
}

.problem-grid-top {
  position: relative;
  z-index: 2;
}

.services-list-heading {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 48px;
}

.services-list-heading-title {
  margin: 6px 0 10px;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

.services-list-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f5f9f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.services-list-lead {
  margin: 0;
  color: #5d7086;
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* サービス一覧：ショーケースカルーセル（1枚大カード＋左右矢印＋ドット） */
.services-showcase {
  margin: 0 0 56px;
  scroll-margin-top: 110px;
}

.services-showcase__chrome {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  column-gap: 4px;
  max-width: 100%;
}

.services-showcase__viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
}

.services-showcase__track {
  display: flex;
  width: auto;
  transition: transform 0.4s cubic-bezier(0.22, 0.82, 0.28, 1);
  will-change: transform;
}

.services-showcase__slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 0 6px;
}

.services-showcase__card {
  height: 100%;
  background: #fff;
  border: 1px solid #e2eaf4;
  border-radius: 20px;
  box-shadow: 0 22px 48px -32px rgba(15, 56, 96, 0.28);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .services-showcase__card:hover {
    transform: scale(1.08);
    box-shadow: 0 30px 58px -30px rgba(15, 56, 96, 0.36);
    z-index: 2;
    position: relative;
  }
}

.services-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(18px, 3vw, 36px);
  padding: clamp(22px, 3vw, 34px) clamp(20px, 3vw, 36px) clamp(26px, 3.5vw, 40px);
  align-items: center;
}

.services-showcase__label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #1f5f9f;
}

.services-showcase__title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.services-showcase__badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e8f2ff 0%, #d4e8ff 100%);
  border: 1px solid #bcd6f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b4a8f;
}

.services-showcase__title {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: #0f172a;
}

.services-showcase__lead {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: #3d5570;
  line-height: 1.55;
}

.services-showcase__body {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.75;
  color: #5a6f82;
}

.services-showcase__logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

.services-showcase__logo {
  height: 46px;
  width: auto;
  max-width: 144px;
  object-fit: contain;
  border: 1px solid #dbe6f2;
  border-radius: 8px;
  background: #fff;
  padding: 4px 8px;
}

.services-showcase__logos--visual {
  position: absolute;
  right: 10px;
  bottom: 8px;
  margin: 0;
  justify-content: flex-end;
  flex-wrap: nowrap;
  max-width: calc(100% - 20px);
  z-index: 2;
  gap: 6px;
}

.services-showcase__features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 12px;
}

.services-showcase__features--two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-showcase__features li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  line-height: 1.55;
  color: #5a6f82;
}

.services-showcase__features strong {
  font-size: 12px;
  font-weight: 800;
  color: #102844;
}

.services-showcase__feat-ic {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f3f8ff;
  border: 1px solid #dbe8f8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f5f9f;
  margin-bottom: 2px;
}

.services-showcase__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
}

.services-showcase__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--primary-color);
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none !important;
  border: 1px solid var(--primary-color);
  transition: background 0.2s ease, transform 0.2s ease;
}

.services-showcase__cta:hover {
  background: #ffffff;
  transform: translateX(2px);
}

.services-showcase__visual {
  position: relative;
  min-height: 260px;
}

.services-showcase__blob {
  position: absolute;
  inset: 8% 4% 4% 8%;
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  background: linear-gradient(130deg, #d9ecff 0%, #eef6ff 55%, #f8fbff 100%);
  opacity: 0.95;
}

.services-showcase__visual--speed .services-showcase__blob {
  background: linear-gradient(130deg, #cfe4ff 0%, #e8f3ff 50%, #f5f9ff 100%);
}

/* Reserve space for logos so they do not overlap mockups */
.services-showcase__visual--speed .services-showcase__mock {
  padding-bottom: 58px;
}

.services-showcase__visual--graduate .services-showcase__blob {
  background: linear-gradient(130deg, #e4e9ff 0%, #f0f2ff 55%, #fafbff 100%);
}

.services-showcase__visual--pro .services-showcase__blob {
  background: linear-gradient(130deg, #d5e8f5 0%, #eaf4fc 55%, #f7fbff 100%);
}

.services-showcase__visual--retention .services-showcase__blob {
  background: linear-gradient(130deg, #ede6f8 0%, #f4f0fc 55%, #fbf9ff 100%);
}

.services-showcase__mock {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding: 12px 8px 0;
  min-height: 240px;
}

.services-showcase__lap {
  width: min(100%, 320px);
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, #f8fafc 0%, #eef2f7 100%);
  border: 1px solid #d0dbe8;
  border-radius: 12px 12px 4px 4px;
  box-shadow: 0 18px 36px -20px rgba(15, 56, 96, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.services-showcase__lap-screen {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  font-size: clamp(11px, 1.4vw, 13px);
  font-weight: 800;
  color: #0f4c8c;
  line-height: 1.45;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
}

.services-showcase__lap-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.services-showcase__phone {
  width: 64px;
  aspect-ratio: 9 / 18;
  background: linear-gradient(160deg, #f1f5f9 0%, #e2e8f0 100%);
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  box-shadow: 0 12px 24px -14px rgba(15, 56, 96, 0.4);
  padding: 6px;
  flex-shrink: 0;
}

.services-showcase__phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff 0%, #e8eef5 100%);
  border: 1px solid #dbe3ed;
  overflow: hidden;
}

.services-showcase__phone-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-showcase__arrow {
  grid-row: 1;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #5a7aa0;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  margin: 0;
  transition: color 0.2s ease;
}

.services-showcase__arrow--prev {
  grid-column: 1;
  justify-self: center;
}

.services-showcase__arrow--next {
  grid-column: 3;
  justify-self: center;
}

.services-showcase__viewport {
  grid-column: 2;
}

.services-showcase__arrow:hover {
  color: #0b4a8f;
}

.services-showcase__arrow:focus-visible {
  outline: 2px solid #2f6fb1;
  outline-offset: 2px;
  border-radius: 4px;
}

.services-showcase__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: calc(100% - 88px);
  margin-left: auto;
  margin-right: auto;
  margin-top: 18px;
}

.services-showcase__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c5d6e8;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.services-showcase__dot.is-active {
  background: #005bb5;
  transform: scale(1.15);
}

@media (max-width: 900px) {
  .services-showcase__grid {
    grid-template-columns: 1fr;
  }

  .services-showcase__visual {
    order: -1;
    min-height: 200px;
  }

  .services-showcase__mock {
    min-height: 200px;
  }

  .services-showcase__features {
    grid-template-columns: 1fr;
  }

  .services-showcase__logos--visual {
    position: static;
    margin-top: 10px;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-showcase__track {
    transition: none;
  }
}

.service-rpo-wrap {
  margin-top: 60px;
}

.service-rpo-title {
  margin: 0 0 16px;
  padding-bottom: 16px;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 2px solid var(--text-primary);
}

.service-rpo-card {
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
}

.service-rpo-desc {
  margin: 0;
}

.quick-diagnosis {
  margin-top: 60px;
  padding: 24px;
  border: 1px solid #d6e3f3;
  border-radius: 16px;
  background: #f9fcff;
}

.quick-diagnosis__title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 900;
  color: #0f335c;
}

.quick-diagnosis__lead {
  margin: 0;
  font-size: 14px;
  color: #4d647d;
}

.quick-diagnosis__start,
.quick-diagnosis__submit,
.quick-diagnosis__lead-submit {
  margin-top: 16px;
  border: 1px solid var(--primary-color);
  background: var(--primary-color);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 12px 20px;
  cursor: pointer;
}

.quick-diagnosis__form {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.quick-diagnosis__q {
  margin: 0;
  padding: 14px;
  border: 1px solid #d7e4f2;
  border-radius: 12px;
  background: #fff;
  display: grid;
  gap: 8px;
}

.quick-diagnosis__q legend {
  padding: 0 6px;
  font-size: 14px;
  font-weight: 800;
  color: #123b64;
}

.quick-diagnosis__q label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #304960;
}

.quick-diagnosis__result {
  margin-top: 20px;
  border-top: 1px solid #d7e4f2;
  padding-top: 18px;
}

.quick-diagnosis__result-title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 900;
  color: #0f335c;
}

.quick-diagnosis__recommendations {
  display: grid;
  gap: 10px;
}

.quick-diagnosis__rec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: 1px solid #d7e4f2;
  border-radius: 10px;
  background: #fff;
  padding: 10px 12px;
}

.quick-diagnosis__rec strong {
  font-size: 14px;
  color: #11375f;
}

.quick-diagnosis__rec a {
  color: #005bb5;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.quick-diagnosis__lead-form {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed #cedbeb;
}

.quick-diagnosis__lead-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: #445f78;
}

.quick-diagnosis__lead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

.quick-diagnosis__lead-grid label {
  display: grid;
  gap: 4px;
  font-size: 12px;
  color: #425a71;
}

.quick-diagnosis__lead-grid input {
  border: 1px solid #cfddeb;
  border-radius: 8px;
  padding: 9px 10px;
  font-size: 13px;
}

@media (max-width: 720px) {
  .quick-diagnosis {
    padding: 18px;
  }

  .quick-diagnosis__lead-grid {
    grid-template-columns: 1fr;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background-color: var(--bg-white);
  border: 1px solid var(--primary-color);
  padding: 24px;
  border-radius: 0;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.card:hover {
  background-color: var(--bg-dark-gray);
  text-decoration: none;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 8px;
}

.card-desc {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0;
}

.card-meta {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--primary-color);
  font-weight: bold;
  margin: 0 0 10px;
}

/* Voices — 事例詳細（シンプル・セマンティック・運用しやすい1カラム） */
.voice-case {
  max-width: 42rem;
  margin: 0 auto;
}

/* 長文の可読性：body より読みやすい字間・行間に上書き */
.voice-case--compact {
  letter-spacing: 0.03em;
  font-size: 16px;
  line-height: 1.75;
}

.voice-case--compact .text-small {
  letter-spacing: 0.03em;
}

.voice-case__crumb {
  margin: 0 0 12px;
  font-size: 13px;
}

.voice-case__crumb a {
  color: var(--text-secondary);
  text-decoration: none;
}

.voice-case__crumb a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.voice-case__header {
  margin-bottom: 28px;
}

.voice-case__eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: bold;
  margin: 0 0 12px;
}

.voice-case__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.voice-case__tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  background: var(--bg-white);
}

/* 詳細ページ：取材記事レイアウト（目次・レコメンドなし参照） */
.voice-case-section {
  max-width: 42rem;
  padding-top: 48px;
  padding-bottom: 72px;
}

.voice-case--article > .voice-case__factsheet {
  margin-top: 8px;
}

.voice-case__credit {
  margin: 0 0 20px;
  line-height: 1.6;
}

.voice-case__factsheet {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
  padding: 16px 18px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
}

.voice-case__factsheet-services {
  grid-column: 1 / -1;
  padding-bottom: 14px;
  margin-bottom: 4px;
  border-bottom: 1px solid #edf2f7;
}

.voice-case__factsheet-services dt {
  margin: 0 0 8px;
}

.voice-case__factsheet-service-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.voice-case__factsheet-service-links a {
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
}

.voice-case__factsheet-service-links a:hover {
  text-decoration: underline;
}

.voice-case__factsheet div {
  min-width: 0;
}

.voice-case__factsheet dt {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--primary-color);
}

.voice-case__factsheet dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-primary);
}

.voice-case__triptych {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 24px;
}

.voice-case__triptych-col {
  padding: 16px 16px 14px;
  border: 1px solid #e8edf2;
  background: var(--bg-white);
}

.voice-case__triptych-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.voice-case__triptych-col--issue .voice-case__triptych-title {
  color: #b45309;
}

.voice-case__triptych-col--solve .voice-case__triptych-title {
  color: var(--primary-color);
}

.voice-case__triptych-col--impact .voice-case__triptych-title {
  color: #0f766e;
}

.voice-case__triptych-col ul {
  margin: 0;
  padding-left: 1.15em;
  font-size: 13px;
  line-height: 1.72;
  color: #334155;
}

.voice-case__triptych-col li {
  margin-bottom: 8px;
}

.voice-case__deck {
  margin: 0 0 32px;
  font-size: 15px;
  line-height: 1.92;
  color: var(--text-primary);
}

.voice-case__prose {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.9;
  color: #334155;
}

.voice-case__prose--closing p {
  margin: 0 0 14px;
}

.voice-case__prose:last-child {
  margin-bottom: 0;
}

.voice-case__prose + .voice-case__pull {
  margin-top: 8px;
}

.voice-case--article .section-title {
  margin-top: 44px;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 900;
}

.voice-case--article > .voice-case__figure + .section-title,
.voice-case--article .voice-case__deck + .section-title {
  margin-top: 36px;
}

.voice-case__h3 {
  margin: 28px 0 8px;
  font-size: 15px;
  font-weight: 900;
  color: var(--text-primary);
}

.voice-case__h3-marker {
  color: var(--primary-color);
  margin-right: 6px;
  font-variant-numeric: tabular-nums;
}

.voice-case__pull {
  margin: 24px 0 36px;
  padding: 20px 22px;
  background: var(--primary-light);
  border-left: 3px solid var(--primary-color);
}

.voice-case__pull--short {
  margin-bottom: 28px;
}

.voice-case__pull-name {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 900;
  color: var(--text-primary);
}

.voice-case__pull-body p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.9;
  color: #334155;
}

.voice-case__pull-body p:last-child {
  margin-bottom: 0;
}

.voice-case__consultant {
  margin: 32px 0 40px;
  padding: 20px 22px;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
}

.voice-case__consultant-title {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 900;
  color: var(--text-secondary);
}

.voice-case__consultant-quote {
  margin: 0;
  padding: 0;
  border: 0;
}

.voice-case__consultant-quote p {
  margin: 0;
  font-size: 14px;
  line-height: 1.88;
  color: #334155;
}

.voice-case__soft-cta-lead {
  display: block;
  margin-top: 20px;
  font-weight: 800;
}

.voice-case__soft-cta-link {
  font-weight: 800;
  color: var(--primary-color);
}

/* 事例詳細：コンパクト型（フィールド固定・制作しやすい） */
.voice-case--compact .section-title {
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.06em;
  display: block;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.voice-case-profile {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-color);
}

.voice-case-profile__heading {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.voice-case-profile__row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.voice-case-profile__logo {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 900;
  color: var(--primary-color);
}

.voice-case-profile__main {
  flex: 1;
  min-width: min(100%, 260px);
}

.voice-case-profile__name {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 900;
  color: var(--text-primary);
}

.voice-case-profile__services {
  margin-bottom: 16px;
}

.voice-case-profile__services-label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--primary-color);
}

.voice-case-profile__service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.voice-case-profile__service-list a {
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
}

.voice-case-profile__service-list a:hover {
  text-decoration: underline;
}

.voice-case-profile__about-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 900;
  color: var(--text-primary);
}

.voice-case-profile__about p {
  margin: 0;
  font-size: 15px;
  line-height: 1.82;
  color: #334155;
}

.voice-case-summary {
  margin-bottom: 28px;
}

.voice-case-summary__title {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

/* 縦並びサマリー：一枚テーブルではなく「カードの積み重ね」で読み物に近いリズムに */
.voice-case-summary__panel {
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.voice-case-summary__step {
  display: grid;
  grid-template-columns: minmax(0, 11rem) minmax(0, 1fr);
  gap: 14px 18px;
  padding: 20px 20px 20px 18px;
  align-items: start;
  border: 1px solid #e8eef4;
  border-radius: 14px;
  background: var(--bg-white);
  box-shadow: 0 2px 0 rgba(15, 56, 96, 0.04);
}

.voice-case-summary__step-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.voice-case-summary__step-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #94a3b8;
  box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.25);
}

.voice-case-summary__step--issue .voice-case-summary__step-dot {
  background: #ea580c;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.2);
}

.voice-case-summary__step--solve .voice-case-summary__step-dot {
  background: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 164, 228, 0.22);
}

.voice-case-summary__step--impact .voice-case-summary__step-dot {
  background: #0d9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

.voice-case-summary__step-label {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--text-primary);
}

.voice-case-summary__step--issue .voice-case-summary__step-label {
  color: #c2410c;
}

.voice-case-summary__step--solve .voice-case-summary__step-label {
  color: var(--primary-color);
}

.voice-case-summary__step--impact .voice-case-summary__step-label {
  color: #0f766e;
}

.voice-case-summary__list {
  margin: 0;
  padding-left: 1.2em;
  font-size: 15px;
  line-height: 1.78;
  color: #334155;
}

.voice-case-summary__list li {
  margin-bottom: 6px;
}

.voice-case-summary__list li:last-child {
  margin-bottom: 0;
}

.voice-case-summary__list--effects {
  background: linear-gradient(180deg, #fffbeb 0%, #fff7ed 100%);
  padding: 14px 16px 14px 1.75em;
  border-radius: 10px;
  border: 1px solid rgba(234, 179, 8, 0.22);
}

.voice-case__figure--compact {
  margin: 28px 0;
}

.voice-case-interview {
  margin-top: 12px;
}

.voice-case-interview__note {
  margin: 4px 0 24px;
  font-size: 14px;
}

/* Q&A：質問と回答の階層をはっきり（フラットなリストに見えないように） */
.voice-case--compact .voice-case-qa .voice-case-qa__q {
  margin: 2rem 0 0;
  padding: 0 0 0 14px;
  border-left: 3px solid var(--primary-color);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.55;
  color: #0f172a;
  letter-spacing: 0.03em;
}

.voice-case--compact .voice-case-qa .voice-case-qa__q:first-child {
  margin-top: 0;
}

.voice-case--compact .voice-case-qa__a {
  margin: 12px 0 0;
  padding: 16px 18px 18px;
  font-size: 16px;
  line-height: 1.82;
  color: #334155;
  background: #f7fafc;
  border-radius: 0 12px 12px 12px;
  border: 1px solid #e8eef4;
}

/* 事例詳細末尾：求人特集ページ・公式サイトへのカード導線 */
.voice-case-crosslinks {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.voice-case-crosslinks__title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.voice-case-crosslinks__lead {
  margin: 0 0 18px;
  max-width: 40rem;
}

.voice-case-crosslinks__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.voice-case-crosslinks__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 18px 18px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: var(--bg-white);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 36px -28px rgba(15, 56, 96, 0.35);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.voice-case-crosslinks__card:hover {
  border-color: #b8d4ef;
  box-shadow: 0 14px 44px -26px rgba(15, 56, 96, 0.45);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}

.voice-case-crosslinks__card-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-color);
}

.voice-case-crosslinks__card-title {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  color: var(--text-primary);
}

.voice-case-crosslinks__card-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.voice-case-crosslinks__card-action {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-color);
}

.voice-case-crosslinks__external {
  font-weight: 800;
}

@media (max-width: 680px) {
  .voice-case-summary__step {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .voice-case-summary__step-head {
    padding-bottom: 2px;
  }

  .voice-case-crosslinks__grid {
    grid-template-columns: 1fr;
  }
}

.voice-case__lead {
  border-left: 3px solid var(--primary-color);
  padding: 16px 20px;
  background: var(--primary-light);
  margin-bottom: 28px;
}

.voice-case__lead p {
  margin: 0 0 12px;
  line-height: 1.75;
}

.voice-case__lead p:last-child {
  margin-bottom: 0;
}

.voice-case__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 36px;
}

.voice-case__metrics > div {
  border: 1px solid var(--border-color);
  padding: 14px 12px;
  text-align: center;
  background: var(--bg-white);
}

.voice-case__metrics dt {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: bold;
}

.voice-case__metrics dd {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1.25;
}

.voice-case__num {
  font-variant-numeric: tabular-nums;
}

.voice-case__unit {
  font-size: 0.65em;
  font-weight: 800;
  margin-left: 2px;
}

.voice-case__suffix {
  display: block;
  font-size: 10px;
  font-weight: normal;
  color: var(--text-secondary);
  margin-top: 6px;
  line-height: 1.4;
}

.voice-case__figure {
  margin: 32px 0 36px;
}

.voice-case__placeholder {
  aspect-ratio: 21 / 9;
  max-height: 220px;
  background: linear-gradient(160deg, #f4f9fc 0%, #e8f2fa 100%);
  border: 1px solid #dfe8f0;
  display: grid;
  place-items: center;
  place-content: center;
  color: var(--text-secondary);
  font-size: 13px;
  text-align: center;
  line-height: 1.65;
  padding: 20px;
  letter-spacing: 0.03em;
}

.voice-case__placeholder-sub {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  margin-top: 8px;
}

.voice-case__figure figcaption {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 10px;
  line-height: 1.6;
}

.voice-case__list {
  margin: 0 0 24px;
  padding-left: 1.25em;
  line-height: 1.85;
}

.voice-case__list li {
  margin-bottom: 8px;
}

.voice-case__quote {
  margin: 24px 0 32px;
  padding: 20px 22px;
  border-left: 3px solid var(--primary-color);
  background: var(--bg-gray);
  font-style: normal;
}

.voice-case__quote p {
  margin: 0 0 12px;
  line-height: 1.85;
}

.voice-case__quote cite {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  font-style: normal;
}

.voice-case__footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.voice-case__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

@media (max-width: 720px) {
  .voice-case__metrics {
    grid-template-columns: 1fr;
  }

  .voice-case__factsheet {
    grid-template-columns: 1fr;
  }

  .voice-case__triptych {
    grid-template-columns: 1fr;
  }
}

/* Voices index — フィルタ（商材は複数選択） */
.voice-filters {
  margin-bottom: 28px;
}

.voice-filters__row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  align-items: flex-start;
}

.voice-filters__select-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
}

.voice-filters__label {
  font-size: 12px;
  font-weight: bold;
  color: var(--text-secondary);
}

.voice-filters__select {
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 0;
  font-family: inherit;
  font-size: 14px;
  background: var(--bg-white);
  color: var(--text-primary);
}

.voice-filters__fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: min(100%, 520px);
  flex: 1;
}

.voice-filters__legend {
  font-size: 12px;
  font-weight: bold;
  color: var(--text-secondary);
  padding: 0;
  margin-bottom: 10px;
}

.voice-filters__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.voice-filters__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  cursor: pointer;
  color: var(--text-primary);
}

.voice-filters__chip input {
  width: 15px;
  height: 15px;
  accent-color: var(--primary-color);
  cursor: pointer;
}

.voice-filters__hint {
  margin: 14px 0 0;
  max-width: 48rem;
}

/* 事例一覧 — カードグリッド（サムネ・ロゴ・成果/業種/種別） */
.section--voices-list {
  max-width: 1120px;
}

.voice-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
}

.voice-list-card[hidden] {
  display: none !important;
}

.voice-list-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg-white);
  border: 1px solid #e8edf2;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 36px -28px rgba(15, 56, 96, 0.35);
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.voice-list-card:hover {
  text-decoration: none;
  border-color: #c5d8ec;
  box-shadow: 0 16px 44px -24px rgba(15, 56, 96, 0.45);
  transform: translateY(-2px);
}

.voice-list-card__media {
  position: relative;
  padding: 12px 12px 0;
}

.voice-list-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.voice-list-card__thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #eef4fa;
}

.voice-list-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.voice-list-card__img--placeholder {
  width: 100%;
  height: 100%;
  min-height: 0;
  background: linear-gradient(145deg, #e8f2fa 0%, #dce8f4 45%, #d0e0f0 100%);
}

.voice-list-card__logo {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(15, 56, 96, 0.12);
  box-shadow: 0 6px 20px -8px rgba(15, 56, 96, 0.35);
  display: grid;
  place-items: center;
}

.voice-list-card__logo-text {
  font-size: 15px;
  font-weight: 900;
  color: var(--primary-color);
  letter-spacing: 0.02em;
}

.voice-list-card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.voice-list-card__client {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.voice-list-card__services {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.voice-list-card__svc-chip {
  display: inline-block;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--primary-color);
  background: rgba(0, 164, 228, 0.08);
  border: 1px solid rgba(0, 164, 228, 0.35);
  border-radius: 6px;
  line-height: 1.3;
}

.voice-list-card__headline {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.voice-list-card__facts {
  margin: 4px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid #edf2f7;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.voice-list-card__fact {
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 8px 12px;
  font-size: 12px;
  line-height: 1.55;
  align-items: start;
}

.voice-list-card__fact dt {
  margin: 0;
  font-weight: 800;
  color: #64748b;
}

.voice-list-card__fact dd {
  margin: 0;
  color: #334155;
}

.voice-list-card__error {
  margin: 0;
  padding: 24px;
  text-align: center;
}

@media (max-width: 960px) {
  .voice-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .voice-list-grid {
    grid-template-columns: 1fr;
  }

  .voice-list-card__fact {
    grid-template-columns: 5.8em 1fr;
  }
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-white);
  border: 1px solid var(--primary-color);
}
.btn-primary:hover {
  background-color: var(--bg-white);
  color: var(--primary-color);
  text-decoration: none;
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.btn-secondary:hover {
  background-color: var(--bg-dark-gray);
  text-decoration: none;
}

/* Wireframe Elements */
.wire-img {
  background-color: var(--bg-dark-gray);
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  width: 100%;
  min-height: 200px;
  margin-bottom: 16px;
}
.wire-img::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom right, transparent calc(50% - 1px), var(--border-color), transparent calc(50% + 1px)),
              linear-gradient(to top right, transparent calc(50% - 1px), var(--border-color), transparent calc(50% + 1px));
}
.wire-img::after {
  content: "Image";
  background: var(--bg-dark-gray);
  padding: 4px 8px;
  font-size: 14px;
  z-index: 1;
}

/* Forms */
input[type="text"], input[type="email"], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--primary-color);
  background-color: var(--bg-white);
  color: var(--text-primary);
  border-radius: 0;
  font-family: inherit;
  font-size: 16px;
  margin-bottom: 16px;
}
input::placeholder, textarea::placeholder {
  color: var(--text-light);
}

/* TOP Page Additions */
.hero-desc { font-weight: bold; font-size: 20px; line-height: 1.5; margin-bottom: 24px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; max-width: 600px; margin: 0 auto; }
.tag { border: 1px solid var(--primary-color); padding: 4px 12px; font-size: 14px; background: var(--bg-white); }

.logo-list { display: flex; gap: 24px; justify-content: center; padding: 24px; border-bottom: 1px solid var(--border-color); overflow-x: auto; }
.logo-item { border: 1px dashed var(--secondary-color); padding: 12px 24px; color: var(--text-light); font-size: 14px; }

/* Problem Section (SOLUTIONS) */
.problem-character {
  position: absolute;
  top: -80px; 
  left: 0; 
  transform: none;
  width: 320px;
  z-index: 4;
  mix-blend-mode: multiply;
  opacity: 0.95;
  pointer-events: none;
}
.problem-character img {
  width: 100%;
  height: auto;
  display: block;
  filter: none;
}

.section-services {
  position: relative;
  overflow: visible;
}

.section-services::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  top: 104px;
  height: 460px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23eef5ff' d='M0,128L60,122.7C120,117,240,107,360,122.7C480,139,600,181,720,197.3C840,213,960,203,1080,176C1200,149,1320,107,1380,85.3L1440,64L1440,320L0,320Z'/%3E%3C/svg%3E") no-repeat center top / cover;
  pointer-events: none;
  z-index: 0;
}

.section-services::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  top: 176px;
  height: 430px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f7fbff' d='M0,224L60,218.7C120,213,240,203,360,186.7C480,171,600,149,720,154.7C840,160,960,192,1080,192C1200,192,1320,160,1380,144L1440,128L1440,320L0,320Z'/%3E%3C/svg%3E") no-repeat center top / cover;
  pointer-events: none;
  z-index: 0;
}


.problem-grid { 
  display: grid; 
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background-color: transparent;
  border: 0;
  margin: 26px auto 0;
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.problem-card { 
  border: 1px solid #d6e3f1 !important;
  display: flex; 
  flex-direction: column; 
  text-align: left; 
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-height: 168px;
  padding: 0;
  border-radius: 14px;
  box-shadow: 0 12px 26px -22px rgba(26, 59, 96, 0.45);
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.problem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0) 56%, rgba(252, 236, 242, 0.9) 100%);
  pointer-events: none;
}
.problem-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e55a87;
  box-shadow: 0 0 0 4px rgba(244, 208, 222, 0.7);
  pointer-events: none;
}
.problem-card:hover {
  transform: translateY(-2px);
  border-color: #b8cfe6 !important;
  box-shadow: 0 18px 30px -22px rgba(26, 59, 96, 0.58);
}
.problem-desc { 
  padding: 20px 24px 14px 106px;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.8;
  letter-spacing: 0.02em;
  min-height: 94px;
  border-bottom: 0;
  position: relative;
}

.problem-avatar {
  position: absolute;
  left: 14px;
  top: 10px;
  width: 86px;
  height: 98px;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff7fb 0%, #fdeaf1 100%);
  border: 1px solid #f0d8e3;
  box-shadow: inset 0 -24px 0 rgba(255, 255, 255, 0.45);
}

.problem-avatar::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 14px;
  width: 28px;
  height: 28px;
  margin-left: -14px;
  border-radius: 50%;
  background: #f8fbff;
  border: 1px solid #c5d0de;
}

.problem-avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 44px;
  width: 54px;
  height: 42px;
  margin-left: -27px;
  border-radius: 20px 20px 10px 10px;
  background: #eef3fa;
  border: 1px solid #c5d0de;
}
.problem-sol { 
  padding: 13px 16px 13px 24px;
  font-weight: bold; 
  color: #cf5e84;
  border-top: 0;
  background-color: #fff5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  letter-spacing: 0.05em;
}
/* 矢印の装飾 */
.problem-sol::after {
  content: "→";
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d9537b;
  color: #fff;
  font-family: Arial, sans-serif;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.problem-card:hover .problem-sol::after {
  transform: translateX(2px);
  filter: brightness(0.95);
}

.problem-card:focus-visible {
  outline: 3px solid #8ab2d9;
  outline-offset: 2px;
}

.problem-card--newgraduate .problem-sol {
  color: #1e7ace;
  background-color: #f1f7ff;
}
.problem-card--professional .problem-sol {
  color: #2f9f4a;
  background-color: #f1fbf3;
}
.problem-card--branding .problem-sol {
  color: #7f49c1;
  background-color: #f6f1fd;
}

.problem-card--newgraduate .problem-sol::after { background: #1e7ace; }
.problem-card--professional .problem-sol::after { background: #2f9f4a; }
.problem-card--branding .problem-sol::after { background: #8450c7; }

.problem-card--newgraduate::before {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0) 56%, rgba(224, 240, 255, 0.92) 100%);
}
.problem-card--professional::before {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0) 56%, rgba(226, 247, 231, 0.92) 100%);
}
.problem-card--branding::before {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0) 56%, rgba(238, 228, 255, 0.92) 100%);
}

.problem-card--newgraduate::after {
  background: #2f8fe6;
  box-shadow: 0 0 0 4px rgba(213, 232, 250, 0.72);
}
.problem-card--professional::after {
  background: #39ad53;
  box-shadow: 0 0 0 4px rgba(212, 240, 220, 0.72);
}
.problem-card--branding::after {
  background: #8a4fd0;
  box-shadow: 0 0 0 4px rgba(226, 213, 247, 0.72);
}

.problem-card--newgraduate .problem-avatar {
  background: linear-gradient(145deg, #f0f7ff 0%, #e2efff 100%);
  border-color: #cfe1f8;
}

.problem-card--professional .problem-avatar {
  background: linear-gradient(145deg, #f0fcf3 0%, #def5e4 100%);
  border-color: #cbe9d4;
}

.problem-card--branding .problem-avatar {
  background: linear-gradient(145deg, #f6f1ff 0%, #ece2ff 100%);
  border-color: #ddcff4;
}

.cta-box { 
  border: none;
  border-top: 1px solid var(--border-color); 
  border-bottom: 1px solid var(--border-color);
  border-radius: 0;
  padding: 80px 40px; 
  text-align: center; 
  margin: 100px 0; 
  background: transparent;
  box-shadow: none; 
  position: relative;
  overflow: hidden;
}
.cta-box p { font-size: 20px; font-weight: 300; margin-bottom: 60px; line-height: 2.2; color: var(--text-primary); letter-spacing: 0.15em; }

.btn-cta { 
  border: 1px solid var(--text-primary); 
  background: transparent; 
  color: var(--text-primary); 
  padding: 16px 48px; 
  font-size: 13px; 
  font-weight: normal;
  letter-spacing: 0.2em;
  border-radius: 0; /* 角丸排除 */
  display: inline-flex; 
  align-items: center;
  cursor: pointer; 
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: none; 
}
/* 矢印（線）をボタンの中に追加する装飾 */
.btn-cta::after {
  content: "→";
  margin-left: 24px;
  font-family: Arial, sans-serif;
}
.btn-cta:hover { 
  background: var(--primary-color); 
  border-color: var(--primary-color);
  color: var(--bg-white); 
  text-decoration: none; 
  transform: translateX(8px); /* 横へのスライド */
  box-shadow: none;
}

.service-category-desc { margin-bottom: 24px; font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* 2026 Modern Slider (Full Width Bleed) */
.service-section {
  position: relative;
  margin-bottom: 48px;
  padding: 22px 18px 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.service-section:last-child { border-bottom: none; }

.service-section[id] {
  scroll-margin-top: 110px;
}

.section-focus-pulse {
  animation: sectionFocusPulse 0.9s ease;
}

@keyframes sectionFocusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 91, 181, 0.22);
  }
  60% {
    box-shadow: 0 0 0 10px rgba(0, 91, 181, 0);
  }
  100% {
    box-shadow: none;
  }
}

/* Section Navigation */
.service-category-title { 
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900; 
  margin-bottom: 0; 
  padding-left: 18px; 
  position: relative;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  color: var(--text-primary);
}

.service-category-title--sub {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: 0.02em;
}
/* 左側のアクセントを1本化してクリーンに見せる */
.service-category-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0.95em;
  background: var(--primary-color);
  border-radius: 2px;
}

/* Modern 2026 Navigation Buttons (Bottom Center) */
.slider-controls-bottom {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 0;
  margin-bottom: 6px;
  padding-right: 10px;
}
.slider-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #bccddd;
  background: #ffffff;
  color: #28527f;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  transition: all 0.25s ease;
  box-shadow: none;
}
.slider-btn:hover {
  transform: translateY(0);
  background: #28527f;
  border-color: #28527f;
  color: #fff;
}
.slider-btn:active {
  transform: translateY(0);
}

.slider-wrapper {
  position: relative;
}

.slider-wrapper::before,
.slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 28px;
  width: 16px;
  pointer-events: none;
  z-index: 2;
}

.slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 100%);
}

.slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 100%);
}

/* 左右のフェードアウト/グレーアウト演出を廃止し、純粋な見切れに変更 */
.service-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 28px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox: Hide scrollbar */
  
  /* JavaScriptで計算した誤差ゼロの数値をCSS変数で受け取る */
  width: auto;
  margin-left: calc(-1 * var(--slider-offset-left, 0px));
  margin-right: calc(-1 * var(--slider-offset-right, 0px));
  padding-left: var(--slider-offset-left, 0px);
  padding-right: var(--slider-offset-left, 0px); /* 左右の余白を同じにして対称性を保つ */
  
  scroll-padding-left: var(--slider-offset-left, 0px);
  box-sizing: border-box;
}

/* Webkit: スライダーの線を完全に隠す */
.service-grid::-webkit-scrollbar {
  display: none;
}

/* Footer */
.footer {
  background-color: var(--bg-white); /* グレーから白へ */
  border-top: 1px solid var(--border-color); /* 極細線 */
  padding: 120px 40px 60px; /* 大胆な余白 */
  width: 100vw;
  margin-left: 0;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 80px; /* 余白を大きく */
}
.footer-logo {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.2em;
  color: var(--text-primary); /* 黒に */
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.footer-logo span {
  font-size: 9px;
  color: var(--text-light);
  letter-spacing: 0.3em;
  font-weight: normal;
  margin-top: 8px;
}
.footer-links {
  display: flex;
  gap: 40px; /* リンク間を広げる */
  flex-wrap: wrap;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.15em; /* 詰めずに空ける */
}
.footer-bottom {
  text-align: center;
  font-size: 10px;
  color: var(--text-light);
  border-top: 1px solid var(--border-color); /* 極細線 */
  padding-top: 40px;
  margin-top: 120px;
  letter-spacing: 0.2em;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 1100;
  padding: 10px 14px;
  border: 1px solid #bcd0e4;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #1f4f7f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 10px 26px -18px rgba(20, 56, 96, 0.75);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: #1f5f9f;
  color: #fff;
}
.service-grid .service-card {
  flex: 0 0 clamp(320px, 33vw, 410px);
  min-height: 280px;
  justify-content: flex-start; 
  scroll-snap-align: start;
  border-radius: 10px;
  border: 1px solid #d4e0ec;
  box-shadow: none;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  padding: 26px 26px 30px;
  margin-right: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

/* ホバーエフェクト（浮かさず、背景色と矢印の移動だけで洗練を演出） */
.service-grid .service-card:hover {
  transform: none;
  box-shadow: none;
  background-color: #f7fbff;
  border-color: #bfd3e7;
}

.service-card-desc { 
  font-size: 15px; 
  margin-bottom: 6px;
  line-height: 1.5; 
  color: #586d84; 
  font-weight: 600;
  letter-spacing: 0.03em;
}

.service-eyecatch {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 22px;
  border: 1px solid #dbe7f3;
  border-radius: 10px;
  background:
    linear-gradient(135deg, #f7fbff 0%, #eef5fd 100%);
  position: relative;
  overflow: hidden;
}
.service-eyecatch::before,
.service-eyecatch::after {
  content: "";
  position: absolute;
  inset: 0;
}
.service-eyecatch::before {
  background:
    linear-gradient(to bottom right, transparent calc(50% - 1px), #d8e3ef, transparent calc(50% + 1px)),
    linear-gradient(to top right, transparent calc(50% - 1px), #d8e3ef, transparent calc(50% + 1px));
}
.service-eyecatch::after {
  content: "EYE CATCH";
  inset: auto 10px 10px auto;
  width: auto;
  height: auto;
  padding: 4px 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #6b7f94;
  background: #ffffffcc;
  border-radius: 999px;
}

.service-eyecatch--event {
  aspect-ratio: 16 / 8.5;
}

.service-eyecatch--voice {
  aspect-ratio: 16 / 7.5;
}
.service-card-link { 
  font-size: 32px; 
  font-weight: 800;
  text-decoration: none; 
  margin-bottom: 0;
  display: inline-block; 
  position: relative;
  padding-left: 22px;
  color: #194f84;
  letter-spacing: 0.02em;
}
/* ミニマルな矢印のあしらい */
.service-card-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 1px;
  background-color: #2b6cac;
  transform: translateY(-50%);
  transition: width 0.4s ease;
}
.service-card-link::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 1px solid #2b6cac;
  border-right: 1px solid #2b6cac;
  transform: translateY(-50%) rotate(45deg);
  transition: left 0.4s ease;
}

/* カードホバー時の矢印連動 */
.service-card:hover .service-card-link::before { width: 24px; }
.service-card:hover .service-card-link::after { left: 20px; }

/* Service list section visual style (except events/voices) */
.service-section:not(.events-section):not(.voices-section) .section-header {
  border-radius: 0;
  border: 0;
  border-left: 4px solid #1f5f9f;
  background: transparent;
  padding: 4px 0 4px 14px;
  margin-bottom: 16px;
  overflow: visible;
}

.service-section:not(.events-section):not(.voices-section) .section-header .en-title {
  color: #4a637d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.service-section:not(.events-section):not(.voices-section) .section-header .service-category-title {
  color: #0f2035;
  margin-top: 4px;
}

.service-section:not(.events-section):not(.voices-section) .section-header .service-category-desc {
  margin: 8px 0 0;
  color: #5d7086;
  font-size: 13px;
}

.service-section:not(.events-section):not(.voices-section) .service-grid .service-card {
  flex-basis: clamp(290px, 29vw, 340px);
  border: 1px solid #dbe5f0;
  border-radius: 10px;
  padding: 14px 14px 14px;
  min-height: 0;
  background: #fff;
  box-shadow: none;
}

.service-section:not(.events-section):not(.voices-section) .service-eyecatch {
  border-radius: 8px;
  margin-bottom: 12px;
  aspect-ratio: 16 / 9.8;
}

.service-section:not(.events-section):not(.voices-section) .service-card-link {
  display: inline-block;
  margin-top: 2px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.service-section:not(.events-section):not(.voices-section) .service-card-desc {
  color: #5e7084;
  margin-bottom: 8px;
  line-height: 1.6;
}

.service-section:not(.events-section):not(.voices-section) .service-grid .service-card:hover {
  background: #f9fcff;
  border-color: #c5d8eb;
}

/* Section Variants: EVENTS / VOICES */
.events-section {
  margin-top: 20px;
  padding: 28px 0 32px;
  border: none;
  border-radius: 0;
  background: transparent;
  position: relative;
  overflow: visible;
}

.events-section .section-header {
  max-width: 100%;
}

.events-section .section-header .en-title {
  background: #eaf3ff !important;
  color: #2b5f97 !important;
}

.events-section .jm-events-multi .event-card {
  background: #ffffff;
  border-color: #d8e8fa;
}

.events-section .slider-btn {
  border-color: #c8dbf0;
  color: #2b5f97;
}

.events-section .slider-btn:hover {
  border-color: #2f6fb1;
  color: #2f6fb1;
}

.events-section .event-card {
  border: 1px solid #d4e2f1 !important;
  border-radius: 12px !important;
  background: #fff !important;
  padding: 8px 10px 12px !important;
  min-height: 0 !important;
  display: block;
}

.events-section .jm-events-multi .event-card:hover {
  background: #f9fbfd !important;
  border-color: #b8d0ea !important;
}

/* --- Events: 複数列フラット帯（Bootstrap multi の列数のみ参考／クラスは jm-events-multi で衝突回避） --- */
.jm-events-multi-wrap {
  margin-top: 8px;
}

.jm-events-multi {
  --jm-ev-gap: 12px;
  padding: 4px 0 2px;
}

.jm-events-multi__stage {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 1040px;
  margin: 0 auto;
}

.jm-events-multi__viewport {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  container-type: inline-size;
  container-name: jm-ev;
  padding: 6px 2px 14px;
}

.jm-events-multi__viewport::-webkit-scrollbar {
  display: none;
}

.jm-events-multi__track {
  display: flex;
  flex-direction: row;
  gap: var(--jm-ev-gap);
  width: max-content;
  min-height: 1px;
}

/* 狭い帯は2列、それ以外は常に3列（4列にはしない） */
.jm-events-multi__cell {
  flex: 0 0 calc((100cqi - var(--jm-ev-gap)) / 2);
  box-sizing: border-box;
  scroll-snap-align: start;
  padding: 2px;
}

@container jm-ev (min-width: 680px) {
  .jm-events-multi__cell {
    flex: 0 0 calc((100cqi - 2 * var(--jm-ev-gap)) / 3);
  }
}

.jm-events-multi__cell .event-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  height: 100%;
  min-height: 280px;
}

.jm-events-multi__ctrl {
  flex: 0 0 44px;
  width: 44px;
  align-self: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  background-image: none;
  opacity: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5a7aa0;
  transition: color 0.2s ease;
}

.jm-events-multi__ctrl:hover {
  color: #1f4f7f;
}

.jm-events-multi__ctrl:focus-visible {
  outline: 2px solid #2f6fb1;
  outline-offset: 2px;
  border-radius: 4px;
}

.jm-events-multi__chev {
  font-size: 28px;
  line-height: 1;
  font-weight: 300;
  user-select: none;
}

@media (max-width: 640px) {
  .jm-events-multi__ctrl {
    flex-basis: 36px;
    width: 36px;
  }

  .jm-events-multi__chev {
    font-size: 24px;
  }
}

@supports not (container-type: inline-size) {
  .jm-events-multi__cell {
    flex: 0 0 calc((100vw - 120px - 3 * var(--jm-ev-gap)) / 2);
    max-width: 360px;
  }

  @media (min-width: 720px) {
    .jm-events-multi__cell {
      flex: 0 0 calc((100vw - 120px - 4 * var(--jm-ev-gap)) / 3);
      max-width: none;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .jm-events-multi__viewport {
    scroll-behavior: auto;
  }
}

.event-thumb {
  aspect-ratio: 16 / 9.2;
  border-radius: 10px;
  border: 1px solid #d9e5f3;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
  background-size: cover;
  background-position: center;
}

.event-card--summit .event-thumb {
  background-image: linear-gradient(120deg, rgba(75, 116, 163, 0.22) 0%, rgba(136, 171, 210, 0.1) 45%, rgba(213, 229, 246, 0.05) 100%), url("/images/events/summit-eyecatch.png");
  background-position: center;
}
.event-card--expo .event-thumb {
  background-image: linear-gradient(120deg, rgba(109, 132, 167, 0.2) 0%, rgba(156, 182, 216, 0.1) 45%, rgba(226, 237, 248, 0.05) 100%), url("/images/events/expo-eyecatch.png");
  background-position: center;
}
.event-card--global .event-thumb {
  background-image: linear-gradient(120deg, #5f79a4 0%, #88a7cf 45%, #d6e4f4 100%);
}
.event-card--other .event-thumb {
  background-image: linear-gradient(120deg, #5b6f90 0%, #879cbf 45%, #d2ddf0 100%);
}

.event-chip {
  position: absolute;
  left: 10px;
  top: 10px;
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid #c8dbf0;
  background: rgba(255, 255, 255, 0.92);
  color: #2f5f94;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.event-meta {
  font-size: 11px;
  color: #4f6580;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.event-title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
  color: #102844;
  letter-spacing: 0.01em;
}

.event-desc {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.7;
  color: #4f647e;
}

.event-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #1f5f9f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.event-link::after {
  content: "→";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #b9cfe6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.voices-section {
  position: relative;
  overflow: visible;
  margin-top: 28px;
  padding: clamp(72px, 8vw, 110px) clamp(26px, 4vw, 56px) clamp(62px, 7vw, 96px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  z-index: 0;
}

.voices-section::before {
  content: none;
}

.voices-section::after {
  content: none;
}

.voices-section > * {
  position: relative;
  z-index: 1;
}

.voices-section .section-header .en-title {
  background: #e9dcfb;
  color: #4f2f78;
  border-radius: 999px;
  padding: 6px 12px;
  letter-spacing: 0.14em;
}

.voices-section .service-category-title {
  color: #35204f;
}

.voices-section .service-category-title::before {
  background: #6c49a0;
}

.voices-section .slider-btn {
  border-color: #cfbce2;
  color: #5f3f89;
  background: #fff;
}

.voices-section .slider-btn:hover {
  border-color: #5f3f89;
  background: #5f3f89;
  color: #fff;
}

.voices-section .slider-wrapper::before {
  background: linear-gradient(to right, rgba(250, 247, 255, 0.94) 0%, rgba(250, 247, 255, 0) 100%);
}

.voices-section .slider-wrapper::after {
  background: linear-gradient(to left, rgba(250, 247, 255, 0.94) 0%, rgba(250, 247, 255, 0) 100%);
}

.voice-carousel {
  margin-top: 30px;
}

.voice-slide {
  display: none;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.94fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.voice-slide.is-active {
  display: grid;
}

.voice-photo {
  order: 2;
  min-height: 460px;
  background-size: cover;
  background-position: center top;
  border-radius: 0;
}

.voice-photo--a {
  background-image: linear-gradient(135deg, #a8bdd6 0%, #d7e2ef 100%);
}

.voice-photo--b {
  background-image: linear-gradient(135deg, #b9c6dd 0%, #dfe7f3 100%);
}

.voice-photo--c {
  background-image: linear-gradient(135deg, #cabde0 0%, #e8e1f2 100%);
}

.voice-body {
  order: 1;
  padding: 6px 0 0;
  max-width: 620px;
}

.voice-quote {
  margin: 0 0 20px;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.28;
  font-weight: 900;
  color: #2f2342;
  letter-spacing: 0.01em;
}

.voice-text {
  margin: 0 0 24px;
  font-size: 16px;
  color: #4f5f75;
  line-height: 2;
  letter-spacing: 0.02em;
}

.voice-company {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #354a63;
}

.voice-controls {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.voices-section .voice-controls .slider-btn {
  display: none;
}

.voice-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.voice-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background: #c8b7e1;
  cursor: pointer;
  padding: 0;
}

.voice-dot.is-active {
  background: #6f4ba7;
}

@media (max-width: 768px) {
  .voices-section {
    padding: 44px 16px 52px;
    border-radius: 0;
  }

  .events-section {
    padding: 22px 0 26px;
    border-radius: 0;
  }

  /* スマホでも長方形を維持（約1.3倍） */
  .service-grid .service-card { 
    flex: 0 0 300px;
    min-height: 240px;
    padding: 20px;
  }

  .slider-controls-bottom {
    justify-content: center;
    margin-top: 6px;
    padding-right: 0;
  }

  .slider-wrapper::before,
  .slider-wrapper::after {
    width: 18px;
  }

  .voice-slide {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .voice-photo {
    order: 1;
    min-height: 260px;
  }

  .voice-body {
    order: 2;
    padding: 0;
  }

  .voice-quote {
    font-size: 32px;
  }
  .problem-grid { grid-template-columns: 1fr; }
}

/* Voice Detail - Related Cases */
.voice-detail-related {
  max-width: 1120px;
  margin: 48px auto 0;
  padding: 40px 24px 48px;
  border-top: 1px solid #e8edf2;
}
.voice-detail-related__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px;
  text-align: center;
}
.voice-detail-related__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.voice-detail-related__more {
  margin: 24px 0 0;
  text-align: center;
}
@media (max-width: 960px) {
  .voice-detail-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .voice-detail-related__grid {
    grid-template-columns: 1fr;
  }
}