:root {
  --base: #ffffff;
  --ink: #20252b;
  --muted: #68717a;
  --line: #e6e9ec;
  --soft: #f4fbff;
  --soft-blue: #eaf8fe;
  --navy: #004b6d;
  --blue: #009cd9;
  --blue-dark: #0077aa;
  --accent: #00aeef;
  --shadow: 0 18px 40px rgba(0, 156, 217, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--base);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

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

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

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  width: min(900px, calc(100% - 48px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 38px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.logo::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 14px 0 0 #75d6f7;
}

.logo--image {
  min-width: 0;
  height: auto;
}

.logo--image::before {
  content: none;
}

.logo--image img {
  width: 132px;
  height: auto;
}

.global-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.global-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.global-nav a:hover {
  border-bottom-color: var(--accent);
}

.site-footer {
  background: #00364f;
  color: #e8f3f9;
  padding: 22px 0;
}

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

.site-footer nav {
  display: flex;
  gap: 10px 18px;
  flex-wrap: wrap;
}

.site-footer a {
  color: #d6edf8;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .global-nav {
    justify-content: flex-start;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ===== Shared modules absorbed from bpo/local.css ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 88px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 156, 217, 0.22), transparent 28%),
    linear-gradient(135deg, #f2fbff 0%, #ffffff 52%, #eaf8fe 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 480px;
  height: 480px;
  border: 54px solid rgba(0, 156, 217, 0.12);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: center;
}

.breadcrumb {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.breadcrumb a {
  color: var(--blue-dark);
  font-weight: 700;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 26px;
  color: var(--navy);
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: 0.03em;
}

h2 {
  margin-bottom: 28px;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.45;
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.55;
}

.lead {
  margin-bottom: 18px;
  font-size: 19px;
  line-height: 2;
  font-weight: 500;
}

.hero-text {
  color: var(--muted);
}

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

.hero-actions.center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--blue-dark);
  box-shadow: 0 12px 26px rgba(0, 156, 217, 0.28);
}

.btn-primary:hover {
  background: var(--blue);
}

.btn-secondary {
  color: var(--blue-dark);
  background: #fff;
  border-color: #bcecff;
}

.btn-secondary:hover {
  box-shadow: 0 12px 26px rgba(21, 53, 72, 0.1);
}

.hero-panel {
  padding: 34px;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), #0077aa);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.panel-title {
  margin-bottom: 28px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.55;
}

.panel-flow {
  display: grid;
  gap: 12px;
}

.panel-flow span {
  position: relative;
  padding: 13px 16px 13px 42px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  font-weight: 700;
}

.panel-flow span::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d7f4ff;
  transform: translateY(-50%);
}

.section {
  padding: 86px 0;
}

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

.problem-section {
  background: #fff;
}

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

.problem-card {
  position: relative;
  min-height: 154px;
  padding: 28px 24px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(21, 53, 72, 0.06);
  font-weight: 700;
}

.problem-card::before {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  margin-bottom: 18px;
  background: var(--accent);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: start;
}

.note {
  margin-top: 18px;
  padding: 16px 18px;
  color: var(--muted);
  background: var(--soft-blue);
  border-left: 4px solid var(--blue);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding: 18px 20px 18px 50px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(21, 53, 72, 0.05);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 25px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: rotate(-45deg);
}

.check-list.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.system-category-card {
  padding: 26px 24px;
  background: #fff;
  border: 1px solid #cfeef9;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(21, 53, 72, 0.06);
}

.system-category-card h3 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.5;
}

.system-category-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.system-category-card li {
  position: relative;
  padding: 8px 0 8px 18px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.7;
  border-top: 1px solid #eef3f5;
}

.system-category-card li:first-child {
  border-top: none;
}

.system-category-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

.cta-band {
  padding: 44px 0;
  background: var(--blue);
  color: #fff;
}

.cta-band h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(22px, 2.6vw, 32px);
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.process-list {
  counter-reset: step;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-list li {
  counter-increment: step;
  position: relative;
  min-height: 210px;
  padding: 64px 24px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(21, 53, 72, 0.06);
}

.process-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 22px;
  left: 24px;
  color: var(--accent);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.process-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 19px;
}

.process-list span {
  display: block;
  color: var(--muted);
}

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

.reason-grid article {
  padding: 28px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(21, 53, 72, 0.06);
}

.reason-grid article::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0 22%, var(--blue) 24% 100%);
}

.reason-grid p,
.case-card dd,
.faq-section p {
  color: var(--muted);
}

.cases-section {
  background: linear-gradient(180deg, var(--soft) 0%, #fff 100%);
}

.center-text {
  max-width: 800px;
  margin: -8px auto 34px;
  text-align: center;
  color: var(--muted);
}

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

.case-card {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.case-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 4px 12px;
  color: var(--blue-dark);
  background: var(--soft-blue);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.case-card dl {
  margin: 20px 0 0;
}

.case-card dt {
  margin-top: 14px;
  color: var(--navy);
  font-weight: 700;
}

.case-card dd {
  margin: 4px 0 0;
}

.case-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.center-action {
  margin-top: 30px;
  text-align: center;
}

.faq-section details {
  margin-bottom: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(21, 53, 72, 0.05);
}

.faq-section summary {
  cursor: pointer;
  padding: 20px 54px 20px 22px;
  color: var(--navy);
  font-weight: 700;
  list-style: none;
  position: relative;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  color: var(--blue);
  font-size: 24px;
  transform: translateY(-50%);
}

.faq-section details[open] summary::after {
  content: "−";
}

.faq-section details p {
  margin: 0;
  padding: 0 22px 22px;
}

.final-cta {
  padding: 86px 0;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 119, 170, 0.96), rgba(0, 156, 217, 0.94)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 30%);
}

.final-cta h2 {
  max-width: 850px;
  margin: 0 auto 20px;
  color: #fff;
}

.final-cta p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
}

.final-cta .section-label {
  color: #d7f4ff;
}

.site-footer {
  padding: 38px 0;
  background: #00364f;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

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

.site-footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .global-nav {
    justify-content: flex-start;
  }

  .hero-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .container,
  .narrow {
    width: min(100% - 32px, 1120px);
  }

  .page-hero {
    padding: 44px 0 62px;
  }

  .section {
    padding: 62px 0;
  }

  .global-nav {
    gap: 10px 14px;
    font-size: 11px;
  }

  h1 {
    font-size: 32px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-actions,
  .hero-actions.center {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-panel {
    padding: 26px;
  }

  .problem-grid,
  .process-list,
  .case-grid,
  .reason-grid,
  .system-category-grid,
  .check-list.compact {
    grid-template-columns: 1fr;
  }

  .problem-card,
  .process-list li {
    min-height: auto;
  }

  .system-category-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* Consulting page: support range map */
.range-section {
  background: #fff;
}

.range-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 22px;
}

.range-flow .stage {
  flex: 1 1 0;
  min-width: 120px;
  position: relative;
  padding: 18px 14px;
  text-align: center;
  background: var(--soft-blue);
  border: 1px solid #d6e4ea;
  border-radius: 12px;
  color: var(--navy);
  font-weight: 700;
}

.range-flow .stage::after {
  content: "›";
  position: absolute;
  right: -11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 22px;
  font-weight: 700;
  z-index: 1;
}

.range-flow .stage:last-child::after {
  content: none;
}

.range-band {
  padding: 14px 20px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0077aa);
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .range-flow {
    flex-direction: column;
  }

  .range-flow .stage {
    min-width: 0;
  }

  .range-flow .stage::after {
    content: "›";
    right: 50%;
    top: auto;
    bottom: -16px;
    transform: translateX(50%) rotate(90deg);
  }
}


/* Brand color adjustment: ANABAS main blue #009CD9 */
.section-label,
.eyebrow {
  color: var(--blue);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.btn-primary:hover {
  background: linear-gradient(135deg, #00aeef, var(--blue));
}

.btn-secondary {
  color: var(--blue-dark);
}

.problem-card::before,
.range-flow .stage::after {
  background: var(--blue);
}

.range-flow .stage::after {
  background: transparent;
  color: var(--blue);
}


/* BPO page visual alignment with existing ANABAS site */

/* ===== End shared modules from bpo/local.css ===== */

.svg-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.global-nav-list,
.service-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.global-nav-link,
.service-menu-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.global-nav-link:hover,
.service-menu:hover > .service-menu-label,
.service-menu:focus-within > .service-menu-label {
  border-bottom-color: var(--accent);
}

.service-menu {
  position: relative;
}

.service-menu-label {
  cursor: default;
}

.service-menu-list {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 30;
  width: min(720px, calc(100vw - 40px));
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  box-shadow: 0 18px 34px rgba(21, 53, 72, 0.12);
  transform: translateX(-50%);
}

.service-menu:hover .service-menu-list,
.service-menu:focus-within .service-menu-list {
  display: grid;
}

.service-menu-list a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: center;
  padding: 14px;
  border-bottom: none;
}

.service-menu-list a:hover {
  background: var(--soft-blue);
}

.service-menu-icon {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-menu-title {
  display: block;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.service-menu-text {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.mobile-menu-toggle {
  display: none;
}

@media (max-width: 760px) {
  .site-header--mobile-menu.is-menu-open {
    background: rgba(255, 255, 255, 0.94);
    border-bottom-color: rgba(230, 233, 236, 0.85);
    backdrop-filter: blur(10px);
  }

  .site-header--mobile-menu .header-inner {
    position: relative;
    min-height: 64px;
    flex-direction: row;
    align-items: center;
    padding: 10px 0;
  }

  .site-header--mobile-menu .mobile-menu-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: 0 0 auto;
    margin-left: auto;
    padding: 0;
    color: var(--navy);
    background: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
  }

  .site-header--mobile-menu .mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    display: block;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .site-header--mobile-menu .global-nav {
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    width: 100vw;
    display: none;
    padding: 10px 0 12px;
    background: rgba(255, 255, 255, 0.94);
    border-top: 1px solid rgba(230, 233, 236, 0.85);
    box-shadow: 0 18px 34px rgba(21, 53, 72, 0.1);
    backdrop-filter: blur(10px);
    transform: translateX(-50%);
  }

  .site-header--mobile-menu .global-nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: min(100% - 40px, 1120px);
    margin: 0 auto;
  }

  .site-header--mobile-menu .global-nav-link,
  .site-header--mobile-menu .service-menu-label {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 75, 109, 0.14);
  }

  .site-header--mobile-menu .service-menu-list {
    position: static;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    padding: 6px 0 8px;
    background: transparent;
    border: none;
    box-shadow: none;
    transform: none;
  }

  .site-header--mobile-menu .service-menu-list a {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 75, 109, 0.1);
  }

  .site-header--mobile-menu .service-menu-list a:hover {
    background: transparent;
  }

  .site-header--mobile-menu .service-menu-icon {
    width: 32px;
    height: 32px;
  }

  .site-header--mobile-menu .service-menu-title {
    font-size: 12px;
  }

  .site-header--mobile-menu .service-menu-text {
    font-size: 11px;
  }

  .site-header--mobile-menu.is-menu-open .global-nav {
    display: flex;
  }

  .site-header--mobile-menu.is-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header--mobile-menu.is-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

.site-header--mobile-menu.is-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

.top_contact_icon {
  width: 160px;
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #fff;
  font-size: 56px;
  line-height: 1;
}

.top_contact_icon--contact::before,
.top_contact_icon--access::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  mask: var(--top-contact-icon) center / contain no-repeat;
  -webkit-mask: var(--top-contact-icon) center / contain no-repeat;
}

.top_contact_icon--contact {
  --top-contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='100' viewBox='0 0 160 100' fill='none'%3E%3Cg stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 26h96v58H32z'/%3E%3Cpath d='M32 30l48 34 48-34'/%3E%3Cpath d='M32 84l34-30'/%3E%3Cpath d='M128 84 94 54'/%3E%3Cpath d='M54 20h52'/%3E%3Cpath d='M62 14h36'/%3E%3C/g%3E%3C/svg%3E");
}

.top_contact_icon--access {
  --top-contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='100' viewBox='0 0 160 100' fill='none'%3E%3Cg stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M68 17C59.716 17 53 23.716 53 32c0 11.249 15 24 15 24s15-12.751 15-24c0-8.284-6.716-15-15-15Z'/%3E%3Ccircle cx='68' cy='32' r='5.5'/%3E%3Cpath d='M35 58 100 58 112 84 28 84 35 58Z'/%3E%3Cpath d='M35 58 63 66 100 58'/%3E%3Cpath d='M28 84 63 66 90 84'/%3E%3Cpath d='M63 66 72 58'/%3E%3C/g%3E%3C/svg%3E");
}
