@charset "UTF-8";

:root {
  --bg: #f6fbf8;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --line: rgba(11, 31, 42, 0.1);
  --text: #0b1f2a;
  --muted: #597078;
  --ink: #0b1f2a;
  --mint: #ddfdf1;
  --aqua: #5ddcf3;
  --teal: #00d1b2;
  --blue: #2277ff;
  --lime: #c9f93d;
  --coral: #ff8f7c;
  --rose: #ff5b8f;
  --yellow: #ffd767;
  --lavender: #d8d3ff;
  --shadow-soft: 0 24px 70px rgba(8, 37, 50, 0.12);
  --shadow-card: 0 18px 36px rgba(8, 37, 50, 0.1);
  --shadow-pop: 0 22px 50px rgba(0, 209, 178, 0.22);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 999px;
  --container: min(1180px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  background:
    linear-gradient(125deg, rgba(201, 249, 61, 0.18), transparent 34%),
    linear-gradient(235deg, rgba(255, 91, 143, 0.1), transparent 32%),
    linear-gradient(180deg, #fafdff 0%, var(--bg) 45%, #ffffff 100%);
  color: var(--text);
  word-break: normal;
  overflow-wrap: break-word;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding-top: 18px;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  padding: 14px 18px;
  box-shadow: 0 18px 50px rgba(8, 37, 50, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.55rem;
  font-weight: 800;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.8rem;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.brand-mark svg {
  display: none;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
}

.site-nav a {
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a[aria-current="page"] {
  color: var(--teal);
  position: relative;
}

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--aqua));
}

.header-cta,
.button,
.contact-chip,
.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.header-cta,
.button-primary,
.mobile-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--ink) 0%, #00bfae 48%, #21b8ff 100%);
  box-shadow: 0 18px 30px rgba(8, 37, 50, 0.2), 0 10px 24px rgba(0, 209, 178, 0.18);
}

.button-secondary,
.contact-chip {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border: 1px solid rgba(11, 31, 42, 0.12);
}

.header-cta:hover,
.button:hover,
.contact-chip:hover,
.mobile-cta:hover,
.filter-pill:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 6px;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--text);
  border-radius: 999px;
  margin: 4px 0;
}

main {
  padding-bottom: 120px;
}

.hero {
  position: relative;
  padding: 44px 0 48px;
  isolation: isolate;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 24px 2% auto;
  height: min(58vw, 560px);
  background:
    linear-gradient(110deg, rgba(11, 31, 42, 0.06), rgba(0, 209, 178, 0.08)),
    repeating-linear-gradient(135deg, rgba(11, 31, 42, 0.08) 0 1px, transparent 1px 18px);
  border-radius: 40px;
  transform: skewY(-2deg);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  align-items: center;
  gap: 36px;
  min-height: calc(100svh - 128px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: #009f8d;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 span,
.section-heading h2 strong {
  color: var(--teal);
}

.hero-lead {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
  margin: 22px 0 0;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-proof {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-weight: 700;
}

.hero-proof strong {
  color: var(--teal);
  font-size: 1.35rem;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-right: -10px;
  color: #fff;
  font-weight: 800;
  border: 3px solid #fff;
}

.avatar-stack span:nth-child(1) { background: #4ecad7; }
.avatar-stack span:nth-child(2) { background: #7fbcff; }
.avatar-stack span:nth-child(3) { background: #ff9d87; }
.avatar-stack span:nth-child(4) { background: #12c2a8; }

.hero-media {
  position: relative;
  z-index: 1;
}

.hero-card {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(8, 37, 50, 0.18);
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.88);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 42, 0), rgba(11, 31, 42, 0.2));
  pointer-events: none;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}

.floating-chip {
  position: absolute;
  display: grid;
  gap: 2px;
  padding: 20px 22px;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(8, 37, 50, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.floating-chip strong {
  font-size: 1rem;
}

.floating-chip span {
  opacity: 0.92;
  font-size: 0.85rem;
}

.chip-support {
  top: 5%;
  right: 9%;
  background: linear-gradient(135deg, rgba(11, 31, 42, 0.92), rgba(0, 209, 178, 0.88));
}

.chip-connect {
  bottom: 18%;
  left: -4%;
  background: linear-gradient(135deg, rgba(34, 119, 255, 0.9), rgba(93, 220, 243, 0.92));
}

.chip-upgrade {
  right: -4%;
  bottom: 22%;
  background: linear-gradient(135deg, rgba(255, 91, 143, 0.92), rgba(255, 143, 124, 0.92));
}

.hero-blob { display: none; }

.section-wave {
  position: relative;
}

.section-wave::after {
  content: "";
  position: absolute;
  inset: auto -2% -56px;
  height: 120px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.78)),
    linear-gradient(90deg, rgba(201, 249, 61, 0.32), rgba(93, 220, 243, 0.24), rgba(255, 91, 143, 0.14));
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
  opacity: 0.55;
  pointer-events: none;
}

section {
  position: relative;
  padding: 64px 0;
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 48px auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.15;
}

.section-heading p:not(.section-kicker) {
  max-width: 800px;
  margin: 18px auto 0 auto;
  color: var(--muted);
  line-height: 1.85;
}

.vision-grid,
.business-grid,
.flow-grid {
  display: grid;
  gap: 22px;
}

.vision-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.vision-card,
.business-card,
.job-card,
.jobs-side,
.metric-card,
.benefit-card,
.flow-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 31, 42, 0.08);
  box-shadow: var(--shadow-card);
}

.vision-card {
  border-radius: 28px;
  padding: 28px;
  min-height: 230px;
}

.vision-index,
.flow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint), rgba(93, 220, 243, 0.18));
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 900;
}

.vision-card h3,
.business-card h3,
.job-card h3,
.metric-card h3,
.benefit-card h3,
.flow-card h3 {
  margin: 18px 0 12px;
  font-size: 1.25rem;
  line-height: 1.35;
}

.vision-card p,
.business-card p,
.job-card p,
.benefit-card p,
.flow-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.vision-card-message {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(221, 253, 241, 0.78));
}

.handwritten {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  color: #10bfa8;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.business-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 30px;
}

.business-card {
  position: relative;
  border-radius: 24px;
  padding: 18px 18px 26px;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.business-card > * {
  position: relative;
  z-index: 1;
}

.business-card:hover,
.job-card:hover,
.mini-card:hover,
.service-panel:hover,
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 209, 178, 0.24);
  box-shadow: 0 24px 54px rgba(8, 37, 50, 0.13);
}

.business-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
}

.tone-mint::before { background: linear-gradient(180deg, rgba(221, 253, 241, 0.9), transparent 70%); }
.tone-yellow::before { background: linear-gradient(180deg, rgba(255, 235, 176, 0.75), transparent 70%); }
.tone-blue::before { background: linear-gradient(180deg, rgba(180, 239, 255, 0.75), transparent 70%); }
.tone-lavender::before { background: linear-gradient(180deg, rgba(216, 211, 255, 0.75), transparent 70%); }
.tone-coral::before { background: linear-gradient(180deg, rgba(255, 214, 206, 0.78), transparent 70%); }
.tone-peach::before { background: linear-gradient(180deg, rgba(255, 231, 196, 0.78), transparent 70%); }

.business-icon {
  position: relative;
  width: 112px;
  min-height: 46px;
  padding: 0 14px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(11, 31, 42, 0.06);
}

.business-icon-label {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.business-card .business-point-badge {
  width: fit-content !important;
  min-width: 118px !important;
  height: auto !important;
  min-height: 0 !important;
  display: inline-flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  margin: -34px 0 24px !important;
  padding: 9px 14px 10px 16px !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, var(--ink) 0%, #123842 100%) !important;
  box-shadow: 0 16px 30px rgba(8, 37, 50, 0.2) !important;
  overflow: hidden;
}

.business-card .business-point-badge::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--teal);
}

.business-card .business-point-badge .business-icon-label {
  display: grid;
  gap: 1px;
  color: #ffffff;
  line-height: 1.1;
}

.business-card .business-point-badge .business-icon-label small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 800;
}

.business-card .business-point-badge .business-icon-label strong {
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 900;
}

.business-card-photo {
  aspect-ratio: 4 / 3;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(8, 37, 50, 0.12);
}

.business-card-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.jobs-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: end;
}

.job-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pill {
  border: 1px solid rgba(17, 40, 36, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  border-radius: 999px;
  min-height: 46px;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
}

.filter-pill.is-active {
  background: linear-gradient(135deg, var(--teal), var(--aqua));
  color: #fff;
  box-shadow: 0 12px 20px rgba(32, 184, 249, 0.18);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(240px, 0.88fr);
  gap: 18px;
  margin-top: 28px;
}

.job-card,
.jobs-side {
  border-radius: 28px;
  padding: 26px 22px;
}

.job-company,
.jobs-side-label {
  margin: 0 0 14px;
  color: var(--teal);
  font-weight: 800;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.job-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(221, 253, 241, 0.9);
  color: #0a8671;
  font-size: 0.82rem;
  font-weight: 800;
}

.job-meta {
  display: grid;
  gap: 10px;
  margin: 0;
}

.job-meta div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.job-meta dt {
  color: var(--muted);
}

.job-meta dd {
  margin: 0;
  font-weight: 800;
}

.job-note {
  margin-top: 18px;
}

.jobs-side {
  background:
    linear-gradient(135deg, rgba(11, 31, 42, 0.92), rgba(0, 168, 151, 0.88)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(221, 253, 241, 0.92));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.jobs-side p,
.jobs-side-label {
  color: rgba(255, 255, 255, 0.88);
}

.jobs-side .button-secondary {
  color: var(--ink);
}

.image-mosaic,
.section-photo-row,
.wide-photo {
  display: grid;
  gap: 18px;
  margin: 34px 0 38px;
}

.image-mosaic {
  grid-template-columns: 1.15fr 0.85fr 0.72fr;
  align-items: stretch;
}

.section-photo-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.business-grid > .image-mosaic,
.business-grid > .section-photo-row,
.custom-skills-grid > .wide-photo {
  grid-column: 1 / -1;
}

.photo-tile,
.wide-photo {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 56px rgba(8, 37, 50, 0.13);
  background: var(--ink);
}

.photo-tile::after,
.wide-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 42, 0), rgba(11, 31, 42, 0.22));
  pointer-events: none;
}

.photo-tile img,
.wide-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.photo-tile-large {
  min-height: 330px;
}

.wide-photo {
  min-height: 360px;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: start;
}

.metric-grid,
.benefit-list {
  display: grid;
  gap: 18px;
}

.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.metric-card,
.benefit-card {
  border-radius: 28px;
  padding: 24px;
}

.metric-ring {
  width: 116px;
  height: 116px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, #fff 58%, transparent 59%),
    conic-gradient(var(--teal) 0 280deg, rgba(0, 209, 178, 0.15) 280deg 360deg);
}

.metric-ring span {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--teal);
}

.metric-card h3 {
  margin: 0;
  text-align: center;
  font-size: 1rem;
}

.benefit-card {
  padding: 26px 28px;
}

.flow-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 28px;
}

.flow-card {
  border-radius: 28px;
  padding: 24px;
}

.flow-card p {
  margin-top: 14px;
}

.cta-section {
  padding-bottom: 24px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  gap: 26px;
  border-radius: 36px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(11, 31, 42, 0.04), rgba(0, 209, 178, 0.08)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(221, 253, 241, 0.9));
  box-shadow: 0 28px 80px rgba(8, 37, 50, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.86);
}

.cta-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 28px;
}

.cta-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.15;
}

.cta-copy > p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.9;
}

.contact-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  color: var(--muted);
}

.site-footer {
  padding: 32px 0 100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 32px;
  align-items: start;
  padding: 32px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 251, 248, 0.92));
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(11, 31, 42, 0.08);
}

.footer-copy {
  max-width: 22rem;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.footer-links {
  display: grid;
  gap: 14px;
}

.footer-links a,
.footer-info p {
  color: var(--muted);
}

.footer-info {
  display: grid;
  gap: 10px;
}

.footer-info p {
  margin: 0;
  line-height: 1.75;
}

.mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.job-card.is-hidden {
  display: none;
}

.subpage-main {
  padding-top: 12px;
}

.page-hero {
  position: relative;
  padding: 30px 0 44px;
  isolation: isolate;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.page-hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 4.6vw, 4.8rem);
  line-height: 1.05;
}

.page-hero-media .hero-card img {
  aspect-ratio: 4 / 2.8;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--muted);
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--muted);
}

.breadcrumbs span:last-child {
  color: var(--text);
}

.breadcrumbs span:last-child::before {
  content: "/";
  margin-right: 14px;
  color: rgba(19, 40, 42, 0.35);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 26px;
  align-items: start;
}

.mini-card-grid,
.profile-grid,
.timeline-grid,
.team-grid,
.mvv-grid,
.category-grid,
.faq-grid,
.service-stack {
  display: grid;
  gap: 18px;
}

.mini-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-card,
.profile-card,
.timeline-card,
.team-card,
.category-card,
.faq-item,
.service-panel,
.search-panel {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 40, 36, 0.06);
  box-shadow: var(--shadow-card);
}

.mini-card,
.profile-card,
.timeline-card,
.team-card,
.category-card,
.service-panel {
  border-radius: 28px;
  padding: 24px;
}

.mini-card h3,
.team-card h3,
.timeline-card h3,
.category-card h3,
.service-panel h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.mini-card p,
.team-card p,
.timeline-card p,
.category-card p,
.service-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.mvv-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
}

.avatar-mint { background: linear-gradient(135deg, #00d1b2, #66e8ef); }
.avatar-blue { background: linear-gradient(135deg, #57bdf7, #7cdbff); }
.avatar-coral { background: linear-gradient(135deg, #ff8f7c, #ffb27b); }
.avatar-yellow { background: linear-gradient(135deg, #ffd767, #ffe7aa); color: #7a5a00; }

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

.profile-list {
  display: grid;
  gap: 18px;
  margin: 0;
}

.profile-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(17, 40, 36, 0.08);
}

.profile-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.profile-list dt {
  color: var(--muted);
  font-weight: 800;
}

.profile-list dd {
  margin: 0;
  font-weight: 700;
  line-height: 1.7;
}

.timeline-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 28px;
}

.timeline-card {
  position: relative;
}

.timeline-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--teal);
  font-weight: 900;
}

.service-stack {
  grid-template-columns: 1fr;
}

.service-panel {
  display: grid;
  gap: 16px;
}

.service-panel-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-panel-head h3 {
  margin: 0;
}

.badge-list,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.badge-list li,
.soft-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(221, 253, 241, 0.9);
  color: #0a8671;
  font-weight: 800;
  font-size: 0.88rem;
}

.search-panel {
  border-radius: 30px;
  padding: 24px;
}

.search-panel-top {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
}

.search-field {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

.search-field input,
.search-field select {
  width: 100%;
  min-height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(17, 40, 36, 0.08);
  background: rgba(255, 255, 255, 0.95);
  padding: 0 18px;
  color: var(--text);
}

.filter-group {
  margin-top: 18px;
}

.chip-row {
  margin-top: 18px;
}

.jobs-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.text-link {
  color: var(--teal);
  font-weight: 800;
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.category-card {
  text-align: center;
}

.category-card p {
  color: var(--teal);
  font-weight: 800;
}

.flow-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-grid-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faq-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
}

.faq-item {
  border-radius: 24px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 22px 24px;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
  font-size: 1.5rem;
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.form-layout,
.contact-info-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 40, 36, 0.06);
  box-shadow: var(--shadow-card);
}

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

.form-field {
  display: grid;
  gap: 10px;
}

.form-field span {
  color: var(--muted);
  font-weight: 800;
}

.form-field em {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(0, 209, 178, 0.12);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1.4;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(17, 40, 36, 0.08);
  background: rgba(255, 255, 255, 0.95);
  padding: 16px 18px;
  color: var(--text);
  resize: vertical;
}

.form-field textarea {
  min-height: 160px;
}

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

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.7;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--teal);
  flex-shrink: 0;
}

.form-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* スマホ表示のヘッダー調整（メニューを右に寄せる） */
@media screen and (max-width: 768px) {
  .header,
  .header > div,
  .header-inner {
    display: flex !important;
    justify-content: space-between !important;
    width: 100% !important;
  }
}

@media (max-width: 1200px) {
  .business-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .jobs-side {
    grid-column: span 3;
  }

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

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

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

  .jobs-grid--four,
  .stat-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-layout,
  .contact-info-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding-top: 12px;
  }

  .header-inner {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
  }

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

  .header-cta {
    display: none;
  }

  .hero-grid,
  .support-grid,
  .cta-panel,
  .page-hero-grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-media {
    order: -1;
  }

  .vision-grid,
  .business-grid,
  .image-mosaic,
  .section-photo-row,
  .metric-grid,
  .flow-grid,
  .jobs-grid,
  .mvv-grid,
  .mini-card-grid,
  .profile-grid,
  .category-grid,
  .faq-grid,
  .jobs-grid--four,
  .flow-grid--four,
  .stat-grid-wide {
    grid-template-columns: 1fr 1fr;
  }

  .vision-card-message,
  .jobs-side {
    grid-column: span 2;
  }

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

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

  .photo-tile-large,
  .wide-photo {
    min-height: 280px;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 24px, 100%);
  }

  body {
    background:
      linear-gradient(125deg, rgba(201, 249, 61, 0.16), transparent 36%),
      linear-gradient(180deg, #fcffff 0%, #f7fffd 100%);
  }

  .brand strong {
    font-size: 1.3rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .hero h1,
  .page-hero-copy h1,
  .section-heading h2,
  .cta-copy h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .vision-grid,
  .business-grid,
  .image-mosaic,
  .section-photo-row,
  .metric-grid,
  .flow-grid,
  .jobs-grid,
  .footer-grid,
  .mini-card-grid,
  .profile-grid,
  .timeline-grid,
  .team-grid,
  .mvv-grid,
  .category-grid,
  .faq-grid,
  .jobs-grid--four,
  .flow-grid--four,
  .stat-grid-wide {
    grid-template-columns: 1fr;
  }

  .vision-card-message,
  .jobs-side {
    grid-column: auto;
  }

  .jobs-head {
    align-items: stretch;
    flex-direction: column;
  }

  .search-panel-top {
    grid-template-columns: 1fr;
  }

  .profile-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .floating-chip {
    position: static;
    margin-top: 12px;
  }

  .hero-media {
    display: grid;
  }

  .hero-card img {
    aspect-ratio: 4 / 4.8;
  }

  .photo-tile,
  .photo-tile-large,
  .wide-photo {
    min-height: 220px;
    border-radius: 20px;
  }

  .cta-panel,
  .footer-grid {
    padding: 20px;
  }

  .cta-image img {
    min-height: 280px;
  }

  .mobile-cta {
    display: inline-flex;
  }

  main {
    padding-bottom: 150px;
  }
}

/* =========================================
   ここから下は新しく追加した各ページの専用デザインです
========================================= */

/* --- SERVICES / COMPANY PAGE: モダン統計カード --- */
.stat-card-modern { background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,251,248,0.92)); border: 1px solid rgba(11, 31, 42, 0.08); box-shadow: var(--shadow-card); border-radius: 22px; padding: 40px 24px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.stat-card-modern:hover { transform: translateY(-8px); box-shadow: 0 22px 46px rgba(8,37,50,0.13); }
.stat-icon-wrapper { width: 80px; height: 80px; margin: 0 auto 20px; background: linear-gradient(135deg, var(--ink), #00bfae); border-radius: 22px; display: grid; place-items: center; color: #fff; box-shadow: 0 14px 30px rgba(8,37,50,0.18); }
.stat-number-modern { font-size: 2.8rem; font-weight: 900; background: linear-gradient(135deg, var(--teal), var(--aqua)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.2; margin-bottom: 8px; }
.stat-number-modern span { font-size: 1.6rem; }
.stat-card-modern h3 { font-size: 1.15rem; color: var(--text); margin: 0 0 12px; }
.stat-card-modern p { font-size: 0.9rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* --- CONTACT PAGE: 連絡先比率 --- */
.contact-info-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 26px; }
@media (max-width: 980px) { .contact-info-layout { grid-template-columns: 1fr; } }

/* --- JOBS PAGE: 比較表 --- */
.comparison-table-wrapper { overflow-x: auto; margin: 40px auto; border-radius: 22px; box-shadow: var(--shadow-card); border: 1px solid rgba(11, 31, 42, 0.08); background: #fff; }
.comparison-table { width: 100%; border-collapse: collapse; text-align: left; min-width: 800px; }
.comparison-table th, .comparison-table td { padding: 24px; border-bottom: 1px solid #e2e8f0; line-height: 1.7; vertical-align: top; }
.comparison-table th { background-color: #f6fbf8; color: var(--ink); font-weight: 800; font-size: 1rem; }
.comparison-table td { font-size: 0.95rem; color: #475569; }
.comparison-table th:nth-child(1), .comparison-table td:nth-child(1) { width: 10%; white-space: nowrap; }
.comparison-table th:nth-child(2), .comparison-table td:nth-child(2), .comparison-table th:nth-child(3), .comparison-table td:nth-child(3) { width: 22%; }
.comparison-table th:last-child, .comparison-table td:last-child { width: 46%; }
.comparison-table th:last-child { background: linear-gradient(135deg, var(--ink), #00bfae); color: #fff; font-size: 1.1rem; }
.comparison-table td:last-child { background-color: #f2fefa; border-left: 2px solid var(--teal); border-right: 2px solid var(--teal); }
.table-highlight { display: block; color: var(--teal); font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }

/* --- INDEX/JOBS: ロードマップ --- */
.roadmap-steps-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; margin-top: 30px;}
@media (min-width: 980px) { .roadmap-steps-container::before { content: ""; position: absolute; top: 45px; left: 10%; right: 10%; height: 4px; background: linear-gradient(90deg, var(--ink), var(--teal), var(--rose)); z-index: 0; border-radius: 2px; opacity: 0.5; } }
.roadmap-step-card { background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,251,248,0.94)); padding: 40px 30px; border-radius: 22px; box-shadow: var(--shadow-card); position: relative; z-index: 1; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid rgba(11,31,42,0.08); }
.roadmap-step-card:hover { transform: translateY(-8px); box-shadow: 0 24px 54px rgba(8,37,50,0.14); }
.step-icon { width: 90px; height: 90px; margin: 0 auto 20px; background: #fff; border-radius: 24px; display: grid; place-items: center; box-shadow: 0 14px 28px rgba(8,37,50,0.1); }
.step-icon svg { width: 40px; height: 40px; }
.step-1 .step-icon { border: 4px solid #00d1b2; color: #00d1b2; }
.step-2 .step-icon { border: 4px solid #5ddcf3; color: #5ddcf3; }
.step-3 .step-icon { border: 4px solid #ff8f7c; color: #ff8f7c; }
.roadmap-badge { display: inline-block; padding: 6px 16px; border-radius: 50px; color: #fff; font-size: 0.85rem; font-weight: bold; margin-bottom: 15px; letter-spacing: 0.05em; }
.step-1 .roadmap-badge { background: var(--teal) !important; }
.step-2 .roadmap-badge { background: var(--aqua) !important; }
.step-3 .roadmap-badge { background: var(--coral) !important; }
.roadmap-step-card h3 { font-size: 1.2rem; color: var(--ink); margin-bottom: 15px; line-height: 1.5; }
.roadmap-step-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; text-align: left; }
@media (max-width: 980px) { .roadmap-steps-container { grid-template-columns: 1fr; } }

/* =========================================
   POPULAR COURSES (未来のスキルカード)
========================================= */
.custom-skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.skill-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,251,248,0.92));
  padding: 35px 30px;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(11,31,42,0.08);
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}
.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(8,37,50,0.13);
  border-color: rgba(0,209,178,0.24);
}
.skill-card h3 {
  color: var(--teal);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}
.skill-card p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 20px;
}
.skill-future {
  display: inline-block;
  background: rgba(11,31,42,0.04);
  color: var(--ink);
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  width: 100%;
  border-left: 4px solid var(--teal);
}
.skill-future span {
  color: var(--teal);
  display: block;
  font-size: 0.75rem;
  margin-bottom: 4px;
}

/* =========================================
   補足説明テキスト (jobs.html 等)
========================================= */
.explanation-text {
  background: linear-gradient(135deg, rgba(11,31,42,0.04), rgba(0,209,178,0.08));
  padding: 30px;
  border-radius: 22px;
  border: 1px solid rgba(11,31,42,0.08);
}

.explanation-text p:last-child {
  margin-bottom: 0;
}

/* =========================================
   FB反映：見出しのエメラルドグラデーション化
========================================= */
.section-heading h2,
.cta-copy h2,
.sns-banner h2 {
  background: linear-gradient(135deg, var(--ink) 0%, #00bfae 48%, #21b8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--teal); 
}

/* =========================================
   SNSバナー (トップページ用) - 幅をカードと合わせる版
========================================= */
.sns-banner-section {
  padding: 20px 0 80px;
}
.sns-banner {
  width: 100%; 
  margin: 0 auto;
  border-radius: 28px;
  padding: 56px 32px; 
  text-align: center;
  background: linear-gradient(135deg, rgba(11, 31, 42, 0.94), rgba(0, 168, 151, 0.9));
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.sns-banner h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  background: linear-gradient(135deg, #ffffff 0%, #c9f93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
}

.sns-banner .section-kicker {
  color: var(--lime);
}

.sns-banner p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin: 0 auto 28px;
  max-width: 600px;
}
.sns-actions {
  display: flex;
  justify-content: center;
}

.text-normal {
  background: none !important;
  -webkit-text-fill-color: initial !important;
  color: #1e293b !important;
}

/* PC用とスマホ用の改行コントロール */
@media (max-width: 768px) {
  .pc-br { display: none; }
}
@media (min-width: 769px) {
  .sp-br { display: none; }
}

/* ==================================================
   FV スライダー＆回転アニメーション設定（完全修正版）
================================================== */

.fv-visual-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1; 
  max-width: 480px; 
  margin: 0 auto;
}

.fv-slider {
  position: relative;
  width: 100%;
  height: 100%; 
  overflow: hidden;
  border-radius: 24px;
}

.fv-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeSlider 15s infinite;
}
.fv-slider img:nth-child(1) { animation-delay: 0s; }
.fv-slider img:nth-child(2) { animation-delay: 5s; }
.fv-slider img:nth-child(3) { animation-delay: 10s; }

@keyframes fadeSlider {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  33%  { opacity: 1; }
  43%  { opacity: 0; }
  100% { opacity: 0; }
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%; 
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: rotateOrbit 20s linear infinite;
  pointer-events: none;
  z-index: 2;
}

.orbit-box {
  position: absolute;
  pointer-events: auto;
  margin-top: -35px; 
  margin-left: -90px; 
}

.box1 { top: 0%; left: 50%; }
.box2 { top: 75%; left: 93.3%; }
.box3 { top: 75%; left: 6.7%; }

.orbit-content {
  animation: counterRotate 20s linear infinite;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin: 0 !important;
}

@keyframes rotateOrbit {
  0%   { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes counterRotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

.orbit-content strong {
  white-space: nowrap !important; 
  letter-spacing: -0.5px; 
}
.orbit-content span {
  white-space: nowrap !important; 
}

@media (max-width: 768px) {
  .fv-visual-wrapper {
    max-width: 280px; 
    margin-top: 40px; 
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .orbit-box {
    transform: scale(0.85); 
  }

  .orbit-content strong {
    font-size: 13px !important; 
    white-space: nowrap !important; 
    letter-spacing: -0.5px; 
  }
  
  .orbit-content span {
    font-size: 10px !important; 
    white-space: nowrap !important; 
  }
}

/* ==================================================
   6つのスキルカードのレイアウト上書き（3列×2段＋下部バナー）
================================================== */
@media (min-width: 1201px) {
  .jobs-grid.jobs-grid--six {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  
  .jobs-grid.jobs-grid--six .jobs-side {
    grid-column: 1 / -1 !important; 
    align-items: center; 
    text-align: center;
  }
}

/* --- 比較表ヘッダーの小さな文字を白字にする --- */
.comparison-table th:last-child span,
.comparison-table th:last-child small {
  color: #ffffff !important;
  background: transparent !important; 
  opacity: 0.9; 
  margin-left: 8px; 
}

/* --- 追加：事業内容アイコンの枠とサイズを綺麗に整える --- */
.business-icon {
  width: 80px !important; /* 枠の横幅をゆとりのあるサイズに */
  height: 80px !important; /* 枠の縦幅（横幅と同じにして正円に） */
  border-radius: 50% !important; /* 完全に綺麗な丸にする */
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background-color: #ffffff !important;
  margin: -40px auto 24px !important; /* 写真の上に半分重ねるための位置調整 */
  box-shadow: 0 4px 12px rgba(11, 31, 42, 0.08) !important; /* 枠にうっすら影をつける */
  position: relative;
  z-index: 2;
  flex-shrink: 0 !important;
}

/* 中のアイコン画像のサイズ調整 */
.business-icon img {
  width: 44px !important; /* アイコンを枠より少し小さくして余白を作る */
  height: 44px !important;
  object-fit: contain !important;
}
