/* ========== Services Hero (header直下の帯) ========== */
.services-hero{
  position:relative; color:#fff; text-align:center;
  padding: clamp(68px, 10vw, 120px) 0 clamp(48px, 7vw, 80px);
  isolation:isolate;
}
.services-hero__bg{
  position:absolute; inset:0; z-index:-2;
  background-image: var(--hero-bg, url('/wp-content/themes/tsuno/assets/hero-services.jpg'));
  background-size:cover; background-position:center;
  filter: saturate(.9) brightness(.7);
}
.services-hero::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(1200px 420px at 50% -20%, rgba(255,255,255,.12), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.68), rgba(0,0,0,.55) 40%, rgba(0,0,0,.62));
}
.services-hero .block-title{
  color:#fff; -webkit-text-fill-color:#fff; background:none; text-shadow:0 1px 12px rgba(0,0,0,.4);
}
.services-hero .block-title::after{
  background:linear-gradient(90deg,rgba(255,255,255,.95),rgba(255,255,255,.6));
}
.services-hero__title{
  margin:6px 0 10px; font-weight:900;
  font-size: clamp(26px, 4.6vw, 42px); line-height:1.2;
  text-shadow:0 2px 16px rgba(0,0,0,.35);
}
.services-hero__lead{
  display:inline-block; margin:6px 0 16px; padding:6px 12px;
  border-radius:12px; background:rgba(0,0,0,.28);
  font-weight:900; font-size:clamp(14px,2vw,18px); letter-spacing:.02em;
  text-shadow:0 2px 12px rgba(0,0,0,.45);
}
.services-hero__pills{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin:6px 0 14px; }
.pill{
  display:inline-flex; align-items:center; justify-content:center;
  padding:8px 14px; border-radius:999px; font-weight:800;
  background:linear-gradient(135deg,#cbd5e1,#64748b); color:#0b0d10; mix-blend-mode:screen;
}
.pill:hover{ filter:brightness(1.1); }
.services-hero__cta{ margin-top:6px; }

/* DLボタンは“短め”固定（全体ボタン共通から独立） */
.btn--download{
  min-width:0; width: clamp(200px, 28vw, 360px);
  padding:12px 28px; border-radius:999px;
  color:#fff;
  background-image:linear-gradient(135deg,#cbd3dc 0%, #4b5563 46%, #0b0d10 100%);
  background-size:160% 160%;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.28), 0 10px 22px rgba(0,0,0,.25);
  transition: background-position .35s ease, filter .2s ease;
}
.btn--download:hover{ background-position:100% 0; filter:brightness(1.06); }
