/* ============================================================
   COCOPLUG Corporate Theme — Main CSS
   ============================================================ */

/* ── 0. Design Tokens ─────────────────────────────────────── */
:root {
  /* Brand Colors */
  --color-primary:        #3a71a3;
  --color-primary-dark:   #2a5a8a;
  --color-primary-light:  #5a91c3;
  --color-accent:         #15773c;   /* green CTA */
  --color-accent-dark:    #0f5a2d;
  --color-accent-alt:     #f5a623;   /* amber highlight */
  --color-white:          #ffffff;
  --color-off-white:      #f7f9fc;
  --color-gray-100:       #f0f4f8;
  --color-gray-200:       #e4eaf1;
  --color-gray-400:       #9baabb;
  --color-gray-600:       #5a6a7e;
  --color-gray-900:       #0d1b2e;
  --color-text:           #1a2940;
  --color-text-light:     #5a6a7e;

  /* Typography */
  --font-body:   'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-display:'Montserrat', var(--font-body);

  /* Spacing */
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,48,135,.08);
  --shadow-md:  0 6px 24px rgba(0,48,135,.12);
  --shadow-lg:  0 16px 48px rgba(0,48,135,.16);
  --shadow-xl:  0 24px 64px rgba(0,48,135,.22);

  /* Layout */
  --container-max: 1200px;
  --header-height: 70px;

  /* Transition */
  --transition-fast:   150ms ease;
  --transition-base:   280ms cubic-bezier(.4,0,.2,1);
  --transition-slow:   450ms cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

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

a { color: var(--color-primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-primary-light); }

ul { list-style: none; }

button { cursor: pointer; font-family: inherit; }

/* ── 2. Utilities ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.w-full { width: 100%; }
.mt-4   { margin-top: var(--space-4); }
.mt-6   { margin-top: var(--space-6); }
.mb-2   { margin-bottom: var(--space-2); }

/* ── 3. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0 var(--space-6);
  height: 46px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  text-align: center;
  line-height: 1.3;
}
.btn small { display: block; font-size: 11px; font-weight: 400; opacity: .85; }

.btn-sm  { height: 38px; padding: 0 var(--space-4); font-size: 13px; }
.btn-lg  { height: auto; min-height: 56px; padding: 12px var(--space-8); font-size: 16px; }
.btn-lg__text { display: flex; flex-direction: column; text-align: left; line-height: 1.3; }
.btn-lg__text small { display: block; }
.btn-full, .btn.btn-full { width: 100%; display: flex; }

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-primary-light);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: #3a71a3;
  color: var(--color-white);
}
.btn-accent:hover {
  background: #2a5a8a;
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(58,113,163,.35);
}

.btn-outline-white {
  background: #fff;
  border-color: #3a71a3;
  color: #3a71a3;
}
.btn-outline-white:hover {
  background: #3a71a3;
  color: #fff;
}

.btn-outline-primary {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-outline-primary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  font-size: 10px;
  font-weight: 800;
}

/* ── 4. Section Shared ────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-10);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-8);
}
.section-header .section-title { margin-bottom: 0; }

.link-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 4px;
}
.link-more:hover { color: var(--color-primary-light); }

.label-badge {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: var(--space-3);
}

/* ── 5. Header ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  /* デフォルトは白背景（オーバーレイでない通常ページ用） */
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-gray-200);
  transition: background 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

/* ── オーバーレイヘッダー：!important で確実に透明化 ── */
.site-header--overlay {
  background: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
}

/* スクロール後は白背景に戻す */
.site-header--overlay.scrolled {
  background: rgba(255,255,255,.97) !important;
  border-bottom-color: var(--color-gray-200) !important;
  box-shadow: var(--shadow-md) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ナビリンク：透明時は白文字 */
.site-header--overlay:not(.scrolled) .nav-list a {
  color: #3a71a3 !important;
}
.site-header--overlay:not(.scrolled) .nav-list a:hover {
  color: #2a5a8a !important;
}

/* CTAボタン：透明時は白枠 */
.site-header--overlay:not(.scrolled) .header-cta {
  background: #3a71a3 !important;
  border-color: #3a71a3 !important;
  color: #fff !important;
}
.site-header--overlay:not(.scrolled) .header-cta:hover {
  background: #2a5a8a !important;
}

/* ハンバーガー：透明時は白 */
.site-header--overlay:not(.scrolled) .hamburger span {
  background: #fff !important;
}

/* ロゴ切り替え */
.logo-default  { display: inline-flex; }
.logo-scrolled { display: none; }

.site-header--overlay.scrolled .logo-default  { display: none; }
.site-header--overlay.scrolled .logo-scrolled { display: inline-flex; }

/* カスタムロゴ使用時：サイズ・透明時に白フィルター */
.custom-logo {
  height: 40px;
  width: auto;
  display: block;
}
.site-header--overlay:not(.scrolled) .custom-logo {
  filter: brightness(0) invert(1);
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-height);
  gap: var(--space-6);
}

.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-logo img { height: 32px; width: auto; }
.logo-img { height: 32px; width: auto; display: block; }

.site-nav { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}
.nav-list li { position: relative; }
.nav-list a {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: 13.5px;
  font-weight: 500;
  color: #3a71a3;
  transition: color var(--transition-fast);
  white-space: nowrap;
}
.nav-list a:hover { color: var(--color-primary); }
.nav-list .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 5px;
  margin-bottom: 2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: .6;
}

/* Dropdown */
.nav-list li:hover > ul { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-list ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2) 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--transition-base);
}
.nav-list ul a { font-size: 13px; padding: var(--space-2) var(--space-4); }
.nav-list ul a:hover { background: var(--color-gray-100); }

.header-cta {
  flex-shrink: 0;
  background: #3a71a3 !important;
  border-color: #3a71a3 !important;
  color: #fff !important;
}
.header-cta:hover {
  background: #2a5a8a !important;
  border-color: #2a5a8a !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  background: var(--color-white);
  z-index: 999;
  padding: var(--space-6);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-nav-list { display: flex; flex-direction: column; gap: 0; }
.mobile-nav-list a {
  display: block;
  padding: var(--space-4) 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-gray-200);
}
.mobile-nav-list__child a {
  padding-left: var(--space-4);
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-light);
}
.mobile-nav-list__child a::before {
  content: '›';
  display: inline-block;
  margin-right: 6px;
  color: var(--color-gray-300);
}

/* ── 6. Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 600px;
  height: 100vh;
  max-height: 860px;
  /* オーバーレイヘッダーのためmargin-top不要 */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__bg-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a1e4a 0%, #1a4a8a 40%, #2a7ab0 70%, #3ea6d0 100%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.82) 0%, rgba(255,255,255,.65) 45%, rgba(255,255,255,.15) 75%, rgba(255,255,255,0) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__text {
  max-width: 600px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: #0d1f4a;
  line-height: 1.3;
  margin-bottom: var(--space-4);
  text-shadow: none;
}
.hero__title-line {
  display: block;
  white-space: nowrap; /* 各行を強制1行で表示 */
}
/* 1行目：少し小さめ */
.hero__title-line--lead {
  font-size: clamp(1.1rem, 2.0vw, 1.7rem);
  font-weight: 700;
  opacity: .9;
  margin-bottom: .2em;
}
/* アクセントカラー（青） */
.hero__accent {
  color: #3a71a3;
}
/* 区切り線 */
.hero__divider {
  width: 100%;
  height: 2px;
  background: #3a71a3;
  margin: var(--space-4) 0;
}
/* 英字タグライン */
.hero__tagline {
  font-size: clamp(.75rem, 1.2vw, .95rem);
  font-weight: 700;
  letter-spacing: .18em;
  color: #3a71a3;
  margin-bottom: var(--space-2);
  text-shadow: none;
}
/* FVコピー画像 */
.hero__copy-img {
  max-width: 480px;
  width: 100%;
}
.hero__copy-img img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__sub {
  font-size: clamp(13px, 1.5vw, 16px);
  color: #1a2a4a;
  margin-bottom: var(--space-8);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

/* ── 7. Tagline ───────────────────────────────────────────── */
.tagline-section {
  padding: var(--space-20) 0;
  text-align: center;
  background: var(--color-white);
}
.tagline-text {
  font-size: clamp(1.2rem, 2.8vw, 1.75rem);
  font-weight: 700;
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}
.tagline-text::before,
.tagline-text::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background: var(--color-gray-200);
}
.tagline-text::before { right: calc(100% + var(--space-4)); }
.tagline-text::after  { left:  calc(100% + var(--space-4)); }

/* ── 8. Industry Section ──────────────────────────────────── */
.industry-section {
  padding: var(--space-16) 0;
  background: var(--color-off-white);
}

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

.industry-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.industry-card__img-wrap {
  height: 160px;
  overflow: hidden;
  background: var(--color-gray-200);
}
.industry-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.industry-card:hover .industry-card__img-wrap img { transform: scale(1.06); }
.industry-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-gray-200) 0%, var(--color-gray-100) 100%);
}
.industry-card--hotel .industry-card__img-placeholder    { background: linear-gradient(135deg, #1a3a5c 0%, #2a5a8c 100%); }
.industry-card--office .industry-card__img-placeholder   { background: linear-gradient(135deg, #2a4a6c 0%, #3a7aac 100%); }
.industry-card--retail .industry-card__img-placeholder   { background: linear-gradient(135deg, #4a3a2c 0%, #8a6a4c 100%); }
.industry-card--mansion .industry-card__img-placeholder  { background: linear-gradient(135deg, #2a4a2c 0%, #3a8a4c 100%); }
.industry-card--public .industry-card__img-placeholder   { background: linear-gradient(135deg, #3a3a5c 0%, #5a5a8c 100%); }

.industry-card__body {
  padding: var(--space-4);
}
.industry-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-2);
}
.industry-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.industry-card__desc {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ── 9. Subsidy Check ─────────────────────────────────────── */
.subsidy-check-section {
  padding: var(--space-20) 0;
  background: linear-gradient(160deg, var(--color-off-white) 0%, #edf2fa 100%);
}

.subsidy-check-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.subsidy-check__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: var(--space-3);
}
.subsidy-check__lead {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.subsidy-check__desc {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: var(--space-4);
}
.subsidy-check__badges {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.badge-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  color: var(--color-text);
}

/* Step Tabs */
.step-tabs {
  display: flex;
  background: var(--color-gray-200);
  border-radius: var(--radius-sm);
  padding: 3px;
  margin-bottom: var(--space-6);
  overflow-x: auto;
}
.step-tab {
  flex: 1;
  padding: var(--space-2) var(--space-3);
  border: none;
  border-radius: 4px;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-light);
  white-space: nowrap;
  transition: all var(--transition-fast);
}
.step-tab.active {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.step-content {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-4);
}
.step-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}
.step-question {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.step-choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.choice-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-3);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  font-size: 12px;
  color: var(--color-text);
  text-align: center;
  transition: all var(--transition-fast);
}
.choice-btn:hover,
.choice-btn.selected {
  border-color: var(--color-primary);
  background: #eef4ff;
  color: var(--color-primary);
}
.choice-icon { font-size: 20px; }

/* Consult CTA row */
.subsidy-consult-row {
  background: linear-gradient(120deg, #eef4ff 0%, #f0fae8 100%);
  border: 1.5px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 4px;
}
.subsidy-consult-row__text { flex: 1; min-width: 0; }
.subsidy-consult-row__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
  line-height: 1.5;
}
.subsidy-consult-row__sub {
  font-size: 12px;
  color: var(--color-text-light);
  padding-left: 0;
  line-height: 1.7;
}
.btn-consult {
  flex-shrink: 0;
  height: 52px;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  gap: 8px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(123,194,68,.3);
}
.btn-consult:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123,194,68,.4);
}
@media (max-width: 768px) {
  .subsidy-consult-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
  }
  .btn-consult { width: 100%; justify-content: center; }
}

/* Result card */
.result-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 28px 24px 24px;
  border: 2px solid var(--color-primary);
  position: relative;
  overflow: hidden;
}
.result-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}
.result-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: 16px;
}
.result-card__highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(120deg, #fffbf0, #fff8e6);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent-alt);
  border: 1px solid #ffe5a0;
}
/* 想定補助額ブロック */
.result-card__amount-block {
  background: var(--color-off-white);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 20px;
  text-align: center;
}
.amount-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.amount-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 6px;
}
.amount-value strong { font-size: 28px; color: var(--color-primary); }
.amount-note { font-size: 11px; color: var(--color-text-light); }
/* 補助金リスト */
.result-card__list { margin-bottom: 24px; }
.list-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}
.result-card__list ul { display: flex; flex-direction: column; gap: 8px; }
.result-card__list ul li {
  font-size: 12px;
  color: var(--color-text);
  padding: 8px 12px;
  background: #f0fae8;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-accent);
  line-height: 1.5;
}

/* ── 10. Reasons ──────────────────────────────────────────── */
.reasons-section {
  padding: var(--space-20) 0;
  background: #3a71a3;
}
.reasons-section .section-title { color: var(--color-white); }
.reasons-lead {
  text-align: center;
  color: rgba(255,255,255,.75);
  font-size: 15px;
  margin-bottom: var(--space-10);
  margin-top: calc(-1 * var(--space-4));
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
  padding: 0 var(--space-4);
}

.reason-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: all var(--transition-base);
}
.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.15);
}
.reason-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #3a71a3;
  line-height: 1;
  margin-bottom: 2px;
}
.reason-card__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #3a71a3;
  margin-bottom: var(--space-4);
}
.reason-card__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-4);
}
.reason-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.reason-card__title {
  font-size: 15px;
  font-weight: 800;
  color: #3a71a3;
  line-height: 1.5;
  margin-bottom: var(--space-3);
}
.reason-card__desc {
  font-size: 12px;
  color: #3a71a3;
  line-height: 1.7;
  opacity: .75;
}

/* ── 11. Case Studies ─────────────────────────────────────── */
.case-section {
  padding: var(--space-20) 0;
  background: var(--color-white);
  position: relative;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.case-card {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition-base);
}
.case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.case-card__link { display: block; color: inherit; }
.case-card__link:hover { color: inherit; }

.case-card__img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-gray-200);
}
.case-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.case-card:hover .case-card__img { transform: scale(1.05); }
.case-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-gray-200) 0%, #c8d6e8 100%);
}

.case-card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
}

.case-card__body { padding: 16px 18px 20px; }
.case-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  line-height: 1.5;
}
.case-card__meta {
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: 8px;
}
.case-card__meta--subsidy {
  color: var(--color-accent-dark);
  font-weight: 700;
}

/* ── 12. Subsidy Info ─────────────────────────────────────── */
.subsidy-section {
  padding: var(--space-20) 0;
  background: var(--color-off-white);
}

.subsidy-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--space-5);
}

.subsidy-box {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.subsidy-box__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-primary);
}
.subsidy-box__sub {
  font-size: 12px;
  color: var(--color-text-light);
  margin-bottom: var(--space-3);
}
.subsidy-list li {
  font-size: 13px;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-gray-100);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}
.subsidy-list li::before {
  content: '☑';
  color: var(--color-accent);
  flex-shrink: 0;
}

.countdown-label { font-size: 13px; color: var(--color-text-light); margin-bottom: var(--space-2); }
.countdown-display {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}
.countdown-days {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-accent-alt);
  line-height: 1;
}
.countdown-unit {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
}
.countdown-date { font-size: 12px; color: var(--color-text-light); }

/* ── 13. Partners ─────────────────────────────────────────── */
.partners-section {
  padding: var(--space-16) 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-gray-200);
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-6) var(--space-10);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1);
  opacity: .6;
  transition: all var(--transition-base);
}
.partner-logo:hover { filter: none; opacity: 1; }
.partner-logo span {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--color-gray-600);
  letter-spacing: .05em;
}
.partner-logo--more span { font-size: 12px; font-weight: 500; }
.partner-logo img {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}
a.partner-logo {
  text-decoration: none;
  color: inherit;
}

/* ── 14. CTA Banner ───────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(120deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, #0a4fab 100%);
  padding: var(--space-12) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  gap: var(--space-10);
}
.cta-banner__text { flex: 1; }
.cta-banner__lead  { font-size: 14px; color: rgba(255,255,255,.8); margin-bottom: 4px; }
.cta-banner__title { font-size: clamp(1.1rem, 2.2vw, 1.8rem); font-weight: 800; color: var(--color-white); margin-bottom: 6px; white-space: nowrap; }
.cta-banner__sub   { font-size: 13px; color: rgba(255,255,255,.7); }
.cta-banner__actions {
  display: flex;
  gap: var(--space-4);
  flex-shrink: 0;
}

/* ── 15. Footer ───────────────────────────────────────────── */
.site-footer {
  background: var(--color-gray-900);
  color: rgba(255,255,255,.8);
}

.footer-main {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-12);
  padding: var(--space-12) var(--space-6);
}

.footer-brand {}
.footer-logo { display: inline-block; margin-bottom: var(--space-4); }
.footer-logo__img { display: block; height: 30px; width: auto; max-width: 200px; }
.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}
.footer-social {
  display: flex;
  gap: var(--space-3);
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  transition: all var(--transition-fast);
}
.social-link:hover {
  background: var(--color-primary-light);
  color: var(--color-white);
}

.footer-nav-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.footer-nav-heading {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-nav-col ul li a {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  padding: 4px 0;
  transition: color var(--transition-fast);
}
.footer-nav-col ul li a:hover { color: var(--color-white); }

.footer-cta-mini { display: flex; flex-direction: column; gap: var(--space-2); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: var(--space-4) var(--space-6);
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.footer-legal {
  display: flex;
  gap: var(--space-4);
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.footer-legal a:hover { color: var(--color-white); }
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,.4);
}

/* ── 16. Animations ───────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero__title  { animation: fadeInUp .8s ease both; }
.hero__sub    { animation: fadeInUp .8s .2s ease both; }
.hero__actions{ animation: fadeInUp .8s .4s ease both; }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}
/* JSが無効・遅延した場合でも表示されるフォールバック */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── 17. Responsive ───────────────────────────────────────── */

/* Tablet: ≤ 1100px */
@media (max-width: 1100px) {
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .reasons-grid  { grid-template-columns: repeat(3, 1fr); }
  .case-grid     { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .subsidy-grid  { grid-template-columns: 1fr 1fr; }
  .subsidy-grid .subsidy-box--guide { grid-column: span 2; }
  .subsidy-check-wrap { grid-template-columns: 1fr 1fr; }
  .subsidy-check__result { display: none; }
  .footer-nav-group { grid-template-columns: repeat(2, 1fr); }
  .nav-list a { font-size: 12.5px; padding: var(--space-2) var(--space-2); }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
  :root { --header-height: 60px; }

  .site-nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 500px; max-height: 600px; }
  .hero__overlay { background: linear-gradient(180deg, rgba(255,255,255,.75) 0%, rgba(255,255,255,.6) 60%, rgba(255,255,255,.1) 100%); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  /* モバイルでは折り返し許可・フォント縮小 */
  .hero__title { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .hero__title-line { white-space: normal; }
  .hero__title-line--lead { font-size: clamp(1.4rem, 6vw, 1.9rem); opacity: 1; }
  .hero__tagline { font-size: .7rem; letter-spacing: .12em; }

  .tagline-text::before,
  .tagline-text::after { display: none; }

  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid .industry-card:last-child { grid-column: span 2; }

  .subsidy-check-wrap {
    grid-template-columns: 1fr;
  }
  .subsidy-check__result { display: none; }

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

  .reasons-grid  { grid-template-columns: repeat(2, 1fr); }
  .case-grid     { grid-template-columns: 1fr; gap: 16px; }
  .subsidy-grid  { grid-template-columns: 1fr; }
  .subsidy-box--guide { grid-column: auto; }

  .cta-banner__inner   { flex-direction: column; text-align: center; }
  .cta-banner__actions { flex-direction: column; width: 100%; }
  .cta-banner__actions .btn { width: 100%; }

  .footer-main { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-nav-group { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom__inner { flex-direction: column; text-align: center; }

  .section-header { flex-direction: column; align-items: flex-start; gap: var(--space-2); }
}

/* Small mobile: ≤ 480px */
@media (max-width: 480px) {
  .industry-grid { grid-template-columns: 1fr; }
  .industry-grid .industry-card:last-child { grid-column: auto; }
  .reasons-grid  { grid-template-columns: 1fr 1fr; }
  .footer-nav-group { grid-template-columns: 1fr; }
  .step-choices { grid-template-columns: repeat(2, 1fr); }
}

/* ── 18. Misc / WP default overrides ─────────────────────── */
.wp-block-image { margin: var(--space-6) 0; }
.screen-reader-text {
  border: 0;
  clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ══════════════════════════════════════════
   導入事例 詳細ページ
══════════════════════════════════════════ */

/* ── パンくず ── */
.cs-breadcrumb {
  background: var(--color-off-white);
  border-bottom: 1px solid var(--color-gray-200);
  padding: var(--space-3) 0;
  margin-top: var(--header-height);
}
.cs-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--color-text-light);
}
.cs-breadcrumb a { color: var(--color-primary); }
.cs-breadcrumb a:hover { text-decoration: underline; }
.cs-breadcrumb__sep { color: var(--color-gray-400); }

/* ── レイアウト ── */
.cs-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
  padding-top: var(--space-10);
  padding-bottom: var(--space-16);
}

/* ── ヘッダー ── */
.cs-header { margin-bottom: var(--space-6); }
.cs-industry-badge {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: var(--space-3);
}
.cs-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.4;
  margin-bottom: var(--space-2);
}
.cs-date { font-size: 12px; color: var(--color-text-light); }

/* ── メイン画像 ── */
.cs-main-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-md);
}
.cs-main-img__img { width: 100%; height: auto; display: block; }

/* ── サブ画像ギャラリー ── */
.cs-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.cs-gallery__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-gray-200);
}
.cs-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.cs-gallery__item:hover img { transform: scale(1.05); }

/* ── 施設概要 ── */
.cs-overview {
  background: var(--color-off-white);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  border-left: 4px solid var(--color-primary);
}
.cs-overview__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.cs-overview__table { width: 100%; border-collapse: collapse; }
.cs-overview__table th,
.cs-overview__table td {
  padding: var(--space-2) var(--space-4);
  font-size: 13px;
  border-bottom: 1px solid var(--color-gray-200);
  text-align: left;
  vertical-align: top;
}
.cs-overview__table th {
  width: 120px;
  color: var(--color-text-light);
  font-weight: 600;
  white-space: nowrap;
}
.cs-overview__table td { color: var(--color-text); }

/* ── タグ ── */
.cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}
.cs-tag {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
}

/* ── 本文セクション ── */
.cs-section {
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-gray-200);
}
.cs-section:last-of-type { border-bottom: none; }
.cs-section__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background: var(--color-off-white);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--color-accent);
}
.cs-section__body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text);
}

/* ── 前後ナビ ── */
.cs-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-gray-200);
}
.cs-post-nav__link {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4);
  background: var(--color-off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition-base);
}
.cs-post-nav__link:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  color: var(--color-text);
}
.cs-post-nav__link--next { text-align: right; }
.cs-post-nav__label { font-size: 11px; color: var(--color-text-light); }
.cs-post-nav__title { font-size: 13px; font-weight: 600; color: var(--color-primary); }

/* ── サイドバー ── */
.cs-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 共通カード */
.cs-sidebar__card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,48,135,.06);
}

/* ── お問い合わせCTA ── */
.cs-sidebar__contact {
  background: linear-gradient(145deg, #001f5c 0%, #003087 55%, #0050d8 100%);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  position: relative;
  overflow: hidden;
}
.cs-sidebar__contact::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
  pointer-events: none;
}
.cs-sidebar__contact-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.cs-sidebar__contact-lead {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.5;
  margin-bottom: 8px;
}
.cs-sidebar__contact-sub {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 20px;
}
.cs-sidebar__contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 52px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: .02em;
  transition: all var(--transition-base);
  box-shadow: 0 4px 16px rgba(123,194,68,.35);
}
.cs-sidebar__contact-btn:hover {
  background: var(--color-accent-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123,194,68,.45);
}

/* ── 公式LINEバー ── */
.cs-sidebar__line {
  background: var(--color-white);
  border: 1.5px solid #e0f5e9;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(6,199,85,.07);
}
.cs-sidebar__line-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.cs-sidebar__line-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #06C755;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cs-sidebar__line-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 3px;
}
.cs-sidebar__line-sub {
  font-size: 11px;
  color: var(--color-text-light);
  line-height: 1.5;
}
.cs-sidebar__line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  background: #06C755;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  transition: all var(--transition-base);
  box-shadow: 0 4px 14px rgba(6,199,85,.28);
}
.cs-sidebar__line-btn:hover {
  background: #05a849;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6,199,85,.38);
}

/* ── 導入情報カード（エリア・ジャンル） ── */
.cs-sidebar__box {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,48,135,.06);
}
.cs-sidebar__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-primary);
  letter-spacing: .03em;
}

/* タクソノミー */
.cs-sidebar__tax { margin-bottom: 20px; }
.cs-sidebar__tax:last-child { margin-bottom: 0; }
.cs-sidebar__tax-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 10px;
}
.cs-sidebar__tax-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cs-tax-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  transition: all var(--transition-fast);
  line-height: 1;
}
.cs-tax-tag--area {
  background: #eef4ff;
  color: var(--color-primary);
  border: 1px solid #c5d8ff;
}
.cs-tax-tag--area:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.cs-tax-tag--genre {
  background: #f0fae8;
  color: var(--color-accent-dark);
  border: 1px solid #c8e8a8;
}
.cs-tax-tag--genre:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* 関連事例 */
.cs-related-list { display: flex; flex-direction: column; gap: 16px; }
.cs-related-link {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--color-text);
  transition: color var(--transition-fast);
}
.cs-related-link:hover { color: var(--color-primary); }
.cs-related-img {
  width: 76px;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-gray-200);
}
.cs-related-img__img { width: 100%; height: 100%; object-fit: cover; }
.cs-related-img__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--color-gray-200), #c8d6e8); }
.cs-related-title { font-size: 12px; font-weight: 600; line-height: 1.6; margin-bottom: 5px; }
.cs-related-badge {
  font-size: 10px;
  background: var(--color-gray-100);
  color: var(--color-text-light);
  padding: 2px 10px;
  border-radius: 999px;
}

/* ── 一覧へ戻るボタン ── */
.cs-sidebar__back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  background: var(--color-white);
  border: 1.5px solid var(--color-primary);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  transition: all var(--transition-base);
}
.cs-sidebar__back:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ── レスポンシブ ── */
@media (max-width: 1024px) {
  .cs-layout {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .cs-sidebar {
    position: static;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cs-gallery { grid-template-columns: repeat(2, 1fr); }
  .cs-post-nav { grid-template-columns: 1fr; }
  .cs-overview__table th { width: 90px; }
  .cs-sidebar__contact { padding: 24px 20px 20px; }
}

/* ══════════════════════════════════════════
   下層ページ 共通
══════════════════════════════════════════ */

.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.section-desc {
  font-size: 15px;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 12px auto 0;
  line-height: 1.8;
  text-align: center;
}
@media (min-width: 900px) {
  .sp-services .section-desc {
    max-width: none;
    white-space: nowrap;
  }
}
.sp-section-head {
  text-align: center;
  margin-bottom: 64px;
}

/* ── サブヒーロー ── */
.sub-hero {
  position: relative;
  background: #3a71a3;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: var(--header-height);
}
.sub-hero::before {
  content: none;
}
.sub-hero__overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,.06)'/%3E%3C/svg%3E");
}
.sub-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 56px;
}
.sub-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}
.sub-hero__breadcrumb a {
  color: rgba(255,255,255,.55);
  transition: color var(--transition-fast);
}
.sub-hero__breadcrumb a:hover { color: #fff; }
.sub-hero__eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: rgba(255,255,255,.85);
  margin-bottom: 12px;
}
.sub-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.sub-hero__title--single {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.5;
  max-width: 820px;
  margin-bottom: 0;
}
.sub-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
}
.sub-hero__catch {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: rgba(255,255,255,.92);
  margin-bottom: 16px;
  line-height: 1.5;
}
.sub-hero__desc {
  font-size: 14px;
  color: rgba(255,255,255,.72);
  max-width: 720px;
  line-height: 1.8;
}
.sub-hero__lead {
  font-size: 14px;
  color: rgba(255,255,255,.72);
  max-width: 720px;
  line-height: 1.8;
  margin: 0;
}

/* ── サブヒーロー：背景に写真を敷くバリエーション（お知らせ・FAQ・お問い合わせ等） ── */
.sub-hero--photo {
  background-image:
    linear-gradient(180deg, rgba(8, 32, 61, .80) 0%, rgba(8, 32, 61, .62) 100%),
    url('../images/scene-office.png');
  background-size: cover;
  background-position: center;
}

/* ── サブヒーロー：ページ別の背景写真バリエーション ── */
.sub-hero--services {
  background-image:
    linear-gradient(180deg, rgba(8, 32, 61, .80) 0%, rgba(8, 32, 61, .62) 100%),
    url('../images/scene-public.png');
  background-size: cover;
  background-position: center;
}
.sub-hero--company {
  background-image:
    linear-gradient(180deg, rgba(8, 32, 61, .80) 0%, rgba(8, 32, 61, .62) 100%),
    url('../images/scene-office.png');
  background-size: cover;
  background-position: center;
}
.sub-hero--downloads {
  background-image:
    linear-gradient(180deg, rgba(8, 32, 61, .80) 0%, rgba(8, 32, 61, .62) 100%),
    url('../images/scene-shop.png');
  background-size: cover;
  background-position: center;
}
.sub-hero--app {
  background-image:
    linear-gradient(180deg, rgba(8, 32, 61, .80) 0%, rgba(8, 32, 61, .62) 100%),
    url('../images/app-hero-photo.jpg');
  background-size: cover;
  background-position: center;
}

/* ── サブヒーロー：製品ページ用（写真あり2カラム） ── */
.sub-hero__inner--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.sub-hero__main { flex: 1 1 auto; min-width: 0; max-width: 580px; }
.sub-hero__inner--split .sub-hero__catch { white-space: nowrap; }
.sub-hero__inner--split .sub-hero__breadcrumb { margin-top: 20px; margin-bottom: 0; }
.sub-hero__visual {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
.sub-hero__product-shot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 16px 32px rgba(0,10,40,.3);
  overflow: hidden;
}
.sub-hero__product-shot--2 { margin-bottom: 28px; width: 168px; height: 168px; }
.sub-hero__product-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub-hero__visual--single {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 56%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.sub-hero__visual--single::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #3a71a3 0%, rgba(58,113,163,.55) 14%, rgba(58,113,163,0) 34%);
  z-index: 1;
  pointer-events: none;
}
.sub-hero__visual--single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sub-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}
.sub-hero__badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
}

/* ══ 課題提起 ══ */
.sp-issues {
  padding: 96px 0;
  background: var(--color-white);
  position: relative;
}
.sp-issues__pointer {
  display: none;
  position: absolute;
  right: 32px;
  bottom: 0;
  height: 320px;
  width: auto;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 1400px) {
  .sp-issues__pointer { display: block; }
}
.sp-issues__head {
  text-align: center;
  margin-bottom: 56px;
}
.sp-issues__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.sp-issue-card {
  background: var(--color-off-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}
.sp-issue-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}
.sp-issue-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.sp-issue-card:hover::before { transform: scaleX(1); }
.sp-issue-card__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--color-gray-200);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.sp-issue-card__text {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 0;
}
.sp-issues__resolve {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}
.sp-issues__resolve span {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: var(--color-primary);
}

/* ══ サービス一覧 ══ */
.sp-services {
  padding: 96px 0;
  background: linear-gradient(160deg, var(--color-off-white) 0%, #edf2fa 100%);
}
.sp-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sp-service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.sp-service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}
.sp-service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.sp-service-card:hover::after { transform: scaleX(1); }
.sp-service-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.sp-service-card__num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: .1em;
}
.sp-service-card__icon { flex-shrink: 0; }
.sp-service-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}
.sp-service-card__desc {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}
.sp-service-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sp-service-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--color-primary);
  border: 1px solid #c5d8ff;
}

/* 5枚目カードを中央に */
.sp-services__grid .sp-service-card:last-child:nth-child(3n+2) {
  grid-column: 2;
}

/* ══ 製品紹介 ══ */
.sp-products {
  padding: 96px 0;
  background: var(--color-white);
}
.sp-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sp-products__grid--2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 940px;
  margin: 0 auto;
}
.sp-products__grid--1col {
  grid-template-columns: 1fr;
  max-width: 680px;
  margin: 0 auto;
}
.sp-product-card {
  background: var(--color-off-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: left;
  position: relative;
  transition: all var(--transition-base);
}
.sp-product-card:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.sp-product-card__badge {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 10px;
  font-weight: 700;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 3px 10px;
  border-radius: 999px;
}
.sp-product-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.sp-product-card__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
}
.sp-product-card__photo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
  overflow: hidden;
}
.sp-product-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}
.sp-product-card__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.4;
}
.sp-product-card__model {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-light);
  margin-top: 2px;
}
.sp-product-card__desc {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 18px;
}
.sp-product-card__specs {
  list-style: none;
  margin: 0 0 20px;
  padding: 16px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray-200);
}
.sp-product-card__specs li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  padding: 7px 0;
  border-bottom: 1px dashed var(--color-gray-200);
}
.sp-product-card__specs li:last-child {
  border-bottom: none;
}
.sp-product-card__specs li span:first-child {
  flex: 0 0 auto;
  color: var(--color-text-light);
  font-weight: 600;
}
.sp-product-card__specs li span:last-child {
  text-align: right;
  color: var(--color-text);
  font-weight: 600;
}
.sp-product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-fast);
}
.sp-product-card__link:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  gap: 8px;
}

/* ── 製品カード：写真+コンテンツの横並びワイド版 ── */
.sp-product-card--wide {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 32px;
}
.sp-product-card--wide .sp-product-card__photo {
  flex: 0 0 300px;
  width: 300px;
  aspect-ratio: 4 / 3;
  height: auto;
  padding: 0;
  box-shadow: none;
  border: none;
  align-self: flex-start;
}
.sp-product-card--wide .sp-product-card__photo img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
}
.sp-product-card--wide .sp-product-card__body {
  flex: 1 1 auto;
  min-width: 0;
}
.sp-product-card--wide .sp-product-card__title {
  font-size: 20px;
  margin-bottom: 12px;
}
.sp-product-card--wide .sp-product-card__specs li {
  border-bottom: 1px solid var(--color-gray-200);
}
.sp-product-card--wide .sp-product-card__specs li span:last-child {
  text-align: left;
}

/* ══ 製品概要：画像＋情報カード（BCP製品ページ） ══ */
.bcp-overview {
  max-width: 1320px;
  margin-inline: auto;
  padding: 56px 40px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  gap: 40px;
}
.bcp-overview__image {
  flex: 0 0 36%;
  max-width: 36%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bcp-overview__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.bcp-overview__card {
  flex: 1 1 64%;
  max-width: 64%;
  background: #ffffff;
  border: 1px solid #dce6f2;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(20,50,100,.04);
}
.bcp-overview__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}
.bcp-overview__title {
  font-size: clamp(23px, 2vw, 29px);
  font-weight: 700;
  color: #0b2e6b;
  line-height: 1.3;
  white-space: nowrap;
}
.bcp-overview__badge {
  flex: 0 0 auto;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.bcp-overview__desc {
  font-size: 15px;
  line-height: 1.75;
  color: #33415c;
  margin-bottom: 20px;
}
.bcp-overview__table-wrap {
  border: 1px solid #dce6f2;
  border-radius: 12px;
  overflow: hidden;
}
.bcp-overview__table {
  width: 100%;
  border-collapse: collapse;
}
.bcp-overview__table th,
.bcp-overview__table td {
  border-bottom: 1px solid #dce6f2;
  border-right: 1px solid #dce6f2;
  padding: 9px 14px;
  font-size: 13px;
  text-align: left;
  background: var(--color-white);
}
.bcp-overview__table th {
  width: 28%;
  font-weight: 700;
  color: var(--color-text);
}
.bcp-overview__table td {
  width: 72%;
  color: var(--color-text-light);
  border-right: none;
}
.bcp-overview__table tr:last-child th,
.bcp-overview__table tr:last-child td {
  border-bottom: none;
}

/* ══ 選ばれる理由（製品ページ） ══ */
.sp-why {
  padding: 80px 0;
  background: var(--color-off-white);
}
.sp-why--flush {
  padding: 0;
  margin-top: 56px;
}
.sp-why__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sp-why-card {
  background: transparent;
  border: none;
  border-right: 1px solid var(--color-gray-200);
  padding: 32px 18px;
  text-align: center;
}
.sp-why-card:last-child {
  border-right: none;
}
.sp-why-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  background: none;
  border-radius: 0;
}
.sp-why-card__icon img,
.sp-why-card__icon svg {
  max-width: 100%;
  max-height: 100%;
}
.sp-why-card__title {
  font-size: 14px;
  font-weight: 700;
  color: #0b2e6b;
  margin-bottom: 6px;
}
.sp-why-card__desc {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ══ 取り扱い製品バナー（サービスページ） ══ */
.sp-product-links {
  padding: 0 0 96px;
  background: var(--color-off-white);
}
.sp-product-links__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.sp-product-link-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #003087 0%, #0050d8 100%);
  transition: all var(--transition-base);
}
.sp-product-link-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.sp-product-link-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius-md);
}
.sp-product-link-card__body { flex: 1 1 auto; min-width: 0; }
.sp-product-link-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  color: #7bc244;
  margin-bottom: 6px;
}
.sp-product-link-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 4px;
  line-height: 1.4;
}
.sp-product-link-card__desc {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}
.sp-product-link-card__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--color-white);
  transition: all var(--transition-fast);
}
.sp-product-link-card:hover .sp-product-link-card__arrow {
  background: #7bc244;
}

/* ══ BCPエネルギー循環バナー（サービスページ） ══ */
.sp-bcp-banner {
  padding: 96px 0;
  background: linear-gradient(160deg, #001f5c 0%, #003087 100%);
  position: relative;
  overflow: hidden;
}
.sp-bcp-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 85% 15%, rgba(0,80,216,.35) 0%, transparent 60%);
  pointer-events: none;
}
.sp-bcp-banner__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.sp-bcp-banner__content {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 40%;
  min-width: 320px;
}
.sp-bcp-banner__eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  color: #7bc244;
  margin-bottom: 16px;
}
.sp-bcp-banner__title {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.5;
  margin-bottom: 20px;
}
.sp-bcp-banner__divider {
  display: block;
  width: 48px;
  height: 3px;
  background: #7bc244;
  border-radius: 2px;
  margin-bottom: 20px;
}
.sp-bcp-banner__desc {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.9;
  margin-bottom: 32px;
}
.sp-bcp-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
  padding: 16px 20px 16px 28px;
  border-radius: 999px;
  transition: all var(--transition-fast);
}
.sp-bcp-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.sp-bcp-banner__btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
}
.sp-bcp-banner__diagram {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
}
.sp-bcp-cycle {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 20px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.sp-bcp-cycle__loop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.sp-bcp-cycle__step {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-width: 0;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 20px 14px;
  text-align: center;
}
.sp-bcp-cycle__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 8px;
}
.sp-bcp-cycle__label {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-primary);
}
.sp-bcp-cycle__sub {
  font-size: 11px;
  color: var(--color-text-light);
  margin-bottom: 12px;
}
.sp-bcp-cycle__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin-bottom: 12px;
}
.sp-bcp-cycle__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.sp-bcp-cycle__icon--multi {
  gap: 4px;
}
.sp-bcp-cycle__icon--multi img {
  width: 26px;
  height: 26px;
}
.sp-bcp-cycle__desc {
  font-size: 11px;
  color: var(--color-text-light);
  line-height: 1.5;
}
.sp-bcp-cycle__arrow {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-bcp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.sp-bcp-tag {
  flex: 1 1 160px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.92);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
}
.sp-bcp-tag svg, .sp-bcp-tag img { flex-shrink: 0; }
.sp-bcp-tag img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* ══ PIYO CHARGEアプリ（サービスページ内サマリー） ══ */
.sp-app {
  padding: 96px 0;
  background: var(--color-off-white);
}
.sp-app__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.sp-app__cta {
  text-align: center;
}
.sp-app-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition-base);
}
.sp-app-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.sp-app-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--color-off-white);
  border-radius: var(--radius-md);
  margin: 0 auto 16px;
}
.sp-app-card__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.sp-app-card__desc {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.7;
}
.sp-app__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.sp-app__step {
  flex: 1 1 160px;
  max-width: 200px;
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: 20px 14px;
}
.sp-app__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}
.sp-app__step-text {
  font-size: 12px;
  color: var(--color-text);
  line-height: 1.6;
}
.sp-app__step-arrow {
  flex: 0 0 auto;
  color: var(--color-gray-300);
}

/* ══ お客様の声 ══ */
.sp-voices {
  padding: 96px 0;
  background: var(--color-white);
}
.sp-voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sp-voice-card {
  background: var(--color-off-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sp-voice-card__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.sp-voice-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sp-voice-card__quote-icon {
  color: var(--color-gray-200);
  margin: 24px 24px 14px;
}
.sp-voice-card__text {
  font-size: 13px;
  line-height: 1.9;
  color: var(--color-text);
  margin: 0 24px 18px;
}
.sp-voice-card__role {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 24px 24px;
}

/* ══ アプリ連携イントロ（製品ページ／サービスページ共通） ══ */
.app-intro-section {
  padding: 80px 0;
  background: var(--color-off-white);
}
.app-intro {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.app-intro__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  background: var(--color-off-white);
  border-radius: var(--radius-md);
}
.app-intro__body { flex: 1 1 auto; }
.app-intro__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
  margin: 6px 0 8px;
}
.app-intro__catch {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.app-intro__desc {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: 18px;
}
.app-store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.app-store-badge:hover {
  background: var(--color-primary-dark, #002a6b);
  transform: translateY(-2px);
}
.app-store-badge--light {
  background: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-gray-200);
}
.app-store-badges--cta {
  margin-top: 24px;
  justify-content: center;
  gap: 16px;
}
.app-store-badges--cta + .sp-cta__btns {
  margin-top: 24px;
}
.app-store-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-text, #1a2b4a);
  color: var(--color-white);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}
.app-store-mini small {
  display: block;
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
}

/* ── アプリ連携：ヒーローバナー（ソフトウェア紹介ページ） ── */
.app-hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: var(--radius-lg);
  padding: 56px;
  overflow: hidden;
  margin-bottom: 56px;
  min-height: 380px;
  background: #0b0b0d;
}
.app-hero-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.app-hero-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.app-hero-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 45%, rgba(0,0,0,0) 65%);
}
.app-hero-banner__content {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  max-width: 380px;
}
.app-hero-banner__label {
  font-size: 14px;
  font-weight: 700;
  color: #d7e3f8;
  margin-bottom: 10px;
}
.app-hero-banner__title {
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.app-store-badges--dark {
  gap: 12px;
}
.app-store-badge--dark {
  background: #000;
  border: 1px solid rgba(255,255,255,.25);
  color: var(--color-white);
}
.app-store-badge--dark:hover {
  background: #1a1a1a;
}
.app-intro__headline {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.app-intro__headline-title {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.app-intro__headline-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text-light);
}
.app-intro__highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
  max-width: 820px;
  margin: 0 auto;
}
.app-intro__highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.app-intro__highlight-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}
.app-intro__highlight-body h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 6px;
}
.app-intro__highlight-body p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-light);
}

/* ── アプリ連携：v2（写真+機能リスト付き3カラム） ── */
.app-intro--v2 {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  padding: 40px 44px;
}
.app-intro--v2 .app-intro__body { flex: 1 1 32%; min-width: 260px; }
.app-intro--v2 .app-intro__title { margin-top: 6px; }
.app-intro__phone {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
}
.app-intro__phone img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.app-intro__features {
  flex: 1 1 32%;
  min-width: 240px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 4px;
}
.app-intro__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.app-intro__feature-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-off-white);
  border-radius: var(--radius-md);
}
.app-intro__features li strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.app-intro__features li p {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ══ 導入シーン（製品ページ） ══ */
.sp-scenes {
  padding: 80px 0;
  background: var(--color-white);
}
.sp-scenes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sp-scene-card {
  background: var(--color-off-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}
.sp-scene-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.sp-scene-card__img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.sp-scene-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sp-scene-card__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-primary);
  margin: 16px 16px 6px;
}
.sp-scene-card__desc {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0 16px 18px;
}

/* ══ システムの機能（BCP製品ページ） ══ */
.sp-system {
  padding: 88px 0;
  background: var(--color-off-white);
}
.sp-system__flow {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.sp-system__step {
  flex: 1 1 0;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 18px;
  text-align: center;
}
.sp-system__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--color-off-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 50%;
}
.sp-system__step-icon img {
  max-width: 60%;
  max-height: 60%;
}
.sp-system__step-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.sp-system__step-sub {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.sp-system__step-desc {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.7;
}
.sp-system__arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  color: var(--color-gray-300, #c7cdd6);
}
.sp-system__loop {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.sp-system__loop::before,
.sp-system__loop::after {
  content: '';
  flex: 1 1 auto;
  height: 0;
  border-top: 2px dashed var(--color-gray-200);
}
.sp-system__loop-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-system__loop-label {
  flex: 0 0 auto;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ══ 製品スペック（BCP製品ページ） ══ */
.sp-specs {
  padding: 88px 0;
  background: var(--color-white);
}
.sp-specs__grid {
  display: flex;
  align-items: stretch;
  gap: 40px;
}
.sp-specs__table {
  flex: 1 1 60%;
  width: 100%;
  border-collapse: collapse;
  background: var(--color-off-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-self: flex-start;
}
.sp-specs__table tr:not(:last-child) th,
.sp-specs__table tr:not(:last-child) td {
  border-bottom: 1px solid var(--color-gray-200);
}
.sp-specs__table th {
  width: 200px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  background: var(--color-white);
  padding: 16px 20px;
  vertical-align: top;
}
.sp-specs__table td {
  font-size: 13px;
  color: var(--color-text-light);
  padding: 16px 20px;
  line-height: 1.7;
}
.sp-specs__photo {
  flex: 1 1 40%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sp-specs__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 280px;
}

/* ══ アプリ機能一覧 ══ */
.app-features-section {
  padding: 96px 0;
  background: var(--color-white);
}
.app-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.app-feature-card {
  background: var(--color-off-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: all var(--transition-base);
}
.app-feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.app-feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
}
.app-feature-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.app-feature-card__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.app-feature-card__desc {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ══ ご利用シーン別（ドライバー様向け／設置者様向け） ══ */
.app-audience-section {
  padding: 96px 0;
  background: var(--color-off-white);
}
.app-audience__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.app-audience-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.app-audience-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-accent);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.app-audience-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.app-audience-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.app-audience-card__list li {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}
.app-audience-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* ══ 資料ダウンロード一覧 ══ */
.dl-section {
  padding: 80px 0;
  background: var(--color-white);
}
.dl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dl-card {
  display: flex;
  flex-direction: column;
  background: var(--color-off-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
}
.dl-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
  margin: 0 auto 18px;
}
.dl-card__tag {
  display: inline-block;
  align-self: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.dl-card__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.dl-card__desc {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 12px;
  flex: 1 1 auto;
}
.dl-card__meta {
  font-size: 11px;
  color: var(--color-text-light);
  margin-bottom: 14px;
}
.dl-card__badge-pending {
  display: inline-block;
  align-self: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-gray-300);
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.dl-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.dl-card__btn:hover {
  background: var(--color-primary-dark, #002a6b);
  transform: translateY(-2px);
}
.dl-card__btn--pending {
  background: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-gray-200);
}
.dl-card__btn--pending:hover {
  background: var(--color-off-white);
  transform: none;
}

/* ══ 導入の流れ ══ */
.sp-flow {
  padding: 96px 0;
  background: linear-gradient(160deg, #001f5c 0%, #003087 100%);
  position: relative;
  overflow: hidden;
}
.sp-flow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 20%, rgba(0,80,216,.3) 0%, transparent 60%);
  pointer-events: none;
}
.sp-flow .sp-section-head { position: relative; z-index: 1; }
.sp-flow .section-title { color: var(--color-white); }
.sp-flow .section-desc { color: rgba(255,255,255,.65); }
.sp-flow__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  row-gap: 56px;
  align-items: start;
}
.sp-flow__step {
  position: relative;
  text-align: center;
  padding: 0 24px;
}
.sp-flow__step-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-white);
  backdrop-filter: blur(8px);
  transition: all var(--transition-base);
}
.sp-flow__step-icon svg { width: 34px; height: 34px; }
.sp-flow__step:hover .sp-flow__step-icon {
  background: rgba(123,194,68,.2);
  border-color: var(--color-accent);
}
.sp-flow__step-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.sp-flow__step-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 12px;
}
.sp-flow__step-desc {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  max-width: 300px;
  margin-inline: auto;
}
.sp-flow__arrow {
  position: absolute;
  top: 26px;
  right: -12px;
  z-index: 2;
  color: rgba(255,255,255,.4);
}

/* ── ご利用の流れ：アプリ画面カード（ソフトウェア紹介ページ） ── */
.app-flow-card {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: 0 20px 48px rgba(0,10,50,.25);
}
.app-flow-card__title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 40px;
}
.app-flow-card__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.app-flow-card__grid::before {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  top: 38%;
  height: 4px;
  background: var(--color-primary);
  z-index: 0;
}
.app-flow-card__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.app-flow-card__phone {
  width: 100%;
  max-width: 180px;
  margin-bottom: 16px;
}
.app-flow-card__phone img {
  width: 100%;
  height: auto;
  display: block;
}
.app-flow-card__caption {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-light);
}

/* ══ CTA ══ */
.sp-cta {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #001135 0%, #002b7a 50%, #003087 100%);
  overflow: hidden;
}
.sp-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 90% 50%, rgba(123,194,68,.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 30%, rgba(0,80,216,.2) 0%, transparent 60%);
  pointer-events: none;
}
.sp-cta__inner { position: relative; z-index: 1; text-align: center; }
.sp-cta__eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--color-accent);
  margin-bottom: 20px;
}
.sp-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 20px;
}
.sp-cta__desc {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.sp-cta__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.sp-cta__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.sp-cta__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.sp-cta__btn-main {
  height: 56px;
  padding: 0 36px;
  font-size: 16px;
  border-radius: 999px;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(123,194,68,.4);
}
.sp-cta__btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(123,194,68,.5);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid #3a71a3;
  color: #3a71a3;
  background: #fff;
  transition: all var(--transition-base);
}
.btn-outline-white:hover {
  background: #3a71a3;
  border-color: #3a71a3;
  color: #fff;
  transform: translateY(-2px);
}

/* ══ サービスページ レスポンシブ ══ */
@media (max-width: 1100px) {
  .sp-issues__grid { grid-template-columns: repeat(2, 1fr); }
  .sp-services__grid { grid-template-columns: repeat(2, 1fr); }
  .sp-services__grid .sp-service-card:last-child:nth-child(3n+2) { grid-column: auto; }
  .sp-products__grid { grid-template-columns: 1fr; }
  .sp-products__grid--2col, .sp-products__grid--1col { max-width: 100%; }
  .sp-app__grid { grid-template-columns: repeat(2, 1fr); }
  .sp-voices__grid { grid-template-columns: 1fr; }
  .app-features__grid { grid-template-columns: repeat(2, 1fr); }
  .app-audience__grid { grid-template-columns: 1fr; }
  .dl-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-flow__steps { row-gap: 40px; }
  .app-flow-card { padding: 40px 24px; }
  .app-flow-card__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .app-flow-card__grid::before { display: none; }
  .sp-bcp-banner { padding: 64px 0; }
  .sp-bcp-banner__inner { flex-direction: column; }
  .sp-bcp-banner__content { width: 100%; min-width: 0; }
  .sp-bcp-banner__diagram { width: 100%; }
  .sub-hero--product { display: flex; flex-direction: column; }
  .sub-hero__inner--split { flex-direction: column; align-items: flex-start; order: 2; }
  .sub-hero__main { max-width: 100%; }
  .sub-hero__visual { align-self: center; margin-top: 32px; }
  .sub-hero__visual--single {
    position: static;
    order: 1;
    width: calc(100% - var(--space-6) * 2);
    margin: 24px auto 0;
    height: 260px;
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 32px rgba(0,10,40,.3);
  }
  .sub-hero__visual--single::before { display: none; }
  .sp-why__grid { grid-template-columns: repeat(3, 1fr); }
  .sp-why-card { border-right: 1px solid var(--color-gray-200); border-bottom: 1px solid var(--color-gray-200); }
  .sp-why-card:nth-child(3n) { border-right: none; }
  .sp-why-card:nth-child(-n+3) { border-bottom: 1px solid var(--color-gray-200); }
  .sp-why-card:nth-child(n+4) { border-bottom: none; }
  .sp-system__flow { flex-wrap: wrap; gap: 20px; }
  .sp-system__step { flex: 1 1 calc(50% - 10px); }
  .sp-system__arrow { display: none; }
  .sp-specs__grid { gap: 28px; }
  .app-intro--v2 { flex-wrap: wrap; }
  .app-intro--v2 .app-intro__body { flex: 1 1 100%; }
  .app-intro__phone { order: 3; margin: 24px auto 0; }
  .app-intro__features { order: 2; flex: 1 1 auto; }
  .sp-scenes__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .sub-hero { min-height: 280px; }
  .sp-issues { padding: 64px 0; }
  .sp-issues__grid { grid-template-columns: 1fr; gap: 16px; }
  .sp-issues__resolve { margin-top: 32px; }
  .sp-services { padding: 64px 0; }
  .sp-services__grid { grid-template-columns: 1fr; gap: 20px; }
  .sp-products { padding: 64px 0; }
  .sp-products__grid { grid-template-columns: 1fr; gap: 16px; }
  .sp-app { padding: 64px 0; }
  .sp-app__grid { grid-template-columns: 1fr; margin-bottom: 40px; }
  .sp-app__steps { flex-direction: column; }
  .sp-app__step-arrow { transform: rotate(90deg); }
  .sp-voices { padding: 64px 0; }
  .app-intro-section { padding: 56px 0; }
  .app-intro { flex-direction: column; text-align: center; }
  .app-hero-banner { text-align: center; padding: 36px 24px; margin-bottom: 40px; min-height: 320px; align-items: flex-end; }
  .app-hero-banner__bg::after { background: linear-gradient(0deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.1) 100%); }
  .app-hero-banner__content { max-width: 100%; }
  .app-store-badges--dark { justify-content: center; }
  .app-intro__headline { margin-bottom: 32px; }
  .app-intro__highlights { grid-template-columns: 1fr; gap: 24px; text-align: left; }
  .app-features-section, .app-audience-section { padding: 56px 0; }
  .app-features__grid { grid-template-columns: 1fr; }
  .app-audience__grid { grid-template-columns: 1fr; }
  .sp-product-links { padding-bottom: 64px; }
  .sp-product-links__grid { grid-template-columns: 1fr; gap: 16px; }
  .sp-product-link-card { padding: 22px; }
  .sp-bcp-cycle { flex-direction: column; gap: 12px; }
  .sp-bcp-cycle__loop { display: none; }
  .sp-bcp-cycle__arrow { transform: rotate(90deg); }
  .sp-bcp-tag { flex: 1 1 100%; }
  .dl-section { padding: 56px 0; }
  .dl-grid { grid-template-columns: 1fr; }
  .sp-flow { padding: 64px 0; }
  .sp-flow__steps { grid-template-columns: 1fr; gap: 32px; }
  .sp-flow__arrow { display: none; }
  .sp-cta { padding: 72px 0; }
  .sp-cta__btns { flex-direction: column; }
  .app-store-badges--cta + .sp-cta__btns { margin-top: 16px; }
  .sp-cta__btn-main, .btn-outline-white { width: 100%; justify-content: center; }
  .sp-section-head { margin-bottom: 40px; }
  .sub-hero__visual { flex-direction: column; align-items: center; }
  .sub-hero__product-shot--2 { margin-bottom: 0; }
  .sp-product-card--wide { flex-direction: column; padding: 24px; gap: 20px; }
  .sp-product-card--wide .sp-product-card__photo { width: 100%; aspect-ratio: 16 / 9; }
  .bcp-overview { flex-direction: column; align-items: stretch; padding: 60px 20px; gap: 32px; }
  .bcp-overview__image, .bcp-overview__card { max-width: 100%; flex: 1 1 auto; }
  .bcp-overview__card { padding: 24px; }
  .bcp-overview__title { font-size: clamp(26px, 5vw, 30px); white-space: normal; }
  .sp-why { padding: 64px 0; }
  .sp-why__grid { grid-template-columns: repeat(2, 1fr); }
  .sp-why-card { border-right: 1px solid var(--color-gray-200); border-bottom: 1px solid var(--color-gray-200); }
  .sp-why-card:nth-child(2n) { border-right: none; }
  .sp-why-card:nth-child(-n+4) { border-bottom: 1px solid var(--color-gray-200); }
  .sp-why-card:nth-child(n+5) { border-bottom: none; }
  .app-intro__phone { width: 200px; }
  .app-intro__features { align-items: flex-start; }
  .sp-scenes { padding: 64px 0; }
  .sp-scenes__grid { grid-template-columns: 1fr; gap: 16px; }
  .sub-hero__inner--split .sub-hero__catch { white-space: normal; }
  .sub-hero__visual--single { height: 200px; }
  .sp-system { padding: 64px 0; }
  .sp-system__flow { flex-direction: column; }
  .sp-system__step { flex: 1 1 auto; }
  .sp-system__loop-label { font-size: 12px; padding: 8px 14px; }
  .sp-specs { padding: 64px 0; }
  .sp-specs__grid { flex-direction: column; }
  .sp-specs__table th { width: 140px; padding: 12px 14px; font-size: 12px; }
  .sp-specs__table td { padding: 12px 14px; font-size: 12px; }
  .sp-specs__photo img { min-height: 220px; }
  .bcp-overview__head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .bcp-overview__table th { width: 35%; }
  .bcp-overview__table th,
  .bcp-overview__table td { padding: 8px 12px; font-size: 12px; }
  .bcp-overview__desc { font-size: 16px; }
}
@media (max-width: 480px) {
  .sp-products__grid { grid-template-columns: 1fr; }
  .sp-why__grid { grid-template-columns: 1fr; }
  .sp-why-card { border-right: none; border-bottom: 1px solid var(--color-gray-200); }
  .sp-why-card:last-child { border-bottom: none; }
  .app-flow-card__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ══════════════════════════════════════════
   会社概要ページ
══════════════════════════════════════════ */

/* ── 代表メッセージ ── */
.co-message {
  padding: 100px 0;
  background: var(--color-white);
}
.co-message__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: start;
}

/* 写真カード */
.co-message__card {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}
.co-message__img-wrap {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, #0050d8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  margin-bottom: 20px;
  position: relative;
}
.co-message__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,20,60,.4) 0%, transparent 50%);
  pointer-events: none;
}
.co-message__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.co-message__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.co-message__profile {
  background: var(--color-off-white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border-left: 3px solid var(--color-primary);
}
.co-message__position {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--color-text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.co-message__name {
  font-size: 19px;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: .04em;
}
.co-message__sig { margin-top: 10px; opacity: .6; }

/* 本文エリア */
.co-message__body { padding-top: 8px; }
.co-message__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.co-message__lead {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.8;
  padding: 20px 24px;
  background: linear-gradient(120deg, #eef4ff, #f0fae8);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  margin-bottom: 28px;
}
.co-message__text {
  font-size: 15px;
  line-height: 2.1;
  color: var(--color-text);
}

/* ── 数字セクション ── */
.co-numbers {
  padding: 96px 0;
  background: linear-gradient(145deg, #001135 0%, #002b7a 55%, #003087 100%);
  position: relative;
  overflow: hidden;
}
.co-numbers__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 10%, rgba(0,80,216,.28) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(123,194,68,.1) 0%, transparent 60%);
  pointer-events: none;
}
.co-numbers .sp-section-head { position: relative; z-index: 1; }
.co-numbers__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.co-number-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-lg);
  padding: 40px 20px 36px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.co-number-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.co-number-card:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.co-number-card:hover::before { opacity: 1; }
.co-number-card__value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.co-number-card__unit {
  font-size: .45em;
  color: var(--color-accent);
  font-weight: 700;
  vertical-align: baseline;
  margin-left: 2px;
}
.co-number-card__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  margin: 14px 0 6px;
  letter-spacing: .04em;
}
.co-number-card__sub {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

/* ── 会社情報テーブル ── */
.co-info {
  padding: 96px 0;
  background: var(--color-off-white);
}
.co-info__inner {
  max-width: 900px;
  margin: 0 auto;
}
.co-info__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
}
.co-info__row:first-child .co-info__th { border-top: none; }
.co-info__row:first-child .co-info__td { border-top: none; }
.co-info__row:last-child .co-info__th,
.co-info__row:last-child .co-info__td { border-bottom: none; }
.co-info__th {
  width: 160px;
  padding: 24px 28px;
  background: #f4f7fc;
  border-bottom: 1px solid var(--color-gray-200);
  border-right: 1px solid var(--color-gray-200);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  vertical-align: top;
  white-space: nowrap;
  letter-spacing: .04em;
}
.co-info__td {
  padding: 24px 32px;
  border-bottom: 1px solid var(--color-gray-200);
  font-size: 14px;
  color: var(--color-text);
  line-height: 2;
  vertical-align: top;
}
.co-info__row:hover .co-info__td { background: #fafbff; }

/* ── アクセス ── */
.co-access {
  padding: 96px 0;
  background: var(--color-white);
}
.co-access__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

/* 地図を画面幅いっぱいに表示 */
.co-access__map--full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 48px;
}
.co-access__map--full .co-access__map-frame,
.co-access__map--full .co-access__map-setup {
  height: 480px;
  border-radius: 0;
  border-left: none;
  border-right: none;
}

/* 情報カード */
.co-access__info { display: flex; flex-direction: column; gap: 16px; }
.co-access__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-off-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: all var(--transition-base);
}
.co-access__card:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.co-access__card-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-gray-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.co-access__card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 5px;
}
.co-access__card-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.7;
}

/* 地図エリア */
.co-access__map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
  border: 1px solid var(--color-gray-200);
}
.co-access__map-frame iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}
.co-access__map-setup {
  height: 400px;
  background: linear-gradient(135deg, var(--color-off-white) 0%, #eef4ff 100%);
  border: 2px dashed #c5d8ff;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.co-access__map-setup-inner {
  text-align: center;
  padding: 32px;
}
.co-access__map-setup-icon {
  width: 72px; height: 72px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-sm);
}
.co-access__map-setup-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.co-access__map-setup-desc {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.8;
  max-width: 280px;
  margin: 0 auto 20px;
}
.co-access__map-setup-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-white);
  border: 1.5px solid var(--color-primary);
  border-radius: 999px;
  padding: 10px 22px;
  transition: all var(--transition-base);
}
.co-access__map-setup-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ── 会社概要 レスポンシブ ── */
@media (max-width: 1100px) {
  .co-numbers__grid { grid-template-columns: repeat(3, 1fr); }
  .co-message__inner { grid-template-columns: 260px 1fr; gap: 48px; }
}
@media (max-width: 900px) {
  .co-message__inner { grid-template-columns: 1fr; gap: 48px; }
  .co-message__card { position: static; display: grid; grid-template-columns: 200px 1fr; gap: 28px; align-items: center; }
  .co-message__img-wrap { margin-bottom: 0; }
  .co-access__inner { grid-template-columns: 1fr; }
  .co-access__map-frame, .co-access__map-setup { height: 320px; }
}
@media (max-width: 768px) {
  .co-message { padding: 64px 0; }
  .co-info { padding: 64px 0; }
  .co-info__th { width: 100px; padding: 18px 16px; font-size: 11px; }
  .co-info__td { padding: 18px 20px; font-size: 13px; }
  .co-numbers { padding: 64px 0; }
  .co-numbers__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .co-access { padding: 64px 0; }
}
@media (max-width: 540px) {
  .co-message__card { grid-template-columns: 1fr; }
  .co-numbers__grid { grid-template-columns: 1fr 1fr; }
  .co-info__th { width: 88px; }
}

/* ── 19. Subsidy Diagnosis ────────────────────────────────── */
.subsidy-check__header {
  text-align: center;
  margin-bottom: var(--space-10);
}
.subsidy-check__header .subsidy-check__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: var(--space-3);
}
.subsidy-check__header .subsidy-check__lead {
  font-size: 15px;
  color: var(--color-text-light);
  margin-bottom: var(--space-4);
}
.subsidy-check__header .subsidy-check__badges {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  flex-direction: row;
}
.subsidy-check__header .badge-item {
  font-size: 13px;
  color: var(--color-text);
}

/* 診断フォーム */
.subsidy-diagnosis {
  max-width: 680px;
  margin: 0 auto var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* プログレスバー */
.diagnosis-progress {
  height: 5px;
  background: var(--color-gray-200);
}
.diagnosis-progress__bar {
  height: 100%;
  background: #3a71a3;
  transition: width .4s ease;
  width: 0%;
}

/* 診断ボディ */
.diagnosis-body {
  padding: var(--space-8) var(--space-8) var(--space-10);
}
.diag-step-label {
  font-size: 12px;
  font-weight: 700;
  color: #3a71a3;
  margin-bottom: var(--space-2);
  letter-spacing: .05em;
}
.diag-question {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  line-height: 1.5;
}

/* 選択肢 */
.diag-choices { display: flex; flex-direction: column; gap: var(--space-3); }
.diag-choices--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}
.diag-choice-btn {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-6);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  background: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  transition: all var(--transition-fast);
  cursor: pointer;
}
.diag-choice-btn:hover {
  border-color: #3a71a3;
  background: #eef4ff;
  color: #3a71a3;
  transform: translateY(-1px);
}
.diag-choice-icon { font-size: 22px; }

/* 診断結果 */
.diagnosis-result {
  max-width: 680px;
  margin: 0 auto;
}
.diag-result-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-8) var(--space-8);
  margin-bottom: var(--space-6);
}
.diag-result-icon { font-size: 40px; margin-bottom: var(--space-3); }
.diag-result-title {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  margin-bottom: var(--space-4);
  line-height: 1.4;
}
.diag-result-message {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.8;
}
.diagnosis-result__note {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-6);
  padding: var(--space-4);
  background: var(--color-off-white);
  border-radius: var(--radius-sm);
}
.diagnosis-result__cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 600px) {
  .diagnosis-body { padding: var(--space-6) var(--space-5) var(--space-8); }
  .diag-choices--grid { grid-template-columns: 1fr; }
  .diagnosis-result__cta { flex-direction: column; }
  .diagnosis-result__cta .btn { width: 100%; justify-content: center; }
}

/* ── 補助金情報 準備中 ───────────────────── */
.subsidy-coming-soon {
  text-align: center;
  padding: var(--space-16) var(--space-8);
  background: var(--color-off-white);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--color-gray-200);
}
.subsidy-coming-soon__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
}
.subsidy-coming-soon__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #3a71a3;
  margin-bottom: var(--space-3);
}
.subsidy-coming-soon__text {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ── お知らせ・ブログ一覧 ─────────────────── */
.info-section {
  padding: var(--space-16) 0 var(--space-20);
}

/* タブ */
.info-tabs {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
  border-bottom: 2px solid var(--color-gray-200);
  padding-bottom: 0;
}
.info-tab {
  padding: var(--space-3) var(--space-6);
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-light);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition-fast);
}
.info-tab.active,
.info-tab:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

/* ブロック */
.info-block { margin-bottom: var(--space-14); }
.info-block__title { margin-bottom: var(--space-6); }
.info-block__badge {
  display: inline-block;
  padding: var(--space-1) var(--space-4);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.info-block__badge--news {
  background: #dbeafe;
  color: var(--color-primary);
}
.info-block__badge--blog {
  background: #dcfce7;
  color: #15773c;
}

/* お知らせリスト */
.info-list { list-style: none; }
.info-list__item {
  border-bottom: 1px solid var(--color-gray-200);
}
.info-list__link {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-2);
  color: var(--color-text);
  transition: all var(--transition-fast);
}
.info-list__link:hover {
  background: var(--color-off-white);
  color: var(--color-primary);
}
.info-list__date {
  font-size: 13px;
  color: var(--color-text-light);
  white-space: nowrap;
  min-width: 80px;
}
.info-list__label {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.info-list__label--news { background: #dbeafe; color: var(--color-primary); }
.info-list__label--blog { background: #dcfce7; color: #15773c; }
.info-list__title { font-size: 14px; font-weight: 500; }

/* ブログカード */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.info-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  color: var(--color-text);
  transition: all var(--transition-base);
  display: block;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.info-card__thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--color-gray-200); }
.info-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.info-card__thumb-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #dbeafe, #eff6ff); }
.info-card__body { padding: var(--space-5); }
.info-card__date { font-size: 12px; color: var(--color-text-light); margin-bottom: var(--space-2); display: block; }
.info-card__title { font-size: 15px; font-weight: 700; line-height: 1.5; margin-bottom: var(--space-2); }
.info-card__excerpt { font-size: 13px; color: var(--color-text-light); line-height: 1.7; }
.info-empty { color: var(--color-text-light); font-size: 14px; padding: var(--space-8) 0; }

/* 詳細ページ */
.single-info-section { padding: var(--space-16) 0 var(--space-20); }
.single-info-container { max-width: var(--container-max); }
.single-info-article { max-width: 760px; }
.single-info-header { margin-bottom: var(--space-8); }
.single-info-meta { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-4); }
.single-info-meta time { font-size: 13px; color: var(--color-text-light); }
.single-info-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; line-height: 1.4; color: var(--color-primary); }
.single-info-thumb { margin-bottom: var(--space-8); border-radius: var(--radius-md); overflow: hidden; }
.single-info-thumb img { width: 100%; height: auto; }
.single-info-body { font-size: 15px; line-height: 1.9; margin-bottom: var(--space-12); }
.single-info-body h2 { font-size: 1.3rem; font-weight: 800; color: var(--color-primary); margin: var(--space-8) 0 var(--space-4); }
.single-info-body h3 { font-size: 1.1rem; font-weight: 700; margin: var(--space-6) 0 var(--space-3); }
.single-info-body p { margin-bottom: var(--space-4); }
.single-info-back { border-top: 1px solid var(--color-gray-200); padding-top: var(--space-8); }

/* パンくず */
.breadcrumb { display: flex; align-items: center; gap: var(--space-2); font-size: 13px; color: rgba(255,255,255,.8); }
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: #fff; }

@media (max-width: 768px) {
  .info-cards { grid-template-columns: 1fr; }
  .info-list__link { flex-wrap: wrap; gap: var(--space-2); }
  .info-tabs { overflow-x: auto; }
}

/* ── 2カラムレイアウト（本文＋サイドバー） ──────── */
.info-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: var(--space-12);
  align-items: start;
}
.info-main { min-width: 0; }
.info-main .case-grid { grid-template-columns: repeat(2, 1fr); max-width: none; }

/* ── サイドバー：検索／最近の投稿／アーカイブ／カテゴリ ──────── */
.l-sidebar {
  min-width: 0;
}
.l-sidebar .widget {
  margin-bottom: var(--space-10);
}
.l-sidebar .widget:last-child { margin-bottom: 0; }
.l-sidebar .widget-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-gray-200);
}

/* 検索ボックス */
.l-sidebar .search-form {
  display: flex;
  border: 1px solid var(--color-gray-200);
  background: var(--color-white);
}
.l-sidebar .search-field {
  flex: 1 1 auto;
  min-width: 0;
  border: none;
  padding: var(--space-3) var(--space-4);
  font-size: 14px;
  color: var(--color-text);
  background: transparent;
}
.l-sidebar .search-field:focus { outline: none; }
.l-sidebar .search-submit {
  flex: 0 0 auto;
  width: 44px;
  border: none;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.l-sidebar .search-submit:hover { background: var(--color-primary-dark); }
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* リスト（最近の投稿／アーカイブ／カテゴリ共通） */
.l-sidebar .widget-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-sidebar .widget-list li {
  border-bottom: 1px solid var(--color-gray-200);
}
.l-sidebar .widget-list li:last-child { border-bottom: none; }
.l-sidebar .widget-list a {
  display: block;
  padding: var(--space-3) var(--space-1);
  color: var(--color-text);
  font-size: 13.5px;
  line-height: 1.6;
  transition: color var(--transition-fast);
}
.l-sidebar .widget-list a:hover { color: var(--color-primary); }

/* アーカイブ／カテゴリ：シェブロン付きリンク */
.l-sidebar .widget-list--chevron a {
  position: relative;
  padding-left: var(--space-5);
}
.l-sidebar .widget-list--chevron a::before {
  content: '\203a'; /* › */
  position: absolute;
  left: 2px;
  color: var(--color-primary);
  font-weight: 700;
}

.l-sidebar .widget-empty {
  font-size: 13px;
  color: var(--color-text-light);
}

@media (max-width: 900px) {
  .info-layout { grid-template-columns: 1fr; }
  .l-sidebar { margin-top: var(--space-10); }
}

/* ── お問い合わせページ ──────────────────── */
.contact-section {
  padding: var(--space-16) 0 var(--space-20);
}

/* 3つの安心ポイント */
.contact-points {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
  padding: var(--space-8) var(--space-6);
  background: #eef4ff;
  border-radius: var(--radius-lg);
}
.contact-point {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-align: left;
}
.contact-point__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  flex: 0 0 auto;
}
.contact-point__text { font-size: 13px; line-height: 1.6; color: var(--color-text); }
.contact-point__text strong { display: block; font-size: 16px; color: var(--color-primary); }

/* レイアウト */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-12);
  align-items: start;
}

/* フォームエリア */
.contact-form-area__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-primary);
}
.contact-form-area__note {
  font-size: 12px;
  color: var(--color-text-light);
  margin-bottom: var(--space-6);
}

/* フォーム部品 */
.contact-form__row { margin-bottom: var(--space-5); }
.contact-form__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.required { color: #e53e3e; margin-left: 2px; }
.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition-fast);
  outline: none;
}
.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(58,113,163,.15);
}
.contact-form__textarea { resize: vertical; }
.contact-form__checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 14px;
  cursor: pointer;
}
.contact-form__checkbox input { width: 16px; height: 16px; cursor: pointer; }
.contact-form__submit { margin-top: var(--space-8); text-align: center; }

.contact-form__message {
  margin-bottom: var(--space-6);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
}
.contact-form__message--success {
  background: #edf7ee;
  color: #1e7a34;
  border: 1px solid #b7e2bd;
}
.contact-form__message--error {
  background: #fdecec;
  color: #b3261e;
  border: 1px solid #f3b8b5;
}

/* 右サイド情報 */
.contact-info-card {
  background: var(--color-off-white);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  margin-bottom: var(--space-5);
}
.contact-info-card__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-gray-200);
}
.contact-info-card__tel a {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: .04em;
}
.contact-info-card__hours {
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: var(--space-2);
}

/* FAQ */
.contact-faq-list { list-style: none; }
.contact-faq-list li { padding: var(--space-3) 0; border-bottom: 1px solid var(--color-gray-200); }
.contact-faq-list li:last-child { border-bottom: none; }
.contact-faq-list__q { font-size: 13px; font-weight: 700; color: var(--color-primary); margin-bottom: var(--space-1); }
.contact-faq-list__a { font-size: 13px; color: var(--color-text-light); line-height: 1.6; }

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-points { flex-direction: column; align-items: flex-start; gap: var(--space-4); }
}

/* ── よくある質問ページ ──────────────────── */
.faq-section {
  padding: var(--space-16) 0 var(--space-20);
  max-width: 1000px;
  margin: 0 auto;
}

/* カテゴリタブ */
.faq-tabs {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
  border-bottom: 2px solid var(--color-gray-200);
  padding-bottom: 0;
}
.faq-tab {
  padding: var(--space-3) var(--space-5);
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-light);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.faq-tab.active,
.faq-tab:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

/* FAQアイテム */
.faq-item {
  border-bottom: 1px solid var(--color-gray-200);
}
.faq-item:first-child { border-top: 1px solid var(--color-gray-200); }

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-8) var(--space-4);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.faq-item__question:hover { background: var(--color-off-white); }

.faq-item__q-label {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.faq-item__q-text {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
}
.faq-item__arrow {
  flex-shrink: 0;
  color: var(--color-primary);
  transition: transform var(--transition-fast);
  margin-top: 6px;
}
.faq-item.open .faq-item__arrow { transform: rotate(180deg); }

/* 回答 */
.faq-item__answer {
  display: flex;
  gap: var(--space-4);
  padding: 0 var(--space-4);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-item__answer {
  padding-bottom: var(--space-8);
}
.faq-item__a-label {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #dbeafe;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.faq-item__a-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-text);
}

/* CTA */
.faq-cta {
  text-align: center;
  margin-top: var(--space-14);
  padding: var(--space-10);
  background: #eef4ff;
  border-radius: var(--radius-lg);
}
.faq-cta__text {
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}

@media (max-width: 768px) {
  .faq-section { padding: var(--space-10) 0 var(--space-16); }
  .faq-item__q-text { font-size: 14px; }
  .faq-item__a-text { font-size: 14px; }
}

/* ══════════════════════════════════════════════════════════
   20. 導入事例一覧ページ（archive-case_study.php）
══════════════════════════════════════════════════════════ */

/* ── ページヘッダー ── */
.case-archive__head {
  background: var(--color-white);
  padding: var(--space-16) 0 var(--space-10);
}
.case-archive__title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.case-archive__lead {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ── レイアウト ── */
.case-archive__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
  padding-bottom: var(--space-20);
}
.case-archive__main { display: flex; flex-direction: column; gap: var(--space-20); }
.case-archive__sidebar { padding-top: 2px; }

/* ── 実績サマリーカード ── */
.case-stats-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-8);
  background: var(--color-off-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}
.case-stats-card__total {
  border-right: 1px solid var(--color-gray-200);
  padding-right: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-stats-card__total-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: var(--space-2);
}
.case-stats-card__total-value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
}
.case-stats-card__total-unit {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--color-text-light);
  margin-top: 2px;
}
.case-stats-card__total-note {
  font-size: 11px;
  color: var(--color-gray-400);
  margin-top: var(--space-3);
}
.case-stats-card__breakdown-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.case-stats-card__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.case-stat-mini {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.case-stat-mini__icon {
  width: 26px;
  height: 26px;
  color: var(--color-primary);
  margin-bottom: 2px;
}
.case-stat-mini__icon svg { width: 100%; height: 100%; }
.case-stat-mini__label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--color-text-light);
}
.case-stat-mini__count {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
}
.case-stat-mini__count small {
  font-size: 11px;
  font-weight: 700;
  margin-left: 1px;
}

/* ── 導入施設一覧 ── */
.case-archive__main .section-header { margin-bottom: var(--space-10); }
.case-facility-list__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text);
}
.case-facility-list__desc {
  font-size: 12.5px;
  color: var(--color-text-light);
  margin-top: 6px;
}
.case-facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 32px;
  margin-top: var(--space-8);
  border-top: 1px solid var(--color-gray-200);
}
.case-facility-item {
  border-bottom: 1px solid var(--color-gray-200);
}
.case-facility-item a,
.case-facility-item__inner {
  display: block;
  padding: 14px 2px;
  color: inherit;
}
.case-facility-item a:hover .case-facility-item__name { color: var(--color-primary); }
.case-facility-item__name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  transition: color var(--transition-fast);
}
.case-facility-item__loc {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  color: var(--color-text-light);
  margin-top: 4px;
}
.case-facility-list__more {
  text-align: center;
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 700;
  margin-top: var(--space-5);
}
.case-facility-list__empty {
  font-size: 13px;
  color: var(--color-text-light);
  margin-top: var(--space-4);
}

/* ── ピックアップ事例（スライダー） ── */
.case-pickup__viewport {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: var(--space-6);
}
.case-pickup__track {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  flex: 1;
}
.case-pickup__slide {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
}
.case-pickup__more {
  display: inline-block;
  margin-top: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-primary);
}
.case-pickup__nav {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-gray-200);
  background: var(--color-white);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.case-pickup__nav:hover { background: var(--color-primary); color: var(--color-white); }
.case-pickup__nav:disabled { opacity: .3; cursor: default; }
.case-pickup__nav:disabled:hover { background: var(--color-white); color: var(--color-primary); }
.case-pickup__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-5);
}
.case-pickup__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gray-200);
  transition: background var(--transition-fast);
}
.case-pickup__dots span.active { background: var(--color-primary); }

/* ── サイドバー：カテゴリーから探す ── */
.case-category-list { display: flex; flex-direction: column; gap: 6px; }
.case-category-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  border: 1px solid transparent;
}
.case-category-list__item--active {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.case-category-list__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
}
.case-category-list__icon svg { width: 100%; height: 100%; }
.case-category-list__label { flex: 1; }
.case-category-list__count {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  background: rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 2px 9px;
}
.case-category-list__item:not(.case-category-list__item--active) .case-category-list__count {
  background: var(--color-gray-100);
  color: var(--color-text-light);
}

/* ── サイドバー：導入エリア ── */
.case-area-map {
  background: var(--color-off-white);
  border-radius: var(--radius-md);
  padding: 10px;
  margin-bottom: var(--space-4);
}
.case-area-map__img { width: 100%; height: auto; display: block; }
.case-area-list { display: flex; flex-direction: column; gap: 2px; }
.case-area-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 2px;
  border-bottom: 1px solid var(--color-gray-200);
  font-size: 13px;
}
.case-area-list li:last-child { border-bottom: none; }
.case-area-list__name { color: var(--color-text); }
.case-area-list__count {
  font-weight: 800;
  color: var(--color-primary);
}
.case-area-list__count small { font-size: 11px; font-weight: 700; margin-left: 1px; }

/* ── レスポンシブ ── */
@media (max-width: 1100px) {
  .case-archive__layout { grid-template-columns: 1fr; }
  .cs-sidebar { position: static; width: 100%; }
  .case-pickup__slide { flex-basis: calc((100% - 20px) / 2); }
}
@media (max-width: 768px) {
  .case-stats-card { grid-template-columns: 1fr; }
  .case-stats-card__total { border-right: none; border-bottom: 1px solid var(--color-gray-200); padding-right: 0; padding-bottom: var(--space-6); margin-bottom: var(--space-6); }
  .case-stats-card__grid { grid-template-columns: repeat(2, 1fr); }
  .case-facility-grid { grid-template-columns: 1fr; }
  .case-pickup__slide { flex-basis: 100%; }
}


/* ---- Subsidy Info Section (added) ---- */
.subsidy-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}
.subsidy-info__card {
  background: var(--color-off-white, #f7f9fc);
  border: 1px solid var(--color-gray-200, #e4eaf1);
  border-radius: 12px;
  padding: 1.75rem 2rem;
}
.subsidy-info__card--national {
  border-left: 4px solid var(--color-primary, #3a71a3);
}
.subsidy-info__card--local {
  border-left: 4px solid var(--color-accent, #15773c);
}
.subsidy-info__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--color-primary, #3a71a3);
  background: rgba(58,113,163,.08);
  padding: .25rem .75rem;
  border-radius: 999px;
  margin-bottom: .75rem;
}
.subsidy-info__program {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text, #1a2940);
  line-height: 1.5;
  margin: 0 0 .75rem;
}
.subsidy-info__sub {
  font-weight: 600;
  margin: 0 0 .5rem;
}
.subsidy-info__period {
  list-style: none;
  margin: 0;
  padding: 0;
}
.subsidy-info__period li {
  padding: .25rem 0;
}
.subsidy-info__note {
  text-align: center;
  color: var(--color-text-light, #5a6a7e);
  line-height: 1.8;
  margin: 0;
}
.subsidy-info__local-title {
  font-weight: 700;
  margin: 0 0 .4rem;
}
.subsidy-info__local-desc {
  margin: 0 0 .75rem;
  line-height: 1.7;
}
.subsidy-info__link {
  color: var(--color-primary, #3a71a3);
  word-break: break-all;
  text-decoration: underline;
}

/* ---- App Hero Banner Icon (added) ---- */
.app-hero-banner__icon {
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.app-hero-banner__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}