@charset "UTF-8";
/* ━━━━━━━━━━━━━━━━

 デザイントークン

━━━━━━━━━━━━━━━━ */
:root {
  /* ── メインカラー ── */
  --primary: #1B3A5C;
  --primary-dark: #0f2440;
  --accent: #B8860B;
  --accent-light: #d4a853;
  --accent-lighter: #e0be78;
  --accent-pale: #ebd4a0;
  /* ── テキスト ── */
  --text: #333;
  --text-light: #555;
  --text-muted: #64748b;
  --text-subtle: #94a3b8;
  /* ── 背景・UI ── */
  --white: #fff;
  --bg: #F4F6F9;
  --charcoal: #0f172a;
  --border: #D5DAE2;
  /* ── 角丸 ── */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --btn-radius: 8px;
  /* ── シャドウ ── */
  --shadow: 0 2px 12px rgba(0, 0, 0, .06);
  --shadow-hover: 0 8px 28px rgba(0, 0, 0, .12);
  --shadow-hero: 0 32px 80px -16px rgba(0, 0, 0, 0.55), 0 8px 24px -8px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  /* ── トランジション ── */
  --transition: all 0.3s ease;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --dur-fast: 200ms;
  --dur-normal: 400ms;
  --dur-hero: 900ms;
  /* ── タイポグラフィ ── */
  --font-base: 'Noto Sans JP', sans-serif;
  --font-heading: 'Noto Sans JP', sans-serif;
  --font-en: serif;
  --font-num: serif;
  /* ── ヒーロー固有 ── */
  --hero-bg: #0b1a30;
  --hero-bg-deep: #06101e;
  --hero-text-muted: #b0bec5;
  --hero-nav: #334155;
}

/* ━━━━━━━━━━━━━━━━

 ■ 初期化

━━━━━━━━━━━━━━━━ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

/* ━━━━━━━━━━━━━━━━

 ■ ユーティリティ

━━━━━━━━━━━━━━━━ */
.u-hidden-sp {
  display: none;
}

@media (min-width: 769px) {
  .u-hidden-sp {
    display: inline;
  }
}
.u-hidden-pc {
  display: inline;
}

@media (min-width: 769px) {
  .u-hidden-pc {
    display: none;
  }
}
.u-overflow-hidden {
  overflow: hidden !important;
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* マーカー（蛍光ペン風の下半分ハイライト） */
/* ── c-section-title ── */
.c-section-title {
  margin-bottom: 48px;
  text-align: center;
}

@media (min-width: 769px) {
  .c-section-title {
    margin-bottom: 60px;
  }
}
.c-section-title__en {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.c-section-title__ja {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}

.c-section-title__desc {
  max-width: 640px;
  margin: 16px auto 0;
  font-size: clamp(15px, 1.8vw, 16px);
  line-height: 1.8;
  color: var(--text-light);
}

.c-section-title__desc a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
  transition: var(--transition);
}

.c-section-title__desc a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ── c-button ── */
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-base);
  font-weight: 700;
  text-align: center;
  border: 1.5px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-normal) var(--ease-out-expo), box-shadow var(--dur-normal) var(--ease-out-expo), background-color var(--dur-fast) ease, border-color var(--dur-fast) ease, color var(--dur-fast) ease;
}

/* Header CTA */
.c-button--header {
  padding: 8px 24px;
  font-size: 13px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  border-color: transparent;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .c-button--header {
    display: none;
  }
}
.c-button--header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 83, 0.35);
}

/* Primary CTA（ヒーロー内） */
.c-button--primary {
  padding: 16px 40px;
  font-size: 15px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--white);
  border-color: transparent;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(212, 168, 83, 0.3);
}

@media (max-width: 480px) {
  .c-button--primary {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
  }
}
.c-button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212, 168, 83, 0.45);
}

.c-button__text {
  display: inline;
}

.c-button__icon {
  display: inline-flex;
  transition: transform var(--dur-normal) var(--ease-out-expo);
}

.c-button--primary:hover .c-button__icon {
  transform: translateX(4px);
}

/* Outline CTA */
/* Mobile Header CTA */
.c-button--mobile-header {
  padding: 16px 48px;
  font-size: 15px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  border-color: transparent;
  border-radius: var(--radius-sm);
  width: auto;
  margin-top: 16px;
}

/* Outline-dark CTA */
/* ── l-container ── */
.l-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── l-header ── */
.l-header {
  position: relative;
  padding-top: 64px;
}

@media (min-width: 901px) {
  .l-header {
    padding-top: 72px;
  }
}
.l-header__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 12px 0;
  transition: box-shadow var(--dur-normal) var(--ease-out-expo), padding var(--dur-normal) var(--ease-out-expo);
}

@media (min-width: 769px) {
  .l-header__wrapper {
    padding: 16px 0;
  }
}
.l-header.is-scrolled .l-header__wrapper {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
  padding: 12px 0;
}

.l-header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

@media (min-width: 769px) {
  .l-header__container {
    padding: 0 40px;
  }
}
/* Logo */
.l-header__logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity var(--dur-fast) ease;
}

.l-header__logo-link:hover {
  opacity: 0.8;
}

.l-header__logo {
  height: 28px;
  width: auto;
}

.l-header__logo-text {
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}

@media (min-width: 769px) {
  .l-header__logo-text {
    font-size: 16px;
  }
}
/* Navigation */
.l-header__nav {
  display: none;
}

@media (min-width: 901px) {
  .l-header__nav {
    display: block;
    /* 中央（space-between の余白）ではなく、無料相談の手前に寄せる */
    margin-left: auto;
    margin-right: 32px;
  }
}
.l-header__nav-list {
  display: flex;
  gap: 28px;
  list-style: none;
}

.l-header__nav-item {
  position: relative;
}

.l-header__nav-link {
  position: relative;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.02em;
  transition: color var(--dur-fast) ease;
}

.l-header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-light), var(--accent-lighter));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out-expo);
  will-change: transform;
  backface-visibility: hidden;
}

.l-header__nav-link:hover {
  color: var(--primary);
}

.l-header__nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Header Actions */
.l-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger */
.l-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
}

@media (min-width: 901px) {
  .l-header__hamburger {
    display: none;
  }
}
.l-header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--charcoal);
  border-radius: 2px;
  transition: var(--dur-normal) var(--ease-out-expo);
}

.l-header__hamburger.is-active span {
  background-color: var(--charcoal) !important;
}

.l-header__hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.l-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.l-header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
/* ヘッダー（fixed の l-header__wrapper）の中に置かれているので、位置は指定しない。
   閉じているときは高さを畳み、開くとヘッダーの下から帯が降りてくる。
   全画面を覆わないので、下は元のページが見えたままになる */
.l-header__mobile-menu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height var(--dur-normal) var(--ease-out-expo), opacity var(--dur-normal) var(--ease-out-expo);
}

.l-header__mobile-menu.is-open {
  max-height: 320px;
  opacity: 1;
  pointer-events: auto;
}

/* 開いている間は、帯が本文の上に浮いて見えるように影を出す
   （is-scrolled と同じ影。スクロール前に開いたときも段差が分かるように） */
.l-header__wrapper:has(.l-header__mobile-menu.is-open) {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.08);
}

.l-header__mobile-nav-list {
  list-style: none;
  text-align: center;
  padding: 12px 16px 16px;
}

.l-header__mobile-nav-item {
  margin: 0;
}

.l-header__mobile-nav-link {
  display: block;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--hero-nav);
  transition: color var(--dur-fast) ease;
}

.l-header__mobile-nav-link:hover {
  color: var(--accent-light);
}

/* ── l-footer ── */
.l-footer {
  background-color: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
}

/* ── メインエリア（ロゴ + ナビグループ） ── */
.l-footer__main {
  padding: 64px 0 48px;
}

.l-footer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.l-footer__brand {
  grid-column: 1/-1;
}

@media (min-width: 769px) {
  .l-footer__grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 48px;
  }
  .l-footer__brand {
    grid-column: auto;
  }
}
/* ── ブランド（ロゴ + テキスト） ── */
.l-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.l-footer__logo {
  width: 160px;
  height: auto;
}

.l-footer__brand-text {
  font-family: var(--font-base);
  font-size: clamp(13px, 1.5vw, 14px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
}

/* ── ナビグループ ── */
.l-footer__nav-heading {
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.l-footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.l-footer__nav-list a {
  display: inline-block;
  font-size: clamp(14px, 1.5vw, 15px);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.l-footer__nav-list a::before {
  content: "- ";
  color: rgba(255, 255, 255, 0.4);
}

.l-footer__nav-list a:hover {
  color: #fff;
}

/* ── ボトムエリア（リンクバー + コピーライト） ── */
.l-footer__bottom {
  padding: 28px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* リンクバー */
/* コピーライト */
.l-footer__copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ================================================================
   Layout — l-page-top
   ================================================================
   ページトップボタン（固定表示、右下）。
   スクロール 500px 以降で .is-show → フェードイン。
   ================================================================ */
.l-page-top {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 20px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  background: var(--primary-dark);
  color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, box-shadow 0.3s;
  z-index: 800;
}

@media (min-width: 769px) {
  .l-page-top {
    display: flex;
  }
}
.l-page-top.is-show {
  opacity: 1;
  visibility: visible;
}

.l-page-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.l-page-top svg {
  width: 24px;
  height: 24px;
}

/* ━━━━━━━━━━━━━━━━

 s-hero（ヒーローセクション）

━━━━━━━━━━━━━━━━ */
.s-hero {
  position: relative;
  min-height: 85vh;
  min-height: 85dvh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background-color: var(--white);
  overflow: hidden;
}

@media (min-width: 901px) {
  .s-hero {
    padding: 0;
    min-height: calc(85vh - 72px);
    min-height: calc(85dvh - 72px);
  }
  /* PC用の斜めスプリット背景 */
  .s-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 48%;
    background: linear-gradient(165deg, var(--primary-dark) 0%, var(--hero-bg) 35%, var(--hero-bg-deep) 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
  }
}
@media (max-width: 900px) {
  .s-hero {
    padding: 40px 0 0;
  }
}
/* 背景装飾オーブ */
.s-hero__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.s-hero__bg-orb--1 {
  width: 600px;
  height: 600px;
  top: -15%;
  right: -5%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.12) 0%, transparent 70%);
  animation: orbFloat1 12s ease-in-out infinite alternate;
}

.s-hero__bg-orb--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(26, 58, 95, 0.4) 0%, transparent 70%);
  animation: orbFloat2 10s ease-in-out infinite alternate;
}

.s-hero__bg-orb--3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 30%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
  animation: orbFloat3 14s ease-in-out infinite alternate;
}

@media (min-width: 901px) {
  /* 左側に被るオーブは非表示・または右側に寄せて白背景をクリーンに保つ */
  .s-hero__bg-orb--2 {
    display: none;
  }
  .s-hero__bg-orb--3 {
    left: auto;
    right: 20%;
  }
}
@keyframes orbFloat1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-30px, 20px) scale(1.1);
  }
}
@keyframes orbFloat2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(20px, -15px) scale(1.05);
  }
}
@keyframes orbFloat3 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-15px, -25px) scale(0.95);
  }
}
/* 粒子感テクスチャ */
.s-hero__bg-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Grid Layout */
.s-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 901px) {
  .s-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}
@media (min-width: 1100px) {
  .s-hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
  }
}
/* s-hero__content — 左側コピー */
.s-hero__content {
  max-width: 580px;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--dur-hero) var(--ease-out-quint), transform var(--dur-hero) var(--ease-out-quint);
}

.s-hero__content.is-entered {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .s-hero__content {
    max-width: 100%;
    text-align: center;
  }
}
/* Badge */
.s-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid rgba(184, 134, 11, 0.25);
  background-color: rgba(184, 134, 11, 0.05);
  border-radius: var(--radius-full);
}

/* Title */
.s-hero__title {
  margin-bottom: 24px;
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.s-hero__title-main {
  display: block;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--primary);
}

.s-hero__title-accent {
  display: block;
  font-size: clamp(32px, 5vw, 48px);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 40%, var(--accent-lighter) 80%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 6s ease-in-out infinite;
}

@keyframes goldShimmer {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}
/* Lead */
.s-hero__lead {
  margin-bottom: 40px;
  font-size: clamp(15px, 1.8vw, 16px);
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-light);
}

/* CTA Actions */
.s-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0;
}

@media (min-width: 500px) {
  .s-hero__actions {
    flex-direction: row;
    align-items: center;
  }
}
@media (max-width: 900px) {
  .s-hero__actions {
    justify-content: center;
  }
}
/* s-hero__visual — 右側ブラウザモックアップ */
.s-hero__visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity var(--dur-hero) var(--ease-out-quint), transform var(--dur-hero) var(--ease-out-quint);
}

.s-hero__visual.is-entered {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 900px) {
  .s-hero__visual {
    /* SP時は左右いっぱいに広がる紺背景を敷いてコントラストを作る */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 48px 24px 64px;
    background: linear-gradient(165deg, var(--primary-dark) 0%, var(--hero-bg) 35%, var(--hero-bg-deep) 100%);
  }
}
.s-hero__visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

/* s-hero__mockup */
.s-hero__mockup {
  position: relative;
  width: 100%;
  max-width: 520px;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--btn-radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-hero);
  transition: transform 0.6s var(--ease-out-expo);
}

@media (max-width: 900px) {
  .s-hero__mockup {
    max-width: 400px;
    margin: 0 auto;
  }
}
.s-hero__mockup-header {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  background-color: var(--primary-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.s-hero__mockup-dots {
  display: flex;
  gap: 6px;
}

.s-hero__mockup-dots span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.s-hero__mockup-dots span:nth-child(1) {
  background-color: #ff5f57;
}

.s-hero__mockup-dots span:nth-child(2) {
  background-color: #febc2e;
}

.s-hero__mockup-dots span:nth-child(3) {
  background-color: #28c840;
}

.s-hero__mockup-body {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--hero-bg);
}

.s-hero__mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s var(--ease-out-expo);
}

.s-hero__mockup:hover .s-hero__mockup-img {
  transform: scale(1.05);
}

/* Floating Cards */
.s-hero__floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  /* 上品なシャンパンゴールドグラデーション */
  background: linear-gradient(135deg, var(--accent-pale) 0%, var(--accent-lighter) 50%, var(--accent-light) 100%);
  /* 輪郭を際立たせるゴールド枠線 */
  border: 2.5px solid var(--accent);
  /* 浮遊感を際立たせるソフトなシャドウ */
  box-shadow: 0 12px 32px rgba(15, 36, 64, 0.12), 0 4px 12px rgba(184, 134, 11, 0.15);
  animation: floatBounce 4s ease-in-out infinite;
}

@media (max-width: 900px) {
  .s-hero__floating-card {
    display: none;
  }
}
.s-hero__floating-card--stats {
  bottom: 12%;
  left: -6%;
  animation-delay: 0s;
}

.s-hero__floating-card--ai {
  top: 12%;
  right: -4%;
  animation-delay: 1.5s;
}

@keyframes floatBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.s-hero__floating-card-value {
  display: block;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary-dark);
}

.s-hero__floating-card--stats .s-hero__floating-card-value {
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
  color: var(--primary-dark);
}

.s-hero__floating-card--ai .s-hero__floating-card-value {
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
  color: var(--primary-dark);
}

.s-hero__floating-card-desc {
  display: block;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(15, 36, 64, 0.85);
}

.s-hero__floating-card--stats .s-hero__floating-card-desc {
  color: rgba(15, 36, 64, 0.85);
}

.s-hero__floating-card--ai .s-hero__floating-card-desc {
  color: rgba(15, 36, 64, 0.85);
}

/* キャッチコピーが長い場合（トップの「反響の獲得から商談まで、ホームページがはたらく。」） */
.s-hero__title--catch .s-hero__title-main,
.s-hero__title--catch .s-hero__title-accent {
  font-size: clamp(24px, 3.6vw, 40px);
  letter-spacing: -0.01em;
}

/* ── s-showcase（テンプレート選択ポータル） ── */
.s-showcase {
  padding: 72px 12px;
  background: var(--white);
}

@media (min-width: 769px) {
  .s-showcase {
    padding: 100px 12px;
  }
}
.s-showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}

@media (min-width: 641px) {
  .s-showcase__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 901px) {
  .s-showcase__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
.s-showcase__card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.s-showcase__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

/* サムネイル — カード上端フルブリード */
.s-showcase__thumbnail-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: #f3f4f6;
  border-bottom: 1px solid var(--border);
}

.s-showcase__thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s var(--ease-out-expo);
}

.s-showcase__card:hover .s-showcase__thumbnail {
  transform: scale(1.05);
}

/* カテゴリラベル（タグ風バッジ） */
.s-showcase__label {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 4px 12px;
  font-family: var(--font-base);
  font-size: clamp(12px, 1.5vw, 13px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  background-color: rgba(184, 134, 11, 0.08);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: var(--radius-sm);
}

/* カードボディ */
.s-showcase__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 20px;
}

@media (min-width: 769px) {
  .s-showcase__body {
    padding: 24px;
  }
}
.s-showcase__title {
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}

.s-showcase__desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 5.1em;
  flex-grow: 1;
  margin-bottom: 15px;
  font-size: clamp(15px, 1.8vw, 16px);
  line-height: 1.7;
  color: var(--text-light);
}

/* テキストリンク（軽量CTA） */
.s-showcase__actions {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: auto;
}

.s-showcase__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: clamp(14px, 1.5vw, 15px);
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}

.s-showcase__card:hover .s-showcase__link {
  color: var(--accent);
}

.s-showcase__link svg {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out-expo);
}

.s-showcase__card:hover .s-showcase__link svg {
  transform: translateX(4px);
}

/* もっと見るボタン */
/* 価格表示（一覧ページ用） */
.s-showcase__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.s-showcase__price-label {
  font-size: clamp(14px, 1.5vw, 15px);
  font-weight: 500;
  color: var(--text-muted);
}

.s-showcase__price-value {
  font-family: var(--font-num);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.s-showcase__price-tax {
  font-size: clamp(12px, 1.5vw, 13px);
  font-weight: 400;
  color: var(--text-muted);
}

/* 注釈テキスト */
/* ━━━━━━━━━━━━━━━━

 s-page-hero（下層ページ共通ヒーロー）

━━━━━━━━━━━━━━━━ */
.s-page-hero {
  position: relative;
  padding: 36px 0;
  background: linear-gradient(180deg, #ffffff 0%, #FAF7F2 100%);
  border-bottom: 1px solid var(--accent-pale);
  overflow: hidden;
}

@media (min-width: 769px) {
  .s-page-hero {
    padding: 48px 0;
  }
}
/* パンくずリスト */
.s-page-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  list-style: none;
  font-size: 13px;
  color: var(--text-muted);
}

.s-page-hero__breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.s-page-hero__breadcrumb a:hover {
  color: var(--primary);
}

.s-page-hero__breadcrumb-separator {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ヒーロー本体 */
.s-page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  margin-bottom: 16px;
  font-size: clamp(12px, 1.5vw, 13px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
  border: 1px solid rgba(27, 58, 92, 0.15);
  background-color: rgba(27, 58, 92, 0.04);
  border-radius: var(--radius-full);
}

.s-page-hero__title {
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--text);
}

.s-page-hero__lead {
  max-width: 640px;
  font-size: clamp(15px, 1.8vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-light);
}

/* ================================================================
   Section — s-contact-bar--standard
   ================================================================
   お問い合わせバー — プライマリ背景にCTAボタン。
   セクション間に配置するコンパクトなCTA帯。
   ================================================================ */
.s-contact-bar--standard {
  padding: 48px 0;
  background: var(--primary-dark);
  text-align: center;
}

@media (min-width: 769px) {
  .s-contact-bar--standard {
    padding: 64px 0;
  }
}
.s-contact-bar__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.s-contact-bar__heading {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.03em;
}

.s-contact-bar__lead {
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}

.s-contact-bar__actions {
  margin-top: 8px;
}

.s-contact-bar__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px 48px;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--accent);
  transition: var(--transition);
}

@media (min-width: 769px) {
  .s-contact-bar__btn {
    padding: 18px 56px;
    font-size: 16px;
  }
}
.s-contact-bar__btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.s-contact-bar__btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   商品詳細ページ（sc-*）の土台
   ─ 器（ヘッダー・フッター・色・書体）は foundation / layout に乗る。
     ここは sc-* だけが使う変数と、商品一覧の上書きを置く。
   ─ 可読性の規約: 本文 14px 以上・補助 12px 以上・説明文に #475569 より薄い色を使わない・絵文字禁止
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  --sc-muted: #475569;
  --sc-line: var(--border, #D5DAE2);
  --sc-soft: #EEF2F7;
}

/* ── サービス一覧のカード（2列） ───────────────────── */
@media (min-width: 901px) {
  .s-showcase__grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ── サービスページ v3（一言で → できること → 4ページ → 料金 → FAQ → 別の始め方） ─── */
.s-page-hero__lead strong {
  color: var(--primary, #1B3A5C);
  font-weight: 700;
}

.sc-outcomes {
  padding: 72px 0;
  background: var(--white, #fff);
}

.sc-outcomes__list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: sc-outcome;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 901px) {
  .sc-outcomes__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.sc-outcome {
  position: relative;
  padding: 26px 24px 24px 24px;
  background: var(--white, #fff);
  border: 1px solid var(--sc-line);
  border-radius: var(--radius, 12px);
  box-shadow: var(--shadow);
}

.sc-outcome::before {
  counter-increment: sc-outcome;
  content: counter(sc-outcome, decimal-leading-zero);
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-num, serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent, #B8860B);
  line-height: 1;
}

.sc-outcome__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--primary, #1B3A5C);
}

.sc-outcome__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text, #333);
}

.sc-pages {
  padding: 72px 0;
  background: var(--bg, #F4F6F9);
}

.sc-page {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 14px 18px;
  background: var(--white, #fff);
  border: 1px solid var(--sc-line);
  border-radius: var(--radius, 12px);
  box-shadow: var(--shadow);
}

.sc-page--top {
  border-color: var(--primary, #1B3A5C);
  border-width: 2px;
}

.sc-page__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--sc-line);
  background: #f3f4f6;
}

.sc-page__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.sc-page__label {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent, #B8860B);
}

.sc-page--top .sc-page__label {
  color: var(--primary, #1B3A5C);
}

.sc-page__name {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text, #333);
}

.sc-page__caption {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--sc-muted);
}

.sc-price {
  padding: 72px 0;
  background: var(--white, #fff);
}

.sc-price__table {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--sc-line);
  border-radius: var(--radius, 12px);
  overflow: hidden;
}

.sc-price__row {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--sc-line);
}

.sc-price__row:first-child {
  border-top: 0;
}

@media (min-width: 769px) {
  .sc-price__row {
    grid-template-columns: 260px 1fr;
  }
}
.sc-price__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 8px;
  padding: 22px 24px;
  background: var(--sc-soft);
}

.sc-price__kind {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary, #1B3A5C);
  letter-spacing: 0.04em;
}

.sc-price__num {
  font-family: var(--font-num, serif);
  font-size: 32px;
  font-weight: 900;
  color: var(--primary, #1B3A5C);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.sc-price__unit {
  font-size: 14px;
  color: var(--sc-muted);
}

.sc-price__items {
  margin: 0;
  padding: 20px 24px 20px 44px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text, #333);
}

.sc-price__note {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--sc-muted);
}

.sc-price .s-design-overview__actions {
  margin-top: 24px;
}

.sc-alt {
  padding: 56px 0 72px;
  background: var(--white, #fff);
}

.sc-alt__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 769px) {
  .sc-alt__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.sc-alt__card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 24px;
  border: 1px solid var(--sc-line);
  border-radius: var(--radius, 12px);
  background: var(--white, #fff);
  text-decoration: none;
  color: var(--text, #333);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.sc-alt__card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-color: var(--primary, #1B3A5C);
}

.sc-alt__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent, #B8860B);
}

.sc-alt__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary, #1B3A5C);
}

.sc-alt__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--sc-muted);
}

/* ── 導入部 ─────────────────────────────── */
.sc-intro {
  padding: 64px 0 8px;
  background: var(--white, #fff);
}

.sc-intro__inner {
  max-width: 820px;
  margin: 0 auto;
}

.sc-intro__heading {
  margin: 0 0 18px;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--primary, #1B3A5C);
  text-align: center;
}

.sc-intro__text {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: var(--text, #333);
}

.sc-outcomes {
  padding-top: 56px;
}

/* ── できあがる4ページ: 階層（ピラミッド） ─────────────────── */
.sc-pages__tree {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sc-pages__tree .sc-page--top {
  width: 100%;
  max-width: 440px;
}

.sc-pages__stem {
  width: 2px;
  height: 32px;
  background: var(--primary, #1B3A5C);
}

.sc-pages__leaves {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 32px 0 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sc-pages__leaves::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: var(--primary, #1B3A5C);
}

.sc-pages__leaves > .sc-page {
  position: relative;
}

.sc-pages__leaves > .sc-page::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 50%;
  width: 2px;
  height: 32px;
  background: var(--primary, #1B3A5C);
  transform: translateX(-50%);
}

.sc-pages__leaves .sc-page__label {
  color: var(--accent, #B8860B);
}

/* SP: 縦の幹1本に、横の枝で3ページをつなぐ */
@media (max-width: 600px) {
  .sc-pages__tree {
    align-items: stretch;
  }
  .sc-pages__tree .sc-page--top {
    max-width: none;
  }
  .sc-pages__stem {
    margin-left: 18px;
    height: 20px;
  }
  .sc-pages__leaves {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 0 0 40px;
  }
  .sc-pages__leaves::before {
    top: 0;
    bottom: 0;
    left: 18px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .sc-pages__leaves > .sc-page::before {
    top: 44px;
    left: -22px;
    width: 22px;
    height: 2px;
    transform: none;
  }
  .sc-pages__leaves > .sc-page:last-child::after {
    content: "";
    position: absolute;
    left: -22px;
    top: 46px;
    bottom: -14px;
    width: 2px;
    background: var(--bg, #F4F6F9);
  }
}
/* ── サービスページのヒーロー（左: 一言 + 価格 + CTA / 右: 画面イメージ） ─────── */
.sc-hero {
  padding: 36px 0 44px;
}

@media (min-width: 769px) {
  .sc-hero {
    padding: 48px 0 64px;
  }
}
.sc-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

@media (min-width: 901px) {
  .sc-hero__grid {
    grid-template-columns: 11fr 10fr;
    gap: 48px;
  }
}
.sc-hero__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.sc-hero__title {
  margin: 0;
}

.sc-hero__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text, #333);
}

.sc-hero__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  margin: 4px 0 0;
  padding: 14px 18px;
  background: var(--white, #fff);
  border: 1px solid var(--sc-line);
  border-radius: var(--radius-sm, 8px);
}

.sc-hero__price-item {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 15px;
  color: var(--text, #333);
}

.sc-hero__price-item strong {
  font-family: var(--font-num, serif);
  font-size: 28px;
  font-weight: 900;
  color: var(--primary, #1B3A5C);
  letter-spacing: -0.02em;
  line-height: 1;
}

.sc-hero__price-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--sc-muted);
}

.sc-hero__price-plus {
  font-size: 18px;
  font-weight: 700;
  color: var(--sc-muted);
}

.sc-hero__price-tax {
  font-size: 13px;
  color: var(--sc-muted);
}

.sc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  margin-top: 8px;
  width: 100%;
}

.sc-hero__actions .c-button--primary {
  width: auto;
}

.sc-hero__visual {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ブラウザ風の枠 */
.sc-browser {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--sc-line);
  box-shadow: 0 24px 60px -20px rgba(15, 36, 64, 0.35), 0 6px 18px -6px rgba(15, 36, 64, 0.18);
}

.sc-browser__bar {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  background: #eef1f5;
  border-bottom: 1px solid var(--sc-line);
}

.sc-browser__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd3df;
}

.sc-browser__screen {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: top;
}

/* ━━━━━━━━━━━━━━━━



 c-product-code（商品コード表示）／c-product-meta



━━━━━━━━━━━━━━━━ */
.c-product-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-bottom: 16px;
}

/* 下の余白は行（c-product-meta）が持つ。バッジ側に残したままだと、

   align-items: center が margin ごと中央に置くので、バッジだけ 8px 上にずれる */
.c-product-meta .s-page-hero__badge {
  margin-bottom: 0;
}

.c-product-code {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 4px 11px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background-color: rgba(27, 58, 92, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.c-product-code::before {
  content: "CODE";
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-subtle);
}

/* 商品カード内 */
.s-showcase__card .c-product-code {
  align-self: flex-start;
  margin-bottom: 10px;
}

/* ━━━━━━━━━━━━━━━━



 sc-alt--related（商品詳細ページ下部の「ほかの商品」）



━━━━━━━━━━━━━━━━ */
@media (min-width: 769px) {
  .sc-alt--related .sc-alt__grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 380px));
    justify-content: center;
  }
}
.sc-alt--related .sc-alt__label {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
}

/* ━━━━━━━━━━━━━━━━

 構成の表示（商品名から「コーポレートサイト＋」を外したぶん、
 何が含まれるかをスペックとして明示する）

━━━━━━━━━━━━━━━━ */
.sc-hero__spec {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--primary);
  background-color: rgba(27, 58, 92, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.sc-hero__spec::before {
  content: "構成";
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-subtle);
}

/* 商品カード内 */
.s-showcase__spec {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--text-light);
}

.s-showcase__spec::before {
  content: "構成";
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-subtle);
}

/* 「ほかの商品」は sc-price（白）と隣り合うので背景を変える
   （旧：sc-faq が間に入っていた） */
.sc-alt--related {
  background: var(--bg);
}

/* ━━━━━━━━━━━━━━━━

 sc-pages__leaves--single
 （コーポレートサイトの下にLPが1枚だけの商品用）

 service-catalog.css の .sc-pages__leaves（3列）を上書きするため、
 セレクタを1段深くして優先度を上げている。

━━━━━━━━━━━━━━━━ */
@media (min-width: 901px) {
  .sc-pages__tree .sc-pages__leaves--single {
    grid-template-columns: minmax(0, 440px);
    justify-content: center;
  }
  /* 横に渡る連結線は不要（幹からまっすぐ1枚に落ちる） */
  .sc-pages__tree .sc-pages__leaves--single::before {
    display: none;
  }
}
/* ━━━━━━━━━━━━━━━━

 sc-funcs（商品に含まれる機能・カード型）
 ※ 各機能の紹介LPができたらカードをリンクにする想定。
    いまは表示のみなのでホバー効果は付けていない。

━━━━━━━━━━━━━━━━ */
.sc-funcs {
  padding: 72px 0;
  background: var(--white);
  /* 次の sc-price も白背景なので、区切り線を引く */
  border-bottom: 1px solid var(--border);
}

.sc-funcs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 601px) {
  .sc-funcs__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.sc-func {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--text);
}

.sc-func__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: rgba(27, 58, 92, 0.06);
  color: var(--primary);
}

.sc-func__icon svg {
  width: 22px;
  height: 22px;
}

.sc-func__name {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--primary);
}

.sc-func__text {
  flex: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}
