/* ============================================================
   Variables & Reset
   ============================================================ */
:root {
  --primary: #1BB8CE;
  --primary-dark: #17A3B8;
  --navy: #1B2D4F;
  --text: #333333;
  --text-light: #666666;
  --bg-light: #F5F8FA;
  --white: #ffffff;
  --border: #E0E8EF;

  --color-bg-header: #FAFBFC;
  --color-border-subtle: #EEF1F4;
  --color-brand: #1BB8CE;
  --color-brand-hover: #17A3B8;
  --color-text-primary: #0B0F14;

  --header-h: 80px;
  --radius: 12px;
  --transition: 0.25s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --font-sans: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Yu Gothic', 'YuGothic', 'Meiryo', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

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

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover {
  opacity: 0.75;
}

/* ============================================================
   Utilities
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ============================================================
   Insights (Read More)
   ============================================================ */
.insights-list {
  max-width: 800px;
  margin-inline: auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.insights-item {
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius);
  background: var(--white);
  transition: var(--transition);
}
.insights-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.insights-link {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px 16px;
  padding: 20px 24px;
  text-decoration: none;
  color: inherit;
}
.insights-link:hover {
  opacity: 1;
}
.insights-tag {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  display: inline-block;
  padding: 4px 10px;
  background: var(--primary);
  color: var(--white);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
}
.insights-tag--general {
  background: var(--navy);
}
.insights-more {
  max-width: 800px;
  margin: 18px auto 0;
  text-align: right;
  font-size: 0.92rem;
}
.insights-more a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
.insights-more a:hover {
  text-decoration: underline;
}
.insights-title {
  grid-column: 1;
  grid-row: 2;
  font-weight: 400;
  line-height: 1.6;
  font-size: 0.98rem;
  color: var(--color-text-primary);
}
.insights-arrow {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .insights-link {
    padding: 16px 18px;
  }
}

/* ============================================================
   Skip Link (WCAG 2.4.1 Bypass Blocks)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -9999px;
  left: 0;
  z-index: 10000;
  background: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 0 0 6px 0;
}
.skip-link:focus {
  top: 0;
  opacity: 1;
  outline: 3px solid var(--white);
  outline-offset: -3px;
}

/* ============================================================
   Breadcrumb
   ============================================================ */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--color-border-subtle);
  padding-block: 6px;
  font-size: 0.75rem;
  line-height: 1.4;
  overflow-x: auto;
  scrollbar-width: none;
}
.breadcrumb::-webkit-scrollbar {
  display: none;
}
.breadcrumb-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-light);
}
.breadcrumb-list li + li::before {
  content: '>';
  margin: 0 0.6em;
  color: var(--text-light);
  user-select: none;
}
.breadcrumb-list a {
  color: var(--text-light);
  text-decoration: none;
}
.breadcrumb-list a:hover {
  color: var(--primary);
  opacity: 1;
}
.breadcrumb-current {
  color: var(--text);
  font-weight: 500;
}
@media (max-width: 768px) {
  .breadcrumb {
    padding-block: 5px;
    font-size: 0.7rem;
  }
}

.text-primary {
  color: var(--primary);
}

.text-heading {
  color: var(--color-text-primary);
}

.link-primary-underline {
  color: var(--primary);
  text-decoration: underline;
}

.support-item-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.gtm-noscript {
  display: none;
  visibility: hidden;
}

.mt-16 {
  margin-top: 16px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-pill {
  border-radius: 100px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-primary {
  background: #1BB8CE;
  color: var(--white);
  border: none;
  border-radius: 8px;
}

.btn-primary:hover {
  background: var(--color-brand-hover);
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(27, 184, 206, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  border-radius: 100px;
  padding: 12px 28px;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  opacity: 1;
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  opacity: 1;
}

/* ============================================================
   Scroll Animation
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1.is-visible { transition-delay: 0.1s; }
.fade-in-delay-2.is-visible { transition-delay: 0.2s; }
.fade-in-delay-3.is-visible { transition-delay: 0.3s; }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: relative;
  z-index: 100;
  height: var(--header-h);
  width: 100%;
  background-color: rgba(250, 251, 252, 0.85);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: box-shadow var(--transition);
}

.header.is-scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 4px 0;
  flex-shrink: 0;
}

.logo:hover {
  opacity: 0.85;
}

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

.logo-img--footer {
  height: 36px;
  width: auto;
  max-width: none;
}

/* Header brand (tagline above logo) */
.header-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}

.header-tagline {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.16em;
  white-space: nowrap;
  line-height: 1.2;
}

.header-brand .logo {
  padding: 0;
}

@media (max-width: 768px) {
  .header-tagline {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--color-text-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--color-brand);
  opacity: 1;
}

/* Dropdown */
.nav-item--dropdown {
  position: relative;
}

.nav-arrow {
  font-size: 10px;
  margin-left: 2px;
  transition: transform 0.2s ease;
  display: inline-block;
}

.nav-item--dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid #EEF1F4;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
  padding: 6px 0;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
  list-style: none;
}

.nav-item--dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__link {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-primary);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
  text-decoration: none;
}

.nav-dropdown__link:hover {
  background: rgba(27, 184, 206, 0.07);
  color: var(--color-brand);
  opacity: 1;
}

/* Header CTA */
.header-cta {
  flex-shrink: 0;
  background-color: var(--color-brand) !important;
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 12px 20px !important;
  border-radius: 8px !important;
  border: none !important;
  margin-left: 24px;
  transition: background-color 0.2s ease !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Section Common
   ============================================================ */
.section {
  padding-block: 96px;
}

.section-white {
  background: var(--white);
}

#strengths {
  background: #F8FCFF;
  padding-top: 48px;
}

#process {
  background: #F8FCFF;
}

#faq {
  background: var(--white);
  padding-bottom: 24px;
}

.section-gray {
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 560px;
  margin-inline: auto;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding-top: 40px;
  padding-bottom: 56px;
  background: var(--white);
  position: relative;
}

/* ===== Hero decorations ===== */
.hero-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-deco {
  position: absolute;
}

/* 上部：薄い菱形 */
.hero-deco-diamond {
  top: 90px;
  left: 39%;
  width: 7px;
  height: 7px;
  background: rgba(27, 184, 206, 0.18);
  transform: rotate(45deg);
}

/* 上部：円リング */
.hero-deco-ring {
  top: 95px;
  left: 45%;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(27, 184, 206, 0.2);
  border-radius: 50%;
}

/* 中央：ドットグリッド */
.hero-deco-dots {
  top: 340px;
  left: 38%;
  width: 60px;
  height: 44px;
  background-image: radial-gradient(circle, rgba(0,196,204,0.18) 1.2px, transparent 1.2px);
  background-size: 12px 12px;
}

/* 下部：円（共通） */
.hero-deco-circle {
  border-radius: 50%;
}

.hero-deco-circle--solid {
  top: 270px;
  left: 42%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(27, 184, 206, 0.55) 0%, rgba(27, 184, 206, 0.08) 45%, rgba(255, 255, 255, 0) 75%);
}

.hero-deco-circle--light {
  top: 330px;
  left: 35%;
  width: 56px;
  height: 56px;
  background: radial-gradient(circle, rgba(27, 184, 206, 0.35) 0%, rgba(27, 184, 206, 0.04) 40%, rgba(255, 255, 255, 0) 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 48px;
  row-gap: 24px;
  align-items: stretch;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
}

.hero-content-top {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  position: relative;
  z-index: 2;
}

.hero-content-bottom {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  align-self: start;
  position: relative;
  z-index: 2;
}

.hero-image {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: stretch;
  min-height: 360px;
  margin-left: -120px;
}

.hero-label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  background: #F2F1C6;
  border: 1px solid #F2F1C6;
  padding: 4px 14px;
  border-radius: 6px;
  margin-top: 0;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.label-sp { display: none; }
.sp-br { display: none; }
.pc-br { display: inline; }

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-desc {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 20px;
  max-width: 100%;
}

.hero-mark {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 1px 8px;
  font-weight: 700;
  margin-right: 8px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* 数値メトリック強調（月間数百件のリード獲得実績 など） */
.hero-metric {
  font-size: 1.18em;
  font-weight: 900;
  background: linear-gradient(transparent 70%, rgba(242, 242, 180, 0.85) 70%);
  padding: 0 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero-note {
  margin-top: 0;
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.check-icon {
  color: var(--primary);
  font-weight: 700;
}

/* Hero image */
.hero-image {
  position: relative;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 30% 50%;
  border-radius: 0;
  box-shadow: none;
}

/* Stats Bar */
.stats-bar {
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 18px 22px;
  position: absolute;
  right: 16px;
  bottom: -16px;
  z-index: 2;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-label-text {
  font-size: 1rem;
  font-weight: 700;
  color: #0B0F14;
  white-space: nowrap;
}

.stat-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-content {}

.stat-label {
  font-size: 0.68rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 2px;
  line-height: 1.3;
}

.stat-value {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  white-space: nowrap;
}

.stat-unit {
  font-size: 0.8rem;
  font-weight: 700;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: #E5E7EB;
  margin-inline: 16px;
  flex-shrink: 0;
}

/* ============================================================
   Cards (common)
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.cards-grid {
  display: grid;
  gap: 24px;
}

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ============================================================
   Services
   ============================================================ */
.card-icon {
  width: 64px;
  height: 64px;
  background: rgba(27, 184, 206, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.card-text {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 20px;
  flex: 1;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

.card-link:hover {
  opacity: 0.7;
}

/* ============================================================
   Strengths
   ============================================================ */
.strengths-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.strengths-left {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.strengths-desc {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.strengths-desc li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.4;
}

.strengths-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

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

/* Desktop: card grid */
.support-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.support-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  grid-template-areas:
    "icon name arrow"
    "icon desc arrow";
  column-gap: 18px;
  row-gap: 2px;
  align-items: center;
  padding: 22px 26px;
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius);
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.support-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.support-icon {
  grid-area: icon;
  width: 56px;
  height: 56px;
  background: rgba(27, 184, 206, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  pointer-events: none;
}

.support-icon svg {
  width: 26px;
  height: 26px;
}

.support-item::after {
  content: '';
  grid-area: arrow;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--primary);
  border-top: 2px solid var(--primary);
  transform: rotate(45deg);
  align-self: center;
  justify-self: end;
  margin-right: 4px;
}

.support-name {
  grid-area: name;
  align-self: end;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
}

.support-desc {
  grid-area: desc;
  align-self: start;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}


.strength-prose {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 40px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.strength-prose p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}

.intro-greeting {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
}

.intro-lead {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--navy);
}

.strength-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.strength-number {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
  font-feature-settings: "lnum";
}

.strength-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.strength-text {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   Process
   ============================================================ */
.process-list {
  display: flex;
  align-items: stretch;
  gap: 0;
  counter-reset: process;
}

.process-step {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
  color: var(--primary);
}

.process-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
}

.process-text {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.7;
  padding-left: 0;
}

/* ============================================================
   Results
   ============================================================ */
.results-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 40px;
}

.results-metrics {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.metric-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
}

.metric-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.metric-label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 4px;
}

.metric-value {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-unit {
  font-size: 1.5rem;
  font-weight: 700;
}

.metric-graph {
  display: block;
  width: 100%;
  max-width: 160px;
}

/* Case cards */
.results-cases {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.case-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  transition: box-shadow var(--transition), transform var(--transition);
}

.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.case-image {
  width: 160px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #ddeef5 0%, #c8e0ec 100%);
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-body {
  padding: 24px;
  flex: 1;
}

.case-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(27, 184, 206, 0.1);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.case-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 14px;
}

.results-more {
  text-align: center;
}

.link-more {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color var(--transition);
}

.link-more:hover {
  border-bottom-color: var(--primary);
  opacity: 1;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-q {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
  margin-bottom: 14px;
}

.faq-q::before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  font-weight: 900;
  color: var(--primary);
}

.faq-a {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
  padding-left: 28px;
  position: relative;
}

.faq-a::before {
  content: 'A';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  font-weight: 900;
  color: var(--text-light);
}

/* ============================================================
   Voice
   ============================================================ */
.voice-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 40px;
}

.voice-quote {
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
  font-family: Georgia, serif;
}

.voice-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
  font-style: normal;
}

.voice-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.voice-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ddeef5 0%, #b0cfe0 100%);
  flex-shrink: 0;
}

.voice-company {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 2px;
}

.voice-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

/* ============================================================
   Partners
   ============================================================ */
.partners-section {
  padding-block: 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.partner-logo {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-light);
  opacity: 0.6;
  letter-spacing: 0.05em;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.partners-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-light);
  opacity: 0.7;
}

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-outer {
  background: var(--white);
  padding-block: 16px 40px;
}

.cta-section {
  background: var(--primary);
  border-radius: 20px;
  padding: 24px 56px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* 4×4 ドットグリッド */
.cta-dots {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;   /* 3間隔分 × 14px = 42px */
  height: 42px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.5) 2px, transparent 2px);
  background-size: 14px 14px;
  background-position: 0 0;
  z-index: 1;
}

.cta-content {
  flex: 1;
  position: relative;
  z-index: 1;
  padding-left: 28px;
}

.cta-btn {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  font-size: 1rem;
  padding: 18px 40px;
}

.cta-deco {
  position: absolute;
  border-radius: 50%;
}

/* 右端で半分クリップされる大きい白円 */
.cta-deco-1 {
  width: 68px;
  height: 68px;
  top: 50%;
  right: -22px;   /* 右端からはみ出してクリップ */
  transform: translateY(-55%);
  background: rgba(255, 255, 255, 0.9);
}

/* 大きい円の左下にある小さい半透明円 */
.cta-deco-2 {
  width: 44px;
  height: 44px;
  bottom: 14px;
  right: 26px;
  background: rgba(255, 255, 255, 0.22);
}

.cta-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.35;
}

.cta-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: #F4F1EB;
  border-top: 1px solid var(--border);
}

.footer-main {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 48px;
  padding-block: 56px;
  align-items: start;
}

.footer-tagline {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.footer-info {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-info-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
}

.footer-info-label {
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-info-row dd {
  margin: 0;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.footer-pin {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 5px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-nav-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}

.footer-nav-list li {
  margin-bottom: 4px;
}

.footer-nav-list a {
  font-size: 0.8rem;
  color: var(--text-light);
  transition: color var(--transition);
}

.footer-nav-list a:hover {
  color: var(--primary);
  opacity: 1;
}

.footer-contact {
  border-left: 1px solid var(--border);
  padding-left: 40px;
  min-width: 200px;
}

.footer-tel-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.footer-tel-icon {
  flex-shrink: 0;
}

.footer-tel a {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.03em;
}

.footer-tel-note {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.footer-cta-btn {
  font-size: 0.9rem;
  padding: 14px 28px;
  width: 100%;
  justify-content: center;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 20px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.copyright {
  font-size: 0.75rem;
  color: var(--text-light);
}

.footer-legal {
  display: flex;
  gap: 4px;
  align-items: center;
}

.footer-legal li + li::before {
  content: '|';
  color: var(--text-light);
  margin-right: 4px;
}

.footer-legal a {
  font-size: 0.75rem;
  color: var(--text-light);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--primary);
  opacity: 1;
}

/* ============================================================
   Services SP (mobile only)
   ============================================================ */
.services-sp {
  display: none;
  padding-block: 32px;
  border-top: 1px solid var(--border);
}

.services-sp-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary);
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
}

.services-sp-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-sp-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 700;
  color: #0B0F14;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 14px 20px;
}

/* ============================================================
   Hero stats offset compensator
   ============================================================ */
#services {
  padding-top: 64px;
  background: #ffffff;
}

/* ============================================================
   Responsive — 768px
   ============================================================ */
@media (max-width: 768px) {

  :root {
    --header-h: 64px;
  }

  /* Section description: left-align on SP */
  .section-desc {
    text-align: left;
  }

  /* Header */
  .hamburger {
    display: flex;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 0;
    padding: 0 24px;
    position: relative;
  }

  .logo-img {
    height: 32px;
  }

  .hero-label {
    font-size: 0.8rem;
    padding: 4px 10px;
    white-space: nowrap;
  }

  .label-pc { display: none; }
  .label-sp { display: inline; }
  .sp-br { display: block; }
  .pc-br { display: none; }

  .hero-desc {
    font-size: calc((100vw - 48px) / 22);
    white-space: nowrap;
    text-align: left;
  }

  .hero-label {
    background: none;
    border: none;
    padding: 0;
    display: block;
    width: 100%;
    font-size: calc((100vw - 48px) / 23);
  }

  /* Buttons full width */
  .btn {
    width: 100%;
    justify-content: center;
  }

  .btn-lg {
    font-size: 1.2rem;
    padding: 20px 32px;
  }

  .header-cta {
    display: none;
  }

  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--white);
    padding: 16px 0 24px;
    border-top: 1px solid var(--border);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .nav.is-open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-inline: 8px;
  }

  .nav-link {
    display: block;
    padding: 12px 8px 12px 20px;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    text-align: left;
    position: relative;
  }

  .nav-link::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
  }

  /* Mobile dropdown: always open */
  .nav-item--dropdown .nav-link {
    border-bottom: none;
  }

  .nav-item--dropdown .nav-arrow {
    display: none;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: 0;
    background: transparent;
    padding: 0 0 0 12px;
  }

  .nav-dropdown__link {
    padding: 10px 8px;
    font-size: 1rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
    text-align: left;
    white-space: normal;
  }

  /* Hero */
  .hero {
    padding-top: 16px;
    padding-bottom: 28px;
  }

  .hero-label {
    margin-top: 8px;
    margin-bottom: 10px;
  }

  .hero-title {
    font-size: calc((100vw - 48px) / 11);
  }

  .stats-bar {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
    padding-bottom: 20px;
  }

  .hero-content-top {
    grid-column: 1;
    grid-row: 1;
    order: 1;
  }

  .hero-image {
    grid-column: 1;
    grid-row: auto;
    order: 2;
    margin-left: 0;
    min-height: 0;
  }

  .hero-img-placeholder {
    height: auto;
    max-height: none;
    object-fit: contain;
    border-radius: 0;
    -webkit-mask-image: none;
            mask-image: none;
  }

  .hero-content-bottom {
    grid-column: 1;
    grid-row: auto;
    order: 3;
    align-items: center;
    text-align: center;
  }

  .hero-cta-row {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-note {
    font-size: 1rem;
  }

  .hero-title {
    font-size: calc((100vw - 48px) / 11);
  }


  /* Services SP */
  .services-sp {
    display: block;
  }

  .services-sp-title {
    display: none;
  }

  .services-sp-item {
    background: none;
    border-radius: 0;
    padding: 8px 0;
    font-size: calc((100vw - 100px) / 15);
    gap: 12px;
    white-space: nowrap;
  }

  .services-sp-list {
    gap: 8px;
    width: fit-content;
    margin-inline: auto;
  }

  /* Sections */
  .section {
    padding-block: 64px;
  }

  #services {
    padding-top: 64px;
  }

  .support-list {
    display: block;
    border-top: 1px solid #E5E7EB;
  }

  .support-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px 56px 18px 8px;
    background: none;
    border: none;
    border-bottom: 1px solid #E5E7EB;
    border-radius: 0;
    transform: none !important;
    box-shadow: none !important;
  }

  .support-icon {
    display: none;
  }

  .support-item::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    margin: 0;
    background: url("../images/icon-arrow-circle.svg") center/contain no-repeat;
    pointer-events: none;
  }

  .support-name {
    align-self: flex-start;
    min-width: 0;
    font-size: 0.95rem;
    padding-right: 0;
  }

  .support-desc {
    align-self: flex-start;
  }

  .support-desc {
    flex: 1;
    font-size: 0.85rem;
  }


  .cards-4 {
    grid-template-columns: 1fr 1fr;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  /* Strengths */
  .strengths-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .strengths-left {
    position: static;
  }

  .strength-prose {
    margin-inline: -24px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 28px 24px;
  }

  .strength-prose p {
    font-size: 0.9rem;
  }

  .strengths-desc li {
    white-space: nowrap;
    font-size: calc((100vw - 108px) / 16);
  }

  .strengths-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Process */
  .process-list {
    flex-direction: column;
    gap: 0;
  }

  .process-step {
    width: 100%;
  }

  .process-arrow {
    padding-top: 0;
    transform: rotate(90deg);
    margin-block: -4px;
  }

  /* FAQ */
  .faq-item {
    padding: 20px 20px;
  }

  /* Results */
  .results-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .results-metrics {
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
  }

  .metric-item {
    flex: 1;
    min-width: 120px;
    border-bottom: none;
    padding-bottom: 0;
    border-right: 1px solid var(--border);
    padding-right: 16px;
  }

  .metric-item:last-child {
    border-right: none;
  }

  .metric-value {
    font-size: 2rem;
  }

  .case-card {
    flex-direction: column;
  }

  .case-image {
    width: 100%;
    height: 180px;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 48px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-contact {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 32px;
  }

  .footer-cta-btn {
    width: 100%;
  }

  .cta-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 32px;
    gap: 24px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

}

@media (max-width: 480px) {

  .cards-4 {
    grid-template-columns: 1fr;
  }

  .strengths-grid {
    grid-template-columns: 1fr;
  }

  .partners-logos {
    gap: 16px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .results-metrics {
    flex-direction: column;
  }

  .metric-item {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
  }

  .metric-item:last-child {
    border-bottom: none;
  }

}

/* ============================================================
   Floating CTA (PC + SP, ワンソース)
   ============================================================ */
body.is-form-page .floating-cta {
  display: none !important;
}

.floating-cta {
  position: fixed;
  z-index: 9990;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.floating-cta.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--color-brand);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-cta-link:hover,
.floating-cta-link:focus-visible {
  background: var(--color-brand-hover);
  color: var(--white);
  opacity: 1;
}

.floating-cta-link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.floating-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}

.floating-cta-icon svg {
  width: 20px;
  height: 20px;
}

.floating-cta-main {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.floating-cta-main-sm {
  font-size: 0.85em;
  font-weight: 700;
}

.floating-cta-sub {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.92;
  line-height: 1.35;
}

.floating-cta-arrow {
  font-size: 9px;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.85;
}

.floating-cta-close {
  position: absolute;
  border: none;
  cursor: pointer;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  padding: 0;
  transition: background 0.2s ease;
}

.floating-cta-close:hover,
.floating-cta-close:focus-visible {
  background: rgba(0, 0, 0, 0.65);
}

.floating-cta-close:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* PC */
@media (min-width: 1024px) {
  .floating-cta {
    right: 24px;
    bottom: 24px;
    width: 170px;
    height: 110px;
  }

  .floating-cta-link {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    padding: 12px 12px;
    display: grid;
    grid-template-columns: auto auto;
    grid-auto-rows: auto;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    row-gap: 4px;
    gap: 4px 8px;
  }

  .floating-cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  }

  .floating-cta-icon {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .floating-cta-icon svg {
    width: 24px;
    height: 24px;
  }

  .floating-cta-main {
    grid-column: 1;
    grid-row: 2;
    font-size: 15px;
    text-align: center;
  }

  .floating-cta-arrow {
    grid-column: 2;
    grid-row: 2;
    font-size: 9px;
  }

  .floating-cta-sub {
    grid-column: 1 / -1;
    grid-row: 3;
    font-size: 11px;
    text-align: center;
  }

  .floating-cta-close {
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
  }
}

/* SP / Tablet */
@media (max-width: 1023px) {
  .floating-cta {
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
  }

  .floating-cta-link {
    width: 100%;
    height: 100%;
    border-radius: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0 16px;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }

  .floating-cta-icon,
  .floating-cta-main,
  .floating-cta-sub,
  .floating-cta-arrow {
    display: flex;
    align-items: center;
    line-height: 1;
  }

  .floating-cta-icon svg {
    width: 22px;
    height: 22px;
  }

  .floating-cta-main {
    font-size: 16px;
  }

  .floating-cta-sub {
    font-size: 12px;
  }

  .floating-cta-arrow {
    margin-left: 4px;
    font-size: 9px;
  }

  .floating-cta-close {
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    font-size: 22px;
  }

  .floating-cta-close:hover,
  .floating-cta-close:focus-visible {
    background: rgba(0, 0, 0, 0.15);
  }

  body.has-floating-cta-spacer {
    padding-bottom: 60px;
  }
}
