/* ========================================
   セクション: S06_サービス概要
   Figma node: 1038:4820 / 393×1842
   ======================================== */

.service {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: #F2F5FB;
}

/* ── 見出し ── */
.service-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 30px 0;
  gap: 10px;
  background: var(--color-navy);
}

.service-heading-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  height: 24px;
  background: #F2F5FB;
  border-radius: 999px;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-navy);
}

.service-heading-title {
  font-family: var(--font-jp);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
}

.service-heading-title .sm {
  font-size: 24px;
}

.service-heading-yellow {
  color: #ffffff;
}

/* ── コンテンツ ── */
.service-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 40px 15px;
  gap: 40px;
}

/* ── 比較表（webp画像） ── */
.service-compare-scroll {
  width: 100%;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.service-compare-scroll::-webkit-scrollbar {
  display: none;
}

.service-compare-img {
  width: 450px;
  min-width: 450px;
  height: auto;
  display: block;
}

/* ── お約束3ヶ条（webp画像） ── */
.service-promise-img {
  width: 100%;
  height: auto;
  display: block;
}


