/* ==========================================================================
   Design A：企業信頼型　テーマスタイル
   狙い：DX HUBというサービスへの警戒心を、運営会社Y.W.C.株式会社の実在感・堅実さで払拭する。
   トーン：フォーマル／落ち着いた配色／情報を整理して見せる／派手な演出を避ける。
   ========================================================================== */

body.theme-a {
  --a-navy: #16181C;
  --header-h: 68px;
  /* 品質チェック時にWCAG AA未達（白地で3.67:1、グレー背景で4.49:1）を確認したため、
     同系色のまま視認性を担保できる濃さへ調整（白地5.55:1／グレー背景5.05:1）。design-aのみに適用。 */
  --ywc-text-mute: #68686C;
}

.theme-a .site-header .brand { color: var(--ywc-black); }
.theme-a .site-header .container { justify-content: flex-start; gap: 0; }
.theme-a .header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* --- ページ内ナビゲーション（PC） --- */
.theme-a .site-nav {
  display: none;
}
@media (min-width: 1024px) {
  .theme-a .site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 auto 0 32px;
  }
  .theme-a .site-nav a {
    position: relative;
    padding: 4px 0;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ywc-text-sub);
    white-space: nowrap;
  }
  .theme-a .site-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: -3px;
    height: 2px;
    background: var(--ywc-red);
    transition: right .2s ease;
  }
  .theme-a .site-nav a:hover { color: var(--ywc-black); }
  .theme-a .site-nav a:hover::after { right: 0; }
}

/* --- ハンバーガーメニュー（モバイル/タブレット） --- */
.theme-a .nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--ywc-line);
  border-radius: var(--radius-s);
  background: #fff;
  color: var(--ywc-black);
  flex-shrink: 0;
}
@media (min-width: 1024px) { .theme-a .nav-toggle { display: none; } }

.theme-a .mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--ywc-line);
  border-bottom: 1px solid var(--ywc-line);
  box-shadow: 0 8px 16px rgba(0,0,0,0.06);
}
.theme-a .mobile-nav.is-open { display: flex; }
.theme-a .mobile-nav a {
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ywc-text);
  border-bottom: 1px solid var(--ywc-line);
}
.theme-a .mobile-nav a:last-child { border-bottom: none; }
@media (min-width: 1024px) { .theme-a .mobile-nav { display: none !important; } }

/* --- アンカー先が固定ヘッダーに隠れないようにする --- */
.theme-a #before-after,
.theme-a #service,
.theme-a #usecase,
.theme-a #company,
.theme-a #flow,
.theme-a #faq,
.theme-a #final-cta {
  scroll-margin-top: var(--header-h);
}

/* --- セクションラベル（英字＋日本語、赤いショートルール） --- */
.theme-a .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: 16px;
}
.theme-a .section-tag .tag-en {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  /* 品質チェック時、グレー背景セクションでvar(--ywc-red)が4.25:1となりAA未達だったため、
     同じ赤系のred-darkに変更（白地/グレー地とも6:1以上を確保）。 */
  color: var(--ywc-red-dark);
  text-transform: uppercase;
}
.theme-a .section-tag .tag-sep {
  width: 22px; height: 2px;
  background: var(--ywc-black);
  display: inline-block;
  flex-shrink: 0;
}
.theme-a .section-tag .tag-jp {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ywc-text-mute);
  letter-spacing: 0.02em;
}
.theme-a .section-tag.on-dark .tag-jp { color: rgba(255,255,255,0.8); }
.theme-a .section-tag.on-dark .tag-sep { background: rgba(255,255,255,0.5); }

/* 公式ロゴ画像（ywc-inc.com より取得）をブランドマーク枠にフィットさせる */
.theme-a .brand-mark {
  background: none;
  overflow: hidden;
}
.theme-a .brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

/* --- HERO --- */
.theme-a .hero {
  position: relative;
  background: var(--a-navy);
  color: #fff;
  overflow: hidden;
  padding: 44px 0 40px;
}
.theme-a .hero-hex {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
}
.theme-a .hero-hex span {
  position: absolute;
  width: 220px;
  height: 190px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.theme-a .hero-hex span:nth-child(1) { top: -60px; right: -40px; width: 300px; height: 260px; }
.theme-a .hero-hex span:nth-child(2) { bottom: -80px; left: -60px; width: 260px; height: 220px; border-color: rgba(227,32,30,0.18); }
.theme-a .hero-hex span:nth-child(3) { top: 40%; right: 8%; width: 120px; height: 104px; background: rgba(227,32,30,0.06); border-color: rgba(227,32,30,0.15); }

.theme-a .hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "top" "visual" "bottom";
  row-gap: 32px;
}
@media (min-width: 900px) {
  .theme-a .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-areas: "top visual" "bottom visual";
    column-gap: 44px;
    row-gap: 0;
    align-items: center;
  }
}
.theme-a .hero-copy-top { grid-area: top; }
.theme-a .hero-copy-bottom { grid-area: bottom; }
.theme-a .hero-visual {
  grid-area: visual;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 8px 0;
}
@media (min-width: 900px) { .theme-a .hero-visual { min-height: 460px; } }
@media (min-width: 1280px) { .theme-a .hero-visual { min-height: 520px; } }

/* --- 背景演出：YES / WE / CAN の大型タイポグラフィ ---
   説明用のテキストではなく、右側エリア全体を使った背景グラフィック。
   相関図（.orbit / .orbit-flow）のサイズではなく .hero-visual の高さいっぱいを基準に、
   YESを上部・WEを中央・CANを下部に大胆に配置する。前面のITビジュアルより
   低いコントラスト・低いz-indexにして、あくまで背景の世界観として機能させる。 */
.theme-a .hero-bg-type {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2% 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}
.theme-a .hero-bg-type span {
  font-weight: 900;
  font-size: 84px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.07);
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 640px) { .theme-a .hero-bg-type span { font-size: 120px; } }
@media (min-width: 900px) { .theme-a .hero-bg-type span { font-size: 150px; } }
@media (min-width: 1280px) { .theme-a .hero-bg-type span { font-size: 190px; } }

/* --- ファーストビュー右側：WEB/SYSTEM/AI/EC/DESIGNが中心（DX HUB）につながり、
   事業成長へ広がっていくことを示す図解ビジュアル --- */
.theme-a .orbit {
  position: relative;
  z-index: 1;
  width: min(76vw, 300px);
  aspect-ratio: 1 / 1;
}
@media (min-width: 640px) { .theme-a .orbit { width: 320px; } }
@media (min-width: 900px) { .theme-a .orbit { width: 360px; } }
.theme-a .orbit-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.theme-a .orbit-lines .orbit-ring {
  fill: none;
  stroke: rgba(255,255,255,0.16);
  stroke-width: 0.6;
  stroke-dasharray: 2.2 3.2;
}
.theme-a .orbit-lines line {
  stroke: rgba(255,255,255,0.18);
  stroke-width: 0.6;
}
.theme-a .orbit-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 26%, #2b2226, var(--a-navy) 72%);
  border: 1.5px solid var(--ywc-red);
  box-shadow: 0 0 0 8px rgba(227,32,30,0.09), 0 10px 26px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  z-index: 2;
}
.theme-a .orbit-hub img { width: 30%; max-width: 30px; border-radius: 6px; display: block; }
.theme-a .orbit-hub span { font-size: 9.5px; font-weight: 800; color: #fff; letter-spacing: 0.02em; white-space: nowrap; }
.theme-a .orbit-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 23%;
  z-index: 2;
}
.theme-a .orbit-node-icon {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #fff;
  color: var(--ywc-red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}
.theme-a .orbit-node-icon .icon { width: 52%; height: 52%; }
.theme-a .orbit-node-label {
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
/* --- 相関図の続き：5領域 → DX HUB → 業務メリット → 事業成長、の一連の流れ --- */
.theme-a .orbit-flow {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.theme-a .orbit-flow-arrow { color: var(--ywc-red); opacity: 0.85; flex-shrink: 0; }
.theme-a .orbit-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 320px;
}
.theme-a .orbit-benefit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 800;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 7px 13px;
  border-radius: 999px;
  white-space: nowrap;
}
.theme-a .orbit-benefit .icon { width: 14px; height: 14px; color: var(--ywc-red); flex-shrink: 0; }
.theme-a .orbit-growth {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--ywc-red), var(--ywc-red-dark));
  padding: 11px 24px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(227,32,30,0.35);
  white-space: nowrap;
}

.theme-a .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.theme-a .hero-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.01em;
}
.theme-a .hero-title em {
  font-style: normal;
  color: #fff;
  background: linear-gradient(transparent 62%, var(--ywc-red) 62%);
}
.theme-a .hero-title em {
  white-space: nowrap;
}

/* --- 日本語の意味のまとまりを分断しないための汎用ユーティリティ ---
   （語・単位・助動詞などが中途半端な位置で改行されるのを防ぐ） */
.theme-a .ja-nowrap { white-space: nowrap; }
@media (min-width: 640px) { .theme-a .hero-title { font-size: 34px; } }
@media (min-width: 900px) { .theme-a .hero-title { font-size: 40px; } }

.theme-a .hero-desc {
  margin-top: 18px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  max-width: 46em;
}
.theme-a .hero-cta-row { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.theme-a .btn-reassure { margin: 0; font-size: 13px; font-weight: 700; }

/* 信頼バッジ（設立年・拠点数など事実ベース） */
/* --- 実績ストリップ（FV直下）：ITに詳しくない経営者向けの安心材料 --- */
.theme-a .trust-strip {
  background: var(--ywc-gray-bg);
  padding: 26px 0;
}
.theme-a .trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 640px) { .theme-a .trust-badges { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
.theme-a .trust-badge {
  background: var(--ywc-white);
  border: 1px solid var(--ywc-line);
  border-radius: var(--radius-m);
  padding: 14px 12px;
  text-align: center;
}
.theme-a .trust-badge .num { font-size: 19px; font-weight: 800; color: var(--ywc-black); }
.theme-a .trust-badge .num small { font-size: 11.5px; font-weight: 600; margin-left: 2px; color: var(--ywc-text-sub); }
.theme-a .trust-badge .label {
  margin-top: 3px;
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--ywc-text-mute);
  /* 1行・2行どちらの内容でも高さが揃うよう、2行分の高さを確保 */
  min-height: calc(1.4em * 2);
}

/* --- 悩みセクション --- */
.theme-a .worry-grid { margin-top: 8px; }
.theme-a .worry-card {
  padding: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ywc-text);
}
.theme-a .worry-card .icon { color: var(--ywc-red); margin-top: 2px; width: 22px; height: 22px; }

/* --- Before → After（主要セクション・コンパクト版） --- */
.theme-a .ba-table {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--ywc-line);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.theme-a .ba-row {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--ywc-line);
  border-left: 3px solid var(--ywc-red);
}
.theme-a .ba-row:last-child { border-bottom: none; }
.theme-a .ba-row-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--ywc-gray-bg);
  color: var(--ywc-black);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.theme-a .ba-row-main { flex: 1; min-width: 0; }
.theme-a .ba-row-label { font-size: 13px; font-weight: 800; color: var(--ywc-text); margin: 0 0 8px; }
.theme-a .ba-row-compare {
  display: flex;
  align-items: center;
  gap: 14px;
}
.theme-a .ba-row-compare .ba-before,
.theme-a .ba-row-compare .ba-after {
  flex: 1;
  min-width: 0;
  font-size: 13.5px;
  line-height: 1.6;
}
.theme-a .ba-row-compare .ba-before { color: var(--ywc-text-mute); }
.theme-a .ba-row-compare .ba-after { color: var(--ywc-text); font-weight: 700; }
.theme-a .ba-row-compare .ba-tag {
  display: block;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.theme-a .ba-row-compare .ba-before .ba-tag { color: var(--ywc-text-mute); }
.theme-a .ba-row-compare .ba-after .ba-tag { color: var(--ywc-red-dark); }
.theme-a .ba-row-arrow { color: var(--ywc-red); flex-shrink: 0; }
.theme-a .ba-row-note {
  margin-top: 8px;
  font-size: 11.5px;
  color: var(--ywc-text-mute);
}
@media (max-width: 560px) {
  .theme-a .ba-row { padding: 16px; gap: 12px; }
  .theme-a .ba-row-compare { flex-direction: column; align-items: stretch; gap: 4px; }
  .theme-a .ba-row-arrow { align-self: center; transform: rotate(90deg); margin: 1px 0; }
}

/* --- まとめて相談 --- */
.theme-a .unify-box {
  background: var(--a-navy);
  color: #fff;
  border-radius: var(--radius-l);
  padding: 32px 22px;
  text-align: center;
}
.theme-a .unify-box .section-title { color: #fff; }
.theme-a .unify-box .section-lead { color: rgba(255,255,255,0.86); }
/* --- ONE WINDOW：かんたん図解 --- */
.theme-a .window-diagram {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: nowrap;
}
.theme-a .wd-sources {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 230px;
}
.theme-a .wd-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 6px 11px;
  border-radius: 999px;
}
.theme-a .wd-arrow { color: var(--ywc-red); flex-shrink: 0; }
.theme-a .wd-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(227,32,30,0.14);
  border: 1px solid rgba(227,32,30,0.45);
  border-radius: var(--radius-m);
  padding: 12px 16px;
  flex-shrink: 0;
}
.theme-a .wd-hub img { width: 26px; height: auto; border-radius: 4px; }
.theme-a .wd-hub span { font-size: 11px; font-weight: 800; color: #fff; letter-spacing: 0.03em; }
.theme-a .wd-customer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #fff;
  flex-shrink: 0;
}
.theme-a .wd-customer .icon { color: rgba(255,255,255,0.85); }
.theme-a .wd-customer span { font-size: 11px; font-weight: 800; letter-spacing: 0.03em; }
@media (max-width: 640px) {
  .theme-a .window-diagram { flex-direction: column; gap: 12px; }
  .theme-a .wd-arrow { transform: rotate(90deg); }
}

.theme-a .unify-flow {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  align-items: center;
}
.theme-a .unify-flow .chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.theme-a .unify-flow .arrow { color: rgba(255,255,255,0.4); }
.theme-a .unify-note { margin-top: 22px; font-size: 13.5px; color: rgba(255,255,255,0.86); }

/* --- 中間CTA（窓口はひとつ、の直後） --- */
.theme-a .mid-cta {
  max-width: 620px;
  margin: 28px auto 0;
  text-align: center;
  background: #fff;
  border: 1px solid var(--ywc-line);
  border-radius: var(--radius-l);
  padding: 30px 24px;
  box-shadow: var(--shadow-card);
}
.theme-a .mid-cta-text {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ywc-text);
  line-height: 1.9;
}
.theme-a .mid-cta .btn { margin-top: 18px; }
.theme-a .mid-cta-note { margin-top: 12px; font-size: 12.5px; color: var(--ywc-text-mute); }

/* --- サービス一覧 --- */
.theme-a .service-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 960px) {
  .theme-a .service-layout {
    grid-template-columns: 0.8fr 1.3fr;
    gap: 52px;
    align-items: start;
  }
  .theme-a .service-intro {
    position: sticky;
    top: calc(var(--header-h) + 24px);
  }
}
.theme-a .service-big-en {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 900;
  font-size: clamp(34px, 8vw, 56px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--ywc-black);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.theme-a .service-big-en .accent { color: var(--ywc-red); }

.theme-a .service-card {
  padding: 24px 20px;
  height: 100%;
}
.theme-a .service-card .icon-wrap {
  width: 46px; height: 46px;
  border-radius: var(--radius-s);
  background: var(--ywc-gray-bg);
  color: var(--ywc-red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.theme-a .service-card .icon-wrap .icon { width: 24px; height: 24px; }
.theme-a .service-card h3 { font-size: 16.5px; font-weight: 800; }
.theme-a .service-card .kicker { font-size: 12px; color: var(--ywc-red); font-weight: 700; margin-bottom: 4px; }
.theme-a .service-card p { margin-top: 8px; font-size: 13.5px; color: var(--ywc-text-sub); }
.theme-a .service-card ul { margin-top: 10px; font-size: 12.5px; color: var(--ywc-text-mute); }
.theme-a .service-card ul li { padding: 2px 0; }

/* --- 活用例（業種を問わない4つのケース） --- */
.theme-a .usecase-card { padding: 22px; }
.theme-a .usecase-card .tag {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  background: var(--ywc-black); color: #fff;
  padding: 4px 12px; border-radius: 999px;
  margin-bottom: 12px;
}
.theme-a .usecase-flow { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 13px; flex-wrap: wrap; }
.theme-a .usecase-flow .before { color: var(--ywc-text-mute); }
.theme-a .usecase-flow .after { color: var(--ywc-text); font-weight: 700; }

.theme-a .usecase-featured { margin-bottom: 16px; }
.theme-a .usecase-card.featured {
  border-left: 3px solid var(--ywc-red);
  padding: 26px;
}
.theme-a .usecase-card.featured .tag {
  background: var(--ywc-red);
  font-size: 12.5px;
}
.theme-a .usecase-card.featured .usecase-flow { font-size: 13.5px; }

.theme-a .usecase-secondary { margin-top: 4px; }
.theme-a .usecase-card.compact {
  padding: 16px;
}
.theme-a .usecase-card.compact .tag {
  font-size: 10.5px;
  padding: 3px 10px;
  margin-bottom: 8px;
}
.theme-a .usecase-card.compact .usecase-flow {
  font-size: 11.5px;
  gap: 6px;
}
.theme-a .usecase-card.compact .usecase-flow svg { width: 14px; height: 14px; }

/* --- 安心材料（会社情報） --- */
.theme-a .assure-grid { }
.theme-a .assure-card {
  padding: 22px;
  text-align: left;
}
.theme-a .assure-card .icon-wrap {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ywc-gray-bg);
  color: var(--ywc-black);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.theme-a .assure-card h3 { font-size: 15px; font-weight: 800; }
.theme-a .assure-card p { margin-top: 6px; font-size: 13px; color: var(--ywc-text-sub); }

.theme-a .official-link-wrap { margin-top: 32px; text-align: center; }

/* --- 費用について --- */
.theme-a .price-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 768px) {
  .theme-a .price-block { grid-template-columns: auto 1fr; gap: 44px; }
}
.theme-a .price-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 30px;
  border: 2px solid var(--ywc-black);
  border-radius: var(--radius-m);
  background: #fff;
}
@media (min-width: 768px) { .theme-a .price-highlight { align-items: flex-start; text-align: left; } }
.theme-a .price-highlight-num { font-size: 46px; font-weight: 900; color: var(--ywc-red); line-height: 1; }
.theme-a .price-highlight-label { margin-top: 8px; font-size: 12.5px; font-weight: 700; color: var(--ywc-text-sub); letter-spacing: 0.02em; }
.theme-a .price-details { display: flex; flex-direction: column; gap: 16px; }
.theme-a .price-details p { font-size: 14px; color: var(--ywc-text-sub); line-height: 1.9; }
.theme-a .price-details strong { color: var(--ywc-text); font-weight: 800; }

/* --- 制作導入・流れ --- */
.theme-a .flow-steps {
  max-width: 640px;
  margin: 0 auto;
}
.theme-a .flow-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--ywc-line);
  text-align: left;
}
.theme-a .flow-step:last-child { border-bottom: none; }
.theme-a .flow-step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ywc-black);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.theme-a .flow-step h3 { font-size: 15.5px; font-weight: 800; }
.theme-a .flow-step p { margin-top: 6px; font-size: 13.5px; color: var(--ywc-text-sub); }

@media (min-width: 960px) {
  .theme-a .flow-steps {
    position: relative;
    max-width: none;
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }
  .theme-a .flow-steps::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 4%;
    right: 4%;
    height: 2px;
    background: var(--ywc-line);
    z-index: 0;
  }
  .theme-a .flow-step {
    flex: 1;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 16px 0 0;
    border-bottom: none;
    position: relative;
    z-index: 1;
  }
  .theme-a .flow-step-num { margin-bottom: 16px; }
}

/* --- 最終CTA --- */
.theme-a .final-cta {
  background: var(--a-navy);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-l);
  padding: 44px 22px;
  position: relative;
  overflow: hidden;
}
.theme-a .final-yeswecan {
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 0.03em;
  color: var(--ywc-red);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.theme-a .final-cta .section-title { color: #fff; }
.theme-a .final-cta .section-lead { color: rgba(255,255,255,0.7); }
.theme-a .final-cta .btn-primary { margin-top: 8px; }

/* --- 問い合わせフォーム（Web3Forms） --- */
.theme-a .contact-form {
  margin: 32px auto 0;
  max-width: 480px;
  text-align: left;
}
.theme-a .form-row { margin-bottom: 16px; }
.theme-a .form-row label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}
.theme-a .form-required,
.theme-a .form-optional {
  margin-left: 6px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 2px 6px;
  border-radius: 999px;
  vertical-align: middle;
}
.theme-a .form-required { color: var(--ywc-white); background: var(--ywc-red); }
.theme-a .form-optional { color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.1); }
.theme-a .contact-form input[type="text"],
.theme-a .contact-form input[type="email"],
.theme-a .contact-form input[type="tel"],
.theme-a .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font-base);
  color: var(--ywc-text);
  background: var(--ywc-white);
  border: 1px solid transparent;
  border-radius: var(--radius-s);
  transition: box-shadow .15s ease;
}
.theme-a .contact-form textarea { resize: vertical; min-height: 110px; }
.theme-a .contact-form input:focus,
.theme-a .contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(227,32,30,0.4);
}
.theme-a .contact-form .btn { margin-top: 8px; }
.theme-a .form-status {
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 700;
  min-height: 1.4em;
  color: rgba(255,255,255,0.7);
}
.theme-a .form-status.is-success { color: #6FDB8F; }
.theme-a .form-status.is-error { color: #FF8A80; }
