/* ============================================================
   service-customized.html 固有CSS
   色は必ず style.css の --yg-*/--sb-*/--text-* トークンを var() で使用
============================================================ */

/* ---------- FV ---------- */
.hero-simple {
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 56px;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--yg-50) 100%);
}
.hero-simple__inner {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 600px);
  gap: 40px; align-items: center;
}
.hero-simple__fig img { width: min(100%, 600px); }
.hero-simple .sec-title { margin-top: 14px; font-size: clamp(26px, 3.4vw, 38px); }
.hero-simple .sec-lead { font-size: 15.5px; }
@media (max-width: 900px) {
  .hero-simple__inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-simple__fig { order: -1; }
  .hero-simple__fig img { margin-inline: auto; width: min(100%, 420px); }
}

/* ---------- すべて対面である理由 / サンプルデータは使わない ---------- */
.emphasis-box {
  background: var(--sb-50); border-left: 4px solid var(--sb-700);
  border-radius: 0 10px 10px 0; padding: 22px 26px;
}
.emphasis-box__title { font-weight: 800; font-size: 16px; color: var(--text-strong); }
.emphasis-box__title .em-green { display: inline; }
.emphasis-box p { margin-top: 8px; font-size: 14.5px; color: var(--text-mid); line-height: 1.85; }
.emphasis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
@media (max-width: 760px) { .emphasis-grid { grid-template-columns: 1fr; } }

/* ---------- 進め方 ---------- */
.howto { background: var(--bg-tint-green); }
.howto__flex { display: grid; grid-template-columns: minmax(0, 280px) minmax(0, 1fr); gap: 44px; align-items: start; margin-top: 8px; }
.howto__fig img { width: 100%; }
.howto__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 900px) {
  .howto__flex { grid-template-columns: 1fr; gap: 24px; }
  .howto__fig img { width: min(100%, 260px); margin-inline: auto; display: block; }
  .howto__steps { grid-template-columns: 1fr 1fr; }
}

/* ---------- 部門別の業務例 ---------- */
.dept-cols--four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .dept-cols--four { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .dept-cols--four { grid-template-columns: 1fr; } }

/* ---------- 納品物・料金 ---------- */
.deliver-price { background: var(--bg-tint-blue); }
.deliver-price__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 36px; align-items: start; }
.deliver-price__col h3 { font-size: 16px; font-weight: 800; margin-bottom: 14px; }
.price-mini { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 22px 24px; }
.price-mini__row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; font-size: 14.5px; }
.price-mini__row + .price-mini__row { border-top: 1px solid var(--line-soft); }
.price-mini__row .num { font-weight: 800; color: var(--yg-700); font-size: 16px; }
.price-mini__note { margin-top: 14px; font-size: 13px; color: var(--text-weak); }
@media (max-width: 760px) { .deliver-price__grid { grid-template-columns: 1fr; gap: 28px; } }
