/* ===== 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: 14px; color: #4a5060; }
.spLinkText { display: inline-flex; align-items: center; gap: 4px; color: #0b3a6b; font-weight: 700; font-size: 14px; text-decoration: none; }
.spLinkText::after { content: '→'; }

/* ── 統計バッジグリッド ── */
.spStatGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
@media (max-width: 600px) {
  .spStatGrid { grid-template-columns: 1fr; }
}
.spStatCard { text-align: center; padding: 32px 20px; background: #f6f8fb; border-radius: 16px; }
.spStatCard__num { font-size: 40px; font-weight: 700; color: #0b3a6b; white-space: nowrap; }
.spStatCard__num sup { font-size: 20px; font-weight: normal; }
.spStatCard__label { font-size: 14px; color: #4a5060; 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: 14px; 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: 13px;
  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: 13px;
  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-align: left;           /* common.css の h2 text-align:center を打ち消す */
  letter-spacing: normal;      /* 同じく common.css の letter-spacing:3px を打ち消す */
  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__img {
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.spCard__img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.spCard__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.spCard__label {
  font-size: 13px;
  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: 14px;
  color: #4a5060;
  line-height: 1.75;
  flex: 1;
}
.spCard__arrow {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  color: #0b3a6b;
}
.spCard__arrow::after {
  content: '→';
}

/* ── フィーチャー行（左右交互） ── */
.spFeature {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 56px;
  align-items: start;
  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: 480px;
  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: 6px 16px;
  border-radius: 999px;
  background: rgba(11,58,107,.10);
  color: #0b3a6b;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}
.spFeature__title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 18px;
  line-height: 1.4;
}
.spFeature__text {
  color: #5a616b;
  line-height: 1.9;
  font-size: 16px;
}
.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: 13px;
  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: 13px;
  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: '\1F517';
  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: 20px;
}
.spOptionBox {
  background: #fff;
  border: 1px solid rgba(11,58,107,.15);
  border-top: 3px solid #0b3a6b;
  border-radius: 4px 4px 12px 12px;
  padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(11,58,107,.08);
}
.spOptionBox__title {
  font-size: 15px;
  font-weight: 900;
  color: #0b3a6b;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #0b3a6b;
}
.spOptionBox__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #3a3f4a;
  line-height: 2;
}
.spOptionBox__list li {
  padding-left: 16px;
  position: relative;
}
.spOptionBox__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #0b3a6b;
  border-radius: 50%;
}

/* ── 機器カードグリッド ── */
.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: 180px;
  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: 10px;
  padding: 10px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.spFlowStep__img img {
  width: 100%;
  max-width: 100%;
  max-height: 320px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.spFlowStep__label { font-size: 14px; 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: 14px;
  color: #1a1a1a;
}
.spScreenDetail__list strong { display: block; font-size: 15px; color: #0b3a6b; margin-bottom: 4px; }

@media (max-width: 720px) {
  .spScreenDetail { grid-template-columns: 1fr; }
  .spFlowSteps {
    flex-direction: column;
    gap: 36px;            /* ステップ同士に余白を確保し、矢印と次の数字が重ならないように */
  }
  .spFlowStep:not(:last-child)::after {
    content: '▼';
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: -28px;        /* ステップ間ギャップ(36px)の中央付近に配置 */
    font-size: 14px;
    line-height: 1;
  }
}

/* ── ショップ商品カード ── */
.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: 13px;
  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: 14px; color: #4a5060; 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: 13px;
  color: rgba(255,255,255,.85);
  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__grid > :only-child {
  grid-column: 1 / -1;
}

/* =====================================================================
   Patch (2026-04-22): support-faq.html 用スタイル
   ===================================================================== */
/* 検索ボックス */
.spSfaqSearch {
  background: #fff;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 6px 18px rgba(11, 58, 107, 0.08);
  border: 1px solid rgba(11, 58, 107, 0.08);
}
.spSfaqSearch__label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #0057B8;
  margin-bottom: 10px;
}
.spSfaqSearch__box {
  position: relative;
  display: flex;
  align-items: center;
}
.spSfaqSearch__box input {
  flex: 1;
  width: 100%;
  padding: 14px 42px 14px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid #d8dde6;
  border-radius: 10px;
  background: #f7f9fc;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.spSfaqSearch__box input:focus {
  outline: none;
  border-color: #0057B8;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.14);
}
.spSfaqSearch__clear {
  position: absolute;
  right: 10px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #e4e8f0;
  color: #5a616b;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
  transition: background .15s;
}
.spSfaqSearch__clear:hover { background: #d0d7de; color: #1a1a1a; }
.spSfaqSearch__note {
  margin: 10px 0 0;
  font-size: 12.5px;
  color: #5a616b;
}

/* 12カテゴリのピルナビ */
.spFaqCats--12 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}
.spFaqCats--12 .spFaqCat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(11, 58, 107, 0.12);
  border-radius: 12px;
  color: #0a1e46;
  text-decoration: none;
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1.4;
  text-align: center;
  transition: transform .15s, border-color .15s, box-shadow .15s, background .15s;
}
.spFaqCats--12 .spFaqCat::before { content: none; }
.spFaqCats--12 .spFaqCat:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 87, 184, 0.45);
  box-shadow: 0 6px 16px rgba(11, 58, 107, 0.1);
  background: #f3f7fc;
  color: #0057B8;
}

/* 検索ヒットなし */
.spSfaqEmpty {
  padding: 60px 20px;
  text-align: center;
  color: #5a616b;
  font-size: 14px;
  background: #f7f9fc;
  border-radius: 14px;
  border: 1px dashed #c8d0dd;
}
.spSfaqEmpty p { margin: 0; }

/* カテゴリセクション間の余白 */
#sfaq01 ~ .spFaqGroup,
.spFaqGroup + .spFaqGroup {
  margin-top: 44px;
}

@media (max-width: 560px) {
  .spSfaqSearch { padding: 18px 16px; }
  .spSfaqSearch__box input { font-size: 14px; padding: 12px 38px 12px 14px; }
  .spFaqCats--12 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .spFaqCats--12 .spFaqCat { font-size: 12.5px; padding: 12px 10px; }
}

/* セルフレジ 仕様セクション: スマホでもテーブルを表示する（共通CSSが display:none なので上書き） */
.spSelfSpecSection .spPriceTable--responsive {
  display: block !important;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* セルフレジ 仕様セクション: 左側ラベル列の幅を揃えて、表間で左端を統一 */
.spSelfSpecSection .spPriceTable--responsive__table th[scope="row"].spPriceTable--responsive__planName {
  width: 280px;
  min-width: 200px;
}
@media (max-width: 767px) {
  .spSelfSpecSection .spPriceTable--responsive__table th[scope="row"].spPriceTable--responsive__planName {
    width: 40%;
    min-width: 120px;
  }
  .spSelfSpecSection .spPriceTable--responsive__table thead th,
  .spSelfSpecSection .spPriceTable--responsive__table tbody th,
  .spSelfSpecSection .spPriceTable--responsive__table tbody td {
    padding: 12px 12px !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
    white-space: normal !important;
  }
}

/* セルフレジ 仕様表: CP-B257 / CP-B4500 の列に縦の区切り線を入れる */
.spSpecTable .spPriceTable--responsive__table thead th + th,
.spSpecTable .spPriceTable--responsive__table tbody td + td {
  border-left: 1px solid rgba(11, 58, 107, 0.14);
}
.spSpecTable .spPriceTable--responsive__table thead th + th {
  border-left: 1px solid rgba(255, 255, 255, 0.35); /* ヘッダー行は白帯ベースなので明るめ */
}
/* 列ヘッダーの中央寄せで見分けやすく */
.spSpecTable .spPriceTable--responsive__table thead th:not(:first-child) {
  text-align: center;
}
.spSpecTable .spPriceTable--responsive__table tbody td {
  text-align: center;
}
.spSpecTable .spPriceTable--responsive__table tbody td[colspan="2"] {
  text-align: left;
  border-left: 0;
}

/* セルフレジ お会計の流れ ステップ4: 現金 + カードの2枚並びに対応 */
.spFlowStep__img--duo {
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  padding: 10px !important;
}
.spFlowStep__img--duo img {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 150px;
  height: auto;
  object-fit: contain;
  margin: 0 auto !important;
}

/* セルフレジ ラインナップ用の商品写真枠 (縦長写真を正しい比率で表示) */
.spLineupImg {
  width: 100%;
  aspect-ratio: 2 / 3;          /* 元画像 1024×1536 と同じ 2:3 縦長 */
  max-height: 520px;
  margin: 0 auto 8px;
  background: #f6f8fb;
  border-radius: 14px;
  border: 1px solid rgba(11, 58, 107, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.spLineupImg img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  margin: 0;
  border: 0;
}
@media (max-width: 640px) {
  .spLineupImg { max-height: 440px; }
}

/* 画像なし版: 文章を読みやすい幅に整え、チェック項目を2列に */
.spBigFeature--noImg .spBigFeature__grid { gap: 0; }
.spBigFeature--noImg .spBigFeature__grid > div {
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}
.spBigFeature--noImg .spBigFeature__text {
  max-width: 760px;
}
.spBigFeature--noImg .spFeature__checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin-top: 18px;
}
@media (max-width: 767px) {
  .spBigFeature--noImg .spFeature__checks {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.spBigFeature--right .spBigFeature__img { order: 2; }
.spBigFeature__img {
  background: #e9eef5;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.spBigFeature__img img {
  max-width: 100%;
  max-height: 260px;
  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: 20px; }
  .spBigFeature__img img { max-height: 180px; }
}

/* =====================================================
   レスポンシブ共通 — タブレット (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; }

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

  /* ── ヒーロー ── */
  .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: 14px; }
  .spBigFeature__img img { max-height: 150px; }

  /* ── フィーチャー ── */
  .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)); }

  /* ── 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;
}

/* =====================================================
   販売代理店ロゴ
   ===================================================== */
.spAgentLogo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  margin-bottom: 12px;
  background: #f6f8fb;
  border-radius: 10px;
  padding: 12px;
}
.spAgentLogo img {
  max-height: 56px;
  max-width: 100%;
  object-fit: contain;
}
.spAgentLogo__text {
  font-size: 18px;
  font-weight: 900;
  color: #0b3a6b;
  letter-spacing: .05em;
}

/* =====================================================
   ソリューションリスト（縦型カード）
   ===================================================== */
.spSolutionList {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
}
.spSolutionList__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(11,58,107,.10);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(11,58,107,.06);
}
.spSolutionList__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, #0b3a6b 0%, #1a5fa8 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  border-radius: 50%;
}
.spSolutionList__title {
  font-size: 17px;
  font-weight: 700;
  color: #0b3a6b;
  margin-bottom: 8px;
  line-height: 1.4;
}
.spSolutionList__text {
  font-size: 14px;
  color: #3a3f4a;
  line-height: 1.75;
}
@media screen and (max-width: 640px) {
  .spSolutionList__item { padding: 20px 16px; gap: 14px; }
  .spSolutionList__num { width: 36px; height: 36px; min-width: 36px; font-size: 16px; }
  .spSolutionList__title { font-size: 15px; }
}

/* =====================================================
   導入の流れ（縦型タイムライン）
   ===================================================== */
.spFlowVertical {
  position: relative;
  padding-left: 48px;
  max-width: 750px;
  margin: 0 auto;
}
.spFlowVertical::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #0b3a6b 0%, #2d7fd4 100%);
  border-radius: 2px;
}
.spFlowVertical__item {
  position: relative;
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
}
.spFlowVertical__item:last-child { padding-bottom: 0; }
.spFlowVertical__num {
  position: absolute;
  left: -48px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0b3a6b 0%, #1a5fa8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(11,58,107,.25);
}
.spFlowVertical__num span {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}
.spFlowVertical__body {
  background: #fff;
  border: 1px solid rgba(11,58,107,.10);
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: 0 2px 12px rgba(11,58,107,.06);
  flex: 1;
}
.spFlowVertical__title {
  font-size: 18px;
  font-weight: 700;
  color: #0b3a6b;
  margin-bottom: 8px;
}
.spFlowVertical__text {
  font-size: 14px;
  color: #3a3f4a;
  line-height: 1.75;
}
@media screen and (max-width: 640px) {
  .spFlowVertical { padding-left: 40px; }
  .spFlowVertical::before { left: 17px; }
  .spFlowVertical__num { left: -40px; width: 36px; height: 36px; }
  .spFlowVertical__num span { font-size: 16px; }
  .spFlowVertical__body { padding: 18px 20px; }
  .spFlowVertical__title { font-size: 16px; }
}

/* =====================================================
   実績カード（販売実績ページ）
   ===================================================== */
.spAchieveGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.spAchieveCard {
  text-align: center;
  padding: 40px 24px 36px;
  background: #fff;
  border: 2px solid #0b3a6b;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(11,58,107,.10);
}
.spAchieveCard__num {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .02em;
  color: #0b3a6b;
}
.spAchieveCard__num span {
  font-size: 24px;
  font-weight: 700;
}
.spAchieveCard__label {
  font-size: 15px;
  margin-top: 12px;
  color: #3a3f4a;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .spAchieveGrid { grid-template-columns: 1fr; gap: 16px; }
  .spAchieveCard { padding: 32px 20px 28px; }
  .spAchieveCard__num { font-size: 40px; }
}

/* =====================================================
   OVERVIEWカード（アイコン付き）
   ===================================================== */
.spOverviewGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.spOverviewCard {
  text-align: center;
  padding: 40px 24px 36px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(11,58,107,.10);
  box-shadow: 0 4px 24px rgba(11,58,107,.08);
  transition: transform .2s, box-shadow .2s;
}
.spOverviewCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(11,58,107,.14);
}
.spOverviewCard__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a5fa8 0%, #0b3a6b 100%);
  margin-bottom: 20px;
}
.spOverviewCard__title {
  font-size: 28px;
  font-weight: 900;
  color: #0b3a6b;
  margin-bottom: 10px;
  letter-spacing: .02em;
}
.spOverviewCard__text {
  font-size: 15px;
  color: #4a5060;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .spOverviewGrid { grid-template-columns: 1fr; gap: 16px; }
  .spOverviewCard { padding: 32px 20px 28px; }
  .spOverviewCard__title { font-size: 24px; }
}

/* =====================================================
   製品紹介 — 背景画像付きボックス
   ===================================================== */
.spProductBoxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px 0;
}
.spProductBox {
  width: 48%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.spProductBox:hover { opacity: .85; }
.spProductBox a { display: block; text-decoration: none; }
.spProductBox::before {
  content: "";
  display: block;
  padding-top: 55%;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}
.spProductBox::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  border-radius: 12px;
  pointer-events: none;
}
.spProductBox__titleWrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  z-index: 1;
}
.spProductBox__titleWrap h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.spProductBox__titleWrap p {
  position: relative;
  padding-top: 14px;
  margin-top: 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.spProductBox__titleWrap p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  border-top: 3px solid #fff;
}

/* 背景画像 */
.spProductBox:nth-child(1)::before { background-image: url("../img/pro_001.png"); }
.spProductBox:nth-child(2)::before { background-image: url("../img/pro_002.png"); }
.spProductBox:nth-child(3)::before { background-image: url("../img/pro_003.png"); }
.spProductBox:nth-child(4)::before { background-image: url("../img/pro_004.png"); }
.spProductBox:nth-child(5)::before { background-image: url("../img/pro_005.png"); }
.spProductBox:nth-child(6)::before { background-image: url("../img/pro_006.png"); }

@media screen and (max-width: 768px) {
  .spProductBoxes { flex-direction: column; align-items: center; }
  .spProductBox { width: 85%; }
  .spProductBox__titleWrap h3 { font-size: 20px; }
  .spProductBox__titleWrap p { font-size: 14px; }
}
@media screen and (max-width: 425px) {
  .spProductBox { width: 100%; }
  .spProductBox__titleWrap h3 { font-size: 18px; }
  .spProductBox__titleWrap p { font-size: 13px; }
}

/* =====================================================
 * Phase 2B — mobareji.html mobile-first refinement
 * Added: 2026-04-20
 * Scope: Hero drama, stat emphasis, point sections, feature
 *        cards, comparison card layout, flow timeline,
 *        oversized CTA. Reuses existing class names—no
 *        rename/removal of legacy rules.
 * ===================================================== */

/* ── Hero: 印象的タイポと奥行き演出 ── */
.spHero--mbrj {
  position: relative;
  background:
    radial-gradient(120% 70% at 85% 10%, rgba(232,169,58,.22) 0%, rgba(232,169,58,0) 55%),
    radial-gradient(100% 80% at 10% 110%, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(135deg, #0b3a6b 0%, #1a5fa8 55%, #2d7fd4 100%);
  overflow: hidden;
  isolation: isolate;
}
.spHero--mbrj::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 35%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.spHero--mbrj .spHero__inner { position: relative; z-index: 1; }

/* ── Hero: breadcrumb tap-friendly ── */
.spHero--mbrj .spHero__breadcrumb {
  font-size: 12px;
  gap: 4px;
  opacity: .92;
}
.spHero--mbrj .spHero__breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 2px;
}

/* ── Hero tag: バッジ化 ── */
.spHero--mbrj .spHero__tag {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  background: rgba(232,169,58,.92);
  color: #0b3a6b;
  padding: 5px 14px;
  font-size: 12px;
  letter-spacing: .18em;
  box-shadow: 0 4px 16px rgba(232,169,58,.35);
}

/* ── Hero title: 超大型（モバイルで目に飛び込む） ── */
.spHero--mbrj .spHero__title {
  font-family: var(--font-display, "Zen Kaku Gothic New", sans-serif);
  font-size: clamp(34px, 10.5vw, 56px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.01em;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,.22);
}

.spHero--mbrj .spHero__sub {
  font-size: 14px;
  line-height: 1.8;
  max-width: 42ch;
}

/* ── 価格: 超大型数字スタットカード ── */
.spStatGrid--hero {
  gap: 14px;
  margin-bottom: 32px;
}
.spStatCard--hero {
  position: relative;
  padding: 28px 22px;
  background: #fff;
  border: 1px solid rgba(11,58,107,.10);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(11,58,107,.08);
  text-align: left;
  overflow: hidden;
}
.spStatCard--hero::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #e8a93a 0%, #0b3a6b 100%);
}
.spStatCard--hero .spStatCard__num {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: clamp(44px, 14vw, 68px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.035em;
  color: #0b3a6b;
  white-space: nowrap;
  display: block;
  background: linear-gradient(135deg, #0b3a6b 0%, #2d7fd4 70%, #e8a93a 130%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.spStatCard--hero .spStatCard__num sup {
  font-size: .42em;
  font-weight: 700;
  vertical-align: super;
  -webkit-text-fill-color: #0b3a6b;
}
.spStatCard--hero .spStatCard__label {
  font-size: 13px;
  color: #1a1a1a;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.spStatCard--hero .spStatCard__label::before {
  content: "";
  width: 18px;
  height: 2px;
  background: #e8a93a;
  flex-shrink: 0;
}
/* 日本語の「台数無制限」「最短2週間」は文字で長くなるので縮小変種 */
.spStatCard--hero.spStatCard--textNum .spStatCard__num {
  font-family: var(--font-display, "Zen Kaku Gothic New", sans-serif);
  font-size: clamp(30px, 9vw, 46px);
  letter-spacing: -.01em;
}

/* ── POINT: 独立セクション感を強める ── */
.spBigFeature--mbrj {
  position: relative;
  padding: 40px 22px 32px;
  background: #fff;
  border: 1px solid rgba(11,58,107,.10);
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(11,58,107,.08);
  margin: 8px 0;
  overflow: visible;
}
.spSection--gray .spBigFeature--mbrj {
  background: #fff;
}
.spBigFeature--mbrj .spBigFeature__decNum {
  top: -14px;
  left: 16px;
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: clamp(72px, 22vw, 120px);
  font-weight: 900;
  color: rgba(11,58,107,.09);
  letter-spacing: -.05em;
  z-index: 0;
}
.spBigFeature--mbrj.spBigFeature--right .spBigFeature__decNum {
  left: auto;
  right: 16px;
}
.spBigFeature--mbrj .spBigFeature__numTag {
  position: relative;
  font-family: var(--font-en, "Inter Tight", sans-serif);
  background: linear-gradient(135deg, #0b3a6b, #1a5fa8);
  color: #fff;
  border: none;
  padding: 6px 16px;
  font-size: 11px;
  letter-spacing: .2em;
  box-shadow: 0 4px 12px rgba(11,58,107,.25);
}
.spBigFeature--mbrj .spBigFeature__title {
  font-size: clamp(20px, 5.6vw, 26px);
  line-height: 1.35;
  margin-bottom: 14px;
  color: #0b3a6b;
}
.spBigFeature--mbrj .spBigFeature__text {
  font-size: 14px;
  line-height: 1.85;
}
.spBigFeature--mbrj .spFeature__checks {
  margin-top: 18px;
  padding: 16px;
  background: #f6f8fb;
  border-radius: 12px;
}
.spBigFeature--mbrj .spFeature__checks li {
  border-bottom: 1px solid rgba(11,58,107,.10);
  padding: 10px 0;
  font-size: 13px;
  line-height: 1.6;
  gap: 10px;
}
.spBigFeature--mbrj .spFeature__checks li:last-child {
  border-bottom: none;
}
.spBigFeature--mbrj .spFeature__checks li::before {
  width: 18px;
  height: 18px;
  background: #0b3a6b;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 1px;
}

/* ── FEATURES グリッド: モバイル1列でアイコン付きに ── */
.spOptionGrid--mbrj {
  grid-template-columns: 1fr;
  gap: 14px;
}
.spOptionBox--mbrj {
  position: relative;
  padding: 22px 20px 22px 64px;
  border-top: none;
  border-left: 4px solid #0b3a6b;
  border-radius: 4px 14px 14px 4px;
  background: linear-gradient(135deg, #fff 0%, #f6f8fb 100%);
  box-shadow: 0 4px 14px rgba(11,58,107,.07);
}
.spOptionBox--mbrj::before {
  content: attr(data-emoji);
  position: absolute;
  top: 18px;
  left: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: linear-gradient(135deg, #0b3a6b, #2d7fd4);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(11,58,107,.25);
}
.spOptionBox--mbrj .spOptionBox__title {
  font-size: 15px;
  color: #0b3a6b;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(11,58,107,.15);
}
.spOptionBox--mbrj .spOptionBox__list {
  font-size: 13px;
  line-height: 1.85;
  color: #3a3f4a;
}
@media (min-width: 601px) {
  .spOptionGrid--mbrj { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .spOptionGrid--mbrj { grid-template-columns: repeat(3, 1fr); }
}

/* ── 比較表: モバイルでカード型化 ── */
.spPriceTable-wrap--mbrj {
  overflow: visible;
  border-radius: 0;
}
@media (max-width: 640px) {
  .spPriceTable-wrap--mbrj .spPriceTable { min-width: 0; }
  .spPriceTable-wrap--mbrj .spPriceTable,
  .spPriceTable-wrap--mbrj .spPriceTable thead,
  .spPriceTable-wrap--mbrj .spPriceTable tbody,
  .spPriceTable-wrap--mbrj .spPriceTable tr,
  .spPriceTable-wrap--mbrj .spPriceTable th,
  .spPriceTable-wrap--mbrj .spPriceTable td {
    display: block;
    width: auto;
    box-sizing: border-box;
  }
  .spPriceTable-wrap--mbrj .spPriceTable { box-shadow: none; }
  .spPriceTable-wrap--mbrj .spPriceTable thead { display: none; }
  .spPriceTable-wrap--mbrj .spPriceTable tbody tr {
    margin-bottom: 16px;
    background: #fff !important;
    border: 1px solid rgba(11,58,107,.10);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(11,58,107,.07);
  }
  .spPriceTable-wrap--mbrj .spPriceTable tbody td {
    padding: 14px 18px;
    font-size: 13px;
    border: none;
    position: relative;
  }
  .spPriceTable-wrap--mbrj .spPriceTable tbody td:first-child {
    background: linear-gradient(135deg, #0b3a6b, #1a5fa8);
    color: #fff;
    width: auto;
    padding: 12px 18px;
    font-size: 13px;
    letter-spacing: .02em;
  }
  .spPriceTable-wrap--mbrj .spPriceTable tbody td:first-child strong {
    color: #fff;
  }
  .spPriceTable-wrap--mbrj .spPriceTable tbody td:nth-child(2),
  .spPriceTable-wrap--mbrj .spPriceTable tbody td:nth-child(3) {
    padding-left: 104px;
    min-height: 56px;
    display: flex;
    align-items: center;
    font-size: 13px;
  }
  .spPriceTable-wrap--mbrj .spPriceTable tbody td:nth-child(2)::before,
  .spPriceTable-wrap--mbrj .spPriceTable tbody td:nth-child(3)::before {
    content: "モバレジ";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    padding: 4px 10px;
    border-radius: 999px;
    background: #0b3a6b;
    color: #fff;
  }
  .spPriceTable-wrap--mbrj .spPriceTable tbody td:nth-child(3)::before {
    content: "他社";
    background: #9aa3b0;
  }
  .spPriceTable-wrap--mbrj .spPriceTable tbody td:nth-child(2) {
    background: #eef5ff;
    color: #0b3a6b !important;
    font-weight: 900 !important;
    border-bottom: 1px dashed rgba(11,58,107,.18);
  }
  .spPriceTable-wrap--mbrj .spPriceTable tbody td:nth-child(3) {
    background: #fff;
    color: #5a616b;
  }
  .spPriceTable-wrap--mbrj .spPriceTable tbody tr:nth-child(odd),
  .spPriceTable-wrap--mbrj .spPriceTable tbody tr:nth-child(even) {
    background: #fff !important;
  }
}

/* ── フロー: タイムラインを強化 ── */
.spFlowVertical--mbrj .spFlowVertical__num {
  background: linear-gradient(135deg, #0b3a6b 0%, #2d7fd4 100%);
  box-shadow: 0 6px 18px rgba(11,58,107,.30), 0 0 0 4px #fff, 0 0 0 5px rgba(11,58,107,.12);
}
.spFlowVertical--mbrj .spFlowVertical__num span {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 22px;
  letter-spacing: -.02em;
}
.spFlowVertical--mbrj .spFlowVertical__body {
  position: relative;
  border-left: 3px solid rgba(11,58,107,.12);
  border-radius: 6px 14px 14px 6px;
  padding: 20px 22px;
  transition: transform .2s, box-shadow .2s;
}
.spFlowVertical--mbrj .spFlowVertical__body::before {
  content: "STEP";
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 9px;
  letter-spacing: .2em;
  color: rgba(11,58,107,.4);
  font-weight: 700;
}
.spFlowVertical--mbrj .spFlowVertical__title {
  font-size: 16px;
  margin-bottom: 6px;
  padding-right: 40px;
}

/* ── CTA: フルワイド大型ボタン ── */
.spCta--mbrj {
  background:
    radial-gradient(120% 70% at 90% 10%, rgba(232,169,58,.25) 0%, rgba(232,169,58,0) 55%),
    linear-gradient(135deg, #0b3a6b 0%, #1a5fa8 55%, #2d7fd4 100%);
}
.spCta--mbrj .spCta__title {
  font-family: var(--font-display, "Zen Kaku Gothic New", sans-serif);
  font-size: clamp(22px, 6.5vw, 30px);
  font-weight: 900;
  letter-spacing: -.005em;
  margin-bottom: 10px;
}
.spCta--mbrj .spCta__sub { margin-bottom: 24px; }
.spCta--mbrj .spCta__btn {
  min-height: 56px;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 14px;
  letter-spacing: .02em;
  gap: 10px;
}
.spCta--mbrj .spCta__btn--primary {
  background: #fff;
  color: #0b3a6b;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.spCta--mbrj .spCta__btn--primary:hover { background: #fffbea; }
.spCta--mbrj .spCta__btn--outline {
  border-width: 2px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.spCta--mbrj .spCta__btn::after {
  content: "→";
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-weight: 700;
  transition: transform .2s;
}
.spCta--mbrj .spCta__btn:hover::after { transform: translateX(3px); }

@media (max-width: 600px) {
  .spCta--mbrj .spCta__btns {
    flex-direction: column;
    gap: 10px;
  }
  .spCta--mbrj .spCta__btn {
    width: 100%;
    max-width: none;
    justify-content: center;
  }
}

/* ── セクションタイトル装飾 (モバレジ専用, 共通クラスと共存) ── */
.spSection__tag--accent {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 87, 184, 0.12) 0%, rgba(0, 87, 184, 0.05) 100%);
  color: #0057B8;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.16em;
}

/* ── タブレット以上: 3列グリッドで文字が溢れないように ── */
@media (min-width: 601px) and (max-width: 900px) {
  .spStatCard--hero .spStatCard__num { font-size: clamp(28px, 5vw, 40px); letter-spacing: -.02em; }
  .spStatCard--hero.spStatCard--textNum .spStatCard__num { font-size: clamp(22px, 3.8vw, 32px); }
  .spStatCard--hero { padding: 22px 18px; }
  .spStatCard--hero .spStatCard__label { font-size: 12px; }
}
@media (min-width: 901px) {
  .spStatCard--hero .spStatCard__num { font-size: clamp(42px, 4.2vw, 60px); }
  .spStatCard--hero.spStatCard--textNum .spStatCard__num { font-size: clamp(30px, 3.2vw, 44px); }
}

/* ── 390px基準の最終調整 ── */
@media (max-width: 400px) {
  .spHero--mbrj { padding: 44px 0 40px; }
  .spHero--mbrj .spHero__title { font-size: clamp(30px, 10vw, 42px); }
  .spStatCard--hero { padding: 22px 18px; }
  .spStatCard--hero .spStatCard__num { font-size: clamp(40px, 13.5vw, 60px); }
  .spStatCard--hero.spStatCard--textNum .spStatCard__num { font-size: clamp(26px, 8.2vw, 36px); }
  .spBigFeature--mbrj { padding: 34px 18px 28px; }
  .spBigFeature--mbrj .spBigFeature__decNum { font-size: 84px; top: -10px; left: 10px; }
  .spOptionBox--mbrj { padding: 20px 16px 20px 60px; }
  .spOptionBox--mbrj::before { top: 16px; left: 14px; }
}

/* ── 共通: 子要素間の縦余白を安全に ── */
.spBigFeature--mbrj + .spBigFeature--mbrj { margin-top: 24px; }

/* end Phase 2B — mobareji */

/* ============================================================
   Phase 2C — pricelist.html
   画像依存からHTML/CSS料金表へ置き換え、モバイルファーストで再設計
   既存の .spPriceCard / .spHero / .spSection / .spCta を汚さないよう
   すべてモディファイア (--price / --option / --mbrj 等) で拡張
   ============================================================ */

/* ── Hero: 料金表専用の背景と装飾 ── */
.spHero--price {
  background:
    radial-gradient(100% 60% at 85% 15%, rgba(232,169,58,.28) 0%, rgba(232,169,58,0) 55%),
    radial-gradient(70% 60% at 10% 95%, rgba(45,127,212,.35) 0%, rgba(45,127,212,0) 55%),
    linear-gradient(135deg, #0b3a6b 0%, #14467d 55%, #1a5fa8 100%);
  position: relative;
  overflow: hidden;
}
.spHero--price::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .35;
  pointer-events: none;
}
.spHero--price .spHero__inner { position: relative; z-index: 1; }

/* Hero内チップ */
.spPriceHero__chips {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.spPriceHero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .03em;
  text-shadow: 0 1px 2px rgba(0,0,0,.15);
}
.spPriceHero__chipIcon {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f2d68a 0%, #e8a93a 100%);
  color: #0b3a6b;
  font-size: 13px;
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
}

/* ── Brand文字 (UNIPOS) ── */
.spPriceBrand {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  letter-spacing: .04em;
  color: #0b3a6b;
  background: linear-gradient(90deg, #0b3a6b 0%, #1a5fa8 55%, #e8a93a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── 料金カード共通(拡張) ── */
.spPriceCards {
  display: grid;
  gap: 16px;
  margin-top: 12px;
}
.spPriceCards--price,
.spPriceCards--options {
  grid-template-columns: 1fr;
}

.spPriceCard--price {
  position: relative;
  padding: 26px 22px 22px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e8ee;
  box-shadow: 0 4px 14px rgba(11,58,107,.06);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.spPriceCard--price::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0b3a6b 0%, #1a5fa8 100%);
}
.spPriceCard--price:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(11,58,107,.12);
}

.spPriceCard--price-featured {
  background: linear-gradient(170deg, #fff 0%, #fffaeb 100%);
  border-color: #e8a93a;
  box-shadow: 0 6px 20px rgba(232,169,58,.18);
}
.spPriceCard--price-featured::before {
  background: linear-gradient(90deg, #e8a93a 0%, #f5c77a 50%, #e8a93a 100%);
  height: 5px;
}

.spPriceCard__badge--price {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  color: #0b3a6b;
  background: rgba(11,58,107,.08);
  border-radius: 4px;
  margin-bottom: 10px;
}
.spPriceCard__badge--accent {
  color: #704717;
  background: linear-gradient(90deg, #f5c77a 0%, #e8a93a 100%);
  letter-spacing: .08em;
}

.spPriceCard__sub {
  font-size: 13px;
  font-weight: 700;
  color: #5a616b;
  letter-spacing: .02em;
}

.spPriceCard__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 6px;
  padding: 8px 0 12px;
  border-bottom: 1px dashed #d8dde6;
}
.spPriceCard__price-yen {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: clamp(32px, 9vw, 40px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: #0b3a6b;
  line-height: 1;
}
.spPriceCard--price-featured .spPriceCard__price-yen {
  background: linear-gradient(90deg, #b87a18 0%, #e8a93a 60%, #c98f22 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.spPriceCard__price-unit {
  font-size: 14px;
  font-weight: 700;
  color: #5a616b;
}

.spPriceCard__note {
  font-size: 12px;
  color: #5a616b;
  margin: 10px 0 14px;
  line-height: 1.6;
}
.spPriceCard__note strong {
  color: #c98f22;
  font-weight: 700;
}

.spPriceCard__features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.spPriceCard__features li {
  position: relative;
  padding: 5px 0 5px 22px;
  font-size: 13px;
  line-height: 1.6;
  color: #333;
}
.spPriceCard__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 8px;
  border-left: 2px solid #1a5fa8;
  border-bottom: 2px solid #1a5fa8;
  transform: rotate(-45deg);
}
.spPriceCard--price-featured .spPriceCard__features li::before {
  border-color: #c98f22;
}

.spPriceCard__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0b3a6b;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: gap .2s, color .2s;
}
.spPriceCard__cta:hover {
  gap: 10px;
  color: #1a5fa8;
  text-decoration: none;
}
.spPriceCard--price-featured .spPriceCard__cta {
  color: #c98f22;
}

/* ── オプション割引カード ── */
.spPriceCard--option {
  position: relative;
  padding: 22px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5e8ee;
  box-shadow: 0 3px 10px rgba(11,58,107,.05);
}
.spPriceCard__dualPrice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 10px 0 0;
  padding-top: 12px;
  border-top: 1px dashed #d8dde6;
}
.spPriceCard__dualPrice > div {
  padding: 8px 10px;
  background: #f6f8fb;
  border-radius: 8px;
  text-align: center;
}
.spPriceCard__dualPrice dt {
  font-size: 10px;
  font-weight: 700;
  color: #5a616b;
  letter-spacing: .1em;
  margin-bottom: 4px;
  font-family: var(--font-en, "Inter Tight", sans-serif);
}
.spPriceCard__dualPrice dd {
  margin: 0;
  font-size: 15px;
  color: #0b3a6b;
  line-height: 1.2;
}
.spPriceCard__dualPrice dd strong {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-weight: 700;
  letter-spacing: -.01em;
}

/* ── レスポンシブ比較テーブル (タブレット以上で表示) ── */
.spPriceTable--responsive {
  display: none;
  margin-top: 24px;
}
.spPriceTable--responsive__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(11,58,107,.08);
}
.spPriceTable--responsive__table thead {
  background: linear-gradient(135deg, #0b3a6b 0%, #1a5fa8 100%);
  position: sticky;
  top: 0;
}
.spPriceTable--responsive__table thead th {
  padding: 16px 14px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-align: left;
  letter-spacing: .03em;
  white-space: nowrap;
}
.spPriceTable--responsive__table tbody tr {
  border-bottom: 1px solid #eef1f5;
}
.spPriceTable--responsive__table tbody tr:last-child { border-bottom: none; }
.spPriceTable--responsive__table tbody tr:hover { background: #fafbfd; }
.spPriceTable--responsive__table tbody th,
.spPriceTable--responsive__table tbody td {
  padding: 18px 18px;
  font-size: 15px;
  color: #3e4a63;
  vertical-align: middle;
  text-align: left;
  line-height: 1.65;
}
.spPriceTable--responsive__table tbody th {
  font-weight: 800;
  font-size: 16px;
  color: #0057B8;
  white-space: nowrap;
  background: #f3f7fc;
  letter-spacing: 0.02em;
}
.spPriceTable--responsive__table tbody td strong {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-weight: 800;
  font-size: 17px;
  color: #0057B8;
  letter-spacing: 0.02em;
}
.spPriceTable--responsive__table tbody tr:nth-child(even) {
  background: rgba(11, 58, 107, 0.025);
}
.spPriceTable--responsive__highlight {
  background: linear-gradient(90deg, #fffaeb 0%, #fff 100%);
}
.spPriceTable--responsive__highlight td strong {
  color: #c98f22 !important;
}
.spPriceTable--responsive__planLabel {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #0b3a6b;
  background: rgba(11,58,107,.08);
  border-radius: 4px;
  margin-bottom: 4px;
}
.spPriceTable--responsive__planLabel--accent {
  color: #704717;
  background: linear-gradient(90deg, #f5c77a 0%, #e8a93a 100%);
}
.spPriceTable--responsive__foot {
  margin-top: 14px;
  font-size: 12px;
  color: #5a616b;
}

.spPriceTaxNote {
  margin-top: 18px;
  font-size: 13.5px;
  color: #3e4a63;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ── タブレット以上でテーブル表示 / モバイルカードを隠す ── */
@media (min-width: 641px) {
  .spPriceCards--price,
  .spPriceCards--options { display: none; }
  .spPriceTable--responsive { display: block; }
}

/* ── オプション機能グリッド ── */
.spOptionFeatureGrid {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.spOptionFeatureBox {
  position: relative;
  padding: 22px 20px 22px 84px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #d8dde6;
  box-shadow: 0 3px 10px rgba(11,58,107,.05);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.spOptionFeatureBox:hover {
  transform: translateY(-2px);
  border-color: rgba(232,169,58,.45);
  box-shadow: 0 8px 20px rgba(11,58,107,.12);
}
.spOptionFeatureBox__icon {
  position: absolute;
  top: 20px;
  left: 18px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #0b3a6b 0%, #1a5fa8 100%);
  color: #fff;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(11,58,107,.25);
}
.spOptionFeatureBox__name {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
  color: #0b3a6b;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.spOptionFeatureBox__desc {
  margin: 0;
  font-size: 14px;
  color: #3e4a63;
  line-height: 1.75;
}
.spOptionFeatureFoot {
  margin: 0 0 28px;
  padding: 14px 18px;
  font-size: 13.5px;
  color: #3e4a63;
  background: rgba(11,58,107,.05);
  border-left: 4px solid #1a5fa8;
  border-radius: 6px;
  line-height: 1.75;
}
.spOptionPlanHead {
  margin-bottom: 16px;
  text-align: center;
}
.spOptionPlanHead__title {
  font-size: clamp(18px, 5vw, 22px);
  font-weight: 900;
  color: #0b3a6b;
  margin: 10px 0 4px;
  letter-spacing: .02em;
}
.spOptionPlanHead__sub {
  font-size: 13px;
  color: #5a616b;
}

/* ── 導入費用: 2カラム+合計 ── */
.spCostBreakdown {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.spCostBreakdown__col {
  padding: 22px 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5e8ee;
  box-shadow: 0 3px 10px rgba(11,58,107,.05);
}
.spCostBreakdown__colTitle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid #0b3a6b;
  font-size: 16px;
  font-weight: 900;
  color: #0b3a6b;
}
.spCostBreakdown__colNum {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 22px;
  font-weight: 700;
  color: #e8a93a;
  letter-spacing: -.02em;
  line-height: 1;
}
.spCostBreakdown__list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.spCostBreakdown__list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed #e5e8ee;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}
.spCostBreakdown__list li:last-child { border-bottom: none; }
.spCostBreakdown__list li span { flex: 1; }
.spCostBreakdown__list li strong {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: #0b3a6b;
  white-space: nowrap;
}
.spCostBreakdown__subtotal {
  margin: 6px 0 0;
  padding: 12px 14px;
  background: rgba(11,58,107,.06);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #0b3a6b;
}
.spCostBreakdown__subtotal strong {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 20px;
  color: #0b3a6b;
  letter-spacing: -.01em;
}
.spCostTotal {
  padding: 22px 20px;
  background: linear-gradient(135deg, #0b3a6b 0%, #1a5fa8 100%);
  border-radius: 14px;
  text-align: center;
  color: #fff;
  box-shadow: 0 6px 18px rgba(11,58,107,.22);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.spCostTotal::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(rgba(232,169,58,.35) 0%, transparent 70%);
  pointer-events: none;
}
.spCostTotal__label {
  font-size: 12px;
  letter-spacing: .2em;
  font-weight: 700;
  opacity: .85;
  margin: 0 0 6px;
  position: relative;
  z-index: 1;
}
.spCostTotal__amount {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: clamp(34px, 10vw, 48px);
  font-weight: 700;
  margin: 0;
  letter-spacing: -.02em;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.spCostRunning {
  padding: 18px 20px;
  background: #fffaeb;
  border-radius: 12px;
  border: 1px dashed #e8a93a;
}
.spCostRunning__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 900;
  color: #704717;
}
.spCostRunning__icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e8a93a;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
}
.spCostRunning__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 10px 0 0;
  border-top: 1px dashed rgba(232,169,58,.4);
  font-size: 13px;
  color: #333;
}
.spCostRunning__row strong {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 18px;
  font-weight: 700;
  color: #704717;
}

/* ── 業態別オプション ── */
.spIndustryOptionList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.spIndustryOptionList__group {
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5e8ee;
  box-shadow: 0 3px 10px rgba(11,58,107,.05);
}
.spIndustryOptionList__groupTitle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid #0b3a6b;
  font-size: 15px;
  font-weight: 900;
  color: #0b3a6b;
}
.spIndustryOptionList__groupIcon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #0b3a6b 0%, #1a5fa8 100%);
  color: #fff;
  font-size: 14px;
}
.spIndustryOptionList__items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.spIndustryOptionList__items li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed #e5e8ee;
}
.spIndustryOptionList__items li:last-child { border-bottom: none; }
.spIndustryOptionList__name {
  margin: 0 0 3px;
  font-size: 14px;
  font-weight: 700;
  color: #0b3a6b;
}
.spIndustryOptionList__desc {
  margin: 0;
  font-size: 12px;
  color: #5a616b;
  line-height: 1.5;
}
.spIndustryOptionList__price {
  flex-shrink: 0;
  padding: 6px 12px;
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 13px;
  font-weight: 700;
  color: #0b3a6b;
  background: rgba(232,169,58,.15);
  border-radius: 999px;
  white-space: nowrap;
  align-self: center;
}

/* ── システム別カードの絵文字除去対応: リードアイコン ── */
.spPriceCard__leadIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  border-radius: 6px;
  background: linear-gradient(135deg, #0b3a6b 0%, #1a5fa8 100%);
  color: #fff;
  font-size: 12px;
  vertical-align: -6px;
  box-shadow: 0 2px 6px rgba(11,58,107,.18);
}

/* ── FAQ ── */
.spFaqList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.spFaqList__item {
  padding: 18px 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e8ee;
  box-shadow: 0 2px 8px rgba(11,58,107,.04);
}
.spFaqList__q,
.spFaqList__a {
  display: flex;
  gap: 10px;
  margin: 0;
  line-height: 1.6;
}
.spFaqList__q {
  font-size: 14px;
  font-weight: 700;
  color: #0b3a6b;
  padding-bottom: 10px;
  border-bottom: 1px dashed #e5e8ee;
  margin-bottom: 10px;
}
.spFaqList__a {
  font-size: 13px;
  color: #333;
}
.spFaqList__qMark,
.spFaqList__aMark {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 12px;
  font-weight: 700;
}
.spFaqList__qMark {
  background: #0b3a6b;
  color: #fff;
}
.spFaqList__aMark {
  background: #e8a93a;
  color: #fff;
}

/* ────────────── タブレット (641px〜) ────────────── */
@media (min-width: 641px) {
  .spCostBreakdown { grid-template-columns: 1fr 1fr; gap: 20px; }
  .spOptionFeatureGrid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .spIndustryOptionList { grid-template-columns: 1fr; }
  .spPriceTable--responsive--4col .spPriceTable--responsive__table { min-width: 620px; }
}

/* ────────────── PC (901px〜) ────────────── */
@media (min-width: 901px) {
  .spOptionFeatureGrid { grid-template-columns: repeat(3, 1fr); }
  .spIndustryOptionList { grid-template-columns: repeat(3, 1fr); }
  .spCostBreakdown__colTitle { font-size: 18px; }
  .spPriceTable--responsive__table thead th { font-size: 15px; padding: 18px 16px; }
  .spPriceTable--responsive__table tbody th,
  .spPriceTable--responsive__table tbody td { padding: 18px 16px; font-size: 15px; }
}

/* ────────────── 400px以下の最終調整 ────────────── */
@media (max-width: 400px) {
  .spHero--price .spHero__title { font-size: clamp(26px, 9vw, 36px); }
  .spPriceHero__chips li { font-size: 13px; padding: 8px 14px; gap: 8px; }
  .spPriceHero__chipIcon { width: 22px; height: 22px; font-size: 12px; }
  .spPriceCard--price { padding: 22px 18px 20px; }
  .spPriceCard__price-yen { font-size: clamp(28px, 8.5vw, 36px); }
  .spOptionFeatureBox { padding: 18px 16px 18px 76px; }
  .spOptionFeatureBox__icon { width: 46px; height: 46px; top: 18px; left: 16px; font-size: 18px; }
  .spOptionFeatureBox__name { font-size: 16px; }
  .spOptionFeatureBox__desc { font-size: 13.5px; }
  .spIndustryOptionList__items li { flex-wrap: wrap; }
  .spIndustryOptionList__price { align-self: flex-start; margin-top: 6px; }
  .spCostBreakdown__col { padding: 20px 16px; }
  .spCostTotal__amount { font-size: clamp(30px, 9vw, 42px); }
}

/* end Phase 2C — pricelist */


/* ============================================================
   Phase 2D — orderette.html
   インラインスタイル一掃 + 絵文字→装飾アイコン + モバイルファースト
   既存ID/クラスは変更せず、モディファイア (--order) と
   新しいユーティリティクラスのみで拡張
   ============================================================ */

/* ── ヒーロー: モバレジ系のトーンと整合させた紺グラデ ── */
.spHero--order {
  position: relative;
  padding: 72px 0 64px;
  background:
    radial-gradient(120% 70% at 85% 10%, rgba(45,127,212,.35) 0%, rgba(45,127,212,0) 55%),
    radial-gradient(100% 80% at 10% 110%, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(140deg, #0b3a6b 0%, #1a5fa8 55%, #2d7fd4 100%);
  overflow: hidden;
  isolation: isolate;
}
.spHero--order::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/pos_back.png') center/cover no-repeat;
  opacity: .08;
  pointer-events: none;
  z-index: 0;
}
.spHero--order::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 35%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.spHero--order .spHero__inner { position: relative; z-index: 1; }

.spHero--order .heroGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.spHero--order .spHero__tag {
  margin-bottom: 18px;
  font-family: var(--font-en, "Inter Tight", sans-serif);
  background: rgba(232,169,58,.92);
  color: #0b3a6b;
  padding: 5px 14px;
  font-size: 12px;
  letter-spacing: .18em;
  box-shadow: 0 4px 16px rgba(232,169,58,.35);
}
.spHero--order .spHero__title {
  font-family: var(--font-display, "Zen Kaku Gothic New", sans-serif);
  font-size: clamp(28px, 9vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,.22);
}
.spHero--order .spHero__sub {
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.85;
  max-width: 42ch;
}

/* ヒーロー用 CTA ボタン列 */
.spHero__ctaRow {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.spHero__ctaRow .spCta__btn {
  font-size: 15px;
  padding: 16px 28px;
  min-height: 52px;
}

/* ヒーロー画像: モバイルでは非表示、タブレット以上で表示 */
.heroGrid__img {
  display: none;
}
.heroGrid__img img {
  max-width: 100%;
  max-height: 360px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.3));
}

/* 機器イメージ セクション (self-payment.html) */
.spEquipmentImg {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 6px 20px rgba(11, 58, 107, 0.08);
  border: 1px solid rgba(11, 58, 107, 0.06);
}
.spEquipmentImg img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(11, 58, 107, 0.12);
}
.spEquipmentImg__callouts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.spEquipmentImg__callouts li {
  padding: 12px 16px;
  background: #f3f7fc;
  border-left: 4px solid #0057B8;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #0a1e46;
  letter-spacing: 0.02em;
}
@media (min-width: 900px) {
  .spEquipmentImg {
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    padding: 36px;
  }
  .spEquipmentImg img {
    max-width: 100%;
  }
  .spEquipmentImg__callouts li {
    font-size: 14.5px;
    padding: 14px 18px;
  }
}
@media (max-width: 560px) {
  .spEquipmentImg { padding: 18px; border-radius: 14px; }
  .spEquipmentImg__callouts li { font-size: 13px; padding: 10px 14px; }
}

/* spHero--ken のヒーローも heroGrid を使えるように (orderetteと同じ挙動) */
.spHero--ken .heroGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.spHero--ken .heroGrid__img img {
  max-height: 480px;
  border-radius: 14px;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.35));
}
@media (min-width: 900px) {
  .spHero--ken .heroGrid {
    grid-template-columns: 1fr 1.15fr;   /* 画像側を少し大きめに */
    gap: 48px;
  }
  .spHero--ken .heroGrid__img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .spHero--ken .heroGrid__img img {
    max-height: 520px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* ブレッドクラムの上下位置のガタつきを解消（ken ヒーロー用） */
.spHero--ken .spHero__breadcrumb {
  align-items: center;
}
.spHero--ken .spHero__breadcrumb > span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  line-height: 1;
}

/* ── ベネフィットバー: 絵文字→装飾アイコンボックス ── */
.spBenefitGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  text-align: left;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(11,58,107,.10);
  box-shadow: 0 8px 24px rgba(11,58,107,.06);
  overflow: hidden;
}
.spBenefitGrid__item {
  padding: 22px 20px 22px 80px;
  position: relative;
  border-bottom: 1px solid rgba(11,58,107,.08);
}
.spBenefitGrid__item:last-child { border-bottom: none; }

.spBenefitGrid__title {
  font-size: 16px;
  font-weight: 700;
  color: #0b3a6b;
  margin-bottom: 6px;
  line-height: 1.4;
}
.spBenefitGrid__desc {
  font-size: 13px;
  color: #5a616b;
  line-height: 1.7;
  margin: 0;
}

/* ── SVGアイコン装飾（絵文字の代替） ── */
.spIconBox {
  position: absolute;
  top: 22px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0b3a6b 0%, #2d7fd4 100%);
  box-shadow: 0 6px 14px rgba(11,58,107,.22);
  flex-shrink: 0;
}
.spIconBox::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-color: #fff;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
/* iOSデバイス (スマホ) */
.spIconBox--device::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='5' y='2' width='14' height='20' rx='2' ry='2'/><line x1='12' y1='18' x2='12' y2='18'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='5' y='2' width='14' height='20' rx='2' ry='2'/><line x1='12' y1='18' x2='12' y2='18'/></svg>");
}
/* 低コスト (円マーク) */
.spIconBox--cost {
  background: linear-gradient(135deg, #e8a93a 0%, #c98a1f 100%);
  box-shadow: 0 6px 14px rgba(232,169,58,.3);
}
.spIconBox--cost::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><path d='M7 8l5 6 5-6'/><line x1='7' y1='14' x2='17' y2='14'/><line x1='7' y1='17' x2='17' y2='17'/><line x1='12' y1='14' x2='12' y2='21'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><path d='M7 8l5 6 5-6'/><line x1='7' y1='14' x2='17' y2='14'/><line x1='7' y1='17' x2='17' y2='17'/><line x1='12' y1='14' x2='12' y2='21'/></svg>");
}
/* 店舗 */
.spIconBox--store::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 10l2-6h14l2 6'/><path d='M5 10v10h14V10'/><path d='M3 10a3 3 0 006 0 3 3 0 006 0 3 3 0 006 0'/><rect x='10' y='14' width='4' height='6'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 10l2-6h14l2 6'/><path d='M5 10v10h14V10'/><path d='M3 10a3 3 0 006 0 3 3 0 006 0 3 3 0 006 0'/><rect x='10' y='14' width='4' height='6'/></svg>");
}
/* オプション歯車 */
.spIconBox--gear::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='3'/><path d='M19.4 15a1.65 1.65 0 00.33 1.82l.06.06a2 2 0 01-2.83 2.83l-.06-.06a1.65 1.65 0 00-1.82-.33 1.65 1.65 0 00-1 1.51V21a2 2 0 01-4 0v-.09A1.65 1.65 0 009 19.4a1.65 1.65 0 00-1.82.33l-.06.06a2 2 0 01-2.83-2.83l.06-.06a1.65 1.65 0 00.33-1.82 1.65 1.65 0 00-1.51-1H3a2 2 0 010-4h.09A1.65 1.65 0 004.6 9a1.65 1.65 0 00-.33-1.82l-.06-.06a2 2 0 012.83-2.83l.06.06a1.65 1.65 0 001.82.33H9a1.65 1.65 0 001-1.51V3a2 2 0 014 0v.09a1.65 1.65 0 001 1.51 1.65 1.65 0 001.82-.33l.06-.06a2 2 0 012.83 2.83l-.06.06a1.65 1.65 0 00-.33 1.82V9a1.65 1.65 0 001.51 1H21a2 2 0 010 4h-.09a1.65 1.65 0 00-1.51 1z'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='3'/><path d='M19.4 15a1.65 1.65 0 00.33 1.82l.06.06a2 2 0 01-2.83 2.83l-.06-.06a1.65 1.65 0 00-1.82-.33 1.65 1.65 0 00-1 1.51V21a2 2 0 01-4 0v-.09A1.65 1.65 0 009 19.4a1.65 1.65 0 00-1.82.33l-.06.06a2 2 0 01-2.83-2.83l.06-.06a1.65 1.65 0 00.33-1.82 1.65 1.65 0 00-1.51-1H3a2 2 0 010-4h.09A1.65 1.65 0 004.6 9a1.65 1.65 0 00-.33-1.82l-.06-.06a2 2 0 012.83-2.83l.06.06a1.65 1.65 0 001.82.33H9a1.65 1.65 0 001-1.51V3a2 2 0 014 0v.09a1.65 1.65 0 001 1.51 1.65 1.65 0 001.82-.33l.06-.06a2 2 0 012.83 2.83l-.06.06a1.65 1.65 0 00-.33 1.82V9a1.65 1.65 0 001.51 1H21a2 2 0 010 4h-.09a1.65 1.65 0 00-1.51 1z'/></svg>");
}

/* ── Usecase カード: ホテル向けの別グラデ ── */
.spUsecaseCard__top--hotel {
  background: linear-gradient(135deg, #1a3a5c 0%, #0b5fa8 100%);
}

/* ── ハードウェア画像の装飾フレーム ── */
.spHardwareFrame {
  text-align: center;
  background: #f6f8fb;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(11,58,107,.08);
}
.spHardwareFrame__img {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

/* ── POS基本画面用の画像ホワイトフレーム ── */
.spBigFeature__img--white {
  background: #fff;
  border: 1px solid rgba(11,58,107,.10);
  padding: 16px;
}
.spBigFeature__img--white img {
  max-width: 100%;
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

/* ── "複雑な会計処理にも対応" 見出し ── */
.spSubHead {
  font-size: 14px;
  font-weight: 700;
  color: #0b3a6b;
  margin: 0 0 12px;
  letter-spacing: .02em;
}

/* ── spFeature__checks 内の強調ラベル ── */
.spFeature__checks .spCheckLabel {
  color: #0b3a6b;
  font-weight: 700;
}

/* ── 2カラム画像ペア ── */
.spScreenPair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.spScreenPair__item {
  text-align: center;
}
.spScreenPair__img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(11,58,107,.08);
  display: block;
}

/* ── 注記ボックス ── */
.spNoteBox {
  max-width: 720px;
  margin: 0 auto;
  background: #f6f8fb;
  border-radius: 16px;
  padding: 22px 22px;
  border: 1px solid rgba(11,58,107,.08);
}

/* ── ベネフィットバー コンテナ微調整 ── */
.spCountBar--order .spSection__inner { padding-top: 28px; padding-bottom: 28px; }

/* ========== タブレット以上 (641px〜) ========== */
@media (min-width: 641px) {
  .spBenefitGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .spBenefitGrid__item {
    border-bottom: 1px solid rgba(11,58,107,.08);
    border-right: 1px solid rgba(11,58,107,.08);
  }
  .spBenefitGrid__item:nth-child(2n) { border-right: none; }
  .spBenefitGrid__item:nth-last-child(-n+2) { border-bottom: none; }

  .spScreenPair { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* ========== 中〜大画面 (769px〜) ========== */
@media (min-width: 769px) {
  .spHero--order { padding: 88px 0 80px; }
  .spHero--order .heroGrid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .heroGrid__img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .spBenefitGrid {
    grid-template-columns: repeat(4, 1fr);
  }
  .spBenefitGrid__item {
    padding: 28px 22px 28px 22px;
    text-align: center;
    border-bottom: none !important;
    border-right: 1px solid rgba(11,58,107,.08) !important;
  }
  .spBenefitGrid__item:last-child { border-right: none !important; }
  .spIconBox {
    position: static;
    margin: 0 auto 14px;
    width: 52px;
    height: 52px;
  }
  .spIconBox::before { width: 26px; height: 26px; }

  .spHardwareFrame { padding: 40px; }
}

/* ========== 390px以下の最終調整 ========== */
@media (max-width: 400px) {
  .spHero--order { padding: 56px 0 48px; }
  .spHero--order .spHero__title { font-size: clamp(24px, 8vw, 34px); }
  .spHero__ctaRow { gap: 10px; }
  .spHero__ctaRow .spCta__btn { width: 100%; font-size: 14px; padding: 14px 22px; min-height: 52px; }
  .spBenefitGrid__item { padding: 20px 18px 20px 72px; }
  .spIconBox { width: 40px; height: 40px; top: 20px; left: 18px; }
  .spIconBox::before { width: 20px; height: 20px; }
  .spBenefitGrid__title { font-size: 15px; }
  .spBenefitGrid__desc { font-size: 12.5px; }
  .spHardwareFrame { padding: 18px; border-radius: 16px; }
  .spNoteBox { padding: 18px; }
}

/* end Phase 2D — orderette */

/* ============================================================
   Phase 2E — hotel-solution.html
   旅館・ホテルNo.1シェアの訴求。モバレジ系の紺グラデをベースに
   よりラグジュアリーなゴールド強調とライン装飾を重ねる。
   既存のクラスは変更せず、--hotel モディファイア群で拡張。
   ============================================================ */

/* ── Hero: 紺地＋ゴールド線＋布目テクスチャで上質感 ── */
.spHero--hotel {
  position: relative;
  padding: 72px 0 60px;
  background:
    radial-gradient(120% 70% at 88% 8%, rgba(212,175,88,.32) 0%, rgba(212,175,88,0) 55%),
    radial-gradient(90% 70% at 8% 115%, rgba(212,175,88,.18) 0%, rgba(212,175,88,0) 55%),
    linear-gradient(140deg, #0a2a4a 0%, #133256 40%, #1a3f6b 100%);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.spHero--hotel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,88,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,88,.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 78%);
  pointer-events: none;
  z-index: 0;
}
.spHero--hotel::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 72%;
  max-width: 520px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212,175,88,.6) 50%, transparent 100%);
  z-index: 1;
}
.spHero--hotel .spHero__inner { position: relative; z-index: 1; }

.spHero--hotel .spHero__breadcrumb {
  font-size: 12px;
  opacity: .88;
}
.spHero--hotel .spHero__breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 2px;
  color: #f5e8c8;
}

/* No.1バッジ: ゴールド枠付き */
.spHero__badge--hotel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 16px;
  padding: 7px 16px;
  border: 1px solid rgba(212,175,88,.65);
  background: rgba(212,175,88,.12);
  color: #f5d785;
  border-radius: 999px;
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 11.5px;
  letter-spacing: .18em;
  font-weight: 700;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.spHero__badge--hotel::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4af58;
  box-shadow: 0 0 10px rgba(212,175,88,.9);
}

.spHero--hotel .spHero__tag {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  background: rgba(212,175,88,.95);
  color: #0a2a4a;
  padding: 5px 14px;
  font-size: 12px;
  letter-spacing: .18em;
  box-shadow: 0 4px 16px rgba(212,175,88,.35);
  display: inline-block;
  margin-bottom: 14px;
}

.spHero--hotel .spHero__title {
  font-family: var(--font-display, "Zen Kaku Gothic New", sans-serif);
  font-size: clamp(30px, 9vw, 50px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.spHero--hotel .spHero__sub {
  font-size: 14px;
  line-height: 1.85;
  max-width: 42ch;
  color: rgba(255,255,255,.88);
  margin-bottom: 26px;
}

/* ── Hero内スタット: 3つのメトリックを縦スタック ── */
.spHotelStats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.spHotelStats li {
  position: relative;
  padding: 16px 18px 16px 56px;
  border: 1px solid rgba(212,175,88,.35);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.02) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: hidden;
}
.spHotelStats li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #f5d785 0%, #d4af58 55%, #8a6e28 100%);
  box-shadow: 0 0 14px rgba(212,175,88,.45), inset 0 -2px 4px rgba(0,0,0,.25);
}
.spHotelStats li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(90deg, transparent 0%, rgba(212,175,88,.06) 100%);
  pointer-events: none;
}
.spHotelStats__num {
  display: block;
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: clamp(22px, 6.5vw, 28px);
  font-weight: 900;
  letter-spacing: -.01em;
  color: #f5d785;
  line-height: 1;
}
.spHotelStats__num em {
  font-style: normal;
  font-size: .55em;
  font-weight: 700;
  margin-left: 2px;
  color: rgba(255,255,255,.82);
  letter-spacing: .04em;
}
.spHotelStats__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.88);
  margin-top: 4px;
  letter-spacing: .04em;
}

/* ── 動画セクション: 額縁風フレーム ── */
.spSection--hotelVideo { padding-top: 40px; }
.spVideoFrame--hotel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 8px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, #0a2a4a 0%, #1a3f6b 50%, #0a2a4a 100%);
  box-shadow:
    0 20px 50px rgba(10,42,74,.22),
    inset 0 0 0 1px rgba(212,175,88,.35);
}
.spVideoFrame--hotel::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 17px;
  border: 1px solid rgba(212,175,88,.25);
  pointer-events: none;
  z-index: 1;
}
.spVideoFrame__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background: #000;
  object-fit: cover;
}
.spVideoFrame__label {
  position: absolute;
  top: -14px;
  left: 20px;
  z-index: 2;
  padding: 5px 12px;
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 10.5px;
  letter-spacing: .22em;
  font-weight: 700;
  color: #0a2a4a;
  background: #d4af58;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(212,175,88,.35);
}

/* ── BigFeature --hotel: モバレジパターンにゴールド差し色 ── */
.spBigFeature--hotel .spBigFeature__numTag {
  background: linear-gradient(135deg, #d4af58 0%, #a67f2a 100%);
  color: #0a2a4a;
  box-shadow: 0 4px 12px rgba(212,175,88,.35);
}
.spBigFeature--hotel .spBigFeature__decNum {
  color: rgba(212,175,88,.14);
}
.spBigFeature--hotel .spBigFeature__title {
  color: #0a2a4a;
}
.spBigFeature--hotel .spFeature__checks {
  background: linear-gradient(135deg, #fbf5e5 0%, #f6f8fb 100%);
}
.spBigFeature--hotel .spFeature__checks li::before {
  background: linear-gradient(135deg, #0a2a4a 0%, #1a3f6b 100%);
  content: "\2713";
}
.spBigFeature--hotel + .spBigFeature--hotel { margin-top: 22px; }

/* ── PMS連携リスト --hotel: ナンバリング付きラグジュアリーカード ── */
.spPmsList--hotel {
  grid-template-columns: 1fr;
  gap: 10px;
}
.spPmsList--hotel li a {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 50px 16px 16px;
  background: #fff;
  border: 1px solid rgba(10,42,74,.08);
  border-left: 3px solid #d4af58;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(10,42,74,.06);
  text-decoration: none;
  color: #0a2a4a;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.spPmsList--hotel li a:hover {
  transform: translateY(-2px);
  border-color: #d4af58;
  box-shadow: 0 10px 26px rgba(10,42,74,.12);
}
/* 既存のスプレッドシート絵文字プレフィックスを打ち消し */
.spPmsList--hotel li a::before { content: none; }
/* ゴールドリンクアイコンを右端に */
.spPmsList--hotel li a::after {
  content: "\2197";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #0a2a4a;
  background: linear-gradient(135deg, #f5d785 0%, #d4af58 100%);
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(212,175,88,.3);
  transition: transform .18s ease;
}
.spPmsList--hotel li a:hover::after {
  transform: translateY(-50%) translate(2px, -2px);
}
.spPmsList__no {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 18px;
  font-weight: 900;
  color: #d4af58;
  letter-spacing: -.01em;
  line-height: 1;
  min-width: 28px;
}
.spPmsList__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.spPmsList__company {
  font-size: 13px;
  font-weight: 700;
  color: #0a2a4a;
  line-height: 1.4;
}
.spPmsList__product {
  font-size: 11.5px;
  font-weight: 600;
  color: #6a7280;
  letter-spacing: .02em;
}

/* ── 画面イメージ: ホテル専用フレーム ── */
.spCardGrid--hotelShots {
  grid-template-columns: 1fr;
  gap: 18px;
}
.spCard--hotelShot {
  background: #fff;
  border: 1px solid rgba(10,42,74,.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(10,42,74,.08);
}
.spCard--hotelShot .spCard__body { padding: 18px 18px 22px; }
.spCard--hotelShot .spCard__frame {
  display: block;
  position: relative;
  padding: 14px;
  background: linear-gradient(135deg, #f4f7fb 0%, #fbf5e5 100%);
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
}
.spCard--hotelShot .spCard__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212,175,88,.22);
  border-radius: 14px;
  pointer-events: none;
}
.spCard--hotelShot .spCard__shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0;
  box-shadow: 0 8px 18px rgba(10,42,74,.1);
}
.spCard--hotelShot .spCard__kicker {
  display: inline-block;
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 10.5px;
  letter-spacing: .22em;
  font-weight: 700;
  color: #0a2a4a;
  background: #fbf5e5;
  padding: 3px 10px;
  border-radius: 3px;
  border: 1px solid rgba(212,175,88,.4);
  margin-bottom: 8px;
}
.spCard--hotelShot .spCard__title {
  font-size: 16px;
  font-weight: 900;
  color: #0a2a4a;
  margin-bottom: 6px;
  line-height: 1.4;
}
.spCard--hotelShot .spCard__text {
  font-size: 13px;
  line-height: 1.75;
  color: #4a5160;
  margin: 0;
}

/* ── CTA --hotel: ゴールドリボン付き ── */
.spCta--hotel {
  background:
    radial-gradient(120% 70% at 90% 10%, rgba(212,175,88,.3) 0%, rgba(212,175,88,0) 55%),
    radial-gradient(90% 70% at 10% 110%, rgba(212,175,88,.15) 0%, rgba(212,175,88,0) 55%),
    linear-gradient(140deg, #0a2a4a 0%, #133256 55%, #1a3f6b 100%);
}
.spCta--hotel .spCta__inner {
  position: relative;
}
.spCta__ribbon--hotel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 18px;
  padding: 6px 16px;
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 700;
  color: #0a2a4a;
  background: linear-gradient(135deg, #f5d785 0%, #d4af58 100%);
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(212,175,88,.35);
}
.spCta__ribbon--hotel::before,
.spCta__ribbon--hotel::after {
  content: "";
  width: 14px;
  height: 1px;
  background: rgba(10,42,74,.55);
}
.spCta--hotel .spCta__title {
  color: #fff;
}
.spCta--hotel .spCta__sub {
  color: rgba(255,255,255,.85);
}
.spCta--hotel .spCta__btn--primary {
  background: linear-gradient(135deg, #f5d785 0%, #d4af58 100%);
  color: #0a2a4a;
  border: none;
}
.spCta--hotel .spCta__btn--primary:hover {
  background: linear-gradient(135deg, #ffe8a3 0%, #e4c06a 100%);
}
.spCta--hotel .spCta__btn--outline {
  border-color: rgba(212,175,88,.7);
  color: #fff;
}

/* ── タブレット以上の調整 ── */
@media (min-width: 601px) {
  .spHotelStats { display: grid; grid-template-columns: repeat(3, 1fr); }
  .spHotelStats li { padding: 20px 20px 20px 58px; }
  .spCardGrid--hotelShots { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .spPmsList--hotel { display: grid; grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 901px) {
  .spHero--hotel { padding: 96px 0 80px; }
  .spPmsList--hotel { grid-template-columns: repeat(3, 1fr); }
  .spPmsList--hotel li a { padding: 18px 56px 18px 18px; }
}

/* ── 390px基準の最終調整 ── */
@media (max-width: 400px) {
  .spHero--hotel { padding: 56px 0 48px; }
  .spHero--hotel .spHero__title { font-size: clamp(26px, 8.4vw, 36px); }
  .spHero__badge--hotel { font-size: 10.5px; padding: 6px 13px; }
  .spHotelStats li { padding: 14px 14px 14px 50px; }
  .spHotelStats li::before { left: 12px; width: 26px; height: 26px; }
  .spHotelStats__num { font-size: 20px; }
  .spHotelStats__label { font-size: 11.5px; }
  .spVideoFrame--hotel { padding: 6px; border-radius: 16px; }
  .spVideoFrame__media { border-radius: 11px; }
  .spVideoFrame__label { left: 14px; font-size: 10px; padding: 4px 10px; }
  .spPmsList--hotel li a { padding: 14px 46px 14px 14px; gap: 10px; }
  .spPmsList__no { font-size: 16px; min-width: 24px; }
  .spPmsList__company { font-size: 12.5px; }
  .spPmsList__product { font-size: 11px; }
  .spPmsList--hotel li a::after { right: 14px; width: 24px; height: 24px; font-size: 13px; }
  .spCard--hotelShot .spCard__frame { padding: 10px; }
  .spCta__ribbon--hotel { font-size: 10px; padding: 5px 13px; }
}

/* end Phase 2E — hotel-solution */


/* ============================================================
   Phase 2F — sparette.html / kumoregi.html / mobile-online-menu.html
   各ページに味付け（ページ固有モディファイア）を追加。
   共通構造（spHero / spBigFeature / spCta / spStatCard / spCard 等）
   を継承し、配色と小装飾のみ差分適用。既存クラスは一切変更しない。
   ============================================================ */

/* ---------- 2F-共通: インラインstyle互換の代替クラス ---------- */
.spFeature__text--center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.spFeature__text--fine {
  font-size: 12px;
  color: #5a616b;
}
.spCaseImg {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
  display: block;
}
.spVideoBlock {
  text-align: center;
}
.spVideo--mom {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 18px 40px rgba(17, 24, 39, .18);
}
.spSection--flush { padding-bottom: 0; }

/* ---------- 2F-共通: フロー番号バッジ（絵文字/インライン数字の代替） ---------- */
.spFlowStep__no {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 50%;
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 30px;
  font-weight: 900;
  color: #0b3a6b;
  background: #fff;
  border: 2px solid rgba(11, 58, 107, .18);
  box-shadow: 0 6px 16px rgba(11, 58, 107, .10);
  letter-spacing: -.02em;
}
.spFlowStep__img--no { padding: 18px; background: none; }


/* ============================================================
   2F-SPA — sparette.html（温浴施設）
   配色: ネイビー #0b3a6b × ターコイズ #1ec0c9（湯/水のイメージ）
   ============================================================ */

.spHero--spa {
  position: relative;
  padding: 72px 0 60px;
  background:
    radial-gradient(120% 70% at 88% 8%, rgba(30, 192, 201, .30) 0%, rgba(30, 192, 201, 0) 55%),
    radial-gradient(90% 70% at 8% 115%, rgba(255, 255, 255, .18) 0%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(140deg, #062b52 0%, #0b3a6b 45%, #137a9d 100%);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
/* 波紋風の装飾レイヤー */
.spHero--spa::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 18%, rgba(30, 192, 201, .22) 0%, rgba(30, 192, 201, 0) 18%),
    radial-gradient(circle at 15% 90%, rgba(30, 192, 201, .18) 0%, rgba(30, 192, 201, 0) 22%),
    repeating-radial-gradient(circle at 50% 120%, rgba(255, 255, 255, .05) 0 2px, transparent 2px 48px);
  pointer-events: none;
  z-index: 0;
}
.spHero--spa::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 72%;
  max-width: 520px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(30, 192, 201, .7) 50%, transparent 100%);
  z-index: 1;
}
.spHero--spa .spHero__inner { position: relative; z-index: 1; }
.spHero--spa .spHero__breadcrumb { font-size: 12px; opacity: .9; }
.spHero--spa .spHero__breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 2px;
  color: #bdeaef;
}
.spHero--spa .spHero__tag {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  background: linear-gradient(135deg, #1ec0c9 0%, #4fd8dd 100%);
  color: #062b52;
  padding: 5px 14px;
  font-size: 12px;
  letter-spacing: .2em;
  box-shadow: 0 6px 18px rgba(30, 192, 201, .35);
  display: inline-block;
  margin-bottom: 14px;
  border-radius: 4px;
  font-weight: 700;
}
.spHero--spa .spHero__title {
  font-family: var(--font-display, "Zen Kaku Gothic New", sans-serif);
  font-size: clamp(30px, 9.5vw, 52px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -.01em;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .3);
}
.spHero--spa .spHero__sub {
  font-size: 14px;
  line-height: 1.85;
  max-width: 42ch;
  color: rgba(255, 255, 255, .88);
}

/* POINT カード化: 既存 .spFeature を --spa で白カード化 */
.spFeature--spa {
  position: relative;
  padding: 28px 22px 24px;
  background: #fff;
  border: 1px solid rgba(11, 58, 107, .08);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(11, 58, 107, .08);
  overflow: hidden;
}
.spFeature--spa::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #1ec0c9 0%, #0b3a6b 100%);
}
.spFeature--spa .spFeature__tag {
  display: inline-block;
  font-family: var(--font-en, "Inter Tight", sans-serif);
  padding: 4px 12px;
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 700;
  color: #062b52;
  background: linear-gradient(135deg, #9df1f5 0%, #4fd8dd 100%);
  border-radius: 4px;
  margin-bottom: 12px;
}
.spFeature--spa .spFeature__title {
  color: #062b52;
  font-weight: 900;
}

/* 機器構成カードグリッド */
.spMachineGrid--spa .spMachineCard {
  background: #fff;
  border: 1px solid rgba(11, 58, 107, .08);
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 4px 12px rgba(11, 58, 107, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.spMachineGrid--spa .spMachineCard:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 192, 201, .4);
  box-shadow: 0 10px 24px rgba(11, 58, 107, .12);
}
.spMachineGrid--spa .spMachineCard__img {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f1fbfc 0%, #e6f4f8 100%);
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 12px;
}
.spMachineGrid--spa .spMachineCard__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.spMachineGrid--spa .spMachineCard__name {
  font-weight: 800;
  color: #062b52;
  font-size: 14.5px;
  margin-bottom: 6px;
}
.spMachineGrid--spa .spMachineCard__text {
  font-size: 12.5px;
  line-height: 1.7;
  color: #3c4450;
}

/* オプションボックス --spa */
.spOptionBox--spa {
  background: #fff;
  border: 1px solid rgba(11, 58, 107, .08);
  border-left: 3px solid #1ec0c9;
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 6px 16px rgba(11, 58, 107, .06);
}
.spOptionBox--spa .spOptionBox__title {
  color: #062b52;
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(30, 192, 201, .4);
}
.spOptionBox--spa .spOptionBox__list li {
  font-size: 13px;
  padding: 5px 0 5px 20px;
  position: relative;
  color: #333;
}
.spOptionBox--spa .spOptionBox__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #9df1f5 0%, #1ec0c9 60%, #0b3a6b 100%);
  box-shadow: 0 0 6px rgba(30, 192, 201, .45);
}

/* チェックリスト (spa) */
.spFeature--spa .spFeature__checks li::before,
.spBigFeature--spa .spFeature__checks li::before {
  background: linear-gradient(135deg, #1ec0c9 0%, #0b3a6b 100%);
}

/* CTA --spa: ネイビー × ターコイズ */
.spCta--spa {
  background:
    radial-gradient(120% 70% at 90% 10%, rgba(30, 192, 201, .28) 0%, rgba(30, 192, 201, 0) 55%),
    radial-gradient(100% 80% at 10% 110%, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(135deg, #062b52 0%, #0b3a6b 55%, #137a9d 100%);
}
.spCta--spa .spCta__btn--primary {
  background: linear-gradient(135deg, #1ec0c9 0%, #4fd8dd 100%);
  color: #062b52;
  box-shadow: 0 10px 28px rgba(30, 192, 201, .35);
}
.spCta--spa .spCta__btn--primary:hover { background: linear-gradient(135deg, #4fd8dd 0%, #9df1f5 100%); }


/* ============================================================
   2F-KUMO — kumoregi.html（クモレジ / クラウドレジ）
   配色: ネイビー #0b3a6b × 空色 #4aa0f0（クラウドのイメージ）
   ============================================================ */

.spHero--kumo {
  position: relative;
  padding: 72px 0 60px;
  background:
    radial-gradient(120% 70% at 90% 5%, rgba(255, 255, 255, .25) 0%, rgba(255, 255, 255, 0) 50%),
    radial-gradient(80% 60% at 10% 100%, rgba(74, 160, 240, .30) 0%, rgba(74, 160, 240, 0) 55%),
    linear-gradient(140deg, #0b3a6b 0%, #1a5aa3 50%, #4aa0f0 100%);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
/* 雲のふわっとしたブラー装飾 */
.spHero--kumo::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -8%;
  width: 260px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, .25) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(14px);
  pointer-events: none;
  z-index: 0;
}
.spHero--kumo::after {
  content: "";
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: 240px;
  height: 110px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, .18) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(16px);
  pointer-events: none;
  z-index: 0;
}
.spHero--kumo .spHero__inner { position: relative; z-index: 1; }
.spHero--kumo .spHero__breadcrumb { font-size: 12px; opacity: .92; }
.spHero--kumo .spHero__breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 2px;
  color: #d7ecff;
}
.spHero--kumo .spHero__tag {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  background: #fff;
  color: #0b3a6b;
  padding: 5px 14px;
  font-size: 12px;
  letter-spacing: .22em;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
  display: inline-block;
  margin-bottom: 14px;
  border-radius: 4px;
  font-weight: 800;
}
.spHero--kumo .spHero__title {
  font-family: var(--font-display, "Zen Kaku Gothic New", sans-serif);
  font-size: clamp(30px, 9.5vw, 52px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -.01em;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .25);
}
.spHero--kumo .spHero__sub {
  font-size: 14px;
  line-height: 1.85;
  max-width: 42ch;
  color: rgba(255, 255, 255, .92);
}

/* StatCard --kumo: 空色アクセント版 */
.spStatCard--kumo {
  position: relative;
  padding: 28px 22px;
  background: #fff;
  border: 1px solid rgba(11, 58, 107, .10);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(11, 58, 107, .08);
  text-align: left;
  overflow: hidden;
}
.spStatCard--kumo::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #4aa0f0 0%, #0b3a6b 100%);
}
.spStatCard--kumo .spStatCard__num {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: clamp(40px, 13vw, 60px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
  display: block;
  white-space: normal;
  word-break: break-word;
  background: linear-gradient(135deg, #0b3a6b 0%, #1a5aa3 50%, #4aa0f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.spStatCard--kumo .spStatCard__num sup {
  font-size: .42em;
  font-weight: 700;
  vertical-align: super;
  -webkit-text-fill-color: #0b3a6b;
}
.spStatCard--kumo .spStatCard__label {
  font-size: 13px;
  color: #1a1a1a;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.spStatCard--kumo .spStatCard__label::before {
  content: "";
  width: 18px;
  height: 2px;
  background: #4aa0f0;
  flex-shrink: 0;
}
.spStatCard--kumo.spStatCard--textNum .spStatCard__num {
  font-family: var(--font-display, "Zen Kaku Gothic New", sans-serif);
  font-size: clamp(26px, 8vw, 42px);
  letter-spacing: -.01em;
  white-space: normal;
}

@media (min-width: 601px) and (max-width: 900px) {
  .spStatCard--kumo .spStatCard__num { font-size: clamp(28px, 4.6vw, 40px); letter-spacing: -.02em; white-space: normal; }
  .spStatCard--kumo.spStatCard--textNum .spStatCard__num { font-size: clamp(22px, 3.8vw, 32px); }
  .spStatCard--kumo { padding: 22px 18px; }
  .spStatCard--kumo .spStatCard__label { font-size: 12px; }
}
@media (min-width: 901px) {
  .spStatCard--kumo .spStatCard__num { font-size: clamp(42px, 4.2vw, 60px); white-space: normal; }
  .spStatCard--kumo.spStatCard--textNum .spStatCard__num { font-size: clamp(30px, 3.2vw, 44px); }
}

/* BigFeature --kumo: mbrj 継承、空色アクセント */
.spBigFeature--kumo .spBigFeature__numTag {
  background: linear-gradient(135deg, #4aa0f0 0%, #1a5aa3 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(74, 160, 240, .32);
}
.spBigFeature--kumo .spBigFeature__decNum {
  color: rgba(74, 160, 240, .12);
}
.spBigFeature--kumo .spFeature__checks {
  background: linear-gradient(135deg, #eaf3ff 0%, #f6f9fc 100%);
}
.spBigFeature--kumo .spFeature__checks li::before {
  background: linear-gradient(135deg, #4aa0f0 0%, #0b3a6b 100%);
}

/* OptionBox --kumo: 空色アクセント */
.spOptionBox--kumo {
  background: #fff;
  border: 1px solid rgba(11, 58, 107, .08);
  border-top: 3px solid #4aa0f0;
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 6px 16px rgba(11, 58, 107, .06);
}
.spOptionBox--kumo .spOptionBox__title {
  color: #0b3a6b;
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(74, 160, 240, .4);
}
.spOptionBox--kumo .spOptionBox__list li {
  font-size: 13px;
  padding: 5px 0 5px 22px;
  position: relative;
  color: #333;
}
.spOptionBox--kumo .spOptionBox__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: linear-gradient(135deg, #4aa0f0 0%, #0b3a6b 100%);
  box-shadow: 0 2px 6px rgba(74, 160, 240, .3);
}

/* Card --kumo: 業態カード */
.spCard--kumo {
  background: #fff;
  border: 1px solid rgba(11, 58, 107, .08);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(11, 58, 107, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.spCard--kumo:hover {
  transform: translateY(-3px);
  border-color: rgba(74, 160, 240, .5);
  box-shadow: 0 14px 28px rgba(11, 58, 107, .12);
}
.spCard--kumo .spCard__body { padding: 22px 20px; }
.spCard--kumo .spCard__title {
  color: #0b3a6b;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 8px;
  padding-left: 14px;
  position: relative;
}
.spCard--kumo .spCard__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, #4aa0f0 0%, #0b3a6b 100%);
}
.spCard--kumo .spCard__text {
  font-size: 13px;
  line-height: 1.75;
  color: #444;
}

/* PriceTable --kumo: 空色ハイライト */
.spPriceTable-wrap--kumo .spPriceTable thead th.spPriceTable__highlight {
  background: linear-gradient(135deg, #0b3a6b 0%, #1a5aa3 100%);
  color: #fff;
}
.spPriceTable-wrap--kumo .spPriceTable tbody td.spPriceTable__kumo {
  color: #0b3a6b;
  font-weight: 700;
}

/* FlowStep --kumo */
.spFlowStep--kumo .spFlowStep__no {
  background: linear-gradient(135deg, #fff 0%, #eaf3ff 100%);
  border-color: rgba(74, 160, 240, .45);
  color: #0b3a6b;
  box-shadow: 0 8px 20px rgba(74, 160, 240, .18);
}
.spFlowStep--kumo .spFlowStep__label { color: #0b3a6b; font-weight: 800; }

/* CTA --kumo */
.spCta--kumo {
  background:
    radial-gradient(120% 70% at 90% 10%, rgba(255, 255, 255, .18) 0%, rgba(255, 255, 255, 0) 55%),
    radial-gradient(100% 80% at 10% 110%, rgba(74, 160, 240, .35) 0%, rgba(74, 160, 240, 0) 55%),
    linear-gradient(135deg, #0b3a6b 0%, #1a5aa3 55%, #4aa0f0 100%);
}
.spCta--kumo .spCta__btn--primary {
  background: #fff;
  color: #0b3a6b;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .2);
}
.spCta--kumo .spCta__btn--primary:hover { background: #eaf3ff; }


/* ============================================================
   2F-MOM — mobile-online-menu.html（モバイルオーダー）
   配色: ネイビー #1a1740 × ビビッドオレンジ #ff6b35（飲食アクセント）
   ============================================================ */

.spHero--mom {
  position: relative;
  padding: 72px 0 60px;
  background:
    radial-gradient(120% 70% at 88% 8%, rgba(255, 107, 53, .32) 0%, rgba(255, 107, 53, 0) 55%),
    radial-gradient(90% 70% at 8% 115%, rgba(255, 186, 97, .20) 0%, rgba(255, 186, 97, 0) 55%),
    linear-gradient(140deg, #141133 0%, #251a5e 45%, #3a1e6d 100%);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
/* QRコード風のドットグリッド装飾 */
.spHero--mom::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 107, 53, .22) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse at 85% 20%, #000 0%, transparent 55%);
  -webkit-mask-image: radial-gradient(ellipse at 85% 20%, #000 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.spHero--mom::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #ff6b35 30%, #ffba61 50%, #ff6b35 70%, transparent 100%);
  z-index: 1;
}
.spHero--mom .spHero__inner { position: relative; z-index: 1; }
.spHero--mom .spHero__breadcrumb { font-size: 12px; opacity: .9; }
.spHero--mom .spHero__breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 2px;
  color: #ffd9c2;
}
.spHero--mom .spHero__tag {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  background: linear-gradient(135deg, #ff6b35 0%, #ffba61 100%);
  color: #141133;
  padding: 5px 14px;
  font-size: 12px;
  letter-spacing: .2em;
  box-shadow: 0 6px 18px rgba(255, 107, 53, .45);
  display: inline-block;
  margin-bottom: 14px;
  border-radius: 4px;
  font-weight: 800;
}
.spHero--mom .spHero__title {
  font-family: var(--font-display, "Zen Kaku Gothic New", sans-serif);
  font-size: clamp(30px, 9.5vw, 52px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -.01em;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .3);
}
.spHero--mom .spHero__sub {
  font-size: 14px;
  line-height: 1.85;
  max-width: 42ch;
  color: rgba(255, 255, 255, .9);
}

/* SolutionList --mom: オレンジ数字バッジ */
.spSolutionList--mom .spSolutionList__num {
  background: linear-gradient(135deg, #ff6b35 0%, #ffba61 100%);
  color: #141133;
  box-shadow: 0 6px 14px rgba(255, 107, 53, .35);
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-weight: 900;
}
.spSolutionList--mom .spSolutionList__item {
  background: #fff;
  border: 1px solid rgba(20, 17, 51, .08);
  border-left: 3px solid #ff6b35;
  box-shadow: 0 6px 18px rgba(20, 17, 51, .06);
}
.spSolutionList--mom .spSolutionList__title { color: #141133; font-weight: 900; }

/* Card --mom: 用途カード（画像付き） */
.spCard--mom {
  background: #fff;
  border: 1px solid rgba(20, 17, 51, .06);
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(20, 17, 51, .07);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.spCard--mom:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(20, 17, 51, .14);
}
.spCard--mom .spCard__img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #fff3e8 0%, #ffe1cc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.spCard--mom .spCard__img img {
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
  transition: transform .3s ease;
}
.spCard--mom:hover .spCard__img img { transform: scale(1.05); }
.spCard--mom .spCard__body {
  padding: 16px 18px 20px;
  text-align: center;
}
.spCard--mom .spCard__title {
  color: #141133;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .02em;
}

/* Card --momLine: LINEオプションカード（絵文字アイコンの代替含む） */
.spCard--momLine {
  background: #fff;
  border: 1px solid rgba(20, 17, 51, .08);
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 8px 22px rgba(20, 17, 51, .07);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.spCard--momLine::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35 0%, #ffba61 100%);
}
.spCard__iconSvg {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff3e8 0%, #ffe1cc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b35;
  box-shadow: inset 0 0 0 1px rgba(255, 107, 53, .25);
}
.spCard__iconSvg svg { width: 26px; height: 26px; }
.spCard--momLine .spCard__label {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 6px;
}
.spCard--momLine .spCard__title {
  color: #141133;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 8px;
}
.spCard--momLine .spCard__text {
  font-size: 13px;
  line-height: 1.75;
  color: #444;
  text-align: left;
}

/* Card --momFeat: モバイルオーダーとは?（2col特徴） */
.spCard--momFeat {
  background: #fff;
  border: 1px solid rgba(20, 17, 51, .08);
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 8px 22px rgba(20, 17, 51, .07);
  position: relative;
  overflow: hidden;
}
.spCard--momFeat::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #ff6b35 0%, #ffba61 100%);
}
.spCard--momFeat .spCard__title {
  color: #141133;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 8px;
}
.spCard--momFeat .spCard__text {
  font-size: 13.5px;
  line-height: 1.75;
  color: #333;
}

/* Feature --mom: 導入事例を枠付きに */
.spFeature--mom {
  background: #fff;
  border: 1px solid rgba(20, 17, 51, .08);
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 0 10px 28px rgba(20, 17, 51, .08);
}
.spFeature--mom .spFeature__tag {
  display: inline-block;
  font-family: var(--font-en, "Inter Tight", sans-serif);
  padding: 4px 12px;
  font-size: 11px;
  letter-spacing: .2em;
  font-weight: 700;
  color: #141133;
  background: linear-gradient(135deg, #ff6b35 0%, #ffba61 100%);
  border-radius: 4px;
  margin-bottom: 12px;
}
.spFeature--mom .spFeature__title {
  color: #141133;
  font-weight: 900;
  line-height: 1.45;
}

/* CTA --mom */
.spCta--mom {
  background:
    radial-gradient(120% 70% at 90% 10%, rgba(255, 107, 53, .35) 0%, rgba(255, 107, 53, 0) 55%),
    radial-gradient(100% 80% at 10% 110%, rgba(255, 186, 97, .22) 0%, rgba(255, 186, 97, 0) 55%),
    linear-gradient(135deg, #141133 0%, #251a5e 55%, #3a1e6d 100%);
}
.spCta--mom .spCta__btn--primary {
  background: linear-gradient(135deg, #ff6b35 0%, #ffba61 100%);
  color: #141133;
  box-shadow: 0 10px 28px rgba(255, 107, 53, .4);
}
.spCta--mom .spCta__btn--primary:hover {
  background: linear-gradient(135deg, #ffba61 0%, #ffd9b0 100%);
}


/* ============================================================
   2F — タブレット/デスクトップ調整
   ============================================================ */
@media (min-width: 601px) {
  .spMachineGrid--spa { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .spFeature--spa {
    padding: 32px 30px 28px;
  }
}
@media (min-width: 901px) {
  .spMachineGrid--spa { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   2F — 390px 最終微調整
   ============================================================ */
@media (max-width: 400px) {
  .spHero--spa, .spHero--kumo, .spHero--mom {
    padding: 48px 0 40px;
  }
  .spHero--spa .spHero__title,
  .spHero--kumo .spHero__title,
  .spHero--mom .spHero__title {
    font-size: clamp(28px, 9vw, 40px);
  }
  .spStatCard--kumo { padding: 22px 18px; }
  .spStatCard--kumo .spStatCard__num { font-size: clamp(36px, 12vw, 54px); }
  .spStatCard--kumo.spStatCard--textNum .spStatCard__num { font-size: clamp(22px, 7.2vw, 36px); }
  .spFeature--spa { padding: 22px 18px; }
  .spFlowStep__no { width: 60px; height: 60px; font-size: 24px; }
  .spCard--mom .spCard__body { padding: 14px 14px 18px; }
  .spCard--momLine, .spCard--momFeat { padding: 20px 16px; }
}

/* end Phase 2F */


/* ============================================================
   Phase 2G — hq-net.html / kenbaiki.html モバイル最適化
   共通構造（spHero / spBigFeature / spCta / spStatCard / spCard 等）
   を継承し、配色と小装飾のみを差分適用。既存クラスは一切変更しない。
   ============================================================ */

/* ---------- 2G-共通: 画像/レイアウトユーティリティ ---------- */
.spScreenImg {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .08);
  display: block;
}
.spScreenImg--full {
  width: 100%;
}
.spImgCenter {
  text-align: center;
}
.spDiagramImg {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}
.spCaseImg--kb {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
  display: block;
}
.spScreenNote {
  font-size: 12px;
  color: #5a616b;
  margin-top: 8px;
  text-align: center;
}
.spSubHead {
  font-size: 14px;
  font-weight: 700;
  color: #0b3a6b;
  margin-bottom: 16px;
  text-align: center;
}
.spMb40 { margin-bottom: 40px !important; }
.spMb48 { margin-bottom: 48px !important; }
.spMb32 { margin-bottom: 32px !important; }


/* ============================================================
   2G-HQ — hq-net.html（本部管理システム）
   配色: ネイビー #0b3a6b × エメラルドグリーン #10b981（データ/ビジネス感）
   ============================================================ */

.spHero--hq {
  position: relative;
  padding: 72px 0 60px;
  background:
    radial-gradient(110% 70% at 92% 6%, rgba(16, 185, 129, .28) 0%, rgba(16, 185, 129, 0) 55%),
    radial-gradient(80% 70% at 8% 112%, rgba(52, 211, 153, .18) 0%, rgba(52, 211, 153, 0) 55%),
    linear-gradient(140deg, #062b52 0%, #0b3a6b 45%, #0e4d85 100%);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
/* データグラフ風の斜線装飾 */
.spHero--hq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 185, 129, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, .10) 1px, transparent 1px);
  background-size: 40px 40px, 40px 40px;
  mask-image: radial-gradient(ellipse at 80% 30%, #000 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 80% 30%, #000 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
/* ボトムの上昇ライン（右肩上がりの売上イメージ） */
.spHero--hq::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #10b981 40%, #6ee7b7 55%, #10b981 70%, transparent 100%);
  z-index: 1;
}
.spHero--hq .spHero__inner { position: relative; z-index: 1; }
.spHero--hq .spHero__breadcrumb { font-size: 12px; opacity: .92; }
.spHero--hq .spHero__breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 2px;
  color: #cffaea;
}
.spHero--hq .spHero__tag {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  color: #062b52;
  padding: 5px 14px;
  font-size: 12px;
  letter-spacing: .22em;
  box-shadow: 0 6px 18px rgba(16, 185, 129, .4);
  display: inline-block;
  margin-bottom: 14px;
  border-radius: 4px;
  font-weight: 800;
}
.spHero--hq .spHero__title {
  font-family: var(--font-display, "Zen Kaku Gothic New", sans-serif);
  font-size: clamp(30px, 9.5vw, 52px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -.01em;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .3);
}
.spHero--hq .spHero__sub {
  font-size: 14px;
  line-height: 1.85;
  max-width: 42ch;
  color: rgba(255, 255, 255, .92);
}

/* OverviewCard --hq: データ訴求のカード */
.spOverviewCard--hq {
  background: #fff;
  border: 1px solid rgba(11, 58, 107, .08);
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(11, 58, 107, .08);
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.spOverviewCard--hq::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0b3a6b 0%, #10b981 60%, #34d399 100%);
}
.spOverviewCard--hq:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(11, 58, 107, .14);
}
.spOverviewCard--hq .spOverviewCard__icon {
  background: linear-gradient(135deg, #0b3a6b 0%, #10b981 100%);
  box-shadow: 0 8px 18px rgba(11, 58, 107, .25);
}
.spOverviewCard--hq .spOverviewCard__title {
  color: #0b3a6b;
  font-weight: 900;
}

/* BigFeature --hq: mbrj 継承、エメラルドアクセント */
.spBigFeature--hq .spBigFeature__numTag {
  background: linear-gradient(135deg, #10b981 0%, #0b3a6b 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(16, 185, 129, .35);
}
.spBigFeature--hq .spBigFeature__decNum {
  color: rgba(16, 185, 129, .12);
}
.spBigFeature--hq .spFeature__checks {
  background: linear-gradient(135deg, #ecfdf5 0%, #f6faf8 100%);
}
.spBigFeature--hq .spFeature__checks li::before {
  background: linear-gradient(135deg, #10b981 0%, #0b3a6b 100%);
}
.spBigFeature--hq .spBigFeature__title {
  color: #0b3a6b;
}

/* Feature --hq: 既存 spFeature にオーバーレイ（枠付きカード化） */
.spFeature--hq {
  background: #fff;
  border: 1px solid rgba(11, 58, 107, .08);
  border-left: 4px solid #10b981;
  border-radius: 6px 20px 20px 6px;
  padding: 24px 22px;
  box-shadow: 0 8px 22px rgba(11, 58, 107, .07);
}
.spFeature--hq .spFeature__tag {
  display: inline-block;
  font-family: var(--font-en, "Inter Tight", sans-serif);
  padding: 5px 14px;
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #10b981 0%, #0b3a6b 100%);
  border-radius: 4px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, .32);
}
.spFeature--hq .spFeature__title {
  color: #0b3a6b;
  font-weight: 900;
  line-height: 1.4;
}
.spFeature--hq .spFeature__checks {
  margin-top: 16px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #ecfdf5 0%, #f6faf8 100%);
  border-radius: 12px;
}
.spFeature--hq .spFeature__checks li {
  padding: 9px 0;
  font-size: 13px;
  line-height: 1.65;
  border-bottom: 1px solid rgba(11, 58, 107, .08);
}
.spFeature--hq .spFeature__checks li:last-child { border-bottom: none; }
.spFeature--hq .spFeature__checks li::before {
  background: linear-gradient(135deg, #10b981 0%, #0b3a6b 100%);
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 1px;
}

/* 画面ショット2枚並び用 */
.spScreenGrid--hq .spScreenImg {
  border: 1px solid rgba(11, 58, 107, .08);
  box-shadow: 0 8px 20px rgba(11, 58, 107, .07);
}

/* CTA --hq */
.spCta--hq {
  background:
    radial-gradient(120% 70% at 92% 6%, rgba(16, 185, 129, .32) 0%, rgba(16, 185, 129, 0) 55%),
    radial-gradient(100% 80% at 8% 110%, rgba(52, 211, 153, .20) 0%, rgba(52, 211, 153, 0) 55%),
    linear-gradient(135deg, #062b52 0%, #0b3a6b 50%, #0e4d85 100%);
}
.spCta--hq .spCta__btn--primary {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  color: #062b52;
  box-shadow: 0 10px 28px rgba(16, 185, 129, .4);
}
.spCta--hq .spCta__btn--primary:hover {
  background: linear-gradient(135deg, #34d399 0%, #6ee7b7 100%);
}


/* ============================================================
   2G-KEN — kenbaiki.html（クラウド券売機）
   配色: ネイビー #0b3a6b × エレガントゴールド #d4a24a + ディープレッド #b22234
   （券売機/チケット/食券のイメージ）
   ============================================================ */

.spHero--ken {
  position: relative;
  padding: 72px 0 60px;
  background:
    radial-gradient(120% 70% at 90% 8%, rgba(212, 162, 74, .28) 0%, rgba(212, 162, 74, 0) 55%),
    radial-gradient(85% 70% at 8% 112%, rgba(178, 34, 52, .20) 0%, rgba(178, 34, 52, 0) 55%),
    linear-gradient(140deg, #0a1f40 0%, #0b3a6b 50%, #13355e 100%);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
/* チケット穴風のドット列装飾 */
.spHero--ken::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(212, 162, 74, .24) 1.6px, transparent 1.6px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* 券売機スリット風ボトムライン */
.spHero--ken::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background:
    linear-gradient(90deg,
      transparent 0%,
      #d4a24a 18%, #f2d68a 30%, #d4a24a 42%,
      transparent 50%,
      #b22234 60%, #d53e50 72%, #b22234 84%,
      transparent 100%);
  z-index: 1;
}
.spHero--ken .spHero__inner { position: relative; z-index: 1; }
.spHero--ken .spHero__breadcrumb { font-size: 12px; opacity: .92; }
.spHero--ken .spHero__breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 2px;
  color: #f4e0ba;
}
.spHero--ken .spHero__tag {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  background: linear-gradient(135deg, #d4a24a 0%, #f2d68a 60%, #d4a24a 100%);
  color: #0a1f40;
  padding: 5px 14px;
  font-size: 12px;
  letter-spacing: .22em;
  box-shadow: 0 6px 18px rgba(212, 162, 74, .42);
  display: inline-block;
  margin-bottom: 14px;
  border-radius: 4px;
  font-weight: 800;
}
.spHero--ken .spHero__title {
  font-family: var(--font-display, "Zen Kaku Gothic New", sans-serif);
  font-size: clamp(30px, 9.5vw, 52px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -.01em;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .32);
}
.spHero--ken .spHero__sub {
  font-size: 14px;
  line-height: 1.85;
  max-width: 42ch;
  color: rgba(255, 255, 255, .92);
}

/* OverviewCard --ken: メリット訴求カード */
.spOverviewCard--ken {
  background: #fff;
  border: 1px solid rgba(11, 58, 107, .08);
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(11, 58, 107, .08);
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.spOverviewCard--ken::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0b3a6b 0%, #d4a24a 100%);
}
.spOverviewCard--ken:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(11, 58, 107, .14);
}
.spOverviewCard--ken .spOverviewCard__icon {
  background: linear-gradient(135deg, #0b3a6b 0%, #13355e 50%, #d4a24a 130%);
  box-shadow: 0 8px 18px rgba(11, 58, 107, .28);
}
.spOverviewCard--ken .spOverviewCard__title {
  color: #0b3a6b;
  font-weight: 900;
}

/* BigFeature --ken: mbrj 継承、ゴールドアクセント */
.spBigFeature--ken .spBigFeature__numTag {
  background: linear-gradient(135deg, #d4a24a 0%, #b8862e 100%);
  color: #0a1f40;
  box-shadow: 0 4px 12px rgba(212, 162, 74, .38);
}
.spBigFeature--ken .spBigFeature__decNum {
  color: rgba(212, 162, 74, .14);
}
.spBigFeature--ken .spFeature__checks {
  background: linear-gradient(135deg, #fff7e3 0%, #fbf2de 100%);
}
.spBigFeature--ken .spFeature__checks li::before {
  background: linear-gradient(135deg, #d4a24a 0%, #0b3a6b 100%);
}
.spBigFeature--ken .spBigFeature__title {
  color: #0b3a6b;
}

/* BigFeature --kenAccent: POS連携など別コーナー用（レッドアクセント） */
.spBigFeature--kenAccent .spBigFeature__numTag {
  background: linear-gradient(135deg, #b22234 0%, #7a1725 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(178, 34, 52, .34);
}
.spBigFeature--kenAccent .spBigFeature__decNum {
  color: rgba(178, 34, 52, .12);
}
.spBigFeature--kenAccent .spFeature__checks li::before {
  background: linear-gradient(135deg, #b22234 0%, #0b3a6b 100%);
}

/* OptionBox --ken: 決済方法カード */
.spOptionBox--ken {
  background: #fff;
  border: 1px solid rgba(11, 58, 107, .08);
  border-top: 3px solid #d4a24a;
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 6px 18px rgba(11, 58, 107, .07);
  transition: transform .2s ease, box-shadow .2s ease;
}
.spOptionBox--ken:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11, 58, 107, .12);
}
.spOptionBox--ken .spOptionBox__title {
  color: #0b3a6b;
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(212, 162, 74, .5);
}
.spOptionBox--ken .spOptionBox__list li {
  font-size: 13px;
  padding: 5px 0 5px 22px;
  position: relative;
  color: #333;
}
.spOptionBox--ken .spOptionBox__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(135deg, #d4a24a 0%, #b8862e 100%);
  box-shadow: 0 2px 6px rgba(212, 162, 74, .35);
}

/* Card --ken: 業態カード */
.spCard--ken {
  background: #fff;
  border: 1px solid rgba(11, 58, 107, .08);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(11, 58, 107, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.spCard--ken:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 162, 74, .55);
  box-shadow: 0 14px 28px rgba(11, 58, 107, .14);
}
.spCard--ken .spCard__body { padding: 22px 20px; }
.spCard--ken .spCard__title {
  color: #0b3a6b;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 8px;
  padding-left: 14px;
  position: relative;
}
.spCard--ken .spCard__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, #d4a24a 0%, #0b3a6b 100%);
}
.spCard--ken .spCard__text {
  font-size: 13px;
  line-height: 1.75;
  color: #444;
}

/* Card --kenCase: 導入事例カード（画像付き） */
.spCard--kenCase {
  background: #fff;
  border: 1px solid rgba(11, 58, 107, .08);
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(11, 58, 107, .08);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.spCard--kenCase:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(11, 58, 107, .15);
}
.spCard--kenCase .spCard__body { padding: 16px 18px 18px; }
.spCard--kenCase .spCard__title {
  color: #0b3a6b;
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 0;
  text-align: center;
}

/* FlowStep --ken: ゴールド円形バッジ */
.spFlowStep--ken .spFlowStep__no {
  background: linear-gradient(135deg, #fff 0%, #fff7e3 100%);
  border-color: rgba(212, 162, 74, .55);
  color: #0b3a6b;
  box-shadow: 0 8px 22px rgba(212, 162, 74, .28);
}
.spFlowStep--ken .spFlowStep__label {
  color: #0b3a6b;
  font-weight: 800;
}

/* 画面ショット3枚並び用 */
.spScreenGrid--ken .spScreenImg {
  border: 1px solid rgba(11, 58, 107, .08);
  box-shadow: 0 6px 18px rgba(11, 58, 107, .08);
}

/* CTA --ken */
.spCta--ken {
  background:
    radial-gradient(120% 70% at 88% 8%, rgba(212, 162, 74, .32) 0%, rgba(212, 162, 74, 0) 55%),
    radial-gradient(100% 80% at 8% 110%, rgba(178, 34, 52, .18) 0%, rgba(178, 34, 52, 0) 55%),
    linear-gradient(135deg, #0a1f40 0%, #0b3a6b 50%, #13355e 100%);
}
.spCta--ken .spCta__btn--primary {
  background: linear-gradient(135deg, #d4a24a 0%, #f2d68a 100%);
  color: #0a1f40;
  box-shadow: 0 10px 28px rgba(212, 162, 74, .4);
}
.spCta--ken .spCta__btn--primary:hover {
  background: linear-gradient(135deg, #f2d68a 0%, #ffe9ba 100%);
}


/* ============================================================
   2G — タブレット/デスクトップ調整
   ============================================================ */
@media (min-width: 601px) and (max-width: 900px) {
  .spOverviewCard--hq, .spOverviewCard--ken { padding: 26px 20px 22px; }
}
@media (min-width: 901px) {
  .spFeature--hq { padding: 32px 30px 28px; }
}

/* ============================================================
   2G — 390px 最終微調整
   ============================================================ */
@media (max-width: 400px) {
  .spHero--hq, .spHero--ken {
    padding: 48px 0 40px;
  }
  .spHero--hq .spHero__title,
  .spHero--ken .spHero__title {
    font-size: clamp(28px, 9vw, 40px);
  }
  .spFeature--hq { padding: 20px 16px; }
  .spOptionBox--ken { padding: 18px 14px; }
  .spCard--ken .spCard__body { padding: 18px 14px; }
  .spCard--kenCase .spCard__body { padding: 14px 12px 16px; }
  .spOverviewCard--hq, .spOverviewCard--ken { padding: 26px 18px 22px; }
}

/* end Phase 2G */

/* ============================================================
   Phase 2H — 会社情報系4ページ モバイルファースト最適化
   greeting / company-outline / introductry-example / news
   既存ID・クラス・テキストは一切変更せず、`info` 系モディファイア
   (.spHero--info / .spCaseCard--greeting / .spInfoTable--mobile /
    .spProofPage--mobile / .spNewsCard 等) のみを追加して上書き。
   ============================================================ */

/* ── 共通: 情報系ページ ヒーロー ────────────────────────────── */
.spHero--info {
  position: relative;
  background:
    radial-gradient(110% 70% at 88% 8%, rgba(232, 169, 58, .24) 0%, rgba(232, 169, 58, 0) 58%),
    radial-gradient(80% 70% at 5% 105%, rgba(45, 127, 212, .35) 0%, rgba(45, 127, 212, 0) 60%),
    linear-gradient(135deg, #0a1f40 0%, #0b3a6b 45%, #14467d 100%);
  overflow: hidden;
  isolation: isolate;
}
.spHero--info::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 40%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 40%, transparent 78%);
  pointer-events: none;
  z-index: 0;
}
.spHero--info .spHero__inner { position: relative; z-index: 1; }

.spHero--info .spHero__breadcrumb {
  font-size: 12px;
  gap: 4px;
  opacity: .92;
}
.spHero--info .spHero__breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 2px;
  color: rgba(255, 255, 255, .88);
}
.spHero--info .spHero__breadcrumb a:hover { color: #fff; }
.spHero--info .spHero__breadcrumb span { opacity: .6; }

.spHero--info .spHero__tag {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  background: rgba(232, 169, 58, .92);
  color: #0a1f40;
  padding: 5px 14px;
  font-size: 12px;
  letter-spacing: .22em;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(232, 169, 58, .35);
}
.spHero--info .spHero__title {
  font-family: var(--font-display, "Zen Kaku Gothic New", sans-serif);
  font-size: clamp(32px, 9.6vw, 54px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -.01em;
  margin-bottom: 14px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .28);
}
.spHero--info .spHero__sub {
  font-size: 14px;
  line-height: 1.85;
  max-width: 42ch;
  color: rgba(255, 255, 255, .92);
}

/* ページ個別の装飾線 */
.spHero--greeting::after,
.spHero--company::after,
.spHero--example::after,
.spHero--news::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(232, 169, 58, .28) 0%, rgba(232, 169, 58, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.spHero--news::after {
  background: radial-gradient(circle at 30% 30%, rgba(45, 127, 212, .42) 0%, rgba(45, 127, 212, 0) 70%);
}

/* セクション頭部 (情報系共通 kicker) */
.spSection--infoTop { padding-top: 48px; }

.spSection__kicker {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 12px;
  letter-spacing: .24em;
  color: #e8a93a;
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.spSection__kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: #e8a93a;
}

.spSection__head--greeting,
.spSection__head--company,
.spSection__head--example,
.spSection__head--news {
  margin-bottom: 22px;
}

/* ============================================================
   1) greeting.html
   ============================================================ */
.spFeature--greeting {
  gap: 32px;
}
.spFeature__img--greeting {
  position: relative;
  display: block;
  background: linear-gradient(160deg, #eaf0f8 0%, #d8e3f0 100%);
  border-radius: 24px;
  padding: 24px 24px 64px;
  box-shadow: 0 18px 40px rgba(11, 58, 107, .14);
  overflow: hidden;
  text-align: center;
}
.spFeature__img--greeting img {
  display: inline-block;
  margin: 0 auto;
}
.spGreetCaption {
  position: absolute !important;
}
.spFeature__img--greeting::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(232, 169, 58, .25) 0%, rgba(232, 169, 58, 0) 55%),
    radial-gradient(80% 60% at 0% 100%, rgba(11, 58, 107, .18) 0%, rgba(11, 58, 107, 0) 60%);
  pointer-events: none;
}
.spFeature__img--greeting img {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(11, 58, 107, .22);
}
.spGreetCaption {
  position: absolute;
  left: 20px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 16px;
  background: rgba(10, 31, 64, .88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  color: #fff;
  border-left: 3px solid #e8a93a;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
}
.spGreetCaption__role {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 10px;
  letter-spacing: .2em;
  color: #f2d68a;
  text-transform: uppercase;
  white-space: nowrap;
}
.spGreetCaption__name {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .02em;
  white-space: nowrap;
  color: #fff !important;     /* 紺背景上の白文字を明示 */
}

.spGreetBody { position: relative; }
.spGreetQuote {
  color: rgba(232, 169, 58, .5);
  line-height: 0;
  margin-bottom: -6px;
  display: block;
}
.spGreetQuote__mark {
  width: 36px !important;
  height: 27px !important;
  max-width: 36px;
  display: inline-block;
  flex-shrink: 0;
}
.spGreetQuote__mark--dev {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 30px !important;
  height: 23px !important;
  max-width: 30px;
  color: rgba(11, 58, 107, .16);
}

.spGreetSign {
  margin-top: 18px !important;
  padding-top: 14px;
  border-top: 1px solid rgba(11, 58, 107, .14);
  letter-spacing: .02em;
}
.spGreetSign strong {
  color: #0a1f40;
  font-weight: 900;
}

.spCaseCard--greeting {
  position: relative;
  background: #fff;
  border: 1px solid rgba(11, 58, 107, .10);
  border-radius: 20px;
  padding: 32px 24px 26px;
  box-shadow: 0 12px 30px rgba(11, 58, 107, .08);
  overflow: hidden;
}
.spCaseCard--greeting::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #e8a93a 0%, #0b3a6b 100%);
}

/* CTA--info: mbrj CTAベースにゴールド系ボタン */
.spCta--info {
  background:
    radial-gradient(120% 70% at 88% 10%, rgba(232, 169, 58, .28) 0%, rgba(232, 169, 58, 0) 55%),
    radial-gradient(90% 80% at 5% 110%, rgba(45, 127, 212, .28) 0%, rgba(45, 127, 212, 0) 60%),
    linear-gradient(135deg, #0a1f40 0%, #0b3a6b 55%, #14467d 100%);
}
.spCta--info .spCta__btn--primary {
  background: linear-gradient(135deg, #f2d68a 0%, #e8a93a 100%);
  color: #0a1f40;
  box-shadow: 0 10px 28px rgba(232, 169, 58, .38);
}
.spCta--info .spCta__btn--primary:hover {
  background: linear-gradient(135deg, #ffe9ba 0%, #f2d68a 100%);
}

/* ============================================================
   2) company-outline.html
   ============================================================ */
/* dl/dt/dd を使った新テーブル（th/tdの既存 .spInfoTable と共存） */
.spInfoTable--mobile {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(11, 58, 107, .10);
}
.spInfoTable--mobile .spInfoTable__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid rgba(11, 58, 107, .10);
  align-items: stretch;
}
.spInfoTable--mobile dt {
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(11, 58, 107, .06) 0%, rgba(11, 58, 107, .02) 100%);
  font-weight: 800;
  font-size: 13px;
  color: #0a1f40;
  letter-spacing: .02em;
  border-right: 3px solid #e8a93a;
  display: flex;
  align-items: center;
}
.spInfoTable--mobile dd {
  padding: 18px 22px;
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.85;
  margin: 0;
  background: #fff;
}
@media (max-width: 720px) {
  .spInfoTable--mobile .spInfoTable__row {
    grid-template-columns: 1fr;
    border-radius: 14px;
    border: 1px solid rgba(11, 58, 107, .10);
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(11, 58, 107, .05);
  }
  .spInfoTable--mobile {
    border-top: none;
  }
  .spInfoTable--mobile .spInfoTable__row + .spInfoTable__row { margin-top: 10px; }
  .spInfoTable--mobile dt {
    padding: 12px 18px;
    background: linear-gradient(135deg, #0b3a6b 0%, #14467d 100%);
    color: #fff;
    border-right: none;
    border-bottom: 3px solid #e8a93a;
    font-size: 12px;
    letter-spacing: .14em;
  }
  .spInfoTable--mobile dd {
    padding: 16px 18px 18px;
    font-size: 14px;
  }
}

/* タイムライン 会社向け拡張: ゴールド装飾 + 年号ピル */
.spTimeline--company {
  padding-left: 40px;
}
.spTimeline--company::before {
  background: linear-gradient(180deg,
    rgba(11, 58, 107, .25) 0%,
    rgba(232, 169, 58, .35) 50%,
    rgba(11, 58, 107, .25) 100%);
  width: 2px;
  left: 14px;
}
.spTimeline--company .spTimeline__item {
  padding: 0 0 22px 22px;
}
.spTimeline--company .spTimeline__item::before {
  left: -34px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 3px solid #e8a93a;
  box-shadow: 0 0 0 4px rgba(232, 169, 58, .15);
}
.spTimeline--company .spTimeline__item:hover::before {
  background: #e8a93a;
}
.spTimeline--company .spTimeline__date {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0b3a6b 0%, #14467d 100%);
  color: #fff;
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 11px;
  letter-spacing: .05em;
  margin-bottom: 6px;
}
.spTimeline--company .spTimeline__text {
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.75;
  padding: 2px 0;
}

@media (max-width: 480px) {
  .spTimeline--company { padding-left: 32px; }
  .spTimeline--company::before { left: 10px; }
  .spTimeline--company .spTimeline__item::before { left: -30px; }
  .spTimeline--company .spTimeline__date { font-size: 10px; padding: 3px 9px; }
  .spTimeline--company .spTimeline__text { font-size: 13.5px; }
}

/* ============================================================
   3) introductry-example.html
   ============================================================ */
/* KPIバッジ化 */
.spAchieveGrid--example {
  gap: 16px;
  margin-bottom: 36px;
}
.spAchieveCard--example {
  position: relative;
  text-align: left;
  padding: 26px 22px 22px;
  background: #fff;
  border: 1px solid rgba(11, 58, 107, .10);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(11, 58, 107, .08);
  overflow: hidden;
  isolation: isolate;
}
.spAchieveCard--example::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #e8a93a 0%, #0b3a6b 100%);
}
.spAchieveCard--example::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 169, 58, .12) 0%, rgba(232, 169, 58, 0) 70%);
  z-index: -1;
}
.spAchieveCard__kicker {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 11px;
  letter-spacing: .24em;
  color: #e8a93a;
  font-weight: 700;
  margin-bottom: 10px;
}
.spAchieveCard--example .spAchieveCard__num {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: clamp(40px, 12vw, 58px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, #0a1f40 0%, #1a5fa8 60%, #e8a93a 130%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.spAchieveCard--example .spAchieveCard__num span {
  font-size: .5em;
  font-weight: 800;
  -webkit-text-fill-color: #0b3a6b;
  vertical-align: super;
}
.spAchieveCard--example .spAchieveCard__label {
  font-size: 13px;
  color: #1a1a1a;
  font-weight: 700;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.spAchieveCard--example .spAchieveCard__label::before {
  content: "";
  width: 18px;
  height: 2px;
  background: #e8a93a;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .spAchieveGrid--example { grid-template-columns: 1fr; }
}
@media (min-width: 601px) and (max-width: 900px) {
  .spAchieveGrid--example { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .spAchieveCard--example { padding: 22px 18px 20px; }
  .spAchieveCard--example .spAchieveCard__num { font-size: clamp(28px, 5vw, 42px); }
}

/* Mapセクション: モバイルでスタック、枠崩壊防止 */
.spProofPage--mobile {
  margin-top: 0;
}
.spProofPage--mobile #main {
  display: grid;
  gap: 16px;
  align-items: start;
}
.spProofPage--mobile #pageLeft {
  padding: 0;
  height: auto;
}
.spProofPage--mobile #pageLeft #map {
  width: 100%;
  height: clamp(360px, 58vh, 520px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11, 58, 107, .12);
  box-shadow: 0 14px 34px rgba(11, 58, 107, .14);
  background: #e9eef5; /* マップ遅延時のフォールバック */
}
.spProofPage--mobile .tpProof__caption {
  margin-top: 10px;
  font-size: 12.5px;
  color: #5a616b;
  text-align: center;
}
.spProofPage--mobile #pageRightTop {
  padding: 0;
  height: auto;
}
.spProofPage--mobile #pageRightTop #areaBox {
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11, 58, 107, .12);
  box-shadow: 0 10px 28px rgba(11, 58, 107, .08);
  background: #fff;
}
.spProofPage--mobile #areaBox .area.list-group-item {
  padding: 16px 18px;
  min-height: 52px;
  font-weight: 700;
  font-size: 14px;
  color: #0a1f40;
  border-bottom: 1px solid rgba(11, 58, 107, .08);
  background: #fff;
  transition: background .15s, color .15s;
}
.spProofPage--mobile #areaBox .area.list-group-item:last-child { border-bottom: 0; }
.spProofPage--mobile #areaBox .area.list-group-item:hover {
  background: rgba(232, 169, 58, .10);
  color: #0a1f40;
  text-decoration: none;
}
.spProofPage--mobile #areaBox .area.list-group-item.active {
  background: linear-gradient(135deg, #0b3a6b 0%, #14467d 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, .15);
}
.spProofPage--mobile #pageRightDetails {
  padding: 0;
  height: auto;
  min-height: 0;
}
.spProofPage--mobile #pageRightDetails #detailsBox {
  height: auto;
  max-height: 60vh;
  overflow-y: auto;
  padding: 14px 14px 70px;
  color: #1a1a1a;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(11, 58, 107, .12);
  box-shadow: 0 10px 28px rgba(11, 58, 107, .08);
}
.spProofPage--mobile #pageRightDetails #detailsBox .card {
  margin-bottom: 8px;
  border-radius: 10px;
  overflow: hidden;
}
.spProofPage--mobile #pageRightDetails #detailsBox .card button {
  width: 100%;
  padding: 12px 14px !important;
  text-align: left !important;
  font-size: 13.5px;
  line-height: 1.6;
  word-wrap: break-word;
  white-space: normal;
  min-height: 48px;
}
.spProofPage--mobile #pageRightDetails #returnTop {
  height: auto;
  text-align: center;
  margin-top: 10px;
}
.spProofPage--mobile #pageRightDetails #returnTop .btn {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 800;
  background: #0b3a6b;
  border-color: #0b3a6b;
}
.spProofPage--mobile #pageRightDetails #returnTop .btn:hover {
  background: #0a1f40;
  border-color: #0a1f40;
}

@media (min-width: 900px) {
  .spProofPage--mobile #main {
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
    gap: 20px;
  }
  .spProofPage--mobile #pageLeft { grid-column: 1; grid-row: 1; }
  .spProofPage--mobile #pageRightTop,
  .spProofPage--mobile #pageRightDetails { grid-column: 2; grid-row: 1; }
  .spProofPage--mobile #pageLeft #map { height: clamp(520px, 65vh, 640px); }
  .spProofPage--mobile #pageRightTop #areaBox,
  .spProofPage--mobile #pageRightDetails #detailsBox { max-height: clamp(520px, 65vh, 640px); }
}

/* 事例カード & カードグリッド --example 強化 */
.spCaseCard--example {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(11, 58, 107, .10);
  border-radius: 20px;
  padding: 28px 24px 24px;
  box-shadow: 0 12px 30px rgba(11, 58, 107, .08);
  position: relative;
  overflow: hidden;
}
.spCaseCard--example::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #e8a93a 0%, #0b3a6b 100%);
}
.spCaseCard--example .spCaseCard__store {
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(11, 58, 107, .15);
  color: #0a1f40;
}
.spCaseCard--example .spCaseCard__qa {
  padding: 14px 2px;
  border-bottom: 1px solid rgba(11, 58, 107, .07);
}
.spCaseCard--example .spCaseCard__qa:last-child { border-bottom: 0; }
.spCaseCard--example .spCaseCard__q {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #0b3a6b;
  font-size: 14px;
  margin-bottom: 8px;
}
.spCaseCard--example .spCaseCard__q::before {
  content: "Q";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b3a6b 0%, #14467d 100%);
  color: #fff;
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 12px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.spCaseCard--example .spCaseCard__a {
  padding-left: 32px;
  font-size: 13.5px;
  color: #3a3f4a;
  line-height: 1.85;
}

/* spCard__arrow インラインstyle置換用の小サイズ */
.spCard__arrow--small {
  font-size: 12px !important;
}

/* 店舗カードグリッド --example */
.spCardGrid--example .spCard {
  transition: transform .2s, box-shadow .2s, border-color .2s;
  border: 1px solid rgba(11, 58, 107, .10);
}
.spCardGrid--example .spCard:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 169, 58, .5);
  box-shadow: 0 14px 32px rgba(11, 58, 107, .16);
}
.spCardGrid--example .spCard__label {
  background: linear-gradient(135deg, rgba(232, 169, 58, .18) 0%, rgba(232, 169, 58, .08) 100%);
  color: #9a6d17;
  border: 1px solid rgba(232, 169, 58, .3);
}

/* ============================================================
   4) news.html
   ============================================================ */
.spNewsList--cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.spNewsCard {
  position: relative;
  display: grid !important;
  grid-template-columns: 136px 1fr;
  gap: 0;
  padding: 0 !important;
  border: 1px solid rgba(11, 58, 107, .10) !important;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;           /* 子要素の背景が角丸外にはみ出るのを防ぐ */
  isolation: isolate;
  box-shadow: 0 10px 26px rgba(11, 58, 107, .06);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.spNewsCard:first-child { border-top: 1px solid rgba(11, 58, 107, .10) !important; }
.spNewsCard:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 169, 58, .45) !important;
  box-shadow: 0 14px 32px rgba(11, 58, 107, .12);
}

.spNewsCard__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 22px 14px;
  background: linear-gradient(145deg, #0a1f40 0%, #0b3a6b 60%, #14467d 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  /* カードの border-radius とピクセル単位で揃える二重保険 */
  border-top-left-radius: 17px;
  border-bottom-left-radius: 17px;
}
.spNewsCard__meta::before {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 169, 58, .25) 0%, rgba(232, 169, 58, 0) 70%);
  pointer-events: none;
}
.spNewsCard__date {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  color: #fff !important;
  min-width: 0 !important;
  width: auto !important;
  padding: 0 !important;
  font-weight: 900;
}
.spNewsCard__y {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 12px;
  letter-spacing: .14em;
  color: #f2d68a;
  margin-bottom: 4px;
}
.spNewsCard__md {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 26px;
  letter-spacing: .01em;
  color: #fff;
  font-weight: 900;
}
.spNewsCard__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(232, 169, 58, .55);
  color: #f2d68a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}
.spNewsCard__tag--event {
  background: linear-gradient(135deg, rgba(232, 169, 58, .9), rgba(242, 214, 138, .9));
  color: #0a1f40;
  border-color: transparent;
}
.spNewsCard__tag--award {
  background: rgba(45, 127, 212, .25);
  border-color: rgba(144, 202, 249, .6);
  color: #e3f0ff;
}
.spNewsCard__tag--update {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
}

.spNewsCard__body {
  padding: 20px 22px !important;
  flex: 1 !important;
}
.spNewsCard .spNewsList__text {
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.85;
  margin: 0;
}
.spNewsCard .spNewsList__text a {
  color: #0b3a6b;
  font-weight: 700;
  border-bottom: 1px solid rgba(11, 58, 107, .3);
}

@media (max-width: 520px) {
  .spNewsCard {
    grid-template-columns: 1fr !important;
  }
  .spNewsCard__meta {
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 18px;
    /* SP 版: 上のバーになるので左2隅を角丸・下2隅は 0 */
    border-top-left-radius: 17px;
    border-top-right-radius: 17px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .spNewsCard__meta::before { display: none; }
  .spNewsCard__date {
    flex-direction: row !important;
    align-items: baseline;
    gap: 8px;
  }
  .spNewsCard__y { margin-bottom: 0; font-size: 13px; }
  .spNewsCard__md { font-size: 20px; }
  .spNewsCard__body {
    padding: 16px 18px 18px !important;
  }
}

/* ============================================================
   Phase 2H — タブレット/デスクトップ調整
   ============================================================ */
@media (min-width: 769px) {
  .spFeature--greeting {
    grid-template-columns: 2fr 3fr;
    gap: 48px;
    align-items: start;
  }
  .spFeature__img--greeting {
    position: sticky;
    top: 90px;
  }
}

@media (min-width: 901px) {
  .spInfoTable--mobile .spInfoTable__row {
    grid-template-columns: 200px 1fr;
  }
}

/* ============================================================
   Phase 2H — 390px 最終微調整
   ============================================================ */
@media (max-width: 400px) {
  .spHero--info { padding: 44px 0 40px; }
  .spHero--info .spHero__title { font-size: clamp(28px, 9vw, 40px); }
  .spFeature__img--greeting { padding: 18px 18px 56px; }
  .spGreetCaption { left: 14px; bottom: 12px; padding: 8px 12px; }
  .spGreetCaption__name { font-size: 14px; }
  .spCaseCard--greeting { padding: 26px 18px 22px; }
  .spAchieveCard--example { padding: 22px 18px 18px; }
  .spAchieveCard--example .spAchieveCard__num { font-size: clamp(36px, 11vw, 50px); }
  .spNewsCard { grid-template-columns: 1fr !important; }
  .spNewsCard__meta { flex-direction: row; justify-content: space-between; padding: 12px 16px; }
  .spNewsCard__meta::before { display: none; }
  .spNewsCard__date { flex-direction: row !important; align-items: baseline; gap: 8px; }
  .spNewsCard__y { margin-bottom: 0; font-size: 13px; }
  .spNewsCard__md { font-size: 20px; }
  .spNewsCard__body { padding: 14px 16px 16px !important; }
  .spCaseCard--example { padding: 22px 18px 20px; }
  .spCaseCard--example .spCaseCard__a { padding-left: 28px; font-size: 13px; }
  .spProofPage--mobile #pageLeft #map { height: clamp(320px, 52vh, 440px); }
}

/* end Phase 2H */


/* ============================================================
   Phase 2I — subsidy / product-documentation / company-information-menu
   Mobile-first modernization (2026-04-20)
   ============================================================ */

/* ------------------------------------------------------------
   1) subsidy.html
   旧ページ内<style>から移設 — クラス名は維持、モダン化を追加
   ------------------------------------------------------------ */

/* ── 補助金ヒーロー ── */
.spHero--subsidy {
  position: relative;
  background:
    radial-gradient(120% 78% at 92% 4%, rgba(232, 169, 58, .28) 0%, rgba(232, 169, 58, 0) 60%),
    radial-gradient(90% 82% at -6% 110%, rgba(45, 127, 212, .38) 0%, rgba(45, 127, 212, 0) 62%),
    linear-gradient(140deg, #091a36 0%, #0b3a6b 42%, #1a4d86 100%);
  overflow: hidden;
  isolation: isolate;
}
.spHero--subsidy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 62% 34%, #000 36%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 62% 34%, #000 36%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.spHero--subsidy::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(232, 169, 58, .30) 0%, rgba(232, 169, 58, 0) 72%);
  pointer-events: none;
  z-index: 0;
}
.spHero--subsidy .spHero__inner { position: relative; z-index: 1; }
.spHero--subsidy .spHero__breadcrumb {
  font-size: 12px;
  gap: 4px;
  opacity: .92;
}
.spHero--subsidy .spHero__breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 2px;
  color: rgba(255, 255, 255, .88);
}
.spHero--subsidy .spHero__breadcrumb span { opacity: .6; }
.spHero--subsidy .spHero__tag {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  background: linear-gradient(135deg, #f2d68a 0%, #e8a93a 100%);
  color: #0a1f40;
  padding: 5px 14px;
  font-size: 12px;
  letter-spacing: .22em;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(232, 169, 58, .35);
}
.spHero--subsidy .spHero__title {
  font-family: var(--font-display, "Zen Kaku Gothic New", sans-serif);
  font-size: clamp(30px, 9.2vw, 54px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -.01em;
  margin-bottom: 14px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .28);
}
.spHero--subsidy .spHero__sub {
  font-size: 14px;
  line-height: 1.85;
  max-width: 42ch;
  color: rgba(255, 255, 255, .92);
}

/* ── カテゴリ見出し（既存 .subCatHead を維持しつつリデザイン） ── */
.subCatHead {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.subCatHead__num {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(140deg, #0b3a6b 0%, #14467d 100%);
  color: #fff;
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .02em;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(11, 58, 107, .22);
}
.subCatHead__num::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 10px;
  border: 1px solid rgba(242, 214, 138, .35);
  pointer-events: none;
}
.subCatHead__title {
  font-family: var(--font-display, "Zen Kaku Gothic New", sans-serif);
  font-size: clamp(18px, 4.6vw, 24px);
  font-weight: 800;
  color: #0b3a6b;
  line-height: 1.4;
  margin: 0;
  letter-spacing: -.005em;
}

/* ── 補助金カード（既存 .subCard を維持） ── */
.subGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.subCard {
  position: relative;
  background: #fff;
  border: 1px solid rgba(11, 58, 107, .10);
  border-radius: 18px;
  padding: 22px 20px 20px;
  box-shadow: 0 6px 22px rgba(11, 58, 107, .08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.subCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0b3a6b 0%, #1a5fa8 60%, #e8a93a 100%);
  opacity: .9;
}
.subCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(11, 58, 107, .16);
  border-color: rgba(232, 169, 58, .4);
}
.subCard__name {
  font-family: var(--font-display, "Zen Kaku Gothic New", sans-serif);
  font-size: 17px;
  font-weight: 800;
  color: #0b3a6b;
  margin-bottom: 10px;
  line-height: 1.5;
  letter-spacing: -.005em;
}
.subCard__name small {
  font-weight: 400;
  font-size: 12px;
  color: #5a616b;
  display: inline-block;
  margin-top: 2px;
}
.subCard__desc {
  font-size: 13.5px;
  color: #4a5060;
  line-height: 1.85;
  flex: 1;
}
.subCard__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}
.subCard__stat {
  position: relative;
  background: linear-gradient(160deg, #f6f8fb 0%, #eef3fa 100%);
  border: 1px solid rgba(11, 58, 107, .08);
  border-radius: 10px;
  padding: 10px 12px;
}
.subCard__stat-label {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 10px;
  color: #0b3a6b;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  opacity: .75;
}
.subCard__stat-value {
  font-size: 13px;
  font-weight: 800;
  color: #0b3a6b;
  margin-top: 4px;
  line-height: 1.45;
}
.subCard__stat-value small {
  font-weight: 500;
  font-size: 11px;
  color: #5a616b;
}
.subCard__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 18px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #0b3a6b 0%, #14467d 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(11, 58, 107, .22);
  transition: background .15s, transform .12s, box-shadow .2s;
}
.subCard__link:hover {
  background: linear-gradient(135deg, #14467d 0%, #1a5fa8 100%);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(11, 58, 107, .30);
}

/* ── 重要ポイント（既存 .subPoint を維持） ── */
.subPoint {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.subPointItem {
  position: relative;
  background: #fff;
  border: 1px solid rgba(11, 58, 107, .10);
  border-radius: 16px;
  padding: 22px 20px 20px 58px;
  box-shadow: 0 4px 16px rgba(11, 58, 107, .06);
}
.subPointItem::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(140deg, #e8a93a 0%, #f2d68a 100%);
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2l2.39 7.36H22l-6.2 4.5 2.4 7.37L12 16.72 5.8 21.23l2.4-7.37L2 9.36h7.61z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2l2.39 7.36H22l-6.2 4.5 2.4 7.37L12 16.72 5.8 21.23l2.4-7.37L2 9.36h7.61z'/></svg>");
  mask-size: 60% 60%;
  -webkit-mask-size: 60% 60%;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  box-shadow: 0 4px 10px rgba(232, 169, 58, .28);
}
.subPointItem__title {
  font-family: var(--font-display, "Zen Kaku Gothic New", sans-serif);
  font-size: 15.5px;
  font-weight: 800;
  color: #0b3a6b;
  margin-bottom: 6px;
  letter-spacing: -.005em;
}
.subPointItem__text {
  font-size: 13.5px;
  color: #3a3f4a;
  line-height: 1.85;
}

/* ── subsidy CTA（--mbrj ベースの差分） ── */
.spCta--subsidy {
  position: relative;
  background:
    radial-gradient(80% 70% at 100% 0%, rgba(232, 169, 58, .22) 0%, rgba(232, 169, 58, 0) 60%),
    radial-gradient(70% 60% at 0% 100%, rgba(45, 127, 212, .32) 0%, rgba(45, 127, 212, 0) 60%),
    linear-gradient(135deg, #0a1f40 0%, #0b3a6b 55%, #14467d 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.spCta--subsidy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 42%, transparent 82%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 42%, transparent 82%);
  pointer-events: none;
  z-index: 0;
}
.spCta--subsidy .spCta__inner { position: relative; z-index: 1; }
.spCta--subsidy .spCta__title {
  font-family: var(--font-display, "Zen Kaku Gothic New", sans-serif);
  font-size: clamp(22px, 5.6vw, 32px);
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.spCta--subsidy .spCta__sub { margin-bottom: 24px; opacity: .94; line-height: 1.8; }
.spCta--subsidy .spCta__btn {
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .02em;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
  transition: transform .12s, box-shadow .2s, background .2s;
}
.spCta--subsidy .spCta__btn--primary {
  background: linear-gradient(135deg, #f2d68a 0%, #e8a93a 100%);
  color: #0a1f40;
  border: none;
}
.spCta--subsidy .spCta__btn--primary:hover {
  background: linear-gradient(135deg, #f6e1a3 0%, #edb550 100%);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(232, 169, 58, .38);
}
.spCta--subsidy .spCta__btn::after {
  content: "→";
  margin-left: 8px;
  transition: transform .15s;
}
.spCta--subsidy .spCta__btn:hover::after { transform: translateX(3px); }

/* ------------------------------------------------------------
   2) product-documentation.html
   ------------------------------------------------------------ */

/* ── ドキュメントヒーロー ── */
.spHero--doc {
  position: relative;
  background:
    radial-gradient(100% 70% at 8% 6%, rgba(232, 169, 58, .24) 0%, rgba(232, 169, 58, 0) 58%),
    radial-gradient(90% 82% at 104% 108%, rgba(45, 127, 212, .42) 0%, rgba(45, 127, 212, 0) 62%),
    linear-gradient(130deg, #091a36 0%, #0b3a6b 48%, #14467d 100%);
  overflow: hidden;
  isolation: isolate;
}
.spHero--doc::before {
  content: "";
  position: absolute;
  inset: 0;
  /* 紙面風の水平ライン装飾 */
  background-image:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 26px,
      rgba(255, 255, 255, .06) 26px,
      rgba(255, 255, 255, .06) 27px
    );
  mask-image: radial-gradient(ellipse at 40% 40%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 40% 40%, #000 30%, transparent 78%);
  pointer-events: none;
  z-index: 0;
}
.spHero--doc::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(232, 169, 58, .32) 0%, rgba(232, 169, 58, 0) 72%);
  pointer-events: none;
  z-index: 0;
}
.spHero--doc .spHero__inner { position: relative; z-index: 1; }
.spHero--doc .spHero__breadcrumb { font-size: 12px; gap: 4px; opacity: .92; }
.spHero--doc .spHero__breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 2px;
  color: rgba(255, 255, 255, .88);
}
.spHero--doc .spHero__breadcrumb span { opacity: .6; }
.spHero--doc .spHero__tag {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  background: linear-gradient(135deg, #f2d68a 0%, #e8a93a 100%);
  color: #0a1f40;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(232, 169, 58, .35);
}
.spHero--doc .spHero__title {
  font-family: var(--font-display, "Zen Kaku Gothic New", sans-serif);
  font-size: clamp(30px, 9.2vw, 54px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -.01em;
  margin-bottom: 14px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .28);
}
.spHero--doc .spHero__sub {
  font-size: 14px;
  line-height: 1.85;
  max-width: 42ch;
  color: rgba(255, 255, 255, .92);
}

/* ── セクションヘッダー センタリング（doc用） ── */
.spSection__head--center {
  text-align: center;
}
.spSection__head--center .spSection__sub {
  margin-left: auto;
  margin-right: auto;
}

/* ── パンフレット PDF プレビュー枠（旧インラインstyle置換） ── */
.spPamphletWrap {
  max-width: 1200px;
  margin: 0 auto;
}
.spPamphletFrame {
  position: relative;
  width: 100%;
  height: clamp(420px, 72vh, 820px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11, 58, 107, .12);
  box-shadow:
    0 14px 32px rgba(11, 58, 107, .14),
    0 2px 8px rgba(11, 58, 107, .08);
  background:
    linear-gradient(180deg, #f6f8fb 0%, #eef3fa 100%);
}
.spPamphletFrame embed,
.spPamphletFrame object,
.spPamphletFrame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.spPamphletActions {
  text-align: center;
  margin-top: 22px;
}
.spPamphletDl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0b3a6b 0%, #14467d 100%);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .02em;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(11, 58, 107, .28);
  transition: transform .12s, box-shadow .2s, background .2s;
}
.spPamphletDl::before {
  content: "";
  width: 18px;
  height: 18px;
  background: currentColor;
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 3a1 1 0 0 1 1 1v9.59l3.3-3.3a1 1 0 0 1 1.4 1.42l-5 5a1 1 0 0 1-1.4 0l-5-5a1 1 0 1 1 1.4-1.42L11 13.59V4a1 1 0 0 1 1-1zm-8 15a1 1 0 0 1 1 1v1h14v-1a1 1 0 1 1 2 0v2a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 3a1 1 0 0 1 1 1v9.59l3.3-3.3a1 1 0 0 1 1.4 1.42l-5 5a1 1 0 0 1-1.4 0l-5-5a1 1 0 1 1 1.4-1.42L11 13.59V4a1 1 0 0 1 1-1zm-8 15a1 1 0 0 1 1 1v1h14v-1a1 1 0 1 1 2 0v2a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1z'/></svg>");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.spPamphletDl:hover {
  background: linear-gradient(135deg, #14467d 0%, #1a5fa8 100%);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(11, 58, 107, .38);
}

/* ── ダウンロードカード（既存 .spDownloadGroup 拡張） ── */
.spDownloadGroup--card {
  margin-bottom: 22px;
  background: #fff;
  border: 1px solid rgba(11, 58, 107, .10);
  border-radius: 18px;
  box-shadow: 0 6px 22px rgba(11, 58, 107, .08);
  padding: 18px 18px 10px;
  position: relative;
  overflow: hidden;
}
.spDownloadGroup--card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0b3a6b 0%, #1a5fa8 55%, #e8a93a 100%);
  opacity: .9;
}
.spDownloadGroup--card .spDownloadGroup__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  color: #0b3a6b;
  padding: 4px 0 12px;
  background: transparent;
  border-left: none;
  border-radius: 0;
  margin-bottom: 4px;
  border-bottom: 1px dashed rgba(11, 58, 107, .14);
  font-family: var(--font-display, "Zen Kaku Gothic New", sans-serif);
}
.spDownloadGroup--card .spDownloadGroup__title::before {
  content: "";
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #0b3a6b 0%, #1a5fa8 100%);
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zm7 1.5L18.5 9H14a1 1 0 0 1-1-1zM7 13h10v2H7zm0 4h10v2H7zm0-8h5v2H7z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zm7 1.5L18.5 9H14a1 1 0 0 1-1-1zM7 13h10v2H7zm0 4h10v2H7zm0-8h5v2H7z'/></svg>");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  flex-shrink: 0;
}
.spDownloadGroup--card .spDownloadGroup__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.spDownloadGroup--card .spDownloadGroup__links li {
  padding: 0;
  border-bottom: 1px solid rgba(11, 58, 107, .06);
}
.spDownloadGroup--card .spDownloadGroup__links li:last-child { border-bottom: 0; }
.spDownloadGroup--card .spDownloadGroup__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 4px 12px 2px;
  color: #0b3a6b;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: padding-left .15s, color .15s;
}
.spDownloadGroup--card .spDownloadGroup__links a::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(11, 58, 107, .10) 0%, rgba(232, 169, 58, .20) 100%);
  position: relative;
  flex-shrink: 0;
  mask-image: none;
  -webkit-mask-image: none;
}
.spDownloadGroup--card .spDownloadGroup__links a::after {
  content: "";
  position: absolute;
  left: 15px;
  width: 14px;
  height: 14px;
  background: #0b3a6b;
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 3a1 1 0 0 1 1 1v9.59l3.3-3.3a1 1 0 0 1 1.4 1.42l-5 5a1 1 0 0 1-1.4 0l-5-5a1 1 0 1 1 1.4-1.42L11 13.59V4a1 1 0 0 1 1-1zm-8 15a1 1 0 0 1 1 1v1h14v-1a1 1 0 1 1 2 0v2a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 3a1 1 0 0 1 1 1v9.59l3.3-3.3a1 1 0 0 1 1.4 1.42l-5 5a1 1 0 0 1-1.4 0l-5-5a1 1 0 1 1 1.4-1.42L11 13.59V4a1 1 0 0 1 1-1zm-8 15a1 1 0 0 1 1 1v1h14v-1a1 1 0 1 1 2 0v2a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1z'/></svg>");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: contain;
  -webkit-mask-size: contain;
  pointer-events: none;
}
.spDownloadGroup--card .spDownloadGroup__links a:hover {
  color: #14467d;
  text-decoration: none;
  padding-left: 6px;
}

/* ── QR / Android ブロック（旧インラインstyle置換） ── */
.spQrBlock {
  margin-top: 14px;
  padding: 18px;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(232, 169, 58, .16) 0%, rgba(232, 169, 58, 0) 60%),
    linear-gradient(160deg, #f6f8fb 0%, #eef3fa 100%);
  border: 1px solid rgba(11, 58, 107, .08);
  border-radius: 14px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.spQrBlock__img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  padding: 8px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(11, 58, 107, .12);
  flex-shrink: 0;
}
.spQrBlock__text {
  flex: 1;
  min-width: 200px;
  font-size: 13px;
  color: #3a3f4a;
  line-height: 1.8;
  margin: 0;
}
.spQrBlock__text strong {
  display: block;
  color: #0b3a6b;
  font-weight: 800;
  margin-bottom: 4px;
  font-size: 13.5px;
}

/* ------------------------------------------------------------
   3) company-information-menu.html
   ------------------------------------------------------------ */

/* ── 会社情報メニューのヒーロー ── */
.spHero--compMenu {
  position: relative;
  background:
    radial-gradient(100% 70% at 94% 10%, rgba(232, 169, 58, .28) 0%, rgba(232, 169, 58, 0) 58%),
    radial-gradient(84% 78% at -4% 108%, rgba(45, 127, 212, .38) 0%, rgba(45, 127, 212, 0) 62%),
    linear-gradient(135deg, #091a36 0%, #0b3a6b 45%, #14467d 100%);
  overflow: hidden;
  isolation: isolate;
}
.spHero--compMenu::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 40%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 40%, transparent 78%);
  pointer-events: none;
  z-index: 0;
}
.spHero--compMenu::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(232, 169, 58, .28) 0%, rgba(232, 169, 58, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.spHero--compMenu .spHero__inner { position: relative; z-index: 1; }
.spHero--compMenu .spHero__breadcrumb { font-size: 12px; gap: 4px; opacity: .92; }
.spHero--compMenu .spHero__breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 2px;
  color: rgba(255, 255, 255, .88);
}
.spHero--compMenu .spHero__breadcrumb span { opacity: .6; }
.spHero--compMenu .spHero__tag {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  background: linear-gradient(135deg, #f2d68a 0%, #e8a93a 100%);
  color: #0a1f40;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(232, 169, 58, .35);
}
.spHero--compMenu .spHero__title {
  font-family: var(--font-display, "Zen Kaku Gothic New", sans-serif);
  font-size: clamp(32px, 9.6vw, 54px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -.01em;
  margin-bottom: 14px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .28);
}
.spHero--compMenu .spHero__sub {
  font-size: 14px;
  line-height: 1.85;
  max-width: 42ch;
  color: rgba(255, 255, 255, .92);
}

/* ── メニューカード（.spMenuCard は spCard への上乗せモディファイア） ── */
.spMenuCard {
  position: relative;
  background: #fff;
  border: 1px solid rgba(11, 58, 107, .10);
  border-radius: 18px;
  box-shadow: 0 6px 22px rgba(11, 58, 107, .08);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.spMenuCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0b3a6b 0%, #1a5fa8 60%, #e8a93a 100%);
  opacity: .9;
  z-index: 1;
}
.spMenuCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(11, 58, 107, .16);
  border-color: rgba(232, 169, 58, .38);
}
.spMenuCard:hover .spMenuCard__icon {
  transform: scale(1.06) rotate(-2deg);
}
.spMenuCard a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  min-height: 56px;
}
.spMenuCard__body {
  padding: 24px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* SVG マスクアイコン — 絵文字の代替 */
.spMenuCard__icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(11, 58, 107, .10) 0%, rgba(232, 169, 58, .18) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;           /* 既存の絵文字字形を非表示化 */
  color: transparent;
  overflow: hidden;
  margin-bottom: 18px;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(11, 58, 107, .08);
  transition: transform .25s ease;
}
.spMenuCard__icon::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #0b3a6b 0%, #1a5fa8 100%);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: contain;
  -webkit-mask-size: contain;
}
/* outline: 会社概要 */
.spMenuCard--outline .spMenuCard__icon::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M4 3h10a1 1 0 0 1 1 1v17H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zm12 6h4a1 1 0 0 1 1 1v11h-5zM6 6v2h2V6zm4 0v2h2V6zM6 10v2h2v-2zm4 0v2h2v-2zM6 14v2h2v-2zm4 0v2h2v-2z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M4 3h10a1 1 0 0 1 1 1v17H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zm12 6h4a1 1 0 0 1 1 1v11h-5zM6 6v2h2V6zm4 0v2h2V6zM6 10v2h2v-2zm4 0v2h2v-2zM6 14v2h2v-2zm4 0v2h2v-2z'/></svg>");
}
/* greeting: 代表挨拶 */
.spMenuCard--greeting .spMenuCard__icon::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4zm0 2c-3.33 0-10 1.67-10 5v3h20v-3c0-3.33-6.67-5-10-5z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4zm0 2c-3.33 0-10 1.67-10 5v3h20v-3c0-3.33-6.67-5-10-5z'/></svg>");
}
/* news: お知らせ */
.spMenuCard--news .spMenuCard__icon::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M20 3H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zM6 7h8v2H6zm0 4h12v2H6zm0 4h12v2H6zM16 7h2v2h-2z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M20 3H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zM6 7h8v2H6zm0 4h12v2H6zm0 4h12v2H6zM16 7h2v2h-2z'/></svg>");
}
/* example: 販売実績（ピン） */
.spMenuCard--example .spMenuCard__icon::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 14.5 9 2.5 2.5 0 0 1 12 11.5z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 14.5 9 2.5 2.5 0 0 1 12 11.5z'/></svg>");
}
/* agent: 販売代理店（握手） */
.spMenuCard--agent .spMenuCard__icon::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M13.78 5.22a2.75 2.75 0 0 1 3.89 0l2.11 2.1a2.75 2.75 0 0 1 0 3.9l-4.28 4.27a1 1 0 0 1-1.42 0l-5.38-5.37a1 1 0 0 1 0-1.42zM4.22 8.22l2.11-2.1a2.75 2.75 0 0 1 3.89 0l.36.35a1 1 0 0 1 0 1.42l-3.6 3.6a1 1 0 0 1-1.41 0l-1.35-1.35a2.75 2.75 0 0 1 0-1.92zm4.56 9.56 5.37-5.37a1 1 0 0 1 1.42 0l1.35 1.34a2.75 2.75 0 0 1 0 3.9l-2.1 2.11a2.75 2.75 0 0 1-3.9 0l-1.34-1.35a1.4 1.4 0 0 1-.8-.63z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M13.78 5.22a2.75 2.75 0 0 1 3.89 0l2.11 2.1a2.75 2.75 0 0 1 0 3.9l-4.28 4.27a1 1 0 0 1-1.42 0l-5.38-5.37a1 1 0 0 1 0-1.42zM4.22 8.22l2.11-2.1a2.75 2.75 0 0 1 3.89 0l.36.35a1 1 0 0 1 0 1.42l-3.6 3.6a1 1 0 0 1-1.41 0l-1.35-1.35a2.75 2.75 0 0 1 0-1.92zm4.56 9.56 5.37-5.37a1 1 0 0 1 1.42 0l1.35 1.34a2.75 2.75 0 0 1 0 3.9l-2.1 2.11a2.75 2.75 0 0 1-3.9 0l-1.34-1.35a1.4 1.4 0 0 1-.8-.63z'/></svg>");
}

.spMenuCard__label {
  font-family: var(--font-en, "Inter Tight", sans-serif);
  font-size: 11px;
  font-weight: 800;
  color: #e8a93a;
  letter-spacing: .18em;
  margin-bottom: 6px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.spMenuCard__label::before {
  content: "";
  width: 18px;
  height: 2px;
  background: #e8a93a;
}
.spMenuCard__title {
  font-family: var(--font-display, "Zen Kaku Gothic New", sans-serif);
  font-size: 19px;
  font-weight: 800;
  color: #0b3a6b;
  margin-bottom: 10px;
  line-height: 1.4;
  letter-spacing: -.005em;
}
.spMenuCard__text {
  font-size: 13.5px;
  color: #4a5060;
  line-height: 1.85;
  flex: 1;
}
.spMenuCard__arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px dashed rgba(11, 58, 107, .16);
  font-size: 13px;
  font-weight: 800;
  color: #0b3a6b;
  letter-spacing: .02em;
  transition: gap .15s, color .15s;
}
.spMenuCard__arrow::after {
  content: "";
  width: 16px;
  height: 16px;
  background: currentColor;
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M13.3 5.3a1 1 0 0 1 1.4 0l6 6a1 1 0 0 1 0 1.4l-6 6a1 1 0 0 1-1.4-1.4L17.58 13H4a1 1 0 0 1 0-2h13.58l-4.28-4.3a1 1 0 0 1 0-1.4z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M13.3 5.3a1 1 0 0 1 1.4 0l6 6a1 1 0 0 1 0 1.4l-6 6a1 1 0 0 1-1.4-1.4L17.58 13H4a1 1 0 0 1 0-2h13.58l-4.28-4.3a1 1 0 0 1 0-1.4z'/></svg>");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.spMenuCard:hover .spMenuCard__arrow {
  gap: 12px;
  color: #14467d;
}

/* ── 会社情報メニュー グリッド ── */
.spMenuGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* ------------------------------------------------------------
   Phase 2I — タブレット/デスクトップ調整
   ------------------------------------------------------------ */
@media (min-width: 601px) {
  .subGrid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .subPoint { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .subCard__stats { grid-template-columns: 1fr 1fr; }
  .spMenuGrid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

@media (min-width: 900px) {
  .subGrid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .subCard { padding: 26px 24px 24px; }
  .subPointItem { padding: 28px 26px 24px 70px; }
  .subPointItem::before { left: 26px; top: 28px; width: 32px; height: 32px; }
  .spMenuGrid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .spMenuCard__body { padding: 30px 28px 26px; }
  .spMenuCard__title { font-size: 20px; }
}

@media (min-width: 1200px) {
  .subGrid { gap: 28px; }
  .spPamphletFrame { height: clamp(620px, 78vh, 900px); }
}

/* ------------------------------------------------------------
   Phase 2I — 390px 最終微調整
   ------------------------------------------------------------ */
@media (max-width: 400px) {
  .spHero--subsidy { padding: 44px 0 40px; }
  .spHero--subsidy .spHero__title { font-size: clamp(26px, 8.4vw, 38px); }
  .spHero--doc { padding: 44px 0 40px; }
  .spHero--doc .spHero__title { font-size: clamp(26px, 8.4vw, 38px); }
  .spHero--compMenu { padding: 44px 0 40px; }
  .spHero--compMenu .spHero__title { font-size: clamp(28px, 9vw, 40px); }

  .subCard { padding: 20px 18px 18px; }
  .subCard__name { font-size: 16px; }
  .subCard__stats { grid-template-columns: 1fr; }
  .subPointItem { padding: 20px 16px 18px 54px; }
  .subPointItem::before { left: 16px; top: 20px; width: 26px; height: 26px; }
  .subCatHead { gap: 10px; margin-bottom: 18px; }
  .subCatHead__num { width: 40px; height: 40px; border-radius: 12px; font-size: 16px; }

  .spPamphletFrame { height: clamp(360px, 62vh, 560px); border-radius: 14px; }
  .spDownloadGroup--card { padding: 16px 16px 8px; border-radius: 14px; }
  .spQrBlock { padding: 16px; gap: 14px; }
  .spQrBlock__img { width: 96px; height: 96px; }

  .spMenuCard__body { padding: 22px 20px 20px; }
  .spMenuCard__title { font-size: 17.5px; }
  .spMenuCard__icon { width: 50px; height: 50px; border-radius: 14px; }
  .spMenuCard__icon::before { width: 24px; height: 24px; }
}

/* end Phase 2I */

/* ============================================================
   Phase 2J — inquiry-form.php / product-menu / sales-agent /
              question / solution / privacy-policy
   モバイルファースト最適化
   ============================================================ */

/* ── 共通ヒーロー (Phase 2J 追加分) ───────────────────────── */
.spHero--inquiry,
.spHero--productMenu,
.spHero--agent,
.spHero--faq,
.spHero--solution,
.spHero--privacy {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* INQUIRY: 明るくオープン、ゴールドアクセント */
.spHero--inquiry {
  background:
    radial-gradient(ellipse 120% 80% at 20% 0%, rgba(196, 154, 78, .18), transparent 60%),
    radial-gradient(ellipse 100% 60% at 100% 100%, rgba(11, 58, 107, .18), transparent 55%),
    linear-gradient(180deg, #0a2c52 0%, #0b3a6b 60%, #103f75 100%);
  color: #fff;
}
.spHero--inquiry::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(transparent 0 calc(100% - 1px), rgba(255, 255, 255, .06) calc(100% - 1px) 100%),
    linear-gradient(90deg, transparent 0 calc(100% - 1px), rgba(255, 255, 255, .05) calc(100% - 1px) 100%);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: -1;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent);
}
.spHero--inquiry::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 154, 78, .3), transparent 70%);
  filter: blur(2px);
  pointer-events: none;
  z-index: -1;
}

/* PRODUCT MENU: プロダクトらしい格子グラデ */
.spHero--productMenu {
  background:
    linear-gradient(135deg, #0b3a6b 0%, #0d4a8a 55%, #1458a3 100%);
  color: #fff;
}
.spHero--productMenu::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.12) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 70%, rgba(255,255,255,.08) 0 2px, transparent 3px);
  background-size: 44px 44px, 64px 64px;
  opacity: .9;
  pointer-events: none;
  z-index: -1;
}

/* SALES AGENT: 信頼感のあるネイビー+ゴールド斜めストライプ */
.spHero--agent {
  background:
    linear-gradient(135deg, #082647 0%, #0b3a6b 55%, #17508e 100%);
  color: #fff;
}
.spHero--agent::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,
    transparent 0 14px,
    rgba(196, 154, 78, .08) 14px 15px);
  pointer-events: none;
  z-index: -1;
}

/* FAQ: 落ち着きあるトーン、クエスチョンドット */
.spHero--faq {
  background:
    linear-gradient(180deg, #123c6d 0%, #0b3a6b 100%);
  color: #fff;
}
.spHero--faq::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.09) 1.5px, transparent 2px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.8), transparent 85%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.8), transparent 85%);
  pointer-events: none;
  z-index: -1;
}

/* SOLUTION: 食に寄せた暖かみ */
.spHero--solution {
  background:
    linear-gradient(135deg, #0a3059 0%, #0b3a6b 50%, #153f6f 100%);
  color: #fff;
}
.spHero--solution::before {
  content: "";
  position: absolute;
  left: -40px; bottom: -40px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 154, 78, .22), transparent 70%);
  filter: blur(4px);
  pointer-events: none;
  z-index: -1;
}
.spHero--solution::after {
  content: "";
  position: absolute;
  right: 6%; top: 50%;
  width: 160px; height: 160px;
  border: 2px dashed rgba(255,255,255,.12);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: -1;
}

/* PRIVACY: 整理された読み物向け落ち着きトーン */
.spHero--privacy {
  background:
    linear-gradient(180deg, #0b3a6b 0%, #0e4780 100%);
  color: #fff;
}
.spHero--privacy::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(0deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 100% 28px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.6), transparent);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.6), transparent);
  pointer-events: none;
  z-index: -1;
}

/* ============================================================
   Phase 2J — お問い合わせフォーム (.spForm*)
   ============================================================ */
.spForm {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 4px;
}
.spForm__intro,
.spForm .contents > p:first-of-type {
  font-size: 15px;
  line-height: 1.95;
  color: #2a3240;
  margin-bottom: 20px;
}
.spForm .contents { padding: 0; }
.spForm .formWrap { padding: 0; }
.spForm .contentsWrap { padding: 0; }
.spForm .headingWrap { display: none; }
.spForm__note {
  font-size: 13px;
  color: #5a616b;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.spForm__note .mark,
.spForm .formAttention .mark {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #c0392b;
  display: inline-block;
  padding: 0;
}
.spForm .formAttention {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #5a616b;
  margin: 6px 0 24px;
}
.spForm form {
  padding-top: 8px;
}
.spForm form .formItem + .formItem {
  margin-top: 0;
}
.spForm .inputWrap { padding: 0; border: 0; }
.spForm .formWrap::before,
.spForm form .formItem-accept::before,
.spForm form .formItem-confirm::before { display: none; }
.spForm .thanksText { margin-top: 0; }

.spFormField,
.spForm .formItem {
  border-top: 1px solid rgba(11, 58, 107, .12);
  padding: 22px 0 18px;
  position: relative;
}
.spForm .formItem:last-of-type { border-bottom: 1px solid rgba(11, 58, 107, .12); }

.spFormField .spFormLabel,
.spFormField > label,
.spForm .formItem > label,
.spForm .formItem .tel > label,
.spForm .formItem .fax > label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #0b3a6b;
  letter-spacing: .02em;
  margin-bottom: 12px;
}
.spFormField .spFormLabel .mark,
.spForm .formItem > label .mark,
.spForm .formItem .tel > label .mark,
.spForm .formItem .fax > label .mark {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #c0392b;
  border-radius: 4px;
  letter-spacing: .04em;
  line-height: 1.3;
  width: auto; height: auto;
}
.spFormField .spFormLabel .mark::before,
.spForm .formItem > label .mark::before,
.spForm .formItem .tel > label .mark::before,
.spForm .formItem .fax > label .mark::before {
  content: "必須";
  position: static;
  display: inline;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  text-align: left;
}
.spForm__note .mark::before,
.spForm .formAttention .mark::before {
  display: none;
  content: none;
}

/* フォーム本体：input / textarea / select を大きくタップしやすく */
.spForm input[type="text"],
.spForm input[type="tel"],
.spForm input[type="email"],
.spForm input[type="number"],
.spForm input[type="password"],
.spForm textarea,
.spForm select {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  font-size: 16px;   /* iOS ズーム防止 */
  line-height: 1.5;
  font-family: inherit;
  color: #15202e;
  background: #fafbfc;
  border: 1.5px solid rgba(11, 58, 107, .18);
  border-radius: 10px;
  outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.spForm textarea {
  min-height: 180px;
  resize: vertical;
  padding: 14px 16px;
}
.spForm input:focus,
.spForm textarea:focus,
.spForm select:focus {
  border-color: #0b3a6b;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(11, 58, 107, .12);
}
.spForm input::placeholder,
.spForm textarea::placeholder {
  color: #95a0ae;
}

/* select 装飾 */
.spForm select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%230b3a6b' d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 22px 22px;
  padding-right: 44px;
}

/* 姓名の2カラム */
.spForm .inputWrap.formItem-name,
.spFormField--name .inputWrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* 郵便番号 */
.spForm .formItem-postalCode .inputWrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.spForm .formItem-postalCode .inputWrap > span:first-child {
  font-size: 18px;
  font-weight: 700;
  color: #0b3a6b;
  padding-top: 2px;
}
.spForm .formItem-postalCode input {
  flex: 1 1 180px;
  max-width: 260px;
}
.spForm .formItem-postalCode .lead {
  display: block;
  flex: 1 1 100%;
  font-size: 12px;
  color: #6b7280;
  margin-top: 6px;
}

/* 住所 */
.spForm .formItem-address .inputWrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.spForm .formItem-address .selectWrap { width: 100%; }

/* 電話 / FAX は縦積み */
.spForm .formItem-number {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.spForm .formItem-number .tel label,
.spForm .formItem-number .fax label {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700; color: #0b3a6b;
  margin-bottom: 10px;
}
.spForm .formItem-number .lead {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-top: 6px;
}

/* エラーメッセージ */
.spForm .errorMessage {
  margin-top: 10px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #b42318;
  background: #fff1f0;
  border-left: 4px solid #c0392b;
  border-radius: 6px;
  line-height: 1.6;
}
.spForm .errorMessage:empty { display: none; }

/* 個人情報同意ブロック */
.spForm .formItem-accept {
  background: rgba(11, 58, 107, .04);
  border: 1px solid rgba(11, 58, 107, .1);
  border-radius: 12px;
  padding: 20px 18px 18px;
  margin-top: 28px;
}
.spForm .formItem-accept .text {
  font-size: 14px;
  line-height: 1.85;
  color: #2a3240;
  margin-bottom: 16px;
}
.spForm .formItem-accept a {
  color: #0b3a6b;
  font-weight: 700;
  text-decoration: underline;
}
.spForm .formItem-accept .acceptWrap {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border: 2px solid rgba(11, 58, 107, .25);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.spForm .formItem-accept .acceptWrap:hover {
  border-color: #0b3a6b;
  background: #f5f8fc;
}
.spForm .formItem-accept input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  margin: 0;
  background: #fff;
  border: 2px solid #0b3a6b;
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: background .15s, box-shadow .15s;
}
.spForm .formItem-accept input[type="checkbox"]:hover {
  box-shadow: 0 0 0 4px rgba(11, 58, 107, .12);
}
.spForm .formItem-accept input[type="checkbox"]:checked {
  background: #0b3a6b;
  border-color: #0b3a6b;
}
.spForm .formItem-accept input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 8px;
  width: 7px;
  height: 13px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.spForm .formItem-accept input[type="checkbox"]:disabled {
  opacity: .55;
  cursor: not-allowed;
}
.spForm .formItem-accept label {
  font-size: 16px;
  font-weight: 700;
  color: #0b3a6b;
  margin: 0;
  cursor: pointer;
}

/* 送信アクション */
.spForm .formItem-confirm {
  margin-top: 48px;
  margin-bottom: 80px;
  padding: 0;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}
.spForm .formItem-confirm .text {
  font-size: 14px;
  color: #2a3240;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.75;
}
.spForm .formItem-confirm .inputWrap {
  width: 100%;
}
.spForm .formItem-confirm .inputWrap span {
  display: block;
  position: relative;
  width: 100%;
}
.spForm .formItem-confirm input[type="submit"] {
  width: 100%;
  min-height: 60px;
  padding: 16px 24px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #fff;
  background: linear-gradient(135deg, #0b3a6b, #14467d);
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 10px 24px -12px rgba(11, 58, 107, .6);
  transition: transform .12s, box-shadow .18s, filter .15s;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}
.spForm .formItem-confirm input[type="submit"]:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 14px 30px -10px rgba(11, 58, 107, .55);
}
.spForm .formItem-confirm input[type="submit"]:active {
  transform: translateY(0);
  filter: brightness(.97);
}
.spForm .formItem-confirm .arrow {
  display: none;
}
.spForm .formItem-confirm .btn_back {
  background: linear-gradient(135deg, #6b7684, #4b5563);
  box-shadow: 0 8px 18px -10px rgba(75, 85, 99, .7);
}
.spForm .formItem-confirm .btn_submit {
  background: linear-gradient(135deg, #b8893f, #d8ac5e);
  box-shadow: 0 10px 24px -10px rgba(184, 137, 63, .55);
}

/* 確認画面：値の表示ブロック */
.spForm--confirm .spFormField .inputWrap p {
  font-size: 16px;
  line-height: 1.75;
  color: #15202e;
  padding: 14px 16px;
  background: #f6f8fc;
  border-left: 4px solid #0b3a6b;
  border-radius: 8px;
  margin: 0;
}
.spForm--confirm .formItem-postalCode .inputWrap p { display: inline-block; margin-left: 4px; }

/* 完了画面 */
.spForm--thanks {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 24px;
  text-align: center;
}
.spForm--thanks .thanksText p {
  font-size: 16px;
  line-height: 2;
  color: #2a3240;
  margin-bottom: 28px;
}
.spForm--thanks .thanksIcon {
  width: 76px; height: 76px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(11, 58, 107, .08), rgba(196, 154, 78, .12));
  display: grid; place-items: center;
  color: #0b3a6b;
}
.spForm--thanks .thanksIcon svg { width: 40px; height: 40px; }
.spForm--thanks .btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .05em;
  color: #fff;
  background: linear-gradient(135deg, #0b3a6b, #14467d);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 22px -12px rgba(11, 58, 107, .55);
  transition: transform .15s, box-shadow .15s;
}
.spForm--thanks .btn a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(11, 58, 107, .55);
}
.spForm--thanks .btn a .arrow {
  display: inline-block;
  width: 16px; height: 16px;
  background: currentColor;
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M13.3 5.3a1 1 0 0 1 1.4 0l6 6a1 1 0 0 1 0 1.4l-6 6a1 1 0 0 1-1.4-1.4L17.58 13H4a1 1 0 0 1 0-2h13.58l-4.28-4.3a1 1 0 0 1 0-1.4z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M13.3 5.3a1 1 0 0 1 1.4 0l6 6a1 1 0 0 1 0 1.4l-6 6a1 1 0 0 1-1.4-1.4L17.58 13H4a1 1 0 0 1 0-2h13.58l-4.28-4.3a1 1 0 0 1 0-1.4z'/></svg>");
  mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat;
  mask-size: contain; -webkit-mask-size: contain;
}

/* ============================================================
   Phase 2J — 製品メニュー: spCard__icon 絵文字を SVG 代替
   ============================================================ */
.spProductCard .spCard__icon,
.spCard--prod .spCard__icon {
  font-size: 0;
  color: transparent;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(11, 58, 107, .1), rgba(196, 154, 78, .15));
  width: 56px; height: 56px; border-radius: 16px;
}
.spCard--prod .spCard__icon::before {
  content: "";
  width: 28px; height: 28px;
  background: #0b3a6b;
  mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat;
  mask-size: contain; -webkit-mask-size: contain;
  mask-position: center; -webkit-mask-position: center;
}
.spCard--prod .spCard__title small {
  display: inline-block;
  margin-top: 4px;
  font-family: "Inter Tight", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #c49a4e;
  text-transform: uppercase;
}
.spCard--prod-orderette .spCard__icon::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M3 4h18a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1h-7v2h3a1 1 0 0 1 0 2H7a1 1 0 0 1 0-2h3v-2H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1zm1 2v9h16V6H4z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M3 4h18a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1h-7v2h3a1 1 0 0 1 0 2H7a1 1 0 0 1 0-2h3v-2H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1zm1 2v9h16V6H4z'/></svg>");
}
.spCard--prod-sparette .spCard__icon::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M6 11c1.5-1.5 1.5-4 0-5.5L7 4c2 2 2 5 0 7l-1 0zm5 0c1.5-1.5 1.5-4 0-5.5L12 4c2 2 2 5 0 7l-1 0zm5 0c1.5-1.5 1.5-4 0-5.5L17 4c2 2 2 5 0 7l-1 0zM3 14h18v2c0 2-1 4-4 4H7c-3 0-4-2-4-4v-2z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M6 11c1.5-1.5 1.5-4 0-5.5L7 4c2 2 2 5 0 7l-1 0zm5 0c1.5-1.5 1.5-4 0-5.5L12 4c2 2 2 5 0 7l-1 0zm5 0c1.5-1.5 1.5-4 0-5.5L17 4c2 2 2 5 0 7l-1 0zM3 14h18v2c0 2-1 4-4 4H7c-3 0-4-2-4-4v-2z'/></svg>");
}
.spCard--prod-hq .spCard__icon::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M4 3h7v18H4V3zm9 6h7v12h-7V9zM6 5v2h3V5H6zm0 4v2h3V9H6zm0 4v2h3v-2H6zm9-2v2h3v-2h-3zm0 4v2h3v-2h-3z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M4 3h7v18H4V3zm9 6h7v12h-7V9zM6 5v2h3V5H6zm0 4v2h3V9H6zm0 4v2h3v-2H6zm9-2v2h3v-2h-3zm0 4v2h3v-2h-3z'/></svg>");
}
.spCard--prod-mom .spCard__icon::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M7 2h10a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm0 2v14h10V4H7zm5 15.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M7 2h10a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm0 2v14h10V4H7zm5 15.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3z'/></svg>");
}
.spCard--prod-mobareji .spCard__icon::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M6 8a4 4 0 0 1 3.5-4 5 5 0 0 1 9.4 2.5A4 4 0 0 1 18 14H7a4 4 0 0 1-1-6zM5 17h14v2H5z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M6 8a4 4 0 0 1 3.5-4 5 5 0 0 1 9.4 2.5A4 4 0 0 1 18 14H7a4 4 0 0 1-1-6zM5 17h14v2H5z'/></svg>");
}
.spCard--prod-ken .spCard__icon::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M4 5h16a1 1 0 0 1 1 1v3a2 2 0 0 0 0 4v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-3a2 2 0 0 0 0-4V6a1 1 0 0 1 1-1zm2 2v2.1a4 4 0 0 1 0 5.8V17h12v-2.1a4 4 0 0 1 0-5.8V7H6z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M4 5h16a1 1 0 0 1 1 1v3a2 2 0 0 0 0 4v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-3a2 2 0 0 0 0-4V6a1 1 0 0 1 1-1zm2 2v2.1a4 4 0 0 1 0 5.8V17h12v-2.1a4 4 0 0 1 0-5.8V7H6z'/></svg>");
}
.spCard--sol-food .spCard__icon,
.spCard--sol-hotel .spCard__icon {
  font-size: 0; color: transparent; overflow: hidden;
  background: linear-gradient(135deg, rgba(11, 58, 107, .1), rgba(196, 154, 78, .15));
  position: relative;
  width: 56px; height: 56px; border-radius: 16px;
}
.spCard--sol-food .spCard__icon::before,
.spCard--sol-hotel .spCard__icon::before {
  content: "";
  width: 28px; height: 28px; background: #0b3a6b;
  mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat;
  mask-size: contain; -webkit-mask-size: contain;
  mask-position: center; -webkit-mask-position: center;
}
.spCard--sol-food .spCard__icon::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M4 3v9a4 4 0 0 0 3 3.87V22h2v-6.13A4 4 0 0 0 12 12V3h-2v8H9V3H7v8H6V3H4zm12 0v7h2v12h2V3h-4z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M4 3v9a4 4 0 0 0 3 3.87V22h2v-6.13A4 4 0 0 0 12 12V3h-2v8H9V3H7v8H6V3H4zm12 0v7h2v12h2V3h-4z'/></svg>");
}
.spCard--sol-hotel .spCard__icon::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M3 5h18v14h-2v-6H5v6H3V5zm4 6a3 3 0 1 1 0-6 3 3 0 0 1 0 6zm4-1v3h9v-3a4 4 0 0 0-4-4h-1a4 4 0 0 0-4 4z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M3 5h18v14h-2v-6H5v6H3V5zm4 6a3 3 0 1 1 0-6 3 3 0 0 1 0 6zm4-1v3h9v-3a4 4 0 0 0-4-4h-1a4 4 0 0 0-4 4z'/></svg>");
}

/* ============================================================
   Phase 2J — FAQ カテゴリピルナビ
   ============================================================ */
.spFaqCats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.spFaqCat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #fff;
  background: linear-gradient(135deg, #0b3a6b, #14467d);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 14px -8px rgba(11, 58, 107, .55);
  transition: transform .12s, box-shadow .15s, filter .15s;
}
.spFaqCat:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  color: #fff;
}
.spFaqCat__icon {
  width: 18px; height: 18px;
  background: currentColor;
  mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat;
  mask-size: contain; -webkit-mask-size: contain;
  mask-position: center; -webkit-mask-position: center;
  flex-shrink: 0;
}
.spFaqCat--pos .spFaqCat__icon {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M3 4h18a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1h-7v2h3v2H7v-2h3v-2H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1zm1 2v9h16V6H4z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M3 4h18a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1h-7v2h3v2H7v-2h3v-2H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1zm1 2v9h16V6H4z'/></svg>");
}
.spFaqCat--handy .spFaqCat__icon {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M7 2h10a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm0 2v12h10V4H7zm5 13.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M7 2h10a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm0 2v12h10V4H7zm5 13.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3z'/></svg>");
}
.spFaqCat--printer .spFaqCat__icon {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M6 3h12v5H6V3zm-2 6h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2v3H6v-3H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2zm4 6v4h8v-4H8zm10-3a1 1 0 1 1-2 0 1 1 0 0 1 2 0z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M6 3h12v5H6V3zm-2 6h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2v3H6v-3H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2zm4 6v4h8v-4H8zm10-3a1 1 0 1 1-2 0 1 1 0 0 1 2 0z'/></svg>");
}
.spFaqCat--mobile .spFaqCat__icon {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M7 2h10a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm0 2v14h10V4H7zm5 15.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M7 2h10a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm0 2v14h10V4H7zm5 15.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3z'/></svg>");
}
.spFaqCat--misc .spFaqCat__icon {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M11 7a1 1 0 1 1 2 0v6a1 1 0 1 1-2 0V7zm1 10.2a1.2 1.2 0 1 1 0 2.4 1.2 1.2 0 0 1 0-2.4zM12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20zm0 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M11 7a1 1 0 1 1 2 0v6a1 1 0 1 1-2 0V7zm1 10.2a1.2 1.2 0 1 1 0 2.4 1.2 1.2 0 0 1 0-2.4zM12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20zm0 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16z'/></svg>");
}

/* FAQ カテゴリ見出し（emoji 絵文字を SVG で置き換え） */
.spFaqGroup { margin-bottom: 56px; }
.spFaqGroup__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 4.8vw, 22px);
  font-weight: 800;
  color: #0b3a6b;
  text-align: left;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #0b3a6b;
}
.spFaqGroup__titleIcon {
  width: 26px; height: 26px;
  background: #0b3a6b;
  mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat;
  mask-size: contain; -webkit-mask-size: contain;
  mask-position: center; -webkit-mask-position: center;
  flex-shrink: 0;
}
.spFaqGroup--pos .spFaqGroup__titleIcon { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M3 4h18v11H3V4zm2 2v7h14V6H5zM7 17h10v2H7z'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M3 4h18v11H3V4zm2 2v7h14V6H5zM7 17h10v2H7z'/></svg>"); }
.spFaqGroup--handy .spFaqGroup__titleIcon { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M7 2h10a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm0 2v12h10V4H7zm5 13.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3z'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M7 2h10a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm0 2v12h10V4H7zm5 13.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3z'/></svg>"); }
.spFaqGroup--printer .spFaqGroup__titleIcon { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M6 3h12v5H6V3zm-2 6h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2v3H6v-3H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2zm4 6v4h8v-4H8z'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M6 3h12v5H6V3zm-2 6h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2v3H6v-3H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2zm4 6v4h8v-4H8z'/></svg>"); }
.spFaqGroup--mobile .spFaqGroup__titleIcon { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M7 2h10a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm0 2v14h10V4H7zm5 15.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3z'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M7 2h10a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm0 2v14h10V4H7zm5 15.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3z'/></svg>"); }
.spFaqGroup--misc .spFaqGroup__titleIcon { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M4 4h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-8l-5 4v-4H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2zm2 3v2h12V7H6zm0 4v2h9v-2H6z'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M4 4h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-8l-5 4v-4H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2zm2 3v2h12V7H6zm0 4v2h9v-2H6z'/></svg>"); }

/* FAQ 項目のタップ最適化 */
.spFaq__item { transition: box-shadow .15s; }
.spFaq__q {
  min-height: 56px;
  cursor: pointer;
  gap: 12px;
}
.spFaq__qArrow {
  transition: transform .2s ease;
  display: inline-block;
  flex-shrink: 0;
}
.spFaq__item.open .spFaq__qArrow { transform: rotate(180deg); }

/* ============================================================
   Phase 2J — sales-agent 追加モディファイア
   ============================================================ */
.spAgentHead {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #0b3a6b;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #0b3a6b;
  letter-spacing: .02em;
}
.spAgentHead__note {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  color: #5a616b;
  margin-left: 12px;
  letter-spacing: 0;
}
.spAgentGroup { margin-bottom: 40px; }
.spAgentGroup:last-child { margin-bottom: 0; }
.spAgentNote {
  font-size: 14px;
  text-align: center;
  color: #2a3240;
  margin-bottom: 28px;
}
.spAgentCta { margin-top: 24px; text-align: left; }

/* ============================================================
   Phase 2J — privacy-policy (.spPolicy*)
   ============================================================ */
.spPolicy {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 4px;
}
.spPolicy__intro {
  font-size: 15px;
  line-height: 2;
  color: #2a3240;
  padding: 18px 18px;
  background: rgba(11, 58, 107, .04);
  border-left: 4px solid #0b3a6b;
  border-radius: 8px;
  margin-bottom: 30px;
}
.spPolicy__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 48px 0 22px;
  padding-bottom: 10px;
  border-bottom: 2px solid #0b3a6b;
}
.spPolicy__headEn {
  font-family: "Inter Tight", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  color: #c49a4e;
  flex-shrink: 0;
}
.spPolicy__headJa {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 5vw, 22px);
  font-weight: 800;
  color: #0b3a6b;
  letter-spacing: .02em;
}
.spPolicy__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: policy;
}
.spPolicy__list > li {
  counter-increment: policy;
  padding: 20px 0 22px 48px;
  border-bottom: 1px dashed rgba(11, 58, 107, .2);
  position: relative;
}
.spPolicy__list > li:last-child { border-bottom: 0; }
.spPolicy__list > li::before {
  content: counter(policy, decimal-leading-zero);
  position: absolute;
  left: 0; top: 22px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  font-family: "Inter Tight", sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #c49a4e;
  background: linear-gradient(135deg, rgba(11, 58, 107, .08), rgba(196, 154, 78, .1));
  border-radius: 10px;
  letter-spacing: .04em;
}
.spPolicy__list dt {
  font-size: 16px;
  font-weight: 800;
  color: #0b3a6b;
  margin-bottom: 10px;
  line-height: 1.55;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.spPolicy__list dt .suquareMark {
  display: inline-block;
  width: 10px; height: 10px;
  background: #c49a4e;
  flex-shrink: 0;
}
.spPolicy__list dd {
  font-size: 14.5px;
  line-height: 2.05;
  color: #2a3240;
  letter-spacing: .01em;
}
.spPolicy__list dd dl { margin-top: 12px; }
.spPolicy__list dd dl dt {
  font-size: 14px;
  color: #14467d;
  margin-top: 10px;
  margin-bottom: 6px;
}
.spPolicy__list dd dl dd {
  font-size: 14px;
  line-height: 1.95;
  padding-left: 14px;
  border-left: 2px solid rgba(11, 58, 107, .15);
  margin-bottom: 10px;
}
.spPolicy__list a {
  color: #14467d;
  font-weight: 700;
  text-decoration: underline;
}
.spPolicy__sign {
  margin-top: 30px;
  padding: 20px 22px;
  background: rgba(11, 58, 107, .04);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.95;
  color: #2a3240;
}
.spPolicy__sign address {
  font-style: normal;
  display: block;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(11, 58, 107, .18);
}

/* 製品リンクボタン (solution.html) */
.spProductLinks--card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 14px 20px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid rgba(11, 58, 107, .16);
  font-weight: 700;
  color: #0b3a6b;
  text-decoration: none;
  gap: 12px;
  transition: border-color .15s, transform .12s, box-shadow .15s;
}
.spProductLinks--card a::after {
  content: "";
  width: 18px; height: 18px;
  background: currentColor;
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M13.3 5.3a1 1 0 0 1 1.4 0l6 6a1 1 0 0 1 0 1.4l-6 6a1 1 0 0 1-1.4-1.4L17.58 13H4a1 1 0 0 1 0-2h13.58l-4.28-4.3a1 1 0 0 1 0-1.4z'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M13.3 5.3a1 1 0 0 1 1.4 0l6 6a1 1 0 0 1 0 1.4l-6 6a1 1 0 0 1-1.4-1.4L17.58 13H4a1 1 0 0 1 0-2h13.58l-4.28-4.3a1 1 0 0 1 0-1.4z'/></svg>");
  mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat;
  mask-size: contain; -webkit-mask-size: contain;
  flex-shrink: 0;
  transition: transform .15s;
}
.spProductLinks--card a:hover {
  border-color: #0b3a6b;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -12px rgba(11, 58, 107, .45);
}
.spProductLinks--card a:hover::after { transform: translateX(3px); }

/* solution 画面イメージ画像の共通化 */
.spScreenshotGrid .spCard__body {
  padding: 20px;
}
.spScreenshotGrid img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
  display: block;
}
.spScreenshotGrid .spCard__title { font-size: 14px; }
.spScreenshotNote {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: #5a616b;
}

/* agent 代理店のマージン微調整 */
.sales-agent-cta { margin-top: 2rem; }

/* ============================================================
   Phase 2J — タブレット / デスクトップ調整
   ============================================================ */
@media (min-width: 601px) {
  .spForm { padding: 0 8px; }
  .spForm__intro { font-size: 16px; }
  .spForm .formItem-number {
    flex-direction: row;
    gap: 24px;
  }
  .spForm .formItem-number .tel,
  .spForm .formItem-number .fax {
    flex: 1;
  }
  .spForm .formItem-confirm {
    flex-direction: row;
    justify-content: center;
    gap: 18px;
  }
  .spForm .formItem-confirm .btnBackWrap,
  .spForm .formItem-confirm .btnSubmitWrap,
  .spForm .formItem-confirm .inputWrap { flex: 1; max-width: 300px; }
  .spForm .formItem-address .inputWrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .spFaqCats { gap: 12px; }
  .spFaqCat { min-height: 48px; padding: 12px 22px; font-size: 14px; }
}

@media (min-width: 900px) {
  .spForm { max-width: 820px; }
  .spFormField { padding: 26px 0 22px; }
  .spForm .formItem-address .inputWrap {
    grid-template-columns: 220px 1fr;
    grid-template-rows: auto auto;
  }
  .spForm .formItem-address .selectWrap { grid-row: 1 / 3; }
  .spForm .formItem-confirm input[type="submit"] {
    min-height: 64px;
    font-size: 18px;
  }
  .spPolicy { padding: 0 12px; }
  .spPolicy__head { gap: 18px; }
}

@media (min-width: 1200px) {
  .spForm { max-width: 860px; }
}

/* ============================================================
   Phase 2J — 390px 微調整
   ============================================================ */
@media (max-width: 400px) {
  .spHero--inquiry,
  .spHero--productMenu,
  .spHero--agent,
  .spHero--faq,
  .spHero--solution,
  .spHero--privacy { padding: 44px 0 40px; }
  .spHero--inquiry .spHero__title,
  .spHero--productMenu .spHero__title,
  .spHero--agent .spHero__title,
  .spHero--faq .spHero__title,
  .spHero--solution .spHero__title,
  .spHero--privacy .spHero__title { font-size: clamp(26px, 8.4vw, 38px); }

  .spFormField { padding: 18px 0 16px; }
  .spFormField .spFormLabel,
  .spFormField > label { font-size: 14px; }
  .spForm input[type="text"],
  .spForm input[type="tel"],
  .spForm input[type="email"],
  .spForm input[type="number"],
  .spForm textarea,
  .spForm select { min-height: 50px; padding: 13px 14px; }
  .spForm .inputWrap.formItem-name,
  .spFormField--name .inputWrap { gap: 8px; }
  .spForm .formItem-accept { padding: 16px 14px 14px; }
  .spForm .formItem-accept .text { font-size: 13px; line-height: 1.8; }
  .spForm .formItem-confirm input[type="submit"] { min-height: 56px; font-size: 16px; }

  .spFaqCat { padding: 9px 14px; font-size: 12px; min-height: 40px; }
  .spFaqCat__icon { width: 16px; height: 16px; }

  .spPolicy__list > li { padding: 18px 0 20px 44px; }
  .spPolicy__list > li::before { width: 32px; height: 32px; font-size: 12px; top: 20px; }
  .spPolicy__list dt { font-size: 15px; }
  .spPolicy__list dd { font-size: 13.5px; line-height: 1.95; }
  .spPolicy__sign { padding: 16px 16px; font-size: 13px; }
}

/* ── Phase 2J 追補 (question/solution/privacy 微調整) ─────── */
.spSection--faqCats { padding: 32px 0; }

.spFaq__link {
  display: inline-flex;
  align-items: center;
  color: #0b3a6b;
  font-weight: 700;
  text-decoration: none;
  margin-top: 10px;
  padding: 8px 14px;
  background: rgba(11, 58, 107, .06);
  border-radius: 8px;
  border: 1px solid rgba(11, 58, 107, .15);
  transition: background .15s, border-color .15s, transform .12s;
}
.spFaq__link:hover {
  background: rgba(11, 58, 107, .1);
  border-color: #0b3a6b;
  transform: translateX(2px);
  color: #0b3a6b;
}

.spFeature--spaced { margin-bottom: 56px; }
.spFeature--flush { margin-bottom: 0; }

/* privacy-policy 右寄せサイン (既存 .right は flex レイアウト) */
.spPolicy__right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
  padding: 0;
  list-style: none;
}
.spPolicy__right > li { padding: 0; list-style: none; border: 0; }
.spPolicy__right > li::before { display: none; }
.spPolicy__right address {
  font-style: normal;
  display: block;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed rgba(11, 58, 107, .18);
}
@media (min-width: 601px) {
  .spPolicy__right { flex-direction: row; flex-wrap: wrap; justify-content: flex-end; }
  .spPolicy__right > li { flex: 1 1 280px; max-width: 420px; }
}

/* question FAQ グループの余白調整 */
.spFaqGroup { margin-bottom: 56px; }
.spFaqGroup:last-child { margin-bottom: 0; }
.spFaqGroup__title { text-align: left; }

/* end Phase 2J */

/* =====================================================================
   SP ハンバーガーメニュー：current（自分が居るページ）親ラベルの可読性
   - common.css のグローバル `.current { background:#fff }` が SP ナビでも
     当たって、白文字＋白背景で親ラベルが消える問題の対策
   ===================================================================== */
.sp-navWrap .sp-nav > li.current,
.sp-navWrap .sp-nav > li.existSubmenu.current {
  background-color: rgba(255, 255, 255, 0.15) !important;
}
.sp-navWrap .sp-nav > li.current > a,
.sp-navWrap .sp-nav > li.current > a:visited,
.sp-navWrap .sp-nav > li.current > a:hover,
.sp-navWrap .sp-nav > li.current > a:active,
.sp-navWrap .sp-nav > li.existSubmenu.current > a {
  color: #fff !important;
  background-color: transparent !important;
}

/* =====================================================================
   SP ハンバーガーメニュー：サブメニューの可読性修正
   - 青丸 ">" マークを完全非表示
   - サブメニュー文字色を濃紺に固定（白文字＋クリーム背景で見えない問題の対策）
   - 装飾線（黄色っぽい縦線/border-left）を除去
   ===================================================================== */
.sp-nav .menuWrap .mark,
.sp-nav .menuWrap .mark::before,
.sp-nav .menuWrap .mark::after {
  display: none !important;
  content: none !important;
  background: transparent !important;
}
.sp-nav .menuWrap,
.sp-nav .menuWrap > .menu,
.sp-nav .menuWrap > .menu > li {
  background-image: none !important;
  border-left: 0 !important;
  border-right: 0 !important;
  list-style: none !important;
}
.sp-nav .menuWrap > .menu > li > a,
.sp-nav .menuWrap > .menu > li > a:visited,
.sp-nav .menuWrap > .menu > li > a:hover,
.sp-nav .menuWrap > .menu > li > a:active {
  color: #0b3a6b !important;
  font-weight: 700;
  text-decoration: none;
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  line-height: 1.5;
  background: transparent !important;
}
.sp-nav .menuWrap > .menu > li {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid rgba(11, 58, 107, .08) !important;
  border-top: 0 !important;
}
.sp-nav .menuWrap > .menu > li:last-child {
  border-bottom: 0 !important;
}
.sp-nav .menuWrap > .menu > li:empty {
  display: none !important;
}

/* =====================================================================
   フッター：プライバシーマーク画像のサイズ強制（モバイルで巨大化対策）
   ===================================================================== */
footer .footer-bottom__pmark,
footer .footer-bottom__pmark img {
  max-width: 40px !important;
  width: 40px !important;
  height: auto !important;
  display: inline-block !important;
}
@media (max-width: 560px) {
  footer .footer-bottom__pmark,
  footer .footer-bottom__pmark img {
    max-width: 36px !important;
    width: 36px !important;
  }
}
