/* ==========================================================
   サポデジ 公式サイト 共通スタイル
   ブランドカラー:
     サポデジ ブルー   #1E5EE5
     オーダー オレンジ #F97316
     シフト グリーン   #16A34A
     補助金 スカイ     #0EA5E9
     テキスト ネイビー #0F172A
     背景 ライトグレー #F1F5F9
   ========================================================== */

:root {
  --blue: #1E5EE5;
  --orange: #F97316;
  --green: #16A34A;
  --sky: #0EA5E9;
  --navy: #0F172A;
  --gray-bg: #F1F5F9;
  --white: #FFFFFF;
  --text: #0F172A;
  --text-sub: #475569;
  --border: #E2E8F0;
  --radius: 12px;
  --radius-s: 8px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-s: 0 2px 8px rgba(15, 23, 42, 0.06);
  --accent: var(--blue);
  --accent-soft: #EAF0FD;
  --header-h: 64px;
  --font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

.theme-order   { --accent: var(--orange); --accent-soft: #FEF2E8; }
.theme-shift   { --accent: var(--green);  --accent-soft: #E8F6EE; }
.theme-hojokin { --accent: var(--sky);    --accent-soft: #E7F5FC; }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); color-scheme: light; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; vertical-align: middle; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-s);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  transition: opacity .2s, transform .2s, background .2s, color .2s;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}
.btn:hover { opacity: .85; transform: translateY(-1px); }
.btn .arrow { font-size: 12px; }

.btn-primary { background: var(--blue); color: #fff; }
.btn-accent  { background: var(--accent); color: #fff; }
.btn-outline {
  background: #fff;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-accent {
  background: #fff;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-white { background: #fff; color: var(--navy); }

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.site-header .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-logo img { height: 34px; width: auto; display: block; }

.global-nav { display: flex; align-items: center; gap: 32px; }
.global-nav a { font-weight: 600; font-size: 15px; transition: color .2s; }
.global-nav > ul { display: flex; align-items: center; gap: 32px; }
.global-nav a:hover { color: var(--blue); }
.global-nav .btn { padding: 10px 24px; font-size: 14px; }
.global-nav .btn:hover { color: #fff; }

/* ドロップダウン */
.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  width: 7px; height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 10px;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, transform .2s, visibility .2s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-s);
  font-size: 14px;
}
.dropdown a:hover { background: var(--gray-bg); }
.dropdown .dot {
  width: 10px; height: 10px;
  border-radius: 3px;
  flex: none;
}
.dot-blue   { background: var(--blue); }
.dot-orange { background: var(--orange); }
.dot-green  { background: var(--green); }
.dot-sky    { background: var(--sky); }

/* ハンバーガー */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- パンくず ---------- */
.breadcrumb {
  padding: 14px 0 0;
  font-size: 12px;
  color: var(--text-sub);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li:not(:last-child)::after { content: "›"; margin-left: 6px; color: #94A3B8; }
.breadcrumb a:hover { color: var(--blue); text-decoration: underline; }

/* ---------- セクション共通 ---------- */
.section { padding: 88px 0; }
.section-gray { background: var(--gray-bg); }

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: .04em;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.section-title::before,
.section-title::after {
  content: "";
  width: 48px;
  height: 2px;
  background: var(--accent);
}
.section-lead {
  text-align: center;
  color: var(--text-sub);
  max-width: 720px;
  margin: -28px auto 48px;
}

/* ---------- ヒーロー(トップ) ---------- */
.hero {
  background:
    linear-gradient(120deg, #F4F7FE 0%, #E9F0FD 55%, #DCE8FB 100%);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 520px; height: 520px;
  background: linear-gradient(135deg, rgba(30,94,229,.14), rgba(30,94,229,.02));
  border-radius: 80px;
  transform: rotate(35deg);
  pointer-events: none;
}
.hero .inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}
.hero-badge {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-s);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .02em;
  margin-bottom: 20px;
}
.hero .hero-text {
  color: var(--text-sub);
  font-size: 15px;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ヒーロー(画像素材レイヤー版:トップ)
   レイヤー構成ガイド準拠: 背景 → シフト表 → スマホ → 補助金カード → 人物 */
.hero-img::after { display: none; }
.hero-img .inner {
  grid-template-columns: minmax(0, 46%) 1fr;
  grid-template-rows: auto 1fr;
  min-height: clamp(440px, 42vw, 620px);
  padding-bottom: 0;
}
.hero-img .hero-copy { grid-column: 1; grid-row: 1; align-self: end; padding-top: 8px; }
.hero-img .hero-cta  { grid-column: 1; grid-row: 2; align-self: start; }
.hero-img .hero-visual2 { grid-column: 2; grid-row: 1 / 3; }
.hero-visual2 {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  aspect-ratio: 1 / 0.92;
  align-self: end;
}
.hero-visual2 img { position: absolute; height: auto; }
.hero-visual2 .hv-board {
  top: 4%;
  right: 4%;
  width: 78%;
  z-index: 1;
  filter: drop-shadow(0 14px 30px rgba(15, 23, 42, 0.16));
}
.hero-visual2 .hv-phone {
  left: 0;
  bottom: 4%;
  width: 32%;
  z-index: 2;
  filter: drop-shadow(0 14px 26px rgba(15, 23, 42, 0.22));
}
.hero-visual2 .hv-card {
  left: 29%;
  bottom: 9%;
  width: 42%;
  z-index: 3;
  filter: drop-shadow(0 12px 24px rgba(15, 23, 42, 0.16));
}
.hero-visual2 .hv-staff {
  right: -3%;
  bottom: 0;
  width: 36%;
  z-index: 4;
  filter: drop-shadow(0 10px 20px rgba(15, 23, 42, 0.18));
}

@media (min-width: 961px) {
  .hero-img {
    background:
      url("../assets/img/hero/hero_bg.jpg") center / cover no-repeat;
  }
}

@media (max-width: 960px) {
  .hero-img .inner { grid-template-columns: 1fr; gap: 40px; padding-bottom: 0; }
  .hero-visual2 { margin: 0 auto; max-width: 520px; }
}

/* ヒーロー ビジュアル(CSSモックアップ) */
.hero-visual { position: relative; min-height: 380px; }

.mock {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}
.mock-titlebar {
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
}
.mock-body { padding: 14px 16px; }

.hero-visual .mock-tablet {
  position: absolute;
  right: 0; top: 0;
  width: 78%;
}
.hero-visual .mock-phone {
  position: absolute;
  left: 0; bottom: 0;
  width: 44%;
  max-width: 220px;
  border-radius: 24px;
  z-index: 2;
}
.hero-visual .mock-card {
  position: absolute;
  right: 4%; bottom: 6%;
  width: 46%;
  z-index: 3;
}

/* シフト表ミニグリッド */
.mini-shift { display: grid; gap: 5px; }
.mini-shift .row { display: grid; grid-template-columns: 56px repeat(6, 1fr); gap: 5px; align-items: center; }
.mini-shift .name { font-size: 10px; color: var(--text-sub); white-space: nowrap; overflow: hidden; }
.mini-shift .cell { height: 14px; border-radius: 4px; background: var(--gray-bg); }
.mini-shift .c1 { background: #BFD3F8; }
.mini-shift .c2 { background: #BCE5CD; }
.mini-shift .c3 { background: #FCD9BD; }

/* QRメニュー ミニ */
.mini-menu li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 11px;
}
.mini-menu li:last-child { border-bottom: none; }
.mini-menu .thumb {
  width: 26px; height: 26px;
  border-radius: 6px;
  flex: none;
}
.mini-menu .n { flex: 1; font-weight: 600; }
.mini-menu .p { color: var(--text-sub); }
.mini-qr {
  display: block;
  margin: 6px auto 8px;
  width: 74px; height: 74px;
}
.mock-btn {
  display: block;
  background: var(--blue);
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  padding: 7px;
  margin-top: 10px;
}

/* ---------- サービスへのクイックリンク帯 ---------- */
.service-strip { margin-top: -36px; position: relative; z-index: 5; }
.service-strip ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}
.service-strip li:not(:last-child) { border-right: 1px solid var(--border); }
.service-strip a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  transition: background .2s;
}
.service-strip a:hover { background: var(--gray-bg); }
.service-strip .icon { width: 42px; height: 42px; flex: none; }
.service-strip .t { font-weight: 900; font-size: 15px; line-height: 1.4; }
.service-strip .t small { display: block; font-size: 12px; font-weight: 500; color: var(--text-sub); }
.service-strip .chev { margin-left: auto; color: #94A3B8; }
.t-order   .t { color: var(--orange); }
.t-shift   .t { color: var(--green); }
.t-hojokin .t { color: var(--sky); }
.t-order .t small, .t-shift .t small, .t-hojokin .t small { color: var(--text-sub); }

/* ---------- サポデジとは ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}
.about-grid h2 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.5;
}
.about-grid .lead { color: var(--text-sub); font-size: 15px; }

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.value-card .icon { width: 56px; height: 56px; margin: 0 auto 16px; color: var(--blue); }
.value-card h3 { font-size: 18px; font-weight: 900; margin-bottom: 10px; }
.value-card p { font-size: 13px; color: var(--text-sub); text-align: left; }

/* ---------- 3つのサービスカード ---------- */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-s);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 4px solid var(--sc, var(--blue));
}
.service-card.sc-order   { --sc: var(--orange); }
.service-card.sc-shift   { --sc: var(--green); }
.service-card.sc-hojokin { --sc: var(--sky); }
.service-card .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 17px;
}
.service-card .brand .icon { width: 32px; height: 32px; }
.service-card .brand .sv { color: var(--sc); }
.service-card .copy-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 110px;
}
.service-card .copy {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.6;
  flex: 1;
  white-space: nowrap;
}
.service-card .sc-img {
  flex: none;
  width: 42%;
  max-width: 140px;
  height: auto;
}
.service-card .desc { font-size: 13px; color: var(--text-sub); flex: 1; }
.service-card .tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.service-card .tags li {
  font-size: 11px;
  font-weight: 700;
  color: var(--sc);
  background: color-mix(in srgb, var(--sc) 9%, #fff);
  border: 1px solid color-mix(in srgb, var(--sc) 25%, #fff);
  border-radius: 999px;
  padding: 3px 10px;
}
.service-card .btn {
  border-color: var(--sc);
  color: var(--sc);
  background: #fff;
  width: 100%;
}
.service-card .btn:hover { background: var(--sc); color: #fff; }

/* ---------- 選ばれる理由(ネイビー帯) ---------- */
.reasons {
  background: var(--navy);
  color: #fff;
  padding: 80px 0;
}
.reasons .section-title { color: #fff; }
.reasons .section-title::before,
.reasons .section-title::after { background: rgba(255,255,255,.4); }
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.reason {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
}
.reason .icon-wrap {
  width: 72px; height: 72px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.reason .icon-wrap svg { width: 34px; height: 34px; }
.reason .num {
  font-size: 26px;
  font-weight: 900;
  color: rgba(255,255,255,.85);
  letter-spacing: .05em;
  line-height: 1;
  margin-bottom: 8px;
}
.reason h3 { font-size: 17px; font-weight: 900; line-height: 1.6; margin-bottom: 8px; }
.reason p { font-size: 13px; color: rgba(255,255,255,.75); }

/* ---------- 導入の流れ ---------- */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.flow-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-s);
}
.flow-step:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 22px;
  font-weight: 900;
  z-index: 1;
}
.flow-step .num {
  position: absolute;
  left: 14px; top: 14px;
  width: 28px; height: 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-step .icon { width: 48px; height: 48px; margin: 4px auto 12px; color: var(--navy); }
.flow-step h3 { font-size: 16px; font-weight: 900; margin-bottom: 8px; }
.flow-step p { font-size: 12px; color: var(--text-sub); text-align: left; }

/* ---------- CTA帯 ---------- */
.cta-band { padding: 72px 0; }
.cta-box {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-box .figure {
  width: 120px; height: auto;
  flex: none;
  align-self: flex-end;
  margin-bottom: -48px;
}
.cta-box .txt { flex: 1; min-width: 260px; }
.cta-box h2 { font-size: 26px; font-weight: 900; margin-bottom: 8px; }
.cta-box p { color: var(--text-sub); font-size: 14px; }
.cta-box .btn { flex: none; padding: 18px 40px; font-size: 16px; }

/* ---------- フッター ---------- */
.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 64px 0 0;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr auto;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo {
  background: #fff;
  border-radius: var(--radius-s);
  padding: 8px 14px;
  display: inline-block;
  margin-bottom: 16px;
}
.footer-brand .logo img { height: 26px; }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,.7); }
.footer-grid h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.footer-grid li { margin-bottom: 10px; }
.footer-grid li a {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.footer-grid li a:hover { color: #fff; }
.footer-cta .btn {
  border: 1px solid rgba(255,255,255,.6);
  color: #fff;
  background: transparent;
  padding: 12px 28px;
  font-size: 14px;
}
.footer-cta .btn:hover { background: #fff; color: var(--navy); opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.6);
}

/* ==========================================================
   サービス詳細ページ 共通
   ========================================================== */

/* ヒーロー(サービス) */
.sv-hero {
  background: linear-gradient(120deg,
    color-mix(in srgb, var(--accent) 6%, #fff) 0%,
    color-mix(in srgb, var(--accent) 14%, #fff) 100%);
  position: relative;
  overflow: hidden;
}
.sv-hero::after {
  content: "";
  position: absolute;
  right: -140px; top: -140px;
  width: 480px; height: 480px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 18%, transparent), transparent);
  border-radius: 80px;
  transform: rotate(35deg);
  pointer-events: none;
}
.sv-hero .inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 48px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 64px;
}
.sv-hero .inner > :first-child { grid-column: 1; grid-row: 1; align-self: end; }
.sv-hero .inner > .hero-cta { grid-column: 1; grid-row: 2; align-self: start; }
.sv-hero .inner > .sv-hero-visual { grid-column: 2; grid-row: 1 / 3; align-self: center; }
.sv-hero .service-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 20px;
}
.sv-hero .service-logo .icon { width: 44px; height: 44px; }
.sv-hero .service-logo .sv { color: var(--accent); }
.sv-hero h1 {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 20px;
}
.sv-hero .hero-text {
  color: var(--text-sub);
  font-size: 15px;
  margin-bottom: 32px;
  max-width: 460px;
}
.sv-hero .hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.sv-hero-visual { position: relative; min-height: 340px; }

/* サブページ ヒーロー(画像素材レイヤー版) */
.sv-hero-visual img { position: absolute; height: auto; }

.sv-visual-order { aspect-ratio: 1 / 0.92; max-width: 600px; margin-left: auto; }
.sv-visual-order .ov-stats {
  right: 0; top: 0; width: 42%; z-index: 3;
}
.sv-visual-order .ov-stand {
  left: 26%; bottom: 0; width: 42%; z-index: 1;
  filter: drop-shadow(0 12px 22px rgba(15, 23, 42, 0.22));
}
.sv-visual-order .ov-phone {
  left: 0; bottom: 4%; width: 32%; z-index: 2;
  filter: drop-shadow(0 14px 26px rgba(15, 23, 42, 0.25));
}

.sv-visual-shift { aspect-ratio: 1 / 0.85; max-width: 640px; margin-left: auto; }
.sv-visual-shift .shv-board {
  left: 0; top: 4%; width: 96%; z-index: 1;
  filter: drop-shadow(0 14px 28px rgba(15, 23, 42, 0.14));
}
.sv-visual-shift .shv-phone {
  right: -2%; bottom: 0; width: 30%; z-index: 2;
  filter: drop-shadow(0 14px 26px rgba(15, 23, 42, 0.25));
}

.sv-visual-hojokin { aspect-ratio: 1120 / 691; max-width: 620px; margin-left: auto; }
.sv-visual-hojokin .hjv-set { inset: 0; width: 100%; }

/* サブページ ヒーロー背景(PC幅のみ。スマホはサービスカラーのグラデーションを維持) */
@media (min-width: 961px) {
  .theme-order .sv-hero,
  .theme-shift .sv-hero,
  .theme-hojokin .sv-hero { background-repeat: no-repeat; background-size: cover; background-position: center; }
  .theme-order .sv-hero   { background-image: url("../assets/img/hero/order_bg.jpg"); }
  .theme-shift .sv-hero   { background-image: url("../assets/img/hero/shift_bg.jpg"); }
  .theme-hojokin .sv-hero { background-image: url("../assets/img/hero/hojokin_bg.jpg"); }
  .theme-order .sv-hero::after,
  .theme-shift .sv-hero::after,
  .theme-hojokin .sv-hero::after { display: none; }
}

/* お悩みカード */
.problem-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.problem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-s);
}
.problem-card .icon {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  color: var(--accent);
}
.problem-card h3 { font-size: 16px; font-weight: 900; margin-bottom: 8px; }
.problem-card p { font-size: 12px; color: var(--text-sub); text-align: left; }

/* 機能カード */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-s);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-card .icon { width: 40px; height: 40px; color: var(--accent); }
.feature-card h3 { font-size: 15px; font-weight: 900; }
.feature-card p { font-size: 12px; color: var(--text-sub); flex: 1; }

/* LINE販促セクション */
.line-feature {
  display: grid;
  grid-template-columns: minmax(300px, 400px) 1fr;
  gap: 48px;
  align-items: center;
}
.line-chat {
  background: #86A1C4;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 400px;
}
.lc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #2B3A4F;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 16px;
}
.lc-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--orange) url("../assets/img/sapodigi_order_icon.svg") center / 60% no-repeat;
  flex: none;
}
.lc-badge {
  background: #06C755;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 6px;
}
.lc-body { padding: 16px; display: grid; gap: 8px; }
.lc-time {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,.18);
  border-radius: 999px;
  padding: 2px 12px;
  justify-self: center;
  margin-top: 6px;
}
.lc-bubble {
  background: #fff;
  color: var(--navy);
  font-size: 12.5px;
  line-height: 1.7;
  border-radius: 14px;
  border-top-left-radius: 4px;
  padding: 10px 14px;
  max-width: 85%;
  justify-self: start;
  box-shadow: 0 1px 2px rgba(15,23,42,.15);
}
.lc-bubble.lc-right {
  background: #8DE055;
  border-radius: 14px;
  border-top-right-radius: 4px;
  justify-self: end;
}
.lc-coupon {
  display: block;
  margin-top: 8px;
  background: #FEF2E8;
  border: 1px dashed var(--orange);
  color: var(--orange);
  font-weight: 900;
  font-size: 12px;
  text-align: center;
  border-radius: 8px;
  padding: 8px;
}
.line-points { display: grid; gap: 20px; }
.line-point {
  border-left: 4px solid #06C755;
  padding: 2px 0 2px 18px;
}
.line-point h3 { font-size: 16px; font-weight: 900; margin-bottom: 4px; }
.line-point p { font-size: 13px; color: var(--text-sub); }

@media (max-width: 960px) {
  .line-feature { grid-template-columns: 1fr; gap: 32px; }
  .line-chat { margin: 0 auto; }
}

/* できること(機能詳細グループ) */
.fn-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.fn-group {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-s);
  padding: 28px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.fn-group:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}
.fn-group .head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.fn-group .head .icon {
  width: 44px; height: 44px;
  flex: none;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 10px;
  padding: 10px;
}
.fn-group .head h3 { font-size: 17px; font-weight: 900; }
.fn-group > .lead { font-size: 13px; color: var(--text-sub); margin-bottom: 14px; }
.fn-list li {
  position: relative;
  padding: 9px 0 9px 26px;
  font-size: 13px;
  border-bottom: 1px dashed var(--border);
}
.fn-list li:last-child { border-bottom: none; }
.fn-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 14px;
  width: 12px; height: 7px;
  border-left: 2.5px solid var(--accent);
  border-bottom: 2.5px solid var(--accent);
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .fn-groups { grid-template-columns: 1fr; gap: 16px; }
  .fn-group { padding: 22px 18px; }
}

/* PRスライド埋め込み(YouTube風 16:9) */
.slide-embed {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.25);
  background: #0B1220;
}
.slide-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.slide-embed-note {
  text-align: center;
  margin-top: 16px;
}
.slide-embed-note a {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}
.slide-embed-note a:hover { text-decoration: underline; }

/* 料金カード */
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-s);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-card .icon { width: 48px; height: 48px; color: var(--accent); }
.price-card h3 { font-size: 17px; font-weight: 900; }
.price-card p { font-size: 13px; color: var(--text-sub); flex: 1; }
.price-card .more {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}
.price-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-sub);
  margin-top: 24px;
}

/* 他のサービス(クロスセル) */
.cross-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.cross-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-s);
  transition: transform .2s, box-shadow .2s;
}
.cross-links a:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.cross-links .icon { width: 40px; height: 40px; flex: none; }
.cross-links .t { font-weight: 900; font-size: 15px; }
.cross-links .t small { display: block; font-weight: 500; font-size: 12px; color: var(--text-sub); }
.cross-links .chev { margin-left: auto; color: #94A3B8; }

/* ==========================================================
   フォーム・下層ページ
   ========================================================== */
.page-hero {
  background: var(--gray-bg);
  padding: 56px 0;
  text-align: center;
}
.page-hero h1 { font-size: 32px; font-weight: 900; letter-spacing: .05em; }
.page-hero p { color: var(--text-sub); font-size: 14px; margin-top: 8px; }

.form-wrap { max-width: 720px; margin: 0 auto; }
.form-group { margin-bottom: 28px; }
.form-group > label,
.form-group > .group-label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}
.required {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 8px;
  margin-left: 8px;
  vertical-align: 2px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  font-family: var(--font);
  font-size: 15px;
  background: var(--gray-bg);
  transition: border-color .2s, background .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}
.check-list { display: grid; gap: 10px; }
.check-list label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  padding: 12px 16px;
  font-size: 14px;
  cursor: pointer;
}
.check-list input { width: 18px; height: 18px; accent-color: var(--blue); }
.form-note { font-size: 12px; color: var(--text-sub); margin-bottom: 24px; }
.form-submit { text-align: center; }
.form-submit .btn { min-width: 280px; padding: 18px 40px; font-size: 16px; }

/* 会社概要テーブル */
.def-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
}
.def-table th, .def-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  text-align: left;
  vertical-align: top;
}
.def-table th { width: 32%; font-weight: 700; background: var(--gray-bg); }

/* プライバシーポリシー */
.legal-body { max-width: 800px; margin: 0 auto; font-size: 14px; }
.legal-body h2 {
  font-size: 18px;
  font-weight: 900;
  margin: 40px 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--blue);
}
.legal-body p, .legal-body li { color: var(--text-sub); margin-bottom: 8px; }
.legal-body ul { padding-left: 20px; list-style: disc; }

/* ==========================================================
   レスポンシブ
   ========================================================== */
@media (max-width: 960px) {
  .hero .inner,
  .sv-hero .inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual, .sv-hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .service-cards, .value-cards, .price-cards { grid-template-columns: 1fr 1fr; }
  .reason-grid { grid-template-columns: 1fr; gap: 28px; }
  .problem-cards { grid-template-columns: 1fr 1fr; }
  .flow-grid { grid-template-columns: 1fr 1fr; row-gap: 28px; }
  .flow-step:nth-child(2)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 767px) {
  body { font-size: 15px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 24px; margin-bottom: 36px; gap: 12px; }
  .section-title::before, .section-title::after { width: 28px; }

  /* モバイルナビ */
  .nav-toggle { display: block; }
  .global-nav {
    position: fixed;
    inset: 0;
    top: 0;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: calc(var(--header-h) + 24px) 24px 40px;
    gap: 0;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .3s ease, visibility .3s;
    overflow-y: auto;
    z-index: 105;
  }
  .global-nav.is-open { transform: translateX(0); visibility: visible; }
  .global-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .global-nav > ul > li { border-bottom: 1px solid var(--border); }
  .global-nav > ul > li > a {
    display: block;
    padding: 16px 4px;
    font-size: 16px;
  }
  .has-dropdown > a::after { float: right; margin-top: 10px; }
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 0 0 12px;
    min-width: 0;
  }
  .global-nav .btn { margin-top: 24px; width: 100%; padding: 16px; font-size: 16px; }

  .hero .inner { padding-top: 48px; padding-bottom: 56px; }
  .hero h1 { font-size: 30px; }
  .hero-cta .btn, .sv-hero .hero-cta .btn { flex: 1 1 100%; }

  .service-strip { margin-top: -20px; }
  .service-strip ul { grid-template-columns: 1fr; }
  .service-strip li:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); }
  .service-strip a { padding: 16px 20px; }

  .value-cards, .service-cards, .price-cards,
  .problem-cards, .cross-links { grid-template-columns: 1fr; }
  .feature-cards { grid-template-columns: 1fr 1fr; }

  .flow-grid { grid-template-columns: 1fr; }
  .flow-step::after { display: none !important; }
  .flow-step { display: grid; grid-template-columns: 56px 1fr; text-align: left; gap: 0 16px; padding: 20px; }
  .flow-step .num { position: static; margin-bottom: 8px; }
  .flow-step .icon { grid-row: 1 / 3; grid-column: 1; width: 44px; height: 44px; margin: 8px 0 0; }
  .flow-step .num, .flow-step h3, .flow-step p { grid-column: 2; }

  .cta-box { padding: 32px 24px; text-align: center; justify-content: center; }
  .cta-box .txt { min-width: 0; }
  .cta-box h2 { font-size: 21px; }
  .cta-box .btn { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .sv-hero .inner { padding-bottom: 48px; }
  .page-hero h1 { font-size: 25px; }
  .def-table th { width: 36%; padding: 14px 12px; }
  .def-table td { padding: 14px 12px; }
}

@media (max-width: 420px) {
  .feature-cards { grid-template-columns: 1fr; }
}

/* ==========================================================
   スマホ版デザインカンプ(TOPスマホカンプ.png)対応
   ここでの上書きは既存のモバイル用ルールより後勝ちにするため末尾に置く
   ========================================================== */
@media (max-width: 960px) {
  /* ヒーロー: テキスト → ビジュアル → CTA(横並び)の順 */
  .hero-img .hero-copy,
  .hero-img .hero-cta,
  .hero-img .hero-visual2 { grid-column: 1; grid-row: auto; }
  .hero-img .hero-cta { margin-top: 0; }

  /* サブページヒーローも同じ並び */
  .sv-hero .inner { gap: 32px 48px; }
  .sv-hero .inner > :first-child,
  .sv-hero .inner > .hero-cta,
  .sv-hero .inner > .sv-hero-visual { grid-column: 1; grid-row: auto; }
  .sv-hero .inner > .sv-hero-visual { margin: 0 auto; }
}

@media (max-width: 767px) {
  /* ヒーローCTA: 2つ横並び(トップ・サブページ共通) */
  .hero .hero-cta,
  .sv-hero .hero-cta { display: flex; gap: 12px; }
  .hero .hero-cta .btn,
  .sv-hero .hero-cta .btn {
    flex: 1 1 0;
    justify-content: space-between;
    padding: 16px 14px;
    font-size: 14px;
  }
  .hero-img .inner { gap: 28px; }
  .sv-hero .inner { gap: 28px; padding-bottom: 48px; }

  /* お悩みカード: 2列コンパクト(トップの特長カード3列に準拠した密度) */
  .problem-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .problem-card { padding: 20px 12px 16px; }
  .problem-card .icon { width: 40px; height: 40px; margin-bottom: 10px; }
  .problem-card h3 { font-size: 14px; }
  .problem-card p { font-size: 11px; }

  /* サービス帯: 3列ミニカード */
  .service-strip ul { grid-template-columns: repeat(3, 1fr); }
  .service-strip li:not(:last-child) { border-bottom: none; border-right: 1px solid var(--border); }
  .service-strip a {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 18px 8px 16px;
  }
  .service-strip .icon { width: 36px; height: 36px; }
  .service-strip .t { font-size: 11px; line-height: 1.4; white-space: nowrap; }
  .service-strip .t small { font-size: 10px; margin-top: 4px; white-space: normal; }
  .service-strip .chev { display: none; }

  /* サポデジとは: 特長カード3列 */
  .value-cards { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .value-card { padding: 18px 8px 14px; }
  .value-card .icon { width: 34px; height: 34px; margin-bottom: 10px; }
  .value-card h3 { font-size: 13px; margin-bottom: 6px; }
  .value-card p { font-size: 10px; line-height: 1.7; }

  /* 選ばれる理由: ライト背景+ネイビー丸アイコン、番号はタイトルと同一行 */
  .reasons {
    background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F8 100%);
    color: var(--navy);
    padding: 60px 0;
  }
  .reasons .section-title { color: var(--navy); }
  .reasons .section-title::before,
  .reasons .section-title::after { background: var(--accent); }
  .reason { grid-template-columns: 60px 1fr; gap: 16px; }
  .reason .icon-wrap {
    width: 60px; height: 60px;
    background: var(--navy);
    border: none;
    color: #fff;
  }
  .reason .icon-wrap svg { width: 28px; height: 28px; }
  .reason .num {
    display: inline-block;
    vertical-align: top;
    color: var(--accent);
    font-size: 19px;
    margin: 0 6px 0 0;
    line-height: 1.6;
  }
  .reason h3 { display: inline; font-size: 15px; color: var(--navy); }
  .reason p { color: var(--text-sub); margin-top: 6px; font-size: 12px; }

  /* 導入の流れ: カード間に下向き矢印 */
  .flow-grid { gap: 34px; }
  .flow-step:not(:last-child)::after {
    display: block !important;
    content: "";
    position: absolute;
    right: auto;
    top: auto;
    left: 50%;
    bottom: -26px;
    transform: translateX(-50%) rotate(45deg);
    width: 10px; height: 10px;
    border-right: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
    border-radius: 1px;
  }

  /* CTA: 人物左+テキスト右、ボタン全幅 */
  .cta-box {
    background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F8 100%);
    text-align: left;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding: 28px 22px;
  }
  .cta-box .figure { width: 76px; height: auto; flex: none; align-self: flex-end; margin-bottom: -28px; }
  .cta-box .txt { flex: 1; min-width: 0; }
  .cta-box h2 { font-size: 19px; line-height: 1.5; }
  .cta-box p { font-size: 12px; }
  .cta-box .btn { width: 100%; margin-top: 4px; }

  /* フッター: チェブロン付きリンクリスト → ブランド → CTA の順 */
  .footer-grid { display: flex; flex-direction: column; gap: 0; padding-bottom: 32px; }
  .footer-grid > div:nth-child(2) { order: 1; }
  .footer-grid > div:nth-child(3) { order: 2; }
  .footer-grid > div:nth-child(4) { order: 3; }
  .footer-brand { order: 4; margin-top: 36px; }
  .footer-cta { order: 5; margin-top: 24px; }
  .footer-grid h3 {
    border-bottom: 1px solid rgba(255,255,255,.25);
    padding: 14px 0 10px;
    margin-bottom: 0;
  }
  .footer-grid li { margin: 0; }
  .footer-grid li a {
    display: block;
    padding: 14px 24px 14px 4px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    position: relative;
    font-size: 14px;
    color: rgba(255,255,255,.85);
  }
  .footer-grid li a::after {
    content: "›";
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,.45);
  }
  .footer-cta .btn { width: 100%; padding: 15px; }
}

/* ==========================================================
   アニメーション
   - スクロールリベール(.reveal は JS が自動付与)
   - ヒーローの登場アニメ+浮遊モーション
   - カードのホバーリフト
   ========================================================== */

/* ---------- スクロールリベール ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .7s cubic-bezier(.22, .61, .36, 1),
    transform .7s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- ヒーロー登場アニメ ---------- */
@keyframes rise-in {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float-soft {
  from { transform: translateY(0); }
  to   { transform: translateY(-9px); }
}

.hero-copy .hero-badge,
.hero-copy h1,
.hero-copy .hero-text,
.hero-img .hero-cta,
.sv-hero .inner > :first-child > *,
.sv-hero .inner > .hero-cta {
  animation: rise-in .8s cubic-bezier(.22, .61, .36, 1) both;
}
.hero-copy .hero-badge { animation-delay: .05s; }
.hero-copy h1          { animation-delay: .15s; }
.hero-copy .hero-text  { animation-delay: .25s; }
.hero-img .hero-cta    { animation-delay: .35s; }
.sv-hero .inner > :first-child > :nth-child(1) { animation-delay: .05s; }
.sv-hero .inner > :first-child > :nth-child(2) { animation-delay: .15s; }
.sv-hero .inner > :first-child > :nth-child(3) { animation-delay: .25s; }
.sv-hero .inner > .hero-cta { animation-delay: .35s; }

/* ビジュアルのレイヤー: 奥から順に登場 */
.hero-visual2 img,
.sv-hero-visual img {
  animation: rise-in .9s cubic-bezier(.22, .61, .36, 1) both;
}
.hero-visual2 img:nth-child(1), .sv-hero-visual img:nth-child(1) { animation-delay: .2s; }
.hero-visual2 img:nth-child(2), .sv-hero-visual img:nth-child(2) { animation-delay: .35s; }
.hero-visual2 img:nth-child(3), .sv-hero-visual img:nth-child(3) { animation-delay: .5s; }
.hero-visual2 img:nth-child(4), .sv-hero-visual img:nth-child(4) { animation-delay: .65s; }

/* 浮遊モーション(登場後にゆっくり上下) */
.hero-visual2 .hv-phone,
.sv-visual-order .ov-phone,
.sv-visual-shift .shv-phone {
  animation:
    rise-in .9s cubic-bezier(.22, .61, .36, 1) both,
    float-soft 5.5s ease-in-out 1.6s infinite alternate;
}
.hero-visual2 .hv-card,
.sv-visual-order .ov-stats {
  animation:
    rise-in .9s cubic-bezier(.22, .61, .36, 1) .5s both,
    float-soft 6.5s ease-in-out 2s infinite alternate;
}

/* ---------- ホバーリフト ---------- */
.service-card,
.value-card,
.problem-card,
.feature-card,
.price-card,
.flow-step {
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover,
.value-card:hover,
.problem-card:hover,
.feature-card:hover,
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}

/* サービス帯・クロスリンクのアイコンをわずかに弾ませる */
.service-strip a .icon,
.cross-links a .icon {
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.service-strip a:hover .icon,
.cross-links a:hover .icon {
  transform: translateY(-3px) scale(1.08);
}

/* ---------- ヘッダー: スクロールで影 ---------- */
.site-header {
  transition: box-shadow .3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

/* ---------- 動きを抑えたい環境では無効化 ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-copy .hero-badge,
  .hero-copy h1,
  .hero-copy .hero-text,
  .hero-img .hero-cta,
  .sv-hero .inner > :first-child > *,
  .sv-hero .inner > .hero-cta,
  .hero-visual2 img,
  .sv-hero-visual img {
    animation: none;
  }
}
