/*
 Theme Name: Blaskan Child
 Template: blaskan
 Version: 1.0
*/


:root {
  --bg: #FFFFFF;
  --bg-soft: #F2F4F7;
  --bg-blue: #E6F0FF;
  --bg-blue-tinted: #E6F0FF;
  --ink: #0B1D3A;
  --ink-mid: #5A6478;
  --ink-mute: #8B92A3;
  --border: #E5E7EB;
  --border-strong: #D1D5DB;
  --blue: #1D63F2;
  --blue-soft: #EEF2FB;
  --blue-deep: #1E40AF;
  --yellow: #FFC72C;
  --yellow-hover: #F0B400;
  --success: #10B981;
  --success-soft: #ECFDF5;
  --warning: #F59E0B;
  --warning-soft: #FEF3C7;
  --warning-ink: #92400E;
  --danger: #DC2626;
  --purple: #7C3AED;
  --shadow-sm: 0 1px 2px rgba(26, 34, 56, 0.04);
  --shadow: 0 1px 3px rgba(26, 34, 56, 0.05), 0 2px 8px rgba(26, 34, 56, 0.04);
  --shadow-md: 0 4px 12px rgba(26, 34, 56, 0.06), 0 8px 24px rgba(26, 34, 56, 0.04);
  --shadow-lg: 0 12px 32px rgba(26, 34, 56, 0.08);
  --font: "Noto Sans JP", -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", sans-serif;
  --font-en: "Inter", -apple-system, sans-serif;
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  font-size: 16px;
  font-weight: 400;
  font-feature-settings: "palt";
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
img, svg { max-width: 100%; display: block; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 32px; }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  height: 76px;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--ink);
  flex-shrink: 0;
}

.brand-logo { gap: 0; }

.brand-logo-img {
  width: 220px;
  height: auto;
  display: block;
}

.footer-brand .brand-logo-img { width: 220px; }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  margin-right: 24px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 8px 0;
  transition: color 0.15s;
}

.nav a:hover { color: var(--blue); }

.header-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.menu-toggle-b { display: none; }
.menu-toggle-b span { transition: transform 0.2s ease, opacity 0.2s ease; }
.mobile-menu { display: none; }
.mobile-section-nav { display: none; }
.mobile-fixed-cta { display: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: 3px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 0 20px;
  height: 40px;
  border-radius: 6px;
  transition: all 0.15s ease;
  white-space: nowrap;
  border: 1px solid transparent;
  letter-spacing: 0.02em;
}

.btn-primary { background: var(--yellow); color: var(--ink); }
.btn-primary:hover { background: var(--yellow-hover); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-secondary { background: var(--bg); color: var(--ink); border-color: var(--border-strong); }
.btn-secondary:hover { background: var(--bg-soft); border-color: var(--ink); }

.btn-blue { background: var(--blue); color: white; }
.btn-blue:hover { background: var(--blue-deep); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-lg { height: 52px; padding: 0 28px; font-size: 15px; border-radius: 8px; }

.btn-ghost-white { background: transparent; color: white; border-color: rgba(255, 255, 255, 0.4); }
.btn-ghost-white:hover { background: white; color: var(--ink); border-color: white; }

.btn .icon-arrow { width: 14px; height: 14px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--bg);
  padding: 80px 0 96px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

.hero h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 24px;
  overflow-wrap: anywhere;
}

.hero h1 .yellow {
  color: var(--ink);
  position: relative;
  display: inline-block;
}

.hero h1 .yellow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 12px;
  background: var(--yellow);
  z-index: -1;
  opacity: 0.7;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.9;
  color: var(--ink-mid);
  margin-bottom: 36px;
  max-width: 520px;
  overflow-wrap: anywhere;
}

.hero-actions { display: flex; gap: 12px; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

.hero-stat-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

/* ===== Hero Dashboard ===== */
.hero-product {
  position: relative;
}

.hero-product-frame {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.product-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.product-topbar-left { display: flex; align-items: center; gap: 14px; }

.product-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}

.product-brand-mark {
  width: 26px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-nav {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--ink-mid);
}

.product-nav span { padding: 4px 10px; border-radius: 4px; }
.product-nav span.active { background: var(--bg); color: var(--ink); font-weight: 600; border: 1px solid var(--border); }

.product-topbar-right { display: flex; align-items: center; gap: 10px; }

.product-search {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 11px;
  color: var(--ink-mute);
  width: 140px;
}

.product-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #6B3FB7);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 10px;
}

.product-body { padding: 20px; }

.product-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.product-head-left h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.product-head-left p {
  font-family: var(--font-en);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

.product-head-actions { display: flex; gap: 6px; }

.product-head-btn {
  padding: 6px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-head-btn.primary { background: var(--ink); color: var(--yellow); border-color: var(--ink); }

.product-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.product-metric {
  padding: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.product-metric-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-mute);
  margin-bottom: 4px;
}

.product-metric-value {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: 0;
}

.product-metric-value sup {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-mute);
  vertical-align: top;
  margin-left: 2px;
}

.product-metric-trend {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  color: var(--success);
  margin-top: 4px;
}

.product-chart-wrap {
  padding: 14px;
  background: var(--bg-soft);
  border-radius: 8px;
  margin-bottom: 12px;
}

.product-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.product-chart-title { font-size: 11px; font-weight: 700; color: var(--ink); }

.product-chart-legend { display: flex; gap: 10px; font-size: 9px; color: var(--ink-mute); }

.product-chart-legend span { display: flex; align-items: center; gap: 4px; }
.product-chart-legend span::before { content: ""; width: 8px; height: 2px; }
.product-chart-legend .l1::before { background: var(--blue); }
.product-chart-legend .l2::before { background: var(--yellow); }

.product-chart svg { width: 100%; height: 110px; display: block; }

.product-table {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.product-table-head {
  display: grid;
  grid-template-columns: 22px 1fr 64px 70px;
  gap: 10px;
  padding: 8px 12px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 600;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-table-head .align-right { text-align: right; }
.product-table-head .align-center { text-align: center; }

.product-row {
  display: grid;
  grid-template-columns: 22px 1fr 64px 70px;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
}

.product-row:last-child { border-bottom: none; }

.row-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  color: white;
}

.row-avatar.blue { background: linear-gradient(135deg, var(--blue), var(--purple)); }
.row-avatar.green { background: linear-gradient(135deg, var(--success), var(--blue)); }
.row-avatar.orange { background: linear-gradient(135deg, var(--warning), var(--danger)); }

.row-name { font-weight: 600; color: var(--ink); }
.row-type { font-family: var(--font-en); font-size: 9px; color: var(--ink-mute); }
.row-score { font-family: var(--font-en); font-weight: 700; color: var(--ink); font-size: 13px; text-align: right; }

.row-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  justify-content: center;
}

.row-badge.auto { background: var(--success-soft); color: var(--success); }
.row-badge.review { background: var(--warning-soft); color: var(--warning-ink); }

.product-note {
  text-align: right;
  margin-top: 8px;
  font-size: 10px;
  color: var(--ink-mute);
  font-style: italic;
}

/* =========================================================
   INTRO ILLUSTRATION BAND
   ========================================================= */
.hero-intro {
  background: var(--bg);
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}

.hero-intro-grid {
  display: flex;
  align-items: center;
  gap: 56px;
}

.hero-intro-text { flex: 1; }

.hero-intro-text .section-eyebrow { margin-bottom: 14px; }

.hero-intro-text h2 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 18px;
}

.hero-intro-text p {
  font-size: 16px;
  line-height: 1.95;
  color: var(--ink-mid);
  max-width: 520px;
}

.hero-illustration-wrapper {
  flex: 1.15;
  max-width: 660px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-md);
}

.hero-illustration-wrapper svg {
  width: 100%;
  height: auto;
  /* ホバー時に少し浮き上がるアニメーションでAIの先進性を演出 */
  transition: transform 0.3s ease;
}

.hero-illustration-wrapper svg:hover {
  transform: translateY(-5px);
}

.hero-illustration-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  /* ホバー時に少し浮き上がるアニメーションでAIの先進性を演出 */
  transition: transform 0.3s ease;
}

.hero-illustration-wrapper img:hover {
  transform: translateY(-5px);
}

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust {
  background: var(--bg-soft);
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.trust-label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mid);
  margin-bottom: 14px;
}

.trust-statement {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1.5;
  margin-bottom: 14px;
}

.trust-sub {
  text-align: center;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto 16px;
}

.trust-note {
  text-align: center;
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logos li {
  font-weight: 700;
  font-size: 18px;
  color: var(--ink-mute);
  opacity: 0.7;
  letter-spacing: 0.02em;
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: 100px 0; }
.section-soft { background: var(--bg-soft); }
.section-blue { background: var(--bg-blue); }
.section-dark { background: var(--ink); color: white; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-dark .section-eyebrow { color: var(--yellow); }

h2.section-h {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 20px;
}

.section-dark h2.section-h { color: white; }

.section-sub {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.9;
}

.section-dark .section-sub { color: rgba(255, 255, 255, 0.75); }

/* =========================================================
   PROBLEMS SECTION
   ========================================================= */
.problems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.problem-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.problem-card h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 14px;
}

.problem-card p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-mid);
  margin-bottom: 24px;
  flex: 1;
}

.problem-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--bg-soft);
  color: var(--ink-mid);
  border: 1px solid var(--border);
}

/* =========================================================
   CORE SERVICE / PROCESS
   ========================================================= */
.ai-function-illustration {
  width: 100%;
  max-width: 950px;
  margin: 3rem auto;
  display: block;
}
.ai-function-illustration img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.ai-function-illustration img:hover {
  transform: translateY(-5px);
}

/* 安全・品質・承認フローのアイキャッチ（#assurance 用） */
.assurance-illustration {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 56px;
  display: block;
}
.assurance-illustration img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: transform 0.3s ease;
}
.assurance-illustration img:hover {
  transform: translateY(-5px);
}

.core-process {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr;
  align-items: stretch;
  gap: 0;
}

.core-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.core-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 16px;
}

.core-card-en {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.16em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.core-card h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 14px;
}

.core-card p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-mid);
}

.core-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border-strong);
  font-size: 24px;
}

.core-arrow svg { width: 20px; height: 20px; color: var(--ink-mute); }

/* =========================================================
   INLINE CTA BANNER
   ========================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-blue) 0%, var(--bg-blue-tinted) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 64px 0;
}

.cta-banner-spaced { margin-top: 80px; }

.cta-banner-text { flex: 1; }

.cta-banner h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.cta-banner p {
  font-size: 14px;
  color: var(--ink-mid);
}

.cta-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* =========================================================
   ASSURANCE SECTIONS
   ========================================================= */
.assurance {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  transition: all 0.2s;
}

.assurance:hover { box-shadow: var(--shadow-md); }

.assurance-text { padding: 56px; }

.assurance-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.assurance-eyebrow .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.assurance h3 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 20px;
}

.assurance-lead {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-mid);
  margin-bottom: 28px;
}

.assurance-checks {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.assurance-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
}

.assurance-check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--success-soft);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.assurance-ui {
  background: var(--bg-soft);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--border);
}

/* ===== Mini UI: Quality Gate ===== */
.ui-gate {
  width: 100%;
  max-width: 380px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ui-gate-head {
  padding: 14px 18px;
  background: var(--ink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ui-gate-head h5 { font-size: 13px; font-weight: 700; }

.ui-gate-head-badge {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: white;
}

.ui-gate-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.ui-gate-row:last-child { border-bottom: none; }

.ui-gate-row.blocked { background: #FEF2F2; }

.ui-gate-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ui-gate-check.pass { background: var(--success-soft); color: var(--success); }
.ui-gate-check.block { background: #FEE2E2; color: #DC2626; }

.ui-gate-label { flex: 1; color: var(--ink); font-weight: 500; }

.ui-gate-result {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-mute);
}

.ui-gate-result.pass { color: var(--success); }
.ui-gate-result.block { color: #DC2626; }

.ui-gate-foot {
  padding: 14px 18px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.ui-gate-foot-label { color: var(--ink-mid); }

.ui-gate-foot-action {
  padding: 5px 12px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 4px;
  font-weight: 700;
  font-size: 11px;
}

/* ===== Mini UI: Candidate ===== */
.ui-candidate {
  width: 100%;
  max-width: 380px;
}

.ui-candidate-input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}

.ui-candidate-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}

.ui-candidate-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #7C3AED);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
}

.ui-candidate-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.ui-candidate-meta { font-size: 11px; color: var(--ink-mute); }

.ui-candidate-type {
  margin-left: auto;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 4px;
}

.ui-candidate-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.ui-candidate-tag {
  font-size: 11px;
  padding: 3px 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--ink-mid);
}

.ui-candidate-arrow {
  text-align: center;
  color: var(--ink-mute);
  font-size: 18px;
  margin: 4px 0;
}

.ui-candidate-output {
  background: var(--ink);
  color: white;
  border-radius: 10px;
  padding: 18px;
  position: relative;
  box-shadow: var(--shadow);
}

.ui-candidate-output-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ui-candidate-output-label::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}

.ui-candidate-output p {
  font-size: 12.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.95);
}

.ui-candidate-output p strong {
  color: var(--yellow);
  font-weight: 600;
}

/* ===== Mini UI: Data dashboard ===== */
.ui-data {
  width: 100%;
  max-width: 380px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.ui-data-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}

.ui-data-title { font-size: 13px; font-weight: 700; color: var(--ink); }

.ui-data-period {
  font-family: var(--font-en);
  font-size: 10px;
  color: var(--ink-mute);
}

.ui-data-chart { background: var(--bg-soft); border-radius: 8px; padding: 14px; margin-bottom: 14px; }

.ui-data-chart svg { width: 100%; height: 120px; display: block; }

.ui-data-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.ui-data-stat-label {
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 600;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.ui-data-stat-value {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.ui-data-stat-value sup {
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-mute);
  vertical-align: top;
  margin-left: 1px;
}

.ui-data-note {
  text-align: right;
  margin-top: 12px;
  font-size: 9px;
  color: var(--ink-mute);
  font-style: italic;
}

/* =========================================================
   FEATURES
   ========================================================= */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}

.feature:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.feature-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature h4 { font-size: 16px; font-weight: 700; color: var(--ink); }

.feature-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 18px;
}

.feature-effect {
  font-size: 12px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 16px;
  padding: 6px 10px;
  background: var(--blue-soft);
  border-radius: 4px;
  display: inline-block;
  align-self: flex-start;
}

.feature-mock {
  margin-top: auto;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-mock-bar {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
}

.feature-mock-bar.short { width: 60%; }
.feature-mock-bar.full { width: 100%; }

.feature-mock-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 10px;
}

.feature-mock-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  flex-shrink: 0;
}

.feature-mock-avatar.success { background: linear-gradient(135deg, var(--success), var(--blue)); }
.feature-mock-avatar.warning { background: linear-gradient(135deg, var(--warning), var(--danger)); }

.feature-mock-text { flex: 1; height: 6px; background: var(--border); border-radius: 2px; }

.feature-mock-score {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 11px;
  color: var(--ink);
}

.feature-mock-badge {
  font-family: var(--font-en);
  font-size: 8px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
  background: var(--success-soft);
  color: var(--success);
}

.feature-mock-badge.review {
  background: var(--warning-soft);
  color: var(--warning-ink);
}

/* Quality check mock specifically */
.feature-mock-check {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: var(--bg);
  border-radius: 4px;
  font-size: 10px;
}

.feature-mock-check-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--success-soft);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-mock-check-icon.warn { background: var(--warning-soft); color: var(--warning-ink); }

.feature-mock-bar.highlight {
  background: var(--yellow);
  opacity: 0.5;
}

.feature-mock-inline-metrics {
  display: flex;
  gap: 6px;
}

.feature-mock-stat {
  width: 60px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
}

.feature-mock-stat.blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.feature-mock-stat.success {
  background: var(--success-soft);
  color: var(--success);
}

/* Chart mock */
.feature-mock-chart {
  background: var(--bg);
  border-radius: 4px;
  padding: 8px;
}

.feature-mock-chart svg { width: 100%; height: 60px; display: block; }

/* =========================================================
   EFFECTS / NUMBERS
   ========================================================= */
.effects {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.effect-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: left;
}

.effect-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.effect-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.effect-value {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.effect-value sup {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mute);
  vertical-align: top;
  margin-left: 2px;
}

.effect-desc {
  font-size: 12px;
  color: var(--ink-mid);
  line-height: 1.7;
}

.effects-note {
  text-align: center;
  margin-top: 28px;
  font-size: 12px;
  color: var(--ink-mute);
  font-style: italic;
}

/* =========================================================
   FUTURE CASE STUDIES
   ========================================================= */
.future-section[hidden] { display: none !important; }

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.client-logos-block {
  margin-bottom: 56px;
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.client-logos-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 24px;
}

.client-logos-head h3 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--ink);
}

.client-logos-head p {
  max-width: 520px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-mid);
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.client-logo-slot {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: var(--bg-soft);
  border: 1px dashed var(--border-strong);
  border-radius: 8px;
  color: var(--ink-mute);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.client-logo-slot img {
  max-width: 100%;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
}

.case-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}

.case-card.is-placeholder {
  border-style: dashed;
  background: rgba(230, 240, 255, 0.42);
}

.case-meta {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.case-card h3 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 14px;
}

.case-card p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-mid);
  margin-bottom: 20px;
}

.case-result {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.case-result strong {
  font-family: var(--font-en);
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
}

.case-result span {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-mid);
}

/* =========================================================
   TARGETS / TABS
   ========================================================= */
.tabs {
  display: inline-flex;
  padding: 4px;
  background: var(--bg-soft);
  border-radius: 8px;
  margin: 0 auto 40px;
}

.tabs-wrap { text-align: center; }

.tab {
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mid);
  border-radius: 6px;
  transition: all 0.2s;
}

.tab.active {
  background: var(--bg);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.tab-panel { display: none; }
.tab-panel.active { display: grid; }

.tab-panel {
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.tab-side h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.tab-side-media {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.tab-side-media-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg-soft);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.tab-side-media-item.future { color: var(--ink-mid); }

.tab-side-status {
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-en);
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--success-soft);
  color: var(--success);
}

.tab-side-status.future { background: var(--bg); color: var(--ink-mute); border: 1px solid var(--border); }

.tab-side p { font-size: 13px; line-height: 1.85; color: var(--ink-mid); }

.tab-side-note {
  font-size: 11px;
  line-height: 1.7;
  color: var(--ink-mute);
  margin: -16px 0 24px;
}

.tab-main h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}

.tab-points { display: flex; flex-direction: column; gap: 14px; }

.tab-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.7;
}

.tab-point-num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 11px;
}

.tab-point strong { font-weight: 700; color: var(--ink); }

/* =========================================================
   GROWTH (4 phases)
   ========================================================= */
.growth {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.growth-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.2s;
  position: relative;
}

.growth-card.featured {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.growth-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.growth-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--ink);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 16px;
}

.growth-card.featured .growth-num { background: var(--blue); color: white; }

.growth-label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.growth-card.featured .growth-label { color: var(--blue); }

.growth-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.growth-card p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-mid);
}

.growth-closing {
  margin-top: 40px;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  font-size: 15px;
  color: var(--ink);
}

.growth-closing strong { font-weight: 700; color: var(--blue); }

/* =========================================================
   PROCESS TIMELINE
   ========================================================= */
.onboarding-flow-illustration {
  width: 100%;
  /* 新しいSVG全体の幅（1000px）に合わせて、ゆとりを持たせる */
  max-width: 940px;
  margin: 3rem auto;
  display: block;
}
.onboarding-flow-illustration img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: transform 0.3s ease;
}
.onboarding-flow-illustration img:hover {
  transform: translateY(-5px);
}
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 16px;
}

.process::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 12px;
}

.process-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-mid);
  position: relative;
  z-index: 1;
}

.process-step:nth-child(3) .process-dot {
  background: var(--ink);
  color: var(--yellow);
  border-color: var(--ink);
}

.process-duration {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.process-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 12px;
  color: var(--ink-mid);
  line-height: 1.7;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  transition: all 0.2s;
  overflow: hidden;
}

.faq-item.is-open { border-color: var(--blue); box-shadow: var(--shadow); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.6;
  transition: background 0.15s;
}

.faq-q:hover { background: var(--bg-soft); }

.faq-q-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s;
}

.faq-q-icon::before, .faq-q-icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: all 0.3s;
}

.faq-q-icon::before { width: 10px; height: 1.5px; }
.faq-q-icon::after { width: 1.5px; height: 10px; }

.faq-item.is-open .faq-q-icon { background: var(--blue); }
.faq-item.is-open .faq-q-icon::before, .faq-item.is-open .faq-q-icon::after { background: white; }
.faq-item.is-open .faq-q-icon::after { transform: rotate(90deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-a { max-height: 400px; }

.faq-a-inner {
  padding: 0 24px 24px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-mid);
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.cta-final {
  padding: 96px 0;
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 199, 0, 0.12) 0%, transparent 60%);
}

.cta-final-inner { text-align: center; position: relative; z-index: 1; }

.cta-final-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-final-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}

.cta-final h2 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0;
  color: white;
  margin-bottom: 20px;
}

.cta-final p {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.cta-final .btn-primary { background: var(--yellow); color: var(--ink); }
.cta-final .btn-primary:hover { background: white; }

.cta-assurance {
  display: flex;
  gap: 32px;
  justify-content: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-assurance li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.cta-assurance li::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: var(--yellow);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='%231A2238' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-section {
  background: var(--bg-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: start;
}

.contact-copy h3 {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 16px;
}

.contact-copy p {
  color: var(--ink-mid);
  line-height: 1.9;
  margin-bottom: 24px;
}

.contact-points {
  display: grid;
  gap: 12px;
}

.contact-points li {
  display: flex;
  gap: 10px;
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.7;
}

.contact-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 199, 0, 0.18);
  flex-shrink: 0;
}

.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.required {
  display: inline-flex;
  align-items: center;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.45;
  padding: 11px 13px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.option-check,
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.6;
}

.option-check {
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-soft);
  padding: 9px 11px;
}

.option-check input,
.privacy-check input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--blue);
  flex-shrink: 0;
}

.form-note {
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.7;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.form-actions .btn {
  min-height: 48px;
}

.form-status {
  color: var(--ink-mid);
  font-size: 13px;
  line-height: 1.7;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(5, minmax(120px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.footer-brand .brand { margin-bottom: 16px; }

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 20px;
}

.footer-brand-info {
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.8;
}

.footer h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}

.footer ul li { margin-bottom: 10px; }

.footer ul li a {
  font-size: 13px;
  color: var(--ink-mid);
  transition: color 0.15s;
}

.footer ul li a:hover { color: var(--blue); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright { font-size: 12px; color: var(--ink-mute); }

.footer-links { display: flex; gap: 24px; font-size: 12px; }
.footer-links a { color: var(--ink-mid); }
.footer-links a:hover { color: var(--blue); }

.footer-partner {
  margin-top: 16px;
  font-size: 11px;
  color: var(--ink-mute);
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .header-inner { gap: 18px; padding: 0 24px; }
  .brand-logo-img { width: 196px; }
  .nav { gap: 18px; margin-right: 12px; }
  .nav a { font-size: 13px; }
  .hero h1 { font-size: 44px; }
  h2.section-h { font-size: 30px; }
  .core-process { grid-template-columns: 1fr; }
  .core-arrow { display: none; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .effects { grid-template-columns: repeat(2, 1fr); }
  .client-logo-grid { grid-template-columns: repeat(3, 1fr); }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .growth { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 28px; }
  .footer-top { grid-template-columns: 1.3fr 1fr 1fr; }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 128px; }
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
  .wrap, .wrap-narrow { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .header { height: 72px; }
  .brand-logo-img { width: 190px; }
  .nav, .header-cta { display: none; }
  .menu-toggle-b {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    align-items: center;
  }
  .menu-toggle-b span { width: 20px; height: 2px; background: var(--ink); }

  .mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 99;
    background: #FFFFFF;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 20px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .mobile-menu.is-open {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
  }
  .mobile-menu-nav a {
    padding: 14px 12px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    background: var(--bg);
  }
  .mobile-menu-nav a:hover {
    background: var(--bg-soft);
    color: var(--blue);
  }
  .mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .mobile-menu-cta .btn {
    width: 100%;
    min-height: 48px;
  }
  body.is-menu-open { overflow: hidden; }
  body.is-menu-open .mobile-fixed-cta { display: none; }

  .mobile-section-nav {
    position: sticky;
    top: 72px;
    z-index: 98;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 20px 12px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mobile-section-nav::-webkit-scrollbar { display: none; }
  .mobile-section-nav a {
    flex: 0 0 auto;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bg);
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
  }

  .mobile-fixed-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: flex;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 24px rgba(26, 34, 56, 0.10);
  }
  .mobile-fixed-cta .btn {
    flex: 1;
    min-height: 48px;
    height: auto;
    padding: 11px 12px;
    border-radius: 8px;
  }
  .mobile-fixed-cta .btn-secondary { background: var(--bg); }

  .menu-toggle-b.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle-b.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle-b.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  
  .hero { padding: 56px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }

  .hero-intro { padding: 56px 0; }
  .hero-intro-grid { flex-direction: column; gap: 0; }
  .hero-intro-text h2 { font-size: 24px; }
  .hero-illustration-wrapper { max-width: 460px; margin-top: 2rem; padding: 14px; }

  .onboarding-flow-illustration { margin: 2rem auto; }
  .ai-function-illustration { margin-top: 2rem; }
  .assurance-illustration { margin-bottom: 2.5rem; }
  .hero h1 { font-size: 32px; line-height: 1.4; }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; min-height: 48px; }
  .hero-stats { gap: 16px; }
  
  .product-metrics { grid-template-columns: repeat(2, 1fr); }
  .product-nav { display: none; }
  .product-search { width: 80px; }
  .product-topbar-left { min-width: 0; }
  .product-brand { min-width: 0; }
  
  .trust-logos { gap: 24px; }
  .trust-logos li { font-size: 14px; }
  .trust-statement { font-size: 21px; }
  
  .section { padding: 64px 0; }
  h2.section-h { font-size: 26px; }
  .section-head { margin-bottom: 40px; }
  
  .problems, .features, .effects, .case-grid, .growth, .process { grid-template-columns: 1fr; }
  .client-logos-block { padding: 24px 20px; }
  .client-logos-head { flex-direction: column; align-items: flex-start; }
  .client-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .client-logo-slot { min-height: 76px; padding: 14px; }
  
  .assurance { grid-template-columns: 1fr; }
  .assurance-text { padding: 32px 24px; }
  .assurance h3 { font-size: 22px; }
  .assurance-ui { padding: 32px 24px; border-left: none; border-top: 1px solid var(--border); }
  
  .cta-banner { flex-direction: column; align-items: stretch; text-align: center; padding: 32px 24px; }
  .cta-banner-actions { flex-direction: column; }
  .cta-banner-actions .btn { width: 100%; min-height: 48px; }
  
  .tab-panel { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
  
  .process::before { display: none; }
  .process-step { margin-bottom: 32px; }
  
  .cta-final { padding: 64px 0; }
  .cta-final h2 { font-size: 28px; }
  .cta-final-actions { flex-direction: column; }
  .cta-final-actions .btn { width: 100%; min-height: 48px; }
  .cta-assurance { flex-direction: column; gap: 12px; align-items: flex-start; padding-left: 20px; }
  .contact-copy h3 { font-size: 22px; }
  .contact-form { padding: 24px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-options { grid-template-columns: 1fr; }
  .form-actions .btn { width: 100%; }
  
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* === CTA最終調整: スマホでの押しやすさ・折り返し耐性 === */
@media (max-width: 768px) {
  /* 長い文言でも2行で折り返し、見切れ・横はみ出しを防止 */
  .btn { white-space: normal; text-align: center; line-height: 1.3; }
  /* 大型CTAは2行になっても高さ自動拡張（最低52pxのタップ領域を確保） */
  .btn-lg { height: auto; min-height: 52px; padding-top: 12px; padding-bottom: 12px; }
  /* 縦積みCTAのボタン間隔をやや広げて誤タップを防止 */
  .hero-actions,
  .cta-final-actions,
  .cta-banner-actions { gap: 14px; }
}

@media (max-width: 480px) {
  .hero { padding: 44px 0 52px; }
  .hero h1 { font-size: 30px; }
  .hero-tag {
    max-width: 100%;
    font-size: 11px;
    line-height: 1.5;
    white-space: normal;
  }
  .hero-product-frame { border-radius: 10px; }
  .product-topbar { padding: 10px 12px; }
  .product-search,
  .product-avatar { display: none; }
  .product-body { padding: 14px; }
  .product-head {
    flex-direction: column;
    gap: 10px;
  }
  .product-head-actions { width: 100%; }
  .product-head-btn {
    flex: 1;
    min-height: 34px;
    justify-content: center;
  }
  .product-metric { padding: 10px; }
  .product-chart-legend { display: none; }
  .product-table-head,
  .product-row {
    grid-template-columns: 22px minmax(0, 1fr) 42px 54px;
    gap: 6px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .row-badge {
    padding: 3px 5px;
    font-size: 8px;
  }
  .section { padding: 56px 0; }
  .contact-copy p,
  .section-sub,
  .hero-sub { line-height: 1.85; }
}



/* ------------------------------------------------------------

 ルートサイトCSS調整

------------------------------------------------------------ */


.header-cta a,
a.btn-primary{
  color: #0b1d3a !important ;
}

.menu-toggle-b{
   margin-right: 0;
  
}

/*　　ルートサイトのCSSここまで　*/

/* ------------------------------------------------------------

 WP側、調整用

------------------------------------------------------------ */

a,
a:visited{
  color:#11192e;
}
.header-inner{}

a.btn.btn-primary,
a.btn.btn-primary:hover,
a.btn.btn-primary:focus-visible{
  color:#FFF;
  text-decoration: none;
}

/* サイトタイトル部分（採用コラム） */
.site-branding{
  background: #FFF;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 82px;
}



.site-title,
.site-content *{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.site-title{
  font-weight: 600;
  height: auto;
  line-height:normal;
  font-size: 40px;
}

#posts-container{}

#posts-container > article{
  width: 46%;
  margin-left: 2%;
  margin-right: 2%;
}
#posts-container article{
  background: #fff;
  /*border: 1px solid #86847d;*/
	box-shadow: 0 3px 8px rgba(0,0,0, 0.3);
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 768px){
  
  #posts-container > article{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
}

#posts-container .entry-thumbnail{
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;

  margin-left: -1.5em;
  margin-right: -1.5em;
  margin-bottom: 0;
  width: calc(100% + 3em);
}

#posts-container .entry-thumbnail a{
  display: block;
  width: 100%;
  height: 100%;
}

#posts-container .entry-thumbnail img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

#posts-container article:hover .entry-thumbnail img{
  transform: scale(1.03);
}

#posts-container .entry-header{
  padding: 1.5em 1.5em 0 1.5em;
}

#posts-container .entry-meta{
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
  font-size: 1.3rem;
  line-height: 1.6;
}

#posts-container .entry-category{
  display: inline-block;
  padding: .25em .7em;
  background: #ff9b45;
  color: #fff;
  border-radius: 4px;
}

#posts-container .entry-meta time{
  color: #86847d;
}

#posts-container .entry-title{
  margin: 0;
  font-size: 2rem;
  line-height: 1.6;
}

#posts-container .entry-title a{
  color: #000;
  text-decoration: none;
  transition: color .2s ease;
}

#posts-container .entry-title a:hover{
  color: #ff9b45;
}

#posts-container .entry-content{
  position: relative;
  padding: 1.5em;
  color: #000;
  font-size: 1.4rem;
  line-height: 2;
}

#posts-container .entry-content::before{
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-bottom: 1.5em;
  background: #ff9b45;
}

#posts-container .entry-content p{
  margin: 0;
}

#posts-container .noimage{
  background: #f5f5f5;
}

#posts-container .noimage img{
  object-fit: cover;
}


/* シングルページ　*/
.single .type-post{
  background: #FFF;
  padding: 1em;
}
.single .type-post .entry-header{ padding: 1em 2em; }
.single .type-post .entry-content{ padding: 1em 2em 3em 2em; }
 


.single .entry-content h2,
.single .entry-content h3{
  font-weight: 600;
}

.single .entry-title{
  padding:1em 0 0.5em 0;
  font-size: 45px;
  font-weight: 900 !important;
}

.single .entry-content h2{
  position: relative;
  margin: 3em 0 1.2em 0;
  padding: 0 0 0.7em 0;
  color: #000;
  line-height: 1.5;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #d8d8d8;
}

.single .entry-content h2::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 50px;
  height: 2px;
  background: #ff9b45;
}

.single .entry-content h3{
  position: relative;
  margin: 2.5em 0 1em 0;
  padding: 0 0 0 1em;
  color: #000;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.single .entry-content h3::before{
  content: "";
  position: absolute;
  top: 0.25em;
  bottom: 0.25em;
  left: 0;
  width: 3px;
  background: #ff9b45;
  border-radius: 2px;
}


/*　記事メタ　*/
.entry-meta{
  display: flex;
  align-items: center;
  gap: 25px;
}

.entry-meta .entry-category{
  display: inline-block;
  padding: 0.2em 0.7em;
  background: #ff9b45;
  border-radius: 5px;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.5;
}

.entry-meta time{
  color: #000;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
}






/* 関連記事　*/
.related-posts .entry-thumbnail{
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.related-posts .entry-thumbnail a{
  display: block;
  width: 100%;
  height: 100%;
}

.related-posts .entry-thumbnail img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* 記事一覧ボタン　*/
.btn-post_list{
  clear: both;
  padding: 2em;
  text-align: center;
}

.btn-post_list a{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 1em 3.5em;
  border: 1px solid #86847d;
  border-radius: 100px;
  background: #ff9b45;
  border-color: #ff9b45;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.5;
  text-decoration: none;
  transition: border-color .3s ease, color .3s ease, background .3s ease;
}
.btn-post_list a:hover{
  background: #FFF;
  border-color: #ff9b45;
  color: #ff9b45;
}


.btn-post_list a::after{
  content: "→";
  position: absolute;
  right: 1.5em;
  color: #FFF;
  font-size: 1.2em;
  transition: transform .3s ease;
}
.btn-post_list a:hover::after{
  color: #ff9b45;
  transform: translateX(4px);
}


/* フッター */
.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-brand{
  flex-shrink: 0;
}
.footer-links{
  margin-left: auto;
}
.footer-link-group{
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px !important;
  row-gap: 5px !important;
}
.footer-link-group a{
  height: auto ;
  min-height: 0 ;
  padding-top: 0 ;
  padding-bottom: 0 ;
  line-height: 1.2 ;
  color: #cbccd1;
}




/* SP header　調整　*/
@media (max-width: 768px){

  
  .site-header .container.header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0;
    padding-right: 0;
    
    width: 100%;
    max-width: none;
    padding-left: 0px !important;
    padding-right: 0px !important;

  }
  .header-actions{
    margin-left: auto;
  }

  .global-nav {
    z-index: 100;
  }

  .footer-inner{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-link-group a{
    height: auto ;
    padding: 1em;
    line-height: 1.2 ;
  }
  
  
  .btn.btn-primary,
  .btn.btn-gold{
    color:#FFF;
  }


  
}


/* ------------------------------------------------------------

 その他設定

------------------------------------------------------------ */

/*　ページング　*/

.navigation.pagination{
  margin: 2em 0 4em 0 ;
}

.navigation.pagination .nav-links{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.navigation.pagination .page-numbers{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px 1px 10px;
  border: 1px solid #86847d;
  border-radius: 50%;
  color: #000;
  text-decoration: none;
  line-height: 1;
  transition: .3s;
}

.navigation.pagination .page-numbers:hover{
  border-color: #ff9b45;
  background: #ff9b45;
  color: #fff;
}

.navigation.pagination .page-numbers.current{
  border-color: #ff9b45;
  background: #ff9b45;
  color: #fff;
}

.navigation.pagination .prev,
.navigation.pagination .next{
  border-radius: 50%;
}




