/* ============================================
   top.css — ラ・ポール株式会社 TOPページ
   医療機関向けBtoB接遇コンサルティング
   ============================================ */

/* === デザイントークン ======================== */
:root {
  /* カラー */
  --white:        #ffffff;
  --black:        #0a0a14;
  --gray-50:      #f7f9fc;
  --gray-100:     #eff2f7;
  --gray-200:     #dde3ed;
  --gray-300:     #c2cbdb;
  --gray-400:     #94a3b8;
  --gray-500:     #64748b;
  --gray-600:     #475569;
  --gray-700:     #334155;
  --gray-800:     #1e293b;
  --gray-900:     #333333;

  /* アクセント（ブルーグラデーション系） */
  --accent:          #0b4da2;
  --accent-light:    #e8f1fb;
  --accent-mid:      #1a73c7;
  --accent-dark:     #08397a;
  --accent-gold:     #5b9bd5;
  --accent-antique:  #9c7c2e;   /* アンティークゴールド（真鍮） */

  /* スカイブルー（CTAボタン・インタラクティブ要素） */
  --sky:          #30b0f5;
  --sky-light:    #e6f5ff;
  --sky-dark:     #1a96e0;

  /* セマンティック */
  --bg:           var(--white);
  --bg-sub:       url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E"), var(--gray-50);
  --bg-dark:      #0b1a34;
  --text:         var(--gray-900);
  --text-sub:     var(--gray-700);
  --text-muted:   var(--gray-600);
  --border:       var(--gray-200);
  --border-dark:  var(--gray-300);

  /* フォント */
  --font-sans:  'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  --font-serif: 'Shippori Mincho', 'Yu Mincho', serif;
  --font-en:    'Cormorant Garamond', 'Garamond', serif;
  --font-num:   'Outfit', 'DM Sans', sans-serif;

  /* タイポグラフィ */
  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-md:    1.125rem;
  --text-lg:    1.25rem;
  --text-xl:    1.5rem;
  --text-2xl:   1.875rem;
  --text-3xl:   2.25rem;
  --text-4xl:   3rem;
  --text-5xl:   3.75rem;

  /* スペーシング */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* レイアウト */
  --container: 1160px;
  --px:        clamp(1rem, 4vw, 2.5rem);
  --section-y: 80px;

  /* ボーダー・角丸 */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-full: 9999px;

  /* シャドウ */
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);

  /* トランジション */
  --dur-fast:   150ms;
  --dur-normal: 300ms;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index */
  --z-header: 300;
  --z-above:  10;
}

/* === リセット / ベース ====================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
blockquote { margin: 0; padding: 0; }

/* スクリーンリーダー向け */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* SP only */
.sp-only { display: none; }
@media (max-width: 640px) { .sp-only { display: inline; } }

/* === 共通レイアウト ========================= */
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px);
}

.section-head {
  margin-bottom: var(--sp-12);
}

.section-eyebrow {
  font-family: var(--font-en);
  font-size: var(--text-md);
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-4);
}
.section-title em {
  font-style: normal;
  color: var(--accent-dark);
}

.section-lead {
  font-size: var(--text-base);
  color: var(--text-sub);
  line-height: 1.9;
}

.section-more {
  text-align: center;
  margin-top: var(--sp-10);
}

/* === 共通ボタン ============================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: var(--sp-3) var(--sp-8);
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    background var(--dur-normal) var(--ease),
    color var(--dur-normal) var(--ease),
    border-color var(--dur-normal) var(--ease),
    transform var(--dur-normal) var(--ease),
    box-shadow var(--dur-normal) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--accent-antique);
  color: var(--white);
  border-color: var(--accent-antique);
}
.btn--primary:hover {
  background: #7a6124;
  border-color: #7a6124;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(156, 124, 46, 0.4);
}

.btn--gold {
  background: var(--accent-antique);
  color: var(--white);
  border-color: var(--accent-antique);
}
.btn--gold:hover {
  background: #7a6124;
  border-color: #7a6124;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(156, 124, 46, 0.4);
}

.btn--outline {
  background: var(--white);
  color: var(--accent-dark);
  border-color: var(--accent);
}
.btn--outline:hover {
  background: var(--accent-light);
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--gray-700);
  border-color: var(--gray-300);
}
.btn--ghost:hover {
  border-color: var(--gray-500);
  color: var(--gray-800);
}

.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.9);
  color: var(--white);
}

.btn--lg {
  font-size: var(--text-base);
  padding: var(--sp-4) var(--sp-10);
}

.btn__arrow {
  transition: transform var(--dur-fast);
}
.btn:hover .btn__arrow {
  transform: translateX(3px);
}

/* ============================================
   ヘッダー
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  background: var(--white);
  transition: box-shadow var(--dur-normal) var(--ease);
}
.header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

/* トップバー */
.header-top-bar {
  padding: 7px var(--sp-8);
  background-image: linear-gradient(to top, #000055 0%, #000067 50%, #06006e 100%);
  max-height: 60px;
  overflow: hidden;
  transition: max-height 0.3s var(--ease), padding 0.3s var(--ease), opacity 0.3s var(--ease);
  opacity: 1;
}
.header-top-bar.is-hidden {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}
.header-top-bar__text {
  font-size: 0.9rem; /* --text-xs(0.75rem) × 1.2 */
  color: var(--white);
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--sp-8);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

/* ロゴ */
.header__logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.header__logo-img {
  height: 45px; /* 1x画像の実寸（380×45px）に合わせて等倍表示 */
  width: auto;
  display: block;
}
.header__logo-main {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-sub);
  letter-spacing: 0.06em;
}
.header__logo-sub {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: 0.04em;
}

/* ナビ */
.header__nav {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}
.header__nav-list a {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  padding: var(--sp-2) var(--sp-3);
  letter-spacing: 0.04em;
  transition: color var(--dur-fast);
  white-space: nowrap;
  text-align: center;
}
.header__nav-list a .nav-sub {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  line-height: 1.3;
}
.header__nav-list a:hover .nav-sub,
.header__nav-list a.is-active .nav-sub {
  color: var(--accent);
}
.header__nav-list a:hover,
.header__nav-list a.is-active {
  color: var(--accent);
}

/* ドロワー内CTAボタン（PC：非表示） */
.drawer-contact {
  display: none;
}

/* CTAボタン群 */
.header__actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 10px 22px;
  border: none;
  border-radius: 4px;
  white-space: nowrap;
  transition:
    background var(--dur-fast),
    color var(--dur-fast);
}
.header__btn--gold {
  background: var(--accent-antique);
  color: var(--white);
}
.header__btn--gold:hover {
  background: #7a6124;
  color: var(--white);
}

/* ハンバーガー */
.header__hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 52px;
  background: none; border: none;
  cursor: pointer; padding: var(--sp-2) var(--sp-1);
  flex-shrink: 0;
}
.header__hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.header__hamburger-lines span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gray-700);
  transition:
    transform var(--dur-normal) var(--ease),
    opacity var(--dur-fast);
}
.header__hamburger-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gray-800);
  line-height: 1;
  transition: color var(--dur-fast);
}
.header__hamburger[aria-expanded="true"] .header__hamburger-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger[aria-expanded="true"] .header__hamburger-lines span:nth-child(2) {
  opacity: 0;
}
.header__hamburger[aria-expanded="true"] .header__hamburger-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header__hamburger[aria-expanded="true"] .header__hamburger-label {
  color: var(--accent);
}

/* ============================================
   HERO セクション
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #f5f9ff 0%, #e8f1fb 50%, #f7f9fc 100%);
  padding-top: 110px; /* header__inner(80px) + header-top-bar(約30px) */
}

/* 背景装飾 */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
}
.hero__bg-circle--1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,115,199,0.08) 0%, transparent 70%);
}
.hero__bg-circle--2 {
  position: absolute;
  bottom: 10%;
  left: -8%;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,154,229,0.07) 0%, transparent 70%);
}
.hero__bg-line {
  position: absolute;
  top: 0; right: 18%;
  width: 1px; height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--border) 20%,
    var(--border) 80%,
    transparent
  );
}

/* コンテンツ */
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--sp-12) var(--px);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--sp-16);
  align-items: center;
}

/* アイブロウ */
.hero__eyebrow {
  font-family: var(--font-en);
  font-size: var(--text-xs);
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* タイトル */
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-3xl), 5.5vw, var(--text-5xl));
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-6);
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
}

/* リード */
.hero__lead {
  font-size: var(--text-md);
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: var(--sp-10);
}

/* CTAボタン群 */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

/* 補足 */
.hero__note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.7;
  padding: var(--sp-3) var(--sp-4);
  border-left: 2px solid var(--accent-mid);
  background: rgba(26,115,199,0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  max-width: 480px;
}

/* ビジュアルカード群 */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.hero__visual-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-normal) var(--ease);
}
.hero__visual-card:hover { transform: translateX(-4px); }

.hero__visual-card--1 { margin-right: var(--sp-8); }
.hero__visual-card--2 { margin-left: var(--sp-8); }
.hero__visual-card--3 { margin-right: var(--sp-4); }

.hero__visual-icon {
  width: 52px; height: 52px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.hero__visual-num {
  font-family: var(--font-en);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: var(--sp-1);
}
.hero__visual-num span {
  font-size: var(--text-xl);
  color: var(--accent);
}
.hero__visual-label {
  font-size: var(--text-xs);
  color: var(--text-sub);
  letter-spacing: 0.04em;
}

.hero__visual-deco {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1.5px solid var(--accent-light);
  border-radius: 50%;
  z-index: -1;
}

/* スクロールインジケーター */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: var(--px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  z-index: 1;
}
.hero__scroll-text {
  font-family: var(--font-en);
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollAnim 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  45%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  55%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* HERO ブロークングリッド レイアウト (全画面・大胆構図モデル) */
.hero--broken {
  position: relative;
  background: var(--white);
  padding-top: 110px; /* header__inner(80px) + header-top-bar(約30px) */
  padding-bottom: var(--sp-6); /* 下部の余白も詰める */
  overflow: hidden;
}

/* デフォルトの背景装飾は非表示 */
.hero--broken .hero__bg {
  display: none;
}

.hero__inner--broken {
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
  padding: var(--sp-6) var(--px); /* 上下の余白を大幅に詰める */
  position: relative; /* 右のwrapper(1536px)に画像を配置するための基準 */
  display: flex;
  align-items: center;
  min-height: 400px; /* 大幅にコンパクト化 */
}

.hero__content--broken {
  position: relative;
  z-index: 2;
  width: 60%; /* 画像と重ねるために幅を広く設定 */
  padding: 0;
}

.hero__content--broken .hero__title {
  color: var(--gray-900);
  font-size: clamp(2.5rem, 4.2vw, 4.8rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: var(--sp-3);
  white-space: nowrap;
  display: inline-block;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.2rem 1.5rem 0.2rem 0.8rem;
  box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.05);
  border-radius: 0 4px 4px 0;
  /* 日本語オプティカルカーニング：「」や、の前後の余白を自動最適化 */
  font-feature-settings: "palt" 1;
  font-kerning: normal;
  letter-spacing: 0.04em;
  text-spacing-trim: trim-start;
  hanging-punctuation: first allow-end;
}

/* 行頭括弧のぶら下げ：1行目との左端を視覚的に揃える */
.hang-open {
  margin-left: -0.5em;
}

.hero__content--broken .hero__title em {
  font-style: normal;
  color: var(--accent-antique); /* ゴールドに変更して目立たせる */
}
.hero__emphasis-shadow {
  color: var(--accent-antique);
  font-size: 1.1em;
  font-weight: 800;
}

.hero__content--broken .hero__sub {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem); /* サブコピーも拡大 */
  font-weight: 700;
  color: var(--gray-800);
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-2);
}

.hero__content--broken .hero__lead {
  font-size: clamp(1.05rem, 1.25vw, 1.25rem); /* リード文も拡大 */
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 0;
}

.hero__image--broken {
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc((100% - 100vw) / 2); /* コンテナを越えて画面右端に吸着 */
  width: calc(55% + (100vw - 100%) / 2); /* 画面端までの追加分を幅に加算 */
  z-index: 1;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.hero__image--broken img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 改変: 切り取られないように全体を表示 */
  object-position: right center;
  background-color: var(--white); /* 余白を馴染ませるための白背景 */
}

/* 1920px以上の広い画面では画像を縮小せず100%のサイズ(750px)で表示 */
@media (min-width: 1920px) {
  .hero__inner--broken {
    min-height: 750px; /* 画像が100%で見える高さを確保 */
  }
  .hero__image--broken {
    width: 750px;
    height: 750px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
  }
}

/* hero レスポンシブ → Bootstrap ブレイクポイントに統合 */


/* ============================================
   信頼実績 セクション
   ============================================ */
.trust {
  padding: var(--section-y) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust__eyebrow {
  font-family: var(--font-en);
  font-size: var(--text-md);
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
}
.trust__eyebrow::before,
.trust__eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.trust__heading {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: var(--sp-6);
  letter-spacing: -0.01em;
}

.trust__desc {
  text-align: center;
  font-size: var(--text-base);
  color: var(--text-sub);
  line-height: 1.8;
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-10);
}
.trust__desc p {
  margin-bottom: var(--sp-4);
}
.trust__desc p:last-child {
  margin-bottom: 0;
  font-weight: 700;
  color: var(--gray-900);
  background: var(--white);
  display: inline-block;
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  margin-top: var(--sp-2);
}

/* 数値指標 */
.trust__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-10);
}

.trust__stat {
  text-align: center;
  padding: var(--sp-4) var(--sp-10);
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.trust__stat-label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: 0.02em;
  min-height: 2.8em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: var(--sp-5);
  line-height: 1.5;
}
.trust__stat-num {
  font-family: var(--font-num);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.trust__stat-unit {
  font-size: var(--text-xl);
}
.trust__stat-suffix {
  font-size: var(--text-base);
  letter-spacing: 0.1em;
}

.trust__stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border-dark);
  flex-shrink: 0;
}

/* クライアント一覧トグル */
.trust__clients-toggle-wrap {
  margin-top: var(--sp-6);
  text-align: center;
}
.trust__clients-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0;
  background: transparent;
  border: none;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--accent-dark);
  cursor: pointer;
  transition: color var(--dur-fast), transform var(--dur-fast);
}
.trust__clients-toggle:hover {
  color: var(--accent);
  transform: translateX(4px);
}
.trust__clients-toggle-icon {
  transition: transform 0.3s ease;
}
.trust__clients-toggle[aria-expanded="true"] .trust__clients-toggle-icon {
  transform: rotate(90deg);
}
.trust__clients-list {
  margin-top: var(--sp-6);
}
.trust__clients-list[hidden] {
  display: none;
}
.trust__clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  max-width: 768px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.trust__client-item {
  background: #f5ede0;
  border: 1px solid #d9bfa0;
  padding: var(--sp-3);
  font-size: 0.7rem;
  color: var(--gray-800);
  letter-spacing: 0.02em;
  line-height: 1.7;
  text-align: center;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ロゴ枠 */
.trust__logos-wrap {
  margin-top: var(--sp-12);
  width: 100%;
}
.trust__logos-label {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: var(--sp-6);
}

/* 無限スクロールマーキー */
.trust__logos-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* PC用 14件固定グリッド（7列×2行） */
.trust__logos-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--sp-2);
  max-width: 1080px;
  margin: 0 auto;
}
.trust__logos-grid.pc-only {
  display: grid;
}
/* グリッド内アイテムは固定幅を解除してセル幅に合わせる */
.trust__logos-grid .trust__logo-item {
  width: 100%;
  height: auto;
}

.marquee-row {
  display: flex;
  width: max-content;
  margin-bottom: var(--sp-4);
}
.marquee-row:last-child {
  margin-bottom: 0;
}
.marquee-row.sp-only {
  display: none;
}
.marquee-set {
  display: flex;
  gap: var(--sp-4);
  padding-right: var(--sp-4);
}

@keyframes marquee-rtl {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-ltr {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-row--rtl {
  animation: marquee-rtl 50s linear infinite;
}
.marquee-row--ltr {
  animation: marquee-ltr 50s linear infinite;
}

.trust__logo-item {
  width: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color var(--dur-fast);
  flex-shrink: 0;
}
.trust__logo-item:hover {
  border-color: var(--accent-mid);
}
.trust__logo-img {
  width: 100%;
  height: auto;
  display: block;
}
.trust__logo-placeholder {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* trust ロゴ表示切り替え → Bootstrap ブレイクポイントに統合 */

/* ============================================
   課題提示 セクション
   ============================================ */
.challenge {
  padding: var(--section-y) 0;
  background: var(--bg-sub);
}

.challenge .section-title {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.section-lead-wrapper {
  max-width: 840px;
  margin: 0 auto;
}
.section-lead-wrapper .section-lead {
  margin-bottom: var(--sp-6);
}
.section-lead-wrapper .section-lead:last-child {
  margin-bottom: 0;
}

.challenge__phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
  align-items: stretch;
}

.challenge__phase-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-normal) var(--ease);
}
.challenge__phase-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-mid);
}

/* PC・モバイル共通: アコーディオン */
.challenge__phase-header {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  list-style: none;
  padding: var(--sp-8) var(--sp-6) var(--sp-5);
}
.challenge__phase-header::-webkit-details-marker { display: none; }
.challenge__phase-header::marker { display: none; }

/* 展開アイコン（下部中央） */
.challenge__phase-header::after {
  content: '';
  display: block;
  width: 26px;
  height: 26px;
  margin: var(--sp-4) auto 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b4da2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform var(--dur-fast);
}
.challenge__phase-item[open] > .challenge__phase-header::after {
  transform: rotate(180deg);
}
.challenge__phase-item > .challenge__list {
  padding: var(--sp-6) var(--sp-6) var(--sp-8);
  border-top: 1px solid var(--border);
}
.challenge__phase-desc {
  margin-bottom: var(--sp-2);
}

/* ≤991px: 1カラムに */
@media (max-width: 991.98px) {
  .challenge__phases {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }
  .challenge__phase-item {
    border-radius: var(--radius-md);
  }
  .challenge__phase-header {
    padding: var(--sp-5) var(--sp-5) var(--sp-4);
  }
}

.challenge__phase-num {
  font-family: var(--font-en);
  font-size: var(--text-md);
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-2);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.challenge__phase-num::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.challenge__phase-title {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: var(--sp-5);
  color: var(--gray-900);
}

.challenge__phase-desc {
  font-size: var(--text-sm);
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: var(--sp-6);
  padding: var(--sp-4);
  background: var(--bg-sub);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.challenge__list {
  list-style: none;
  padding: 0;
  margin-top: auto;
}

.challenge__list li {
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
  position: relative;
  padding-left: 1.4em;
  color: var(--text);
}

.challenge__list li:last-child {
  margin-bottom: 0;
}

.challenge__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231a73c7'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.challenge__list strong {
  color: var(--accent-dark);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.challenge__cta {
  margin-top: var(--sp-16);
}

.challenge__cta-inner {
  max-width: 840px;
  margin: 0 auto;
  padding: var(--sp-12) var(--sp-8);
  background: var(--bg-sub);
  border: 2px solid var(--accent-mid);
  border-radius: var(--radius-xl);
  text-align: center;
}

.challenge__cta-micro {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--gray-800);
  line-height: 1.6;
  margin-bottom: var(--sp-8);
}

.challenge__cta-actions {
  margin-bottom: var(--sp-6);
}

.challenge__cta-note {
  display: inline-block;
  font-size: var(--text-sm);
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-6);
  padding: 2px 12px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 2px;
}


/* ============================================
   サービス セクション
   ============================================ */
.services {
  padding: var(--section-y) 0;
  background: var(--bg-sub);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-10) var(--sp-8);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    box-shadow var(--dur-normal) var(--ease),
    transform var(--dur-normal) var(--ease),
    border-color var(--dur-normal);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-normal) var(--ease);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--accent-mid);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__num {
  font-family: var(--font-en);
  font-size: var(--text-5xl);
  font-weight: 500;
  color: rgba(26,115,199,0.08);
  line-height: 1;
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-6);
  letter-spacing: -0.04em;
  pointer-events: none;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.4;
  margin-bottom: var(--sp-4);
}

.service-card__lead {
  font-size: var(--text-base);
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: var(--sp-6);
  line-height: 1.6;
}

.service-card__content {
  margin-bottom: var(--sp-8);
}

.service-card__label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: var(--sp-3);
  display: block;
  letter-spacing: 0.05em;
}

.service-card__check-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.service-card__check-list li {
  font-size: var(--text-sm);
  color: var(--text);
  line-height: 1.6;
  padding-left: 1.4em;
  position: relative;
}
.service-card__check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.service-card__footer {
  margin-top: auto;
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
}

.service-card__approach {
  font-size: var(--text-xs);
  color: var(--text-sub);
  line-height: 1.4;
  margin-bottom: var(--sp-4);
  background: var(--bg-sub);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  display: block;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--accent-dark);
  transition: color var(--dur-fast), transform var(--dur-fast);
}
.service-card__link:hover {
  color: var(--accent);
  transform: translateX(4px);
}

/* 比較セクション */
.services__comparison {
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-12);
}

.services__comparison-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--gray-900);
  margin-bottom: var(--sp-6);
}

.comparison-table-wrapper {
  overflow-x: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  -webkit-overflow-scrolling: touch;
}

.table-scroll-hint {
  display: none;
}

.comparison-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.comparison-table th,
.comparison-table td {
  padding: var(--sp-4) var(--sp-5);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: left;
  line-height: 1.6;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: none;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table thead th {
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-base);
  text-align: center;
  white-space: nowrap;
}
/* 項目列（1列目）*/
.comparison-table thead th:nth-child(1) {
  background: var(--accent);
  color: var(--white);
}
/* 本質改善コンサルティング（2列目）*/
.comparison-table thead th:nth-child(2) {
  background: #000067;
}
/* 現場直結実践研修（3列目）*/
.comparison-table thead th:nth-child(3) {
  background: var(--sky);
}

.comparison-table tbody th {
  background: var(--accent-light);
  color: var(--accent-dark);
  font-weight: 700;
  width: 140px;
  white-space: nowrap;
}

.comparison-table td {
  color: var(--text);
}

/* サービスCTA */
.services__cta {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* ============================================
   選ばれる理由 セクション
   ============================================ */
.reasons {
  padding: var(--section-y) 0;
  background: var(--white);
}

.reasons__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-10) var(--sp-8);
}

.reason-card:nth-child(1),
.reason-card:nth-child(2) {
  grid-column: span 3;
}

.reason-card:nth-child(3),
.reason-card:nth-child(4),
.reason-card:nth-child(5) {
  grid-column: span 2;
}

.reason-card {
  background: var(--bg-sub);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-6) var(--sp-6);
  position: relative;
  transition: box-shadow var(--dur-normal) var(--ease), transform var(--dur-normal) var(--ease);
}
.reason-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.reason-card__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: var(--sp-4);
}

.reason-card__num {
  display: block;
  font-family: var(--font-en);
  font-style: italic;
  font-weight: 300;
  font-size: 4rem;
  line-height: 1;
  color: #c8a97e;
  letter-spacing: -0.02em;
  background: none;
  border-radius: 0;
  box-shadow: none;
  width: auto;
  height: auto;
  margin-bottom: var(--sp-2);
  position: relative;
  z-index: 0;
}

.reason-card__title {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.55;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.reason-card__desc {
  font-size: var(--text-sm);
  color: var(--text-sub);
  line-height: 1.8;
}

/* ============================================
   導入成果 セクション
   ============================================ */
.outcomes {
  padding: var(--section-y) 0;
  background-color: #000067;
  background-image:
    url("https://ra-pport.com/images/texture02.png"),
    linear-gradient(to top, #000055 0%, #000067 50%, #06006e 100%);
}
.outcomes .section-eyebrow,
.outcomes .section-title,
.outcomes .section-lead,
.outcomes__note {
  color: var(--white);
}

.outcomes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}

.outcome-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  transition:
    box-shadow var(--dur-normal) var(--ease),
    transform var(--dur-normal) var(--ease);
}
.outcome-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.outcome-item__icon {
  width: 56px; height: 56px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.outcome-item__body { flex: 1; }

.outcome-item__title {
  font-family: var(--font-serif);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--sp-2);
}

.outcome-item__desc {
  font-size: var(--text-sm);
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}

/* 横棒インジケーター */
.outcome-bar {
  height: 6px;
  background: var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--sp-2);
}
.outcome-bar__fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-mid), var(--accent));
  border-radius: var(--radius-full);
  transition: width 1s var(--ease) 0.3s;
}
.outcome-item.is-visible .outcome-bar__fill {
  width: var(--bar-width);
}
.outcome-bar__label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.04em;
}

.outcomes__note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-align: center;
  margin-top: var(--sp-8);
  line-height: 1.7;
}

/* ============================================
   医療機関の声 セクション
   ============================================ */
/* ============================================
   研修・講演の実績紹介 セクション
   ============================================ */
.achievements {
  padding: var(--section-y) 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* スライダーラッパー */
.achievements__slider-wrap {
  position: relative;
  /* 画面幅いっぱいにスライダーを広げるためのネガティブマージン */
  margin: 0 calc(-1 * var(--px));
  padding: 0 var(--px) var(--sp-12);
}

.achievements__slider-wrap .swiper-pagination {
  bottom: 0;
}
.achievements__slider-wrap .swiper-pagination-bullet {
  background: var(--gray-400);
  opacity: 0.5;
}
.achievements__slider-wrap .swiper-pagination-bullet-active {
  background: var(--accent);
  opacity: 1;
}

/* カード */
.achievement-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  display: flex !important;
  flex-direction: column;
  gap: var(--sp-3);
  height: auto; /* Swiperのstretchに対応 */
  box-sizing: border-box;
  overflow: hidden;
  transition:
    box-shadow var(--dur-normal) var(--ease),
    transform var(--dur-normal) var(--ease);
}
.achievement-card__link {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: block;
}
.achievement-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.achievement-card__img-wrap {
  margin: calc(var(--sp-6) * -1) calc(var(--sp-6) * -1) var(--sp-4);
  aspect-ratio: 3 / 2;
  overflow: hidden;
  position: relative;
  z-index: 11;
  pointer-events: none;
}

.achievement-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
}

/* 種別バッジ */
.achievement-card__type {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  width: fit-content;
}
.achievement-card__type--training {
  background: var(--accent-light);
  color: var(--accent-dark);
}
.achievement-card__type--lecture {
  background: rgba(74,154,229,0.15);
  color: #2563b5;
}

/* 機関名 */
.achievement-card__org {
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* タイトル */
.achievement-card__title {
  font-family: var(--font-serif);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.5;
}

/* 内容説明 */
.achievement-card__detail {
  font-size: var(--text-sm);
  color: var(--text-sub);
  line-height: 1.7;
  flex: 1;
}

/* 実施年 */
.achievement-card__date {
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.06em;
  padding-top: var(--sp-2);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

/* ============================================
   医療機関の声 セクション（旧）
   ============================================ */
.voices {
  padding: var(--section-y) 0;
  background: var(--white);
}

.voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.voice-card {
  background: var(--bg-sub);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  display: flex;
  flex-direction: column;
  transition:
    box-shadow var(--dur-normal) var(--ease),
    transform var(--dur-normal) var(--ease);
}
.voice-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.voice-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border);
}

.voice-card__name {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--sp-1);
}
.voice-card__role {
  font-size: var(--text-xs);
  color: var(--text-sub);
  letter-spacing: 0.04em;
}

.voice-card__logo-placeholder {
  width: 60px; height: 40px;
  background: var(--border);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.voice-card__result {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--accent-dark);
  line-height: 1.6;
  margin-bottom: var(--sp-3);
}

.voice-card__comment {
  font-size: var(--text-sm);
  color: var(--text-sub);
  line-height: 1.9;
  flex: 1;
  margin-bottom: var(--sp-5);
  position: relative;
  padding-left: var(--sp-5);
}
.voice-card__comment::before {
  content: '"';
  position: absolute;
  top: -4px; left: 0;
  font-family: var(--font-en);
  font-size: var(--text-3xl);
  color: var(--accent-mid);
  line-height: 1;
  opacity: 0.4;
}

.voice-card__link {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--accent-dark);
  letter-spacing: 0.04em;
  margin-top: auto;
  transition: color var(--dur-fast);
}
.voice-card__link:hover { color: var(--accent); }

/* ============================================
   医療接遇コラム セクション
   ============================================ */
.column {
  padding: var(--section-y) 0;
  background: var(--bg-sub);
}

.column__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

.column-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    box-shadow var(--dur-normal) var(--ease),
    transform var(--dur-normal) var(--ease);
}
.column-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.column-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--gray-100);
  overflow: hidden;
}
.column-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
}

.column-card__body {
  padding: var(--sp-5) var(--sp-5);
}

.column-card__date {
  display: block;
  font-family: var(--font-en);
  font-size: var(--text-sm);
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-2);
}

.column-card__title {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-900);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.column-card__title a {
  transition: color var(--dur-fast);
}
.column-card__title a:hover { color: var(--accent); }


/* ============================================
   更新情報 セクション
   ============================================ */
.news {
  padding: var(--section-y) 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.news__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  padding: var(--sp-8) 0 0;
  max-width: 1040px;
  margin: 0 auto;
}
@media (min-width: 860px) {
  .news__layout {
    grid-template-columns: 1fr 240px;
    padding: var(--sp-12) 0 0;
    gap: var(--sp-16);
    align-items: start;
  }
}

.news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.news__heading {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gray-900);
}
.news__more-link {
  font-size: var(--text-sm);
  color: var(--gray-700);
  font-weight: 500;
  transition: color var(--dur-fast);
}
.news__more-link:hover {
  color: var(--accent);
}

.news__list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.news__item {
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--border);
}
.news__item:first-child {
  padding-top: 0;
}
.news__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-2);
}

.news__date {
  font-family: var(--font-en);
  font-size: var(--text-base);
  color: var(--text-sub);
  letter-spacing: 0.04em;
}

.news__tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 2px;
}
.news__tag--column {
  background: transparent;
  color: var(--accent-antique);
  border: 1px solid var(--accent-antique);
  border-radius: 999px;
}
.news__tag--info {
  background: transparent;
  color: #000067;
  border: 1px solid #000067;
  border-radius: 999px;
}

.news__title {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-sub);
  line-height: 1.7;
  transition: color var(--dur-fast);
}
.news__title:hover {
  color: var(--accent);
}

/* バナーリスト */
.banner-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.banner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 96px;
  padding: 0 16px;
  box-sizing: border-box;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--dur-normal) var(--ease), opacity var(--dur-fast);
  background: var(--white);
  position: relative;
}
.banner-item:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.banner-item--text {
  flex-direction: column;
  text-align: center;
  background: var(--bg-sub);
  border: 1px solid var(--border);
}
.banner-item__text-small {
  display: block;
  font-size: 0.625rem; /* 10px相当に縮小 */
  color: var(--gray-700);
  margin-bottom: var(--sp-1);
  white-space: nowrap; /* 強制的に1行に収める */
  letter-spacing: -0.01em; /* わずかに字間を詰め */
}
.banner-item__text-large {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--bg-dark);
}

.banner-item--css {
  flex-direction: column;
  color: var(--white);
  text-align: center;
  border: none;
}
.banner-item__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  z-index: 1;
}
.banner-item__content svg {
  width: 26px;
  height: 26px;
  opacity: 0.95;
  margin-bottom: 2px;
}
.banner-item__label {
  font-weight: 700;
  font-size: var(--text-xs);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.banner-item--review {
  background: var(--accent);
}
.banner-item--media {
  background: var(--gray-700);
}
.banner-item--social {
  flex-direction: row;
  justify-content: flex-start;
  gap: var(--sp-3);
  text-align: left;
}
.banner-item--ig {
  background: #fff;
  border: 1px solid var(--border);
}
.banner-item__ig-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
  flex-shrink: 0;
}
.banner-item--yt {
  background: #fff;
  border: 1px solid var(--border);
}

.banner-item__social-text {
  display: flex;
  flex-direction: column;
}
.banner-item__social-title {
  font-weight: 700;
  font-size: var(--text-xs);
}
.banner-item__social-sub {
  font-size: 10px;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

/* ============================================
   よくあるご質問 セクション
   ============================================ */
.faq {
  padding: var(--section-y) 0;
  background: var(--bg-sub);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--dur-fast);
}
.faq__item[open] {
  border-color: var(--sky);
}

.faq__question {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background var(--dur-fast);
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question:hover {
  background: var(--sky-light);
}

.faq__q-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  color: var(--white);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 900;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.faq__q-text {
  flex: 1;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.6;
}

.faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: transform var(--dur-normal) var(--ease), opacity var(--dur-normal);
}
.faq__icon::before {
  width: 14px; height: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 2px; height: 14px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq__item[open] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq__answer {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6) var(--sp-6);
  border-top: 1px solid var(--border);
  background: var(--white);
}

.faq__a-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 900;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.faq__answer p {
  font-size: var(--text-base);
  color: var(--text-sub);
  line-height: 1.85;
  padding-top: 4px;
}

/* ============================================
   代表メッセージ セクション
   ============================================ */
.message {
  padding: var(--section-y) 0;
  background-color: #000067;
  background-image:
    url("https://ra-pport.com/images/texture02.png"),
    linear-gradient(to top, #000055 0%, #000067 50%, #06006e 100%);
  position: relative;
  overflow: hidden;
}

/* メッセージ内のテキストを白文字にする調整 */
.message .section-title,
.message .section-eyebrow,
.message__text,
.message__photo-name,
.message__signature-name {
  color: var(--white);
}

.message__photo-title,
.message__signature-sub {
  color: var(--gray-300);
}

.message__inner {
  position: relative;
  z-index: 1;
}
.message__inner::after {
  content: '';
  display: table;
  clear: both;
}

.message__photo {
  float: left;
  width: 220px;
  margin: var(--sp-2) var(--sp-10) var(--sp-6) 0;
}
.message__photo-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.message__photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--sp-4);
}
.message__photo-inner {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  color: var(--gray-300);
  font-size: var(--text-xs);
  text-align: center;
  line-height: 1.6;
}

.message__photo-title {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-1);
}
.message__photo-name {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 700;
}



.message__text {
  font-size: var(--text-base);
  line-height: 2;
  margin-bottom: var(--sp-5);
}
.message__text:last-of-type { margin-bottom: var(--sp-8); }

.message__signature {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: var(--sp-5);
  text-align: right;
}
.message__signature-sub {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-1);
}
.message__signature-name {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 700;
  /* 色指定(var(--gray-900))は上部の.message一括指定で白にするため削除 */
}

.message__lead {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.6;
  color: var(--accent-antique);
  margin-bottom: var(--sp-8);
  letter-spacing: 0.02em;
}

.message__list {
  margin: var(--sp-4) 0 var(--sp-6);
  padding: var(--sp-4) var(--sp-6);
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--accent-antique);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  overflow: hidden;
}

.message__list li {
  margin-bottom: var(--sp-2);
  color: var(--white);
  line-height: 1.75;
  list-style: none;
}

.message__list li:last-child {
  margin-bottom: 0;
}

.message__list strong {
  color: var(--accent-antique);
  font-weight: 700;
}

/* ============================================
   最終CTA セクション
   ============================================ */
.final-cta {
  padding: var(--sp-24) 0;
  background-color: #0a0f1e;
  background-image: url("images/footer-bg-cta.jpg");
  background-size: contain;
  background-repeat: repeat;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65); /* 黒系の透過レイヤー */
  pointer-events: none;
  z-index: 0;
}

.final-cta__inner {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  z-index: 1;
}

.final-cta__eyebrow {
  font-family: var(--font-en);
  font-size: var(--text-md);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
}
.final-cta__eyebrow::before,
.final-cta__eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--white);
  flex-shrink: 0;
}

.final-cta__heading {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: var(--sp-5);
  letter-spacing: -0.01em;
}

.final-cta__body {
  font-size: var(--text-base);
  color: var(--white);
  line-height: 1.9;
  margin-bottom: var(--sp-8);
  opacity: 0.9;
}

.final-cta__actions {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}
.final-cta__actions .btn {
  font-weight: 700;
}

.final-cta__note {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
}
.final-cta__note a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
  transition: color var(--dur-fast);
}
.final-cta__note a:hover { color: var(--white); }

/* ============================================
   フッター
   ============================================ */
.footer {
  background: var(--gray-100);
  color: var(--text-sub);
  position: relative;
}

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

.footer__top {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--sp-12);
  padding: var(--sp-16) 0;
  border-bottom: 1px solid var(--border-dark);
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--sp-4);
}

.footer__address {
  font-size: var(--text-sm);
  line-height: 1.9;
  color: var(--text-sub);
}
.footer__address a {
  color: var(--text);
  transition: color var(--dur-fast);
}
.footer__address a:hover { color: var(--accent); }

/* フッターナビ */
.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
}
.footer__nav-head {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--border);
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer__nav a {
  font-size: var(--text-sm);
  color: var(--text-sub);
  letter-spacing: 0.03em;
  transition: color var(--dur-fast);
}
.footer__nav a:hover { color: var(--accent); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5) 0;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer__sub-nav {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.footer__sub-nav a {
  font-size: var(--text-xs);
  color: var(--text-sub);
  transition: color var(--dur-fast);
}
.footer__sub-nav a:hover { color: var(--accent); }

/* コピーライト帯（アクセントカラーのグラデーション） */
.footer__copyright {
  background-color: #000067;
  background-image: linear-gradient(to top, #000055 0%, #000067 50%, #06006e 100%);
  padding: var(--sp-4) 0;
  text-align: center;
}

.footer__copy {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
}
.footer__copy small {
  font-size: inherit;
}

/* ページトップボタン */
.page-top {
  position: fixed;
  bottom: var(--sp-8);
  right: var(--sp-8);
  width: 48px; height: 48px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--dur-normal),
    visibility var(--dur-normal),
    transform var(--dur-normal) var(--ease),
    background var(--dur-fast);
  z-index: var(--z-above);
}
.page-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.page-top:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  color: var(--white);
}

/* ============================================
   スクロールアニメーション
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 旧レスポンシブブロックは下部 Bootstrap セクションに統合 */

/* ============================================
   Bootstrap ブレイクポイント レスポンシブ
   lg-  : max-width 1199.98px（ノートPC）
   md-  : max-width  991.98px（タブレット横）
   sm-  : max-width  767.98px（タブレット縦・スマホ）
   xs   : max-width  575.98px（スマホのみ）
   ============================================ */

/* ------- lg- (≤1199px) ノートPC ------- */
/* ------- ≤1399px：ハンバーガーメニューに切り替え ------- */
@media (max-width: 1399.98px) {
  .header__nav {
    position: fixed;
    top: 110px; left: 0; right: 0; bottom: 0; /* header-top-bar込みの高さ */
    background: var(--white);
    padding: var(--sp-8) var(--px);
    transform: translateX(100%);
    transition: transform var(--dur-normal) var(--ease);
    overflow-y: auto;
    border-top: 1px solid var(--border);
    justify-content: flex-start;
    align-items: flex-start;
    z-index: var(--z-header);
  }
  .header__nav.is-open {
    transform: translateX(0);
  }
  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .header__nav-list li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .header__nav-list a {
    font-size: var(--text-base);
    padding: var(--sp-4) 0;
    display: block;
    width: 100%;
  }
  .header__actions { display: none; }
  .header__hamburger { display: flex; }

  /* header__navをcolumn方向に */
  .header__nav {
    flex-direction: column;
    align-items: stretch;
  }

  /* ドロワー内CTAボタン */
  .drawer-contact {
    display: block;
    padding-top: var(--sp-6);
  }
  .drawer-contact__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: var(--sp-4) var(--sp-6);
    background: var(--accent-antique);
    color: var(--white);
    font-size: var(--text-base);
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: var(--radius-md);
    transition: background var(--dur-fast);
  }
  .drawer-contact__btn:hover {
    background: #a98045;
    color: var(--white);
  }
}

/* ------- lg- (≤1199px) ノートPC ------- */
@media (max-width: 1199.98px) {
  /* trust */
  .trust__logos-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--sp-3);
  }

  /* reasons: 3→2列 */
  .reasons__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
  }
  .reason-card:nth-child(n) {
    grid-column: auto;
  }

  /* column: 3→2列 */
  .column__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* footer */
  .footer__nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ------- md- (≤991px) タブレット横 ------- */
@media (max-width: 991.98px) {
  /* hero */
  .hero--broken {
    padding-top: 110px; /* header-top-bar込みの高さ */
    min-height: auto;
  }
  .hero__inner--broken {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--sp-4) var(--px) 0;
    min-height: auto;
    gap: 0; /* .hero__inner の gap:sp-16(4rem) を打ち消す */
  }
  /* hero__content を display:contents でフラット化し、
     タイトル(1)→画像(2)→サブ・リード(3)の順に並べる */
  .hero__content--broken {
    display: contents;
  }
  .hero__content--broken .hero__title {
    order: 1;
    width: 100%;
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    white-space: normal;
    margin-bottom: var(--sp-2);
  }
  .hero__emphasis-shadow {
    text-shadow: none;
  }
  /* 画像を absolute → relative に戻し、タイトルの直下に配置 */
  .hero__image--broken {
    order: 2;
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    width: 100%;
    height: auto;
    overflow: visible;
    border-radius: var(--radius-md);
    margin-top: var(--sp-2);
    margin-bottom: 0;
  }
  .hero__image--broken img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: unset;
  }
  .hero__content--broken .hero__sub {
    order: 3;
    width: 100%;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    margin-top: var(--sp-3);
    margin-bottom: var(--sp-2);
  }
  .hero__content--broken .hero__lead {
    order: 3;
    width: 100%;
  }
  /* trust: PC グリッド非表示 → マーキーに切り替え */
  .trust__logos-grid.pc-only { display: none; }
  .marquee-row.sp-only { display: flex; }
  .trust__logos-marquee {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }
  .trust__logo-item { width: 160px; }
  /* trust: 2列グリッドに変更 */
  .trust__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8) var(--sp-4);
    padding: var(--sp-6) var(--sp-4);
  }
  .trust__stat {
    padding: var(--sp-3) var(--sp-4);
    min-width: 0;
  }
  .trust__stat-divider { display: none; }

  /* challenge */
  .challenge__phases {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }
  .challenge__cta-inner {
    padding: var(--sp-10) var(--sp-8);
  }

  /* services */
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* outcomes */
  .outcomes__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* voices */
  .voices__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* message */
  .message__photo {
    width: 180px;
  }

  /* footer */
  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ------- sm- (≤767px) タブレット縦・スマホ ------- */
@media (max-width: 767.98px) {
  :root { --section-y: 48px; }

  /* header */
  .header-top-bar {
    display: none; /* モバイルでは非表示にして高さを確保 */
  }
  .header__inner {
    height: 64px;
    padding: 0 var(--sp-4);
  }
  .header__logo-img {
    height: 30px;
  }
  .header__nav {
    top: 64px; /* top-bar非表示のため header__inner 高さのみ */
  }

  .trust__stat {
    padding: var(--sp-3) var(--sp-2);
    min-width: 0;
  }
  .trust__logo-item { width: 140px; }

  /* hero */
  .hero--broken {
    padding-top: 64px;
  }
  .hero__inner--broken {
    padding: var(--sp-6) var(--sp-4);
  }
  .hero__content--broken .hero__title {
    font-size: clamp(0.95rem, 5.5vw, 2rem);
    padding: 0.4rem 0.8rem;
    white-space: nowrap;
  }
  .hero__content--broken .hero__sub {
    font-size: clamp(1rem, 4vw, 1.3rem);
    margin-bottom: var(--sp-2);
  }
  .hero__content--broken .hero__lead {
    font-size: var(--text-sm);
  }
  .hero__image--broken {
    width: 100%;
    height: auto;
    left: auto;
    border-radius: var(--radius-md);
  }

  /* challenge */
  .challenge__phases {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
  .challenge__phase-item {
    padding: var(--sp-5);
  }
  .challenge__cta-inner {
    padding: var(--sp-8) var(--sp-4);
  }
  .challenge__cta-actions {
    flex-direction: column;
    gap: var(--sp-3);
  }

  /* services */
  .services__grid {
    grid-template-columns: 1fr;
  }
  .services__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .services__cta .btn {
    text-align: center;
    justify-content: center;
  }

  /* reasons */
  .reasons__grid {
    grid-template-columns: 1fr;
  }

  /* outcomes */
  .outcomes__grid {
    grid-template-columns: 1fr;
  }

  /* voices */
  .voices__grid {
    grid-template-columns: 1fr;
  }

  /* column */
  .column__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* news */
  .news__list {
    gap: var(--sp-3);
  }

  /* table scroll hint */
  .table-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--sp-2);
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-bottom: var(--sp-2);
  }
  .table-scroll-hint::before {
    content: '←';
  }
  .table-scroll-hint::after {
    content: '→';
  }

  /* message */
  .message__photo { width: 130px; }
  .message__signature-sub {
    font-size: var(--text-xs);
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  /* faq */
  .faq__question {
    font-size: var(--text-sm);
    padding: var(--sp-4) var(--sp-3);
  }
  .faq__answer p {
    font-size: var(--text-sm);
  }

  /* final-cta: モバイルはcoverで大きく表示 */
  .final-cta {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  /* final-cta */
  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .final-cta__actions .btn {
    justify-content: center;
  }

  /* 長いテキストのボタンを折り返し許可 */
  .btn--lg {
    white-space: normal;
    text-align: center;
    line-height: 1.5;
  }

  /* footer */
  .footer__nav {
    grid-template-columns: 1fr 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  /* page-top */
  .page-top {
    bottom: var(--sp-5);
    right: var(--sp-4);
    width: 44px; height: 44px;
  }
}

/* ------- xs (≤575px) スマホのみ ------- */
@media (max-width: 575.98px) {
  /* trust: 2列 */
  .trust__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
    padding: var(--sp-4);
  }
  .trust__stat {
    padding: var(--sp-4) var(--sp-2);
    min-width: 0;
  }
  .trust__stat-divider { display: none; }
  .trust__logo-item { width: 120px; }
  .trust__clients-grid {
    grid-template-columns: 1fr;
  }

  /* column */
  .column__grid {
    grid-template-columns: 1fr;
  }

  /* footer */
  .footer__nav {
    grid-template-columns: 1fr;
  }
  .footer__sub-nav {
    flex-direction: column;
    gap: var(--sp-3);
  }
}
