/* ===== Subpage Common Styles ===== */
/* index.htmlのtop-cashierlike.cssのCSS変数を継承 */

/* ── ユーティリティ ── */
.spSection__inner--narrow { max-width: 800px; }
.spSection__title--left { text-align: left; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid #0b3a6b; }
.spSection__title--plain { text-align: left; margin-bottom: 24px; }
.sp--mb48 { margin-bottom: 48px; }
.sp--mb0  { margin-bottom: 0; }
.spNote   { text-align: center; margin-top: 20px; font-size: 12px; color: #5a616b; }
.spLinkText { display: inline-flex; align-items: center; gap: 4px; color: #0b3a6b; font-weight: 700; font-size: 13px; text-decoration: none; }
.spLinkText::after { content: '→'; }

/* ── 統計バッジグリッド ── */
.spStatGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.spStatCard { text-align: center; padding: 32px 20px; background: #f6f8fb; border-radius: 16px; }
.spStatCard__num { font-size: 40px; font-weight: 700; color: #0b3a6b; }
.spStatCard__num sup { font-size: 20px; font-weight: normal; }
.spStatCard__label { font-size: 13px; color: #5a616b; margin-top: 6px; }

/* ── カテゴリナビ ── */
.spCatNav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.spCatNav__btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 999px; background: #0b3a6b; color: #fff; font-weight: 700; font-size: 13px; text-decoration: none; }

/* ── グリッド系のアイテム数 ── */
.spCardGrid--fill3 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

/* ── インラインリンク ── */
.spInlineLink { color: #0b3a6b; font-weight: 700; text-decoration: none; }

/* ── ページヒーロー ── */
.spHero {
  background: linear-gradient(135deg, #1a5fa8 0%, #2d7fd4 100%);
  color: #fff;
  padding: 56px 0 48px;
}
.spHero__inner {
  width: min(1400px, 96vw);
  margin: 0 auto;
}
.spHero__breadcrumb {
  display: flex;
  gap: 6px;
  font-size: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.9);
}
.spHero__breadcrumb a { color: rgba(255,255,255,.9); text-decoration: none; }
.spHero__breadcrumb a:hover { color: #fff; }
.spHero__breadcrumb span { color: rgba(255,255,255,.7); }
.spHero__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: .05em;
}
.spHero__title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.18);
}
.spHero__sub {
  font-size: 15px;
  color: rgba(255,255,255,.92);
  line-height: 1.7;
}

/* ── セクション共通 ── */
.spSection {
  padding: 64px 0;
}
.spSection--gray {
  background: #f6f8fb;
}
.spSection__inner {
  width: min(1400px, 96vw);
  margin: 0 auto;
}
.spSection__head {
  margin-bottom: 40px;
  text-align: center;
}
.spSection__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.spSection__sub {
  color: #5a616b;
  font-size: 14px;
}

/* ── カードグリッド ── */
.spCardGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.spCardGrid--2col {
  grid-template-columns: repeat(2, 1fr);
}
.spCardGrid--3col {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .spCardGrid--3col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .spCardGrid--3col,
  .spCardGrid--2col { grid-template-columns: 1fr; }
}

.spCard {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.spCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.10);
}
.spCard a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.spCard__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(11,58,107,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.spCard__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.spCard__label {
  font-size: 11px;
  font-weight: 700;
  color: #0b3a6b;
  letter-spacing: .08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.spCard__title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.4;
}
.spCard__text {
  font-size: 13px;
  color: #5a616b;
  line-height: 1.75;
  flex: 1;
}
.spCard__arrow {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  color: #0b3a6b;
}
.spCard__arrow::after {
  content: '→';
}

/* ── フィーチャー行（左右交互） ── */
.spFeature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.spFeature:last-child { margin-bottom: 0; }
/* direction:rtl を使わず order で画像を右側に移動 */
.spFeature--reverse .spFeature__img { order: 2; }
.spFeature__img {
  border-radius: 16px;
  background: #e9eef5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.spFeature__img img {
  max-width: 100%;
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .spFeature,
  .spFeature--reverse {
    grid-template-columns: 1fr;
  }
  .spFeature--reverse .spFeature__img { order: unset; }
  .spFeature__img { padding: 20px; }
  .spFeature__img img { max-height: 220px; }
}
.spFeature__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(11,58,107,.10);
  color: #0b3a6b;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}
.spFeature__title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
  line-height: 1.4;
}
.spFeature__text {
  color: #5a616b;
  line-height: 1.8;
  font-size: 14px;
}
.spFeature__checks {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.spFeature__checks li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: 14px;
  color: #1a1a1a;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.spFeature__checks li::before {
  content: '✓';
  color: #0b3a6b;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── 料金テーブル ── */
.spPriceTable {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.spPriceTable thead th {
  background: #0b3a6b;
  color: #fff;
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}
.spPriceTable tbody tr:nth-child(odd) { background: #f6f8fb; }
.spPriceTable tbody tr:nth-child(even) { background: #fff; }
.spPriceTable tbody td {
  padding: 14px 20px;
  font-size: 13px;
  color: #1a1a1a;
  border-bottom: 1px solid rgba(0,0,0,.06);
  vertical-align: top;
}
.spPriceTable tbody td:first-child {
  font-weight: 700;
  width: 200px;
}

/* ── 料金カード ── */
.spPriceCard {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.spPriceCard--featured {
  border-color: #0b3a6b;
  border-width: 2px;
  box-shadow: 0 10px 32px rgba(11,58,107,.15);
}
.spPriceCard__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: #0b3a6b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 16px;
  align-self: flex-start;
}
.spPriceCard__name {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.spPriceCard__price {
  font-size: 28px;
  font-weight: 700;
  color: #0b3a6b;
  margin-bottom: 4px;
}
.spPriceCard__price span {
  font-size: 14px;
  font-weight: normal;
  color: #5a616b;
}
.spPriceCard__desc {
  font-size: 13px;
  color: #5a616b;
  margin-bottom: 20px;
  line-height: 1.7;
  flex: 1;
}
.spPriceCard__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.spPriceCard__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
  color: #1a1a1a;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.spPriceCard__list li::before {
  content: '✓';
  color: #0b3a6b;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── FAQ ── */
.spFaq {
  max-width: 800px;
  margin: 0 auto;
}
.spFaq__item {
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.spFaq__q {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: #1a1a1a;
  list-style: none;
  transition: color .2s;
}
.spFaq__q:hover { color: #0b3a6b; }
.spFaq__qMark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0b3a6b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}
.spFaq__qArrow {
  margin-left: auto;
  flex-shrink: 0;
  transition: transform .2s;
}
.spFaq__item.open .spFaq__qArrow { transform: rotate(180deg); }
.spFaq__a {
  display: none;
  padding: 0 0 20px 44px;
  font-size: 14px;
  color: #5a616b;
  line-height: 1.8;
}
.spFaq__item.open .spFaq__a { display: block; }
.spFaq__aMark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e9eef5;
  color: #0b3a6b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-right: 10px;
}

/* ── テーブル（会社概要等） ── */
.spInfoTable {
  width: 100%;
  border-collapse: collapse;
}
.spInfoTable tr {
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.spInfoTable th {
  width: 180px;
  padding: 16px 20px;
  background: #f6f8fb;
  font-weight: 700;
  font-size: 13px;
  color: #1a1a1a;
  vertical-align: top;
  text-align: left;
}
.spInfoTable td {
  padding: 16px 20px;
  font-size: 13px;
  color: #1a1a1a;
  line-height: 1.8;
  vertical-align: top;
}
@media (max-width: 600px) {
  .spInfoTable th,
  .spInfoTable td { display: block; width: 100%; }
  .spInfoTable th { background: #f6f8fb; padding-bottom: 4px; }
}

/* ── タイムライン ── */
.spTimeline {
  position: relative;
  padding-left: 32px;
}
.spTimeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(11,58,107,.15);
}
.spTimeline__item {
  position: relative;
  padding: 0 0 28px 20px;
}
.spTimeline__item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0b3a6b;
}
.spTimeline__date {
  font-size: 12px;
  font-weight: 700;
  color: #0b3a6b;
  margin-bottom: 4px;
}
.spTimeline__text {
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.7;
}

/* ── ニュースリスト ── */
.spNewsList {
  list-style: none;
  padding: 0;
  margin: 0;
}
.spNewsList__item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
  align-items: flex-start;
}
@media (max-width: 600px) {
  .spNewsList__item { flex-direction: column; gap: 8px; }
}
.spNewsList__date {
  font-size: 13px;
  color: #5a616b;
  flex-shrink: 0;
  width: 96px;
  padding-top: 2px;
}
.spNewsList__tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
  background: rgba(11,58,107,.10);
  color: #0b3a6b;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.spNewsList__text {
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.7;
}
.spNewsList__text a {
  color: #0b3a6b;
  font-weight: 700;
}

/* ── 導入実績カード ── */
.spCaseCard {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  padding: 24px;
}
.spCaseCard__store {
  font-weight: 700;
  font-size: 15px;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.spCaseCard__qa { margin-bottom: 12px; }
.spCaseCard__q {
  font-size: 13px;
  font-weight: 700;
  color: #0b3a6b;
  margin-bottom: 4px;
}
.spCaseCard__a {
  font-size: 13px;
  color: #5a616b;
  line-height: 1.7;
}

/* ── CTA セクション ── */
.spCta {
  background: linear-gradient(135deg, #1a5fa8 0%, #2d7fd4 100%);
  padding: 64px 0;
  text-align: center;
  color: #fff;
}
.spCta__inner {
  width: min(1400px, 96vw);
  margin: 0 auto;
}
.spCta__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.18);
}
.spCta__sub {
  font-size: 14px;
  color: rgba(255,255,255,.92);
  margin-bottom: 28px;
}
.spCta__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.spCta__btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.spCta__btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); text-decoration: none; }
.spCta__btn--primary {
  background: #fff;
  color: #0b3a6b;
}
.spCta__btn--primary:hover { color: #0b3a6b; }
.spCta__btn--outline {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,.8);
}
.spCta__btn--outline:hover { color: #fff; background: rgba(255,255,255,.25); }
.spCta__btn--dark {
  background: #0b3a6b;
  color: #fff;
}
.spCta__btn--dark:hover { color: #fff; background: #1a5fa8; }

/* ── 製品リンクバッジ ── */
.spProductLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.spProductLinks a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(11,58,107,.2);
  background: rgba(11,58,107,.05);
  color: #0b3a6b;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
}
.spProductLinks a:hover {
  background: rgba(11,58,107,.12);
}
.spProductLinks a::after { content: '→'; }

/* ── PMS連携リスト ── */
.spPmsList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.spPmsList li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  text-decoration: none;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 700;
  transition: border-color .2s, box-shadow .2s;
}
.spPmsList li a:hover {
  border-color: #0b3a6b;
  box-shadow: 0 4px 12px rgba(11,58,107,.12);
}
.spPmsList li a::before {
  content: '🔗';
  flex-shrink: 0;
}

/* ── ニュースリスト ── */
.spNewsList {
  list-style: none;
  padding: 0;
  margin: 0;
}
.spNewsList__item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.spNewsList__item:first-child { border-top: 1px solid rgba(0,0,0,.07); }
.spNewsList__date {
  flex-shrink: 0;
  font-size: 13px;
  color: #0b3a6b;
  font-weight: 700;
  min-width: 90px;
  padding-top: 2px;
}
.spNewsList__body { flex: 1; }
.spNewsList__text { font-size: 14px; color: #1a1a1a; line-height: 1.8; margin: 0; }

@media (max-width: 600px) {
  .spNewsList__item { flex-direction: column; gap: 8px; }
}

/* ── オプションボックスグリッド ── */
.spOptionGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.spOptionBox {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 20px;
}
.spOptionBox__title {
  font-size: 14px;
  font-weight: 700;
  color: #0b3a6b;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e9eef5;
}
.spOptionBox__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: #5a616b;
  line-height: 1.8;
}

/* ── 機器カードグリッド ── */
.spMachineGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.spMachineCard {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.07);
  text-align: center;
}
.spMachineCard__img {
  background: #f6f8fb;
  padding: 20px;
}
.spMachineCard__img img { max-height: 120px; width: auto; object-fit: contain; }
.spMachineCard__name {
  font-size: 13px;
  font-weight: 700;
  color: #0b3a6b;
  padding: 10px 12px 6px;
}
.spMachineCard__text {
  font-size: 12px;
  color: #5a616b;
  padding: 0 12px 16px;
  line-height: 1.7;
}

/* ── ダウンロードリスト ── */
.spDownloadList {
  list-style: none;
  padding: 0;
  margin: 0;
}
.spDownloadGroup {
  margin-bottom: 32px;
}
.spDownloadGroup__title {
  font-size: 15px;
  font-weight: 700;
  color: #0b3a6b;
  padding: 10px 16px;
  background: #f6f8fb;
  border-left: 4px solid #0b3a6b;
  border-radius: 0 8px 8px 0;
  margin-bottom: 12px;
}
.spDownloadGroup__links {
  list-style: none;
  padding: 0 0 0 8px;
  margin: 0;
}
.spDownloadGroup__links li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.spDownloadGroup__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b3a6b;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.spDownloadGroup__links a::before { content: '⬇'; font-size: 12px; }
.spDownloadGroup__links a:hover { text-decoration: underline; }

/* ── フローステップ ── */
.spFlowSteps {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 8px;
}
.spFlowStep {
  flex: 1;
  min-width: 140px;
  text-align: center;
  position: relative;
}
.spFlowStep:not(:last-child)::after {
  content: '▶';
  position: absolute;
  right: -8px;
  top: 40px;
  color: #0b3a6b;
  font-size: 14px;
  z-index: 1;
}
.spFlowStep__img {
  background: #f6f8fb;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
}
.spFlowStep__img img { max-height: 100px; width: auto; object-fit: contain; }
.spFlowStep__label { font-size: 12px; font-weight: 700; color: #1a1a1a; }

/* ── POSスクリーン詳細リスト ── */
.spScreenDetail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.spScreenDetail__img img { width: 100%; border-radius: 10px; border: 1px solid rgba(0,0,0,.08); }
.spScreenDetail__list { list-style: none; padding: 0; margin: 0; }
.spScreenDetail__list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: 13px;
  color: #1a1a1a;
}
.spScreenDetail__list strong { display: block; font-size: 14px; color: #0b3a6b; margin-bottom: 4px; }

@media (max-width: 720px) {
  .spScreenDetail { grid-template-columns: 1fr; }
  .spFlowSteps { flex-direction: column; }
  .spFlowStep:not(:last-child)::after { content: '▼'; right: 50%; top: auto; bottom: -14px; }
}

/* ── ショップ商品カード ── */
.spProductGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.spProductCard {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(11,58,107,.08);
  border: 1px solid rgba(0,0,0,.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.spProductCard__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: #f6f8fb;
  padding: 20px;
  display: block;
}
.spProductCard__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.spProductCard__cat {
  font-size: 11px;
  font-weight: 700;
  color: #1a5fa8;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.spProductCard__name {
  font-size: 19px;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 6px;
}
.spProductCard__maker {
  font-size: 12px;
  color: #5a616b;
  margin-bottom: 10px;
}
.spProductCard__text {
  font-size: 13px;
  color: #4a5260;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 18px;
}
.spProductCard__btn {
  display: block;
  text-align: center;
  background: #1a5fa8;
  color: #fff;
  font-weight: 700;
  padding: 11px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: background .2s, transform .2s;
}
.spProductCard__btn:hover {
  background: #0b3a6b;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

/* ── カテゴリアンカーナビ ── */
.spAnchorNav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.spAnchorNav__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 999px;
  background: #f6f8fb;
  color: #0b3a6b;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border: 2px solid rgba(11,58,107,.15);
  transition: background .2s, border-color .2s;
}
.spAnchorNav__btn:hover {
  background: #0b3a6b;
  color: #fff;
  text-decoration: none;
  border-color: #0b3a6b;
}
.spAnchorNav__btn::after { content: '↓'; font-size: 11px; }

/* ── 動画カードグリッド ── */
.spVideoGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(520px, 1fr));
  gap: 32px;
}
@media (max-width: 600px) {
  .spVideoGrid { grid-template-columns: 1fr; }
}
.spVideoCard {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(11,58,107,.08);
  border: 1px solid rgba(0,0,0,.06);
  overflow: hidden;
}
.spVideoCard__video {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  background: #000;
}
.spVideoCard__body {
  padding: 18px 20px;
}
.spVideoCard__cat {
  font-size: 11px;
  font-weight: 700;
  color: #1a5fa8;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.spVideoCard__title {
  font-size: 16px;
  font-weight: 700;
  color: #1a3a5c;
  margin: 0;
}

/* ── 統計バー ── */
.spCountBar {
  background: #fff;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.spCountGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}
.spCountItem__num {
  font-size: 44px;
  font-weight: 900;
  color: #0b3a6b;
  line-height: 1;
  margin-bottom: 6px;
}
.spCountItem__num sub { font-size: 18px; font-weight: 400; }
.spCountItem__label { font-size: 12px; color: #5a616b; line-height: 1.6; }

/* ── ユースケースカード ── */
.spUsecaseGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.spUsecaseCard {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform .2s, box-shadow .2s;
}
.spUsecaseCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  color: inherit;
  text-decoration: none;
}
.spUsecaseCard__top {
  padding: 32px;
  background: linear-gradient(135deg, #0b3a6b 0%, #1a5fa8 100%);
}
.spUsecaseCard__label {
  font-size: 11px;
  color: rgba(255,255,255,.75);
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.spUsecaseCard__title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.spUsecaseCard__body { padding: 24px 32px; }
.spUsecaseCard__text {
  font-size: 13px;
  color: #5a616b;
  line-height: 1.75;
  margin-bottom: 16px;
}
.spUsecaseCard__arrow {
  color: #0b3a6b;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.spUsecaseCard__arrow::after { content: '→'; }

/* ── 大番号フィーチャーセクション (cashier-pos.com スタイル) ── */
.spBigFeature {
  position: relative;
  padding-top: 72px;
  overflow: hidden;
}
.spBigFeature__decNum {
  position: absolute;
  top: 0;
  left: -4px;
  font-size: clamp(100px, 14vw, 160px);
  font-weight: 900;
  color: rgba(11,58,107,.05);
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  letter-spacing: -0.04em;
  z-index: 0;
}
.spBigFeature--right .spBigFeature__decNum { left: auto; right: -4px; }
.spBigFeature__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.spBigFeature--right .spBigFeature__img { order: 2; }
.spBigFeature__img {
  background: #e9eef5;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.spBigFeature__img img {
  max-width: 100%;
  max-height: 420px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.spBigFeature__numTag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #1a5fa8;
  letter-spacing: .14em;
  margin-bottom: 14px;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(26,95,168,.3);
}
.spBigFeature__title {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  margin-bottom: 20px;
}
.spBigFeature__text {
  font-size: 14px;
  color: #5a616b;
  line-height: 1.85;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .spBigFeature { padding-top: 48px; }
  .spBigFeature__decNum { font-size: 80px; }
  .spBigFeature__grid { grid-template-columns: 1fr; gap: 28px; }
  .spBigFeature--right .spBigFeature__img { order: unset; }
  .spBigFeature__img { padding: 24px; }
  .spBigFeature__img img { max-height: 220px; }
}

/* =====================================================
   レスポンシブ共通 — タブレット (768px以下)
   ===================================================== */
@media (max-width: 768px) {

  /* ── セクション余白縮小 ── */
  .spSection        { padding: 44px 0; }
  .spHero           { padding: 40px 0 36px; }
  .spCta            { padding: 44px 0; }
  .spSection__head  { margin-bottom: 24px; }

  /* ── ヒーロー文字 ── */
  .spHero__title { font-size: clamp(22px, 6vw, 34px); }
  .spHero__sub   { font-size: 14px; }

  /* ── セクションタイトル ── */
  .spSection__title { font-size: clamp(20px, 5vw, 28px); }
  .spCta__title     { font-size: clamp(20px, 5vw, 26px); }

  /* ── カード余白縮小 ── */
  .spCard__body    { padding: 20px; }
  .spPriceCard     { padding: 22px; }
  .spCaseCard      { padding: 20px; }

  /* ── CTA ボタン縦積み ── */
  .spCta__btns {
    flex-direction: column;
    align-items: center;
  }
  .spCta__btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    text-align: center;
  }

  /* ── ユースケースカード ── */
  .spUsecaseCard__top  { padding: 24px; }
  .spUsecaseCard__body { padding: 20px 24px; }

  /* ── FAQ ── */
  .spFaq__q  { font-size: 14px; }
  .spFaq__a  { padding-left: 32px; }

  /* ── タイムライン ── */
  .spTimeline { padding-left: 24px; }

  /* ── ダウンロードリスト ── */
  .spDownloadGroup__links a { font-size: 13px; }
}

/* =====================================================
   レスポンシブ共通 — スマートフォン (480px以下)
   ===================================================== */
@media (max-width: 480px) {

  /* ── セクション余白さらに縮小 ── */
  .spSection        { padding: 32px 0; }
  .spHero           { padding: 32px 0 28px; }
  .spCta            { padding: 32px 0; }
  .spSection__head  { margin-bottom: 18px; }

  /* ── ヒーロー ── */
  .spHero__tag   { font-size: 11px; padding: 3px 10px; }
  .spHero__title { font-size: clamp(20px, 7vw, 28px); }

  /* ── BIG フィーチャー ── */
  .spBigFeature          { padding-top: 36px; }
  .spBigFeature__decNum  { font-size: 60px; }
  .spBigFeature__title   { font-size: clamp(18px, 5.5vw, 24px); }
  .spBigFeature__img     { padding: 16px; }
  .spBigFeature__img img { max-height: 180px; }

  /* ── フィーチャー ── */
  .spFeature__img img { max-height: 180px; }

  /* ── CTA ボタン ── */
  .spCta__btn { font-size: 13px; padding: 13px 20px; }

  /* ── テーブル文字縮小 ── */
  .spPriceTable thead th,
  .spPriceTable tbody td { padding: 10px 12px; font-size: 12px; }
  .spPriceTable tbody td:first-child { width: 130px; }

  .spInfoTable th,
  .spInfoTable td { padding: 12px 14px; font-size: 13px; }

  /* ── 料金カード ── */
  .spPriceCard__price { font-size: 24px; }

  /* ── オプショングリッド ── */
  .spOptionGrid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }

  /* ── 機器グリッド ── */
  .spMachineGrid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }

  /* ── 統計グリッド ── */
  .spStatGrid { grid-template-columns: repeat(2, 1fr); }

  /* ── PMS リスト ── */
  .spPmsList { grid-template-columns: 1fr; }

  /* ── ニュースリスト ── */
  .spNewsList__item { flex-direction: column; gap: 6px; }
  .spNewsList__date { min-width: auto; }

  /* ── ケースカード ── */
  .spCaseCard { padding: 16px; }

  /* ── フローステップ ── */
  .spFlowStep { min-width: 80px; }
  .spFlowStep__img { padding: 8px; }

  /* ── カウントバー ── */
  .spCountGrid { grid-template-columns: repeat(2, 1fr); }

  /* ── ビデオカード ── */
  .spVideoCard__body { padding: 14px 16px; }
}

/* =====================================================
   テーブルスクロール対応 (overflow-x)
   ===================================================== */
.spPriceTable-wrap {
  overflow-x: auto;
  border-radius: 12px;
}
.spPriceTable-wrap .spPriceTable {
  min-width: 500px;
}
