/* ============================================================
   top-sub.css — トップ (index.html) 系下層ページ共通スタイル
   （voices.html / inquiry.html）
   トンマナ: index.html 踏襲 (紫×シアングラデ / 白角丸カード / 装飾円)
   ============================================================ */

/* ----- Reset & Base ----- */
.ecpro-top-body *, .ecpro-top-body *::before, .ecpro-top-body *::after { box-sizing: border-box; }
html:has(.ecpro-top-body) { font-size: 16px; }
body.ecpro-top-body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  color: #313440;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
}
.ecpro-top-body img { max-width: 100%; display: block; }
.ecpro-top-body a { color: inherit; text-decoration: none; }
.ecpro-top-body ul, .ecpro-top-body ol { list-style: none; padding: 0; margin: 0; }
.ecpro-top-body button { font: inherit; }

.ecpro-top-body .mobile-only { display: none; }

/* ============================================================
   Header (index.html と同じトンマナ — 白い角丸バー + グラデCTA)
   ============================================================ */
.ecpro-top-body .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  /* index.html (1920 キャンバス) と同じく --scale で比例縮小 */
  padding: calc(17px * var(--scale, 1)) 0 0;
  background: transparent;
}
.ecpro-top-body .site-header::before {
  content: '';
  position: absolute;
  inset: 0 0 -200% 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.0) 100%);
  pointer-events: none;
}
.ecpro-top-body .header-bar {
  /* index.html (1920 キャンバス + transform: scale) と同じ見た目に揃えるため、
     幅・高さ・内側の要素をすべて --scale で比例縮小する。1920px 以上で等倍。 */
  width: min(1200px, calc(100vw * 1200 / 1920));
  max-width: calc(100% - 40px);
  height: calc(53px * var(--scale, 1));
  margin: 0 auto;
  background: #fff;
  border-radius: calc(50px * var(--scale, 1));
  display: flex;
  align-items: center;
  padding: 0 calc(40px * var(--scale, 1)) 0 calc(16px * var(--scale, 1));
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: relative;
}
.ecpro-top-body .header-logo { display: inline-flex; align-items: center; }
.ecpro-top-body .header-logo img {
  width: auto;
  height: calc(35px * var(--scale, 1));
  object-fit: contain;
}
.ecpro-top-body .header-nav {
  margin-left: auto;
  display: flex;
  gap: calc(44px * var(--scale, 1));
  align-items: center;
}
.ecpro-top-body .header-nav a {
  font-weight: 500;
  font-size: calc(16px * var(--scale, 1));
  color: #313440;
  position: relative;
  padding: 4px 0;
}
/* ---------- サービス一覧ドロップダウン (PC) ---------- */
.ecpro-top-body .header-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.ecpro-top-body .header-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 16px; /* バーとの間のホバー橋渡し */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 20;
}
.ecpro-top-body .header-nav-item:hover .header-dropdown, .ecpro-top-body .header-nav-item:focus-within .header-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.ecpro-top-body .header-dropdown-inner {
  min-width: 190px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: 8px;
}
.ecpro-top-body .header-nav .header-dropdown-inner a {
  display: block;
  padding: 11px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.ecpro-top-body .header-nav .header-dropdown-inner a::after { display: none; }
.ecpro-top-body .header-nav .header-dropdown-inner a:hover {
  background: #f4f4f7;
  color: #21a3ff;
}
/* 表示中ページのカレント表示（グラデーション文字） */
.ecpro-top-body .header-nav a.is-active {
  color: transparent;
  background: linear-gradient(270deg, #b547ff 0%, #cd83ff 46.6%, #21a3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.ecpro-top-body .header-cta {
  margin-left: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 172px;
  height: 40px;
  border-radius: 50px;
  background: linear-gradient(270deg, #b547ff 0%, #cd83ff 46.6%, #21a3ff 100%);
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.ecpro-top-body .header-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 6px 18px rgba(181,71,255,.35);
}

/* Hamburger */
.ecpro-top-body .hamburger {
  display: none;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.ecpro-top-body .hamburger span {
  position: absolute;
  left: 9px;
  width: 22px;
  height: 2px;
  background: #313440;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.ecpro-top-body .hamburger span:nth-child(1) { top: 13px; }
.ecpro-top-body .hamburger span:nth-child(2) { top: 19px; }
.ecpro-top-body .hamburger span:nth-child(3) { top: 25px; }
.ecpro-top-body .hamburger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.ecpro-top-body .hamburger.is-open span:nth-child(2) { opacity: 0; }
.ecpro-top-body .hamburger.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.ecpro-top-body .mobile-menu {
  position: fixed;
  inset: 56px 0 0 0;
  background: rgba(255,255,255,.98);
  z-index: 99;
  padding: 24px 20px;
  overflow-y: auto;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}
.ecpro-top-body .mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.ecpro-top-body .mobile-menu-nav { display: flex; flex-direction: column; gap: 4px; }
.ecpro-top-body .mobile-menu-nav a {
  display: block;
  padding: 18px 12px;
  font-weight: 600;
  font-size: 16px;
  color: #313440;
  border-bottom: 1px solid #ececec;
}
/* サービス一覧配下のサブリンク（BRAIN / RPP） */
.ecpro-top-body .mobile-menu-nav a.mobile-menu-sub {
  padding: 14px 12px 14px 32px;
  font-weight: 500;
  font-size: 15px;
  color: #5a5a64;
}
.ecpro-top-body .mobile-menu-cta {
  margin-top: 18px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 50px;
  background: linear-gradient(270deg, #b547ff 0%, #cd83ff 46.6%, #21a3ff 100%);
  color: #fff !important;
  border: 0 !important;
}

/* ============================================================
   Page Hero (グラデ背景 + 装飾円)
   ============================================================ */
.ecpro-top-body .page-hero {
  position: relative;
  width: 100%;
  /* ヘッダー (padding-top17 + バー53 = 70px) を --scale で縮小したのと
     同じ分だけ負の margin-top で引き上げ、白いピルをヒーロー上部に重ねる */
  margin-top: calc(-70px * var(--scale, 1));
  padding: 130px 24px 70px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(117.32deg, #af37ff 1.8%, #c266ff 44.8%, #0095ff 83%);
  overflow: hidden;
}
.ecpro-top-body .page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}
.ecpro-top-body .page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 16px;
  border-radius: 50px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.4px;
  margin-bottom: 20px;
}
.ecpro-top-body .page-hero-title {
  margin: 0 0 18px;
  font-weight: 900;
  font-size: 56px;
  line-height: 1.18;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 14px rgba(40,0,80,0.25);
}
.ecpro-top-body .page-hero-subtitle {
  margin: 0 auto;
  max-width: 720px;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255,255,255,0.95);
}

/* breadcrumb (white on gradient) */
.ecpro-top-body .breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
  margin: 0 auto 18px;
  font-size: 12px;
  letter-spacing: 0.6px;
  color: rgba(255,255,255,0.85);
}
.ecpro-top-body .breadcrumb li { display: inline-flex; align-items: center; }
.ecpro-top-body .breadcrumb li + li::before {
  content: '›';
  margin-right: 10px;
  color: rgba(255,255,255,0.55);
}
.ecpro-top-body .breadcrumb a { color: rgba(255,255,255,0.95); }
.ecpro-top-body .breadcrumb li:last-child { color: #fff; font-weight: 600; }

/* Decorative ellipses — トップページと同じ SVG (太さ / ノイズ / 透明度を完全一致) */
.ecpro-top-body .page-hero-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  background: transparent no-repeat center / contain;
}
.ecpro-top-body .page-hero-deco-1 {
  width: 520px; height: 520px;
  top: -240px; right: -180px;
  background-image: url("../images/top/ellipses/e9.svg");
}
.ecpro-top-body .page-hero-deco-2 {
  width: 360px; height: 360px;
  bottom: -200px; left: -120px;
  background-image: url("../images/top/ellipses/e4.svg");
}
.ecpro-top-body .page-hero-deco-3 {
  width: 220px; height: 220px;
  top: 30%; left: 8%;
  background-image: url("../images/top/ellipses/e5.svg");
}

/* ============================================================
   Section base (light gray bg between sections)
   ============================================================ */
.ecpro-top-body .bg-soft {
  background: #f8f8f8;
}
.ecpro-top-body .section {
  padding: 80px 24px;
}
.ecpro-top-body .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.ecpro-top-body .section-title {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  text-align: center;
  color: #1a1a1a;
}
.ecpro-top-body .section-subtitle {
  margin: 0 auto 48px;
  max-width: 620px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.85;
  text-align: center;
  color: #5a5a64;
}

/* "highlight" inline block (index.html の hl と同じトンマナ) */
.ecpro-top-body .hl {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0 12px;
  border-radius: 4px;
  font-weight: 800;
}
/* Pill (gradient subtitle) */
.ecpro-top-body .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border-radius: 50px;
  background: linear-gradient(270deg, #b547ff, #cd83ff 46.6%, #21a3ff);
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.8px;
}

/* ============================================================
   Black CTA (index.html と同じ)
   ============================================================ */
.ecpro-top-body .black-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 296px;
  height: 65px;
  background: #000;
  border-radius: 7px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.8px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 0;
  cursor: pointer;
}
.ecpro-top-body .black-cta:hover {
  background: #1f1f1f;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.ecpro-top-body .black-cta::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/* gradient CTA */
.ecpro-top-body .grad-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 296px;
  height: 65px;
  background: linear-gradient(270deg, #b547ff 0%, #cd83ff 46.6%, #21a3ff 100%);
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.8px;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.ecpro-top-body .grad-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 10px 30px rgba(181,71,255,0.35);
}
.ecpro-top-body .grad-cta::after {
  content: '';
  width: 8px; height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/* ============================================================
   Final CTA banner (グラデ背景の総括CTA)
   ============================================================ */
.ecpro-top-body .final-cta {
  position: relative;
  padding: 90px 24px 100px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(117.32deg, #af37ff 1.8%, #c266ff 44.8%, #0095ff 83%);
}
.ecpro-top-body .final-cta-deco {
  position: absolute;
  border-radius: 50%;
  border: 1.6px solid rgba(255,255,255,0.22);
  pointer-events: none;
}
.ecpro-top-body .final-cta-deco-1 { width: 380px; height: 380px; top: -160px; right: -120px; }
.ecpro-top-body .final-cta-deco-2 { width: 280px; height: 280px; bottom: -120px; left: -80px; }
.ecpro-top-body .final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}
.ecpro-top-body .final-cta-title {
  margin: 0 0 14px;
  font-weight: 900;
  font-size: 42px;
  line-height: 1.4;
  letter-spacing: 0;
}
.ecpro-top-body .final-cta-text {
  margin: 0 0 36px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,0.95);
}
.ecpro-top-body .final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.ecpro-top-body .final-cta .black-cta { background: #1a1a1a; }

/* ============================================================
   Footer (index.html と同じ)
   ============================================================ */
.ecpro-top-body .site-footer {
  width: 100%;
  background: #313440;
  color: #fff;
  padding: 70px 24px 30px;
}
.ecpro-top-body .footer-inner {
  position: relative;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 220px 240px;
  gap: 30px;
}
.ecpro-top-body .footer-logo {
  width: 128px;
  height: 35px;
  object-fit: contain;
  margin-bottom: 27px;
}
.ecpro-top-body .footer-tag {
  margin: 0 0 36px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.4px;
}
.ecpro-top-body .footer-company {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.4px;
}
.ecpro-top-body .footer-address {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.4px;
}
.ecpro-top-body .footer-nav {
  display: flex;
  flex-direction: column;
}
.ecpro-top-body .footer-nav-head {
  margin: 0 0 0;
  color: #d2d5de;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.4px;
}
.ecpro-top-body .footer-nav-head:not(:first-child) { margin-top: 18px; }
.ecpro-top-body .footer-nav a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.4px;
  color: #fff;
}
.ecpro-top-body .footer-copy {
  grid-column: 1 / -1;
  margin: 50px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.4px;
}

/* フッター下のバナー (BRAIN / RPP) */
.ecpro-top-body .footer-bottom-cta {
  grid-column: 1 / -1;
  display: flex;
  gap: 23px;
  margin-top: 40px;
  width: 100%;
}
.ecpro-top-body .footer-bottom-cta .bottom-cta-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: 160px;
  border-radius: 10px;
  padding: 24px 38px;
  display: flex;
  flex-direction: column;
  color: #000;
  box-sizing: border-box;
}
.ecpro-top-body .footer-bottom-cta .bottom-cta-card--cyan { background: #e6f8f9; }
.ecpro-top-body .footer-bottom-cta .bottom-cta-card--purple { background: #faf5ff; }
.ecpro-top-body .footer-bottom-cta .bottom-cta-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}
.ecpro-top-body .footer-bottom-cta .bottom-cta-card-badges {
  display: flex;
  gap: 8px;
  align-items: center;
}
.ecpro-top-body .footer-bottom-cta .bottom-cta-card-badges--stack {
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}
.ecpro-top-body .footer-bottom-cta .bottom-cta-card .badge { display: inline-flex; flex-shrink: 0; }
.ecpro-top-body .footer-bottom-cta .bottom-cta-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin: 0;
}
.ecpro-top-body .footer-bottom-cta .bottom-cta-text {
  margin: 14px 0 0;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.6px;
  color: #000;
}

/* ============================================================
   Voices page sections
   ============================================================ */

/* Filter chips */
.ecpro-top-body .voices-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 48px;
}
.ecpro-top-body .voices-filter {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 18px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid #e8e8ee;
  color: #313440;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.ecpro-top-body .voices-filter.is-active {
  background: linear-gradient(270deg, #b547ff 0%, #cd83ff 46.6%, #21a3ff 100%);
  color: #fff;
  border-color: transparent;
}

/* Voice grid */
.ecpro-top-body .voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ecpro-top-body .voice-card-page {
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(0,0,0,0.07);
  padding: 26px 26px 80px;
  text-align: left;
}
.ecpro-top-body .voice-card-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.ecpro-top-body .voice-card-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  border-radius: 50px;
  padding: 0 14px;
  height: 22px;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
}
.ecpro-top-body .voice-card-page .voice-img {
  margin: 18px auto 0;
  display: block;
  height: 92px;
  object-fit: contain;
}
.ecpro-top-body .voice-card-page .voice-img--photo {
  width: 89px;
  height: 89px;
  border-radius: 50%;
  object-fit: cover;
}
.ecpro-top-body .voice-card-page .voice-name {
  margin: 26px 0 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  color: #000;
}
.ecpro-top-body .voice-card-page .voice-quote {
  margin: 14px 0 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.85;
  color: #313440;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* ============================================================
   Voice article（/voices/{slug}/ お客様の声 記事ページ）
   ============================================================ */
.ecpro-top-body .voice-article {
  max-width: 860px;
  margin: 0 auto;
}
.ecpro-top-body .voice-article-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ecpro-top-body .voice-article-date {
  font-weight: 500;
  font-size: 14px;
  color: #969696;
}
.ecpro-top-body .voice-article-visual {
  margin: 28px 0 0;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ecpro-top-body .voice-article-visual img {
  max-width: 340px;
  max-height: 150px;
  object-fit: contain;
}
.ecpro-top-body .voice-article-visual--photo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}
.ecpro-top-body .voice-article-body {
  margin: 40px 0 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: #313440;
}
.ecpro-top-body .voice-article-body p { margin: 0 0 1.6em; }
.ecpro-top-body .voice-article-body h2 {
  margin: 2em 0 0.8em;
  padding: 0 0 10px;
  border-bottom: 2px solid #1a1a1a;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: #1a1a1a;
}
.ecpro-top-body .voice-article-body h3 {
  margin: 1.8em 0 0.7em;
  padding: 0 0 0 12px;
  border-left: 4px solid #b547ff;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.5;
  color: #1a1a1a;
}
.ecpro-top-body .voice-article-body h4 {
  margin: 1.6em 0 0.6em;
  font-weight: 700;
  font-size: 17px;
  color: #1a1a1a;
}
.ecpro-top-body .voice-article-body ul, .ecpro-top-body .voice-article-body ol {
  margin: 0 0 1.6em;
  padding-left: 1.6em;
}
.ecpro-top-body .voice-article-body li { margin: 0 0 0.4em; }
.ecpro-top-body .voice-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.ecpro-top-body .voice-article-body blockquote {
  margin: 0 0 1.6em;
  padding: 18px 22px;
  background: #f8f8f8;
  border-left: 4px solid #21a3ff;
  border-radius: 0 10px 10px 0;
}
.ecpro-top-body .voice-article-body blockquote p:last-child { margin-bottom: 0; }
.ecpro-top-body .voice-article-body a {
  color: #21a3ff;
  text-decoration: underline;
}
.ecpro-top-body .voice-article-body strong { font-weight: 700; }
.ecpro-top-body .voice-article-back {
  margin: 56px 0 0;
  text-align: center;
}
@media (max-width: 768px) {
  .ecpro-top-body .voice-article-visual { padding: 22px; }
  .ecpro-top-body .voice-article-visual img { max-width: 240px; max-height: 110px; }
  .ecpro-top-body .voice-article-visual--photo img { width: 110px; height: 110px; }
  .ecpro-top-body .voice-article-body { margin: 28px 0 0; font-size: 15px; }
  .ecpro-top-body .voice-article-body h2 { font-size: 20px; }
  .ecpro-top-body .voice-article-body h3 { font-size: 17px; }
}

.ecpro-top-body .voice-card-page .voice-stat {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 16px 0 0;
}
.ecpro-top-body .voice-card-page .voice-stat-num {
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  background: linear-gradient(270deg, #b547ff, #cd83ff 46.6%, #21a3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}
.ecpro-top-body .voice-card-page .voice-stat-unit {
  font-weight: 700;
  font-size: 13px;
  color: #313440;
}
.ecpro-top-body .voice-card-page .voice-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: #5a5a64;
  letter-spacing: 0.6px;
}
.ecpro-top-body .voice-card-page .voice-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(270deg, #b547ff, #cd83ff 46.6%, #21a3ff);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ecpro-top-body .voice-card-page .voice-arrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/* Pager (ページネーション) */
.ecpro-top-body .voices-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 56px;
}
.ecpro-top-body .voices-pager-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 6px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e3e3e8;
  color: #313440;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.ecpro-top-body .voices-pager-btn:hover:not(.is-active):not(:disabled) {
  border-color: #b9bcc6;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.ecpro-top-body .voices-pager-num.is-active {
  background: linear-gradient(270deg, #b547ff 0%, #cd83ff 46.6%, #21a3ff 100%);
  color: #fff;
  border-color: transparent;
  cursor: default;
}
.ecpro-top-body .voices-pager-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.ecpro-top-body .voices-pager-chevron {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  display: inline-block;
}
.ecpro-top-body .voices-pager-chevron--prev { transform: rotate(-135deg); margin-left: 3px; }
.ecpro-top-body .voices-pager-chevron--next { transform: rotate(45deg); margin-right: 3px; }

/* Featured voice (story spotlight) */
.ecpro-top-body .voices-featured {
  margin: 0 0 50px;
  display: grid;
  grid-template-columns: 480px 1fr;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0,0,0,0.07);
  overflow: hidden;
}
.ecpro-top-body .voices-featured-visual {
  position: relative;
  background: linear-gradient(135deg, #af37ff 0%, #c266ff 50%, #0095ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 30px;
  color: #fff;
}
.ecpro-top-body .voices-featured-visual::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  top: -120px; right: -120px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.ecpro-top-body .voices-featured-visual::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  bottom: -100px; left: -60px;
  border-radius: 50%;
  border: 1.4px solid rgba(255,255,255,0.22);
}
.ecpro-top-body .voices-featured-visual img {
  position: relative;
  z-index: 1;
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.18));
}
.ecpro-top-body .voices-featured-content {
  padding: 50px 50px;
}
.ecpro-top-body .voices-featured-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.ecpro-top-body .voices-featured-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 14px;
  border-radius: 50px;
  background: #000;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
}
.ecpro-top-body .voices-featured-name {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.55;
  color: #1a1a1a;
}
.ecpro-top-body .voices-featured-quote {
  margin: 0 0 22px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.85;
  color: #313440;
  position: relative;
  padding-left: 24px;
}
.ecpro-top-body .voices-featured-quote::before {
  content: '"';
  position: absolute;
  top: -16px;
  left: -2px;
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(270deg, #b547ff, #cd83ff 46.6%, #21a3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.ecpro-top-body .voices-featured-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding: 22px 0 0;
  border-top: 1px solid #ececec;
}
.ecpro-top-body .voices-featured-stats > div { min-width: 110px; }
.ecpro-top-body .voices-featured-stats .num {
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  background: linear-gradient(270deg, #b547ff, #cd83ff 46.6%, #21a3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -1.5px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.ecpro-top-body .voices-featured-stats .num small {
  font-size: 16px;
  font-weight: 700;
  color: #313440;
  -webkit-text-fill-color: initial;
}
.ecpro-top-body .voices-featured-stats .label {
  margin-top: 6px;
  font-size: 12px;
  color: #5a5a64;
  letter-spacing: 0.5px;
}

/* ============================================================
   Inquiry page sections
   ============================================================ */

/* Inquiry-type cards (4 entry points at top) */
.ecpro-top-body .inquiry-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 60px;
}
.ecpro-top-body .inquiry-type {
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(0,0,0,0.07);
  padding: 28px 24px 28px;
  text-align: left;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s ease;
}
.ecpro-top-body .inquiry-type.is-active {
  border-color: #b547ff;
  box-shadow: 0 0 0 6px rgba(181,71,255,0.10), 0 0 30px rgba(0,0,0,0.07);
}
.ecpro-top-body .inquiry-type-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #b547ff 0%, #21a3ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.ecpro-top-body .inquiry-type-icon svg { width: 24px; height: 24px; stroke: #fff; }
.ecpro-top-body .inquiry-type-title {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #1a1a1a;
}
.ecpro-top-body .inquiry-type-desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: #5a5a64;
}
.ecpro-top-body .inquiry-type-radio {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #d8d8de;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ecpro-top-body .inquiry-type.is-active .inquiry-type-radio {
  border-color: #b547ff;
  background: #b547ff;
}
.ecpro-top-body .inquiry-type.is-active .inquiry-type-radio::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
}

/* Inquiry layout (form + side) */
.ecpro-top-body .inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: start;
}

/* Form card */
.ecpro-top-body .inquiry-form {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0,0,0,0.07);
  padding: 44px 50px 48px;
}
.ecpro-top-body .inquiry-form-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 2px solid #f4f4f6;
}
.ecpro-top-body .inquiry-form-head h2 {
  margin: 0;
  font-weight: 700;
  font-size: 22px;
  color: #1a1a1a;
}
.ecpro-top-body .inquiry-form-head p {
  margin: 0;
  font-size: 13px;
  color: #5a5a64;
}

.ecpro-top-body .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 24px;
}
.ecpro-top-body .form-row { display: flex; flex-direction: column; }
.ecpro-top-body .form-row--full { grid-column: 1 / -1; }
.ecpro-top-body .form-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 13px;
  color: #313440;
  letter-spacing: 0.4px;
}
.ecpro-top-body .req {
  display: inline-flex;
  align-items: center;
  height: 18px;
  padding: 0 6px;
  border-radius: 4px;
  background: linear-gradient(270deg, #b547ff, #21a3ff);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.ecpro-top-body .req--option {
  background: transparent;
  color: #969696;
  border: 1px solid #d8d8de;
}
.ecpro-top-body .form-input, .ecpro-top-body .form-select, .ecpro-top-body .form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: #fafafc;
  border: 1px solid #ececef;
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  color: #1a1a1a;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.ecpro-top-body .form-input:focus, .ecpro-top-body .form-select:focus, .ecpro-top-body .form-textarea:focus {
  outline: 0;
  border-color: #b547ff;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(181,71,255,0.10);
}
.ecpro-top-body .form-textarea { min-height: 130px; resize: vertical; line-height: 1.7; }
.ecpro-top-body .form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23313440' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.ecpro-top-body .form-help {
  margin: 6px 2px 0;
  font-size: 11px;
  color: #969696;
  letter-spacing: 0.3px;
}
.ecpro-top-body .form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.7;
  color: #313440;
  margin-top: 6px;
}
.ecpro-top-body .form-checkbox input { margin-top: 4px; }
.ecpro-top-body .form-checkbox a {
  color: #b547ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ecpro-top-body .inquiry-submit {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.ecpro-top-body .inquiry-submit .grad-cta { width: 320px; height: 64px; }
.ecpro-top-body .inquiry-submit-note {
  font-size: 11px;
  color: #969696;
  letter-spacing: 0.3px;
}

/* Side info */
.ecpro-top-body .inquiry-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.ecpro-top-body .inquiry-side-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0,0,0,0.06);
  padding: 26px 26px;
}
.ecpro-top-body .inquiry-side-card--gradient {
  background: linear-gradient(135deg, #af37ff 0%, #c266ff 50%, #0095ff 100%);
  color: #fff;
}
.ecpro-top-body .inquiry-side-card h3 {
  margin: 0 0 14px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
}
.ecpro-top-body .inquiry-side-card--gradient h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ecpro-top-body .inquiry-side-card p {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.85;
  color: #5a5a64;
}
.ecpro-top-body .inquiry-side-card--gradient p { color: rgba(255,255,255,0.92); }

.ecpro-top-body .contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f3;
}
.ecpro-top-body .contact-line:last-child { border-bottom: 0; padding-bottom: 0; }
.ecpro-top-body .contact-line-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #b547ff 0%, #21a3ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ecpro-top-body .contact-line-icon svg { width: 18px; height: 18px; stroke: #fff; }
.ecpro-top-body .contact-line-content {
  display: flex;
  flex-direction: column;
}
.ecpro-top-body .contact-line-content small {
  font-size: 11px;
  color: #969696;
  letter-spacing: 0.3px;
}
.ecpro-top-body .contact-line-content strong {
  font-weight: 700;
  font-size: 16px;
  color: #1a1a1a;
}

/* FAQ accordion */
.ecpro-top-body .inquiry-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.ecpro-top-body .inquiry-faq details {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(0,0,0,0.05);
  overflow: hidden;
}
.ecpro-top-body .inquiry-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 15px;
  color: #1a1a1a;
}
.ecpro-top-body .inquiry-faq summary::-webkit-details-marker { display: none; }
.ecpro-top-body .inquiry-faq summary::before {
  content: 'Q';
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b547ff 0%, #21a3ff 100%);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ecpro-top-body .inquiry-faq summary::after {
  content: '';
  margin-left: auto;
  width: 10px; height: 10px;
  border-right: 2px solid #313440;
  border-bottom: 2px solid #313440;
  transform: rotate(45deg);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.ecpro-top-body .inquiry-faq details[open] summary::after { transform: rotate(-135deg); }
.ecpro-top-body .inquiry-faq details > div {
  padding: 0 28px 24px 74px;
  font-size: 14px;
  line-height: 1.95;
  color: #313440;
}

/* ============================================================
   Tablet (1024 - 1199)
   ============================================================ */
@media (max-width: 1199px) {
  .ecpro-top-body .voices-grid { grid-template-columns: repeat(2, 1fr); }
  .ecpro-top-body .inquiry-types { grid-template-columns: repeat(2, 1fr); }
  .ecpro-top-body .inquiry-layout { grid-template-columns: 1fr; }
  .ecpro-top-body .inquiry-side { position: static; }
  .ecpro-top-body .voices-featured { grid-template-columns: 1fr; }
  .ecpro-top-body .voices-featured-visual { padding: 36px; min-height: 240px; }
  .ecpro-top-body .voices-featured-visual img { max-width: 200px; }
  .ecpro-top-body .voices-featured-content { padding: 36px 30px; }
  .ecpro-top-body .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   Mobile (≤ 767)
   ============================================================ */
@media (max-width: 767px) {
  html:has(.ecpro-top-body) { font-size: 14px; }

  .ecpro-top-body .mobile-only { display: inline; }

  /* Header */
  .ecpro-top-body .site-header {
    padding: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
  .ecpro-top-body .header-bar {
    width: 100%;
    max-width: none;
    height: 56px;
    border-radius: 0;
    padding: 0 12px 0 16px;
    box-shadow: none;
  }
  .ecpro-top-body .header-logo img { width: auto; height: 26px; }
  .ecpro-top-body .header-nav { display: none; }
  .ecpro-top-body .header-cta { display: none; }
  .ecpro-top-body .hamburger { display: block !important; }

  /* Page hero */
  .ecpro-top-body .page-hero {
    margin-top: 0;
    padding: 60px 20px 50px;
  }
  .ecpro-top-body .page-hero-title { font-size: 30px; line-height: 1.3; }
  .ecpro-top-body .page-hero-subtitle { font-size: 13px; }
  .ecpro-top-body .page-hero-deco-1 { width: 220px; height: 220px; top: -100px; right: -80px; }
  .ecpro-top-body .page-hero-deco-2 { width: 160px; height: 160px; bottom: -80px; left: -50px; }
  .ecpro-top-body .page-hero-deco-3 { display: none; }
  .ecpro-top-body .breadcrumb { font-size: 11px; }

  /* Section */
  .ecpro-top-body .section { padding: 50px 20px; }
  .ecpro-top-body .section-title { font-size: 24px; line-height: 1.45; }
  .ecpro-top-body .section-subtitle { font-size: 13px; margin-bottom: 32px; }

  /* Voices */
  .ecpro-top-body .voices-grid { grid-template-columns: 1fr; gap: 16px; }
  .ecpro-top-body .voice-card-page { padding: 22px 20px 70px; }
  .ecpro-top-body .voice-card-page .voice-img { height: 70px; }
  .ecpro-top-body .voice-card-page .voice-img--photo { width: 70px; height: 70px; }

  .ecpro-top-body .voices-featured { grid-template-columns: 1fr; margin-bottom: 32px; }
  .ecpro-top-body .voices-featured-visual { padding: 30px; min-height: 180px; }
  .ecpro-top-body .voices-featured-visual img { max-width: 160px; }
  .ecpro-top-body .voices-featured-content { padding: 28px 22px; }
  .ecpro-top-body .voices-featured-name { font-size: 18px; }
  .ecpro-top-body .voices-featured-quote { font-size: 15px; padding-left: 20px; }
  .ecpro-top-body .voices-featured-quote::before { font-size: 42px; }
  .ecpro-top-body .voices-featured-stats { gap: 24px; }
  .ecpro-top-body .voices-featured-stats .num { font-size: 30px; }

  .ecpro-top-body .voices-filters { gap: 8px; margin-bottom: 28px; }
  .ecpro-top-body .voices-filter { height: 32px; padding: 0 14px; font-size: 12px; }
  .ecpro-top-body .voices-pager { gap: 7px; margin-top: 36px; }
  .ecpro-top-body .voices-pager-btn { min-width: 38px; height: 38px; font-size: 14px; }

  /* Inquiry types */
  .ecpro-top-body .inquiry-types {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
  }
  .ecpro-top-body .inquiry-type { padding: 22px 20px; }

  /* Inquiry form */
  .ecpro-top-body .inquiry-layout { gap: 20px; }
  .ecpro-top-body .inquiry-form { padding: 26px 22px 30px; border-radius: 14px; }
  .ecpro-top-body .inquiry-form-head h2 { font-size: 18px; }
  .ecpro-top-body .form-grid { grid-template-columns: 1fr; gap: 16px; }
  .ecpro-top-body .inquiry-submit .grad-cta {
    width: 100%;
    max-width: 320px;
    height: 56px;
    font-size: 15px;
  }
  .ecpro-top-body .inquiry-side-card { padding: 22px; }
  .ecpro-top-body .inquiry-side-card h3 { font-size: 14px; }

  /* FAQ */
  .ecpro-top-body .inquiry-faq summary { padding: 18px 18px; font-size: 14px; gap: 10px; }
  .ecpro-top-body .inquiry-faq summary::before { width: 28px; height: 28px; font-size: 12px; }
  .ecpro-top-body .inquiry-faq details > div { padding: 0 18px 20px 56px; font-size: 13px; }

  /* CTAs */
  .ecpro-top-body .black-cta, .ecpro-top-body .grad-cta { width: 100%; max-width: 280px; height: 54px; font-size: 14px; }

  /* Final CTA */
  .ecpro-top-body .final-cta { padding: 60px 20px 70px; }
  .ecpro-top-body .final-cta-title { font-size: 26px; line-height: 1.5; }
  .ecpro-top-body .final-cta-text { font-size: 14px; }
  .ecpro-top-body .final-cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .ecpro-top-body .final-cta-deco-1 { width: 200px; height: 200px; top: -80px; right: -60px; }
  .ecpro-top-body .final-cta-deco-2 { width: 160px; height: 160px; bottom: -60px; left: -40px; }

  /* Footer */
  .ecpro-top-body .site-footer { padding: 48px 20px 28px; }
  .ecpro-top-body .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ecpro-top-body .footer-logo { width: 110px; margin: 0 0 14px; }
  .ecpro-top-body .footer-tag { font-size: 12px; line-height: 1.7; margin: 0 0 18px; }
  .ecpro-top-body .footer-company { font-size: 13px; line-height: 1.6; }
  .ecpro-top-body .footer-address { font-size: 12px; line-height: 1.8; }
  .ecpro-top-body .footer-nav-head { font-size: 13px; }
  .ecpro-top-body .footer-nav a { font-size: 14px; line-height: 2; }
  .ecpro-top-body .footer-copy { font-size: 11px; margin-top: 30px; padding-top: 18px; }

  /* フッター下バナー: 縦積み */
  .ecpro-top-body .footer-bottom-cta { flex-direction: column; gap: 12px; margin-top: 28px; }
  .ecpro-top-body .footer-bottom-cta .bottom-cta-card { width: 100%; height: auto; padding: 20px; }
  .ecpro-top-body .footer-bottom-cta .bottom-cta-card-row { flex-wrap: wrap; gap: 10px; }
  .ecpro-top-body .footer-bottom-cta .bottom-cta-card-badges--stack { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 6px; }
  .ecpro-top-body .footer-bottom-cta .bottom-cta-logo { max-width: 180px; height: auto; max-height: 34px; }
  .ecpro-top-body .footer-bottom-cta .bottom-cta-card .badge { font-size: 12px; padding: 0 12px; height: 26px; }
  .ecpro-top-body .footer-bottom-cta .bottom-cta-text { font-size: 13px; line-height: 1.7; margin: 12px 0 0; }
}
