:root {
  --ink: #102a2a;
  --muted: #5f716f;
  --green: #0b5c55;
  --green-dark: #073f3b;
  --green-soft: #dceee9;
  --lime: #d6e881;
  --cream: #f6f3ea;
  --sand: #e9e1cf;
  --white: #ffffff;
  --line: rgba(16, 42, 42, 0.14);
  --shadow: 0 24px 70px rgba(7, 63, 59, 0.1);
  --b-bg: var(--cream);
  --b-surface: var(--white);
  --b-ink: var(--ink);
  --b-muted: var(--muted);
  --b-primary: var(--green);
  --b-primary-soft: var(--green-soft);
  --b-accent: var(--lime);
  --b-font: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-b {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--b-font);
  font-feature-settings: "palt";
  text-rendering: optimizeLegibility;
}

body.site-b > * {
  position: relative;
}

a {
  color: inherit;
}

::selection {
  background: var(--lime);
  color: var(--green-dark);
}

.home-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.home-section {
  padding: 112px 0;
}

.home-eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.home-section-head {
  max-width: 720px;
  margin-bottom: 52px;
}

.home-section-head--center {
  margin-inline: auto;
  text-align: center;
}

.home-section-head h2,
.home-check h2,
.home-final h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.home-section-head > p:last-child,
.home-muted {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.95;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(16, 42, 42, 0.08);
  background: rgba(246, 243, 234, 0.92);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.site-brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: none;
  place-items: center;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}

.site-brand__name {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.site-brand__name small {
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.site-brand__image {
  display: block;
  width: auto;
  height: 48px;
  object-fit: contain;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-header__nav > a:not(.site-header__cta) {
  color: #425a58;
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
}

.site-header__cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0 22px;
  text-decoration: none;
}

/* Hero */
.home-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 18%, rgba(214, 232, 129, 0.45), transparent 28%),
    linear-gradient(135deg, #f6f3ea 0%, #eef1df 100%);
}

.home-hero::before {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(11, 92, 85, 0.12);
  border-radius: 50%;
  content: "";
  right: -120px;
  top: -170px;
}

.home-hero--image {
  display: flex;
  min-height: max(790px, calc(100svh - 72px));
  flex-direction: column;
  justify-content: flex-end;
  background: #f6f3ea;
  isolation: isolate;
}

.home-hero--image::before {
  display: none;
}

.home-hero__backdrop,
.home-hero__shade {
  position: absolute;
  inset: 0;
}

.home-hero__backdrop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  z-index: -3;
}

.home-hero__shade {
  background:
    linear-gradient(90deg, rgba(246, 243, 234, 0.99) 0%, rgba(246, 243, 234, 0.95) 38%, rgba(246, 243, 234, 0.52) 58%, rgba(246, 243, 234, 0.08) 79%),
    linear-gradient(0deg, rgba(246, 243, 234, 0.78) 0%, transparent 32%);
  z-index: -2;
}

.home-hero__overlay {
  display: flex;
  min-height: 600px;
  align-items: center;
  padding: 40px 0 80px;
}

.home-hero__copy {
  width: min(800px, 70%);
}

.home-hero--image h1 {
  font-size: clamp(2.85rem, 4.6vw, 4rem);
}

.home-hero__badges {
  display: flex;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 8px;
}

.home-hero__badges span {
  border: 1px solid rgba(11, 92, 85, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--green-dark);
  font-size: 0.69rem;
  font-weight: 800;
  padding: 8px 13px;
  box-shadow: 0 7px 20px rgba(7, 63, 59, 0.05);
  backdrop-filter: blur(8px);
}

.home-hero__benefits {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1px;
  border: 1px solid rgba(16, 42, 42, 0.08);
  border-bottom: 0;
  border-radius: 25px 25px 0 0;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 -12px 45px rgba(7, 63, 59, 0.08);
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  padding: 10px;
  backdrop-filter: blur(18px);
}

.home-hero__benefits > div {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 13px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px;
}

.home-hero__benefits > div:nth-child(4n) {
  border-right: 0;
}

.home-hero__benefits > div:nth-child(n+5) {
  border-bottom: 0;
}

.home-hero__benefits > div > span {
  display: grid;
  width: 44px;
  height: 44px;
  flex: none;
  place-items: center;
  border-radius: 15px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
}

.home-hero__benefits svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.home-hero__benefits > div:nth-child(even) > span {
  background: #edf1d6;
}

.home-hero__benefits p {
  display: flex;
  margin: 0;
  flex-direction: column;
  gap: 5px;
}

.home-hero__benefits strong {
  font-size: 0.76rem;
  line-height: 1.45;
}

.home-hero__benefits small {
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.45;
}

.home-hero__grid {
  display: grid;
  min-height: 730px;
  align-items: center;
  gap: 70px;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  padding-block: 72px 58px;
}

.home-kicker {
  display: inline-flex;
  margin: 0 0 24px;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.home-kicker span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #66a161;
  box-shadow: 0 0 0 6px rgba(102, 161, 97, 0.14);
}

.home-hero h1 {
  margin: 0;
  font-size: clamp(2.85rem, 5.7vw, 5.35rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.1;
}

.home-hero h1 em {
  position: relative;
  color: var(--green);
  font-style: normal;
}

.home-hero h1 em::after {
  position: absolute;
  height: 12px;
  border-radius: 999px;
  background: var(--lime);
  content: "";
  inset: auto -4px 2px;
  z-index: -1;
}

.home-hero__lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: #455c5a;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.95;
}

.home-hero__cta {
  max-width: 600px;
  margin-top: 32px;
}

.home-hero__cta > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.home-trust-list {
  display: flex;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.home-trust-list li {
  display: flex;
  min-width: 120px;
  flex-direction: column;
  gap: 4px;
  border-left: 1px solid var(--line);
  padding: 0 18px;
}

.home-trust-list li:first-child {
  border-left: 0;
  padding-left: 0;
}

.home-trust-list strong {
  font-size: 1.02rem;
  font-weight: 900;
}

.home-trust-list span {
  color: var(--muted);
  font-size: 0.68rem;
}

.home-hero__panel {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 30px;
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: rotate(1deg);
}

.home-hero__visual {
  position: relative;
  z-index: 1;
}

.home-hero__visual::before {
  position: absolute;
  z-index: -1;
  border-radius: 34px;
  background: var(--lime);
  content: "";
  inset: 24px -18px -20px 28px;
  transform: rotate(2deg);
}

.home-hero__visual > img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  border: 8px solid rgba(255,255,255,0.88);
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(7, 63, 59, 0.18);
  object-fit: cover;
}

.home-hero__visual-card {
  position: absolute;
  right: -24px;
  bottom: 26px;
  display: grid;
  width: 240px;
  gap: 7px;
  border: 1px solid rgba(16,42,42,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.94);
  grid-template-columns: repeat(3, 1fr);
  padding: 16px;
  box-shadow: 0 18px 45px rgba(7,63,59,0.14);
  backdrop-filter: blur(12px);
}

.home-hero__visual-card span {
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.64rem;
  font-weight: 800;
  padding: 6px 4px;
  text-align: center;
}

.home-hero__visual-card strong {
  font-size: 0.78rem;
  grid-column: 1 / -1;
  text-align: center;
}

.home-hero__panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 24px 26px;
}

.home-hero__panel-head p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 800;
}

.home-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #55a263;
  box-shadow: 0 0 0 6px rgba(85, 162, 99, 0.12);
}

.home-hero__panel ul {
  display: grid;
  margin: 0;
  padding: 16px;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  list-style: none;
}

.home-hero__panel li {
  display: flex;
  min-height: 102px;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(16, 42, 42, 0.08);
  border-radius: 18px;
  background: #fff;
  padding: 15px;
}

.home-hero__panel li > span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: none;
  place-items: center;
  border-radius: 13px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
}

.home-hero__panel li p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.6;
}

.home-hero__panel li small {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 500;
}

.home-hero__panel-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--green);
  color: #fff;
  padding: 21px 24px;
}

.home-hero__panel-note span {
  font-size: 0.72rem;
}

.home-hero__panel-note a {
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.home-hero__disclaimer {
  border-top: 1px solid rgba(16, 42, 42, 0.08);
  background: rgba(255,255,255,0.45);
  color: var(--muted);
  font-size: 0.67rem;
  padding: 11px 0;
  text-align: center;
}

/* Concerns */
.home-concerns {
  overflow: hidden;
  background: #092f2c;
  color: #fff;
  padding: 96px 0;
}

.home-concerns .home-eyebrow {
  color: var(--lime);
}

.home-concerns__head {
  display: grid;
  align-items: end;
  gap: 72px;
  grid-template-columns: 1.05fr 0.95fr;
}

.home-concerns__head h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 4.3rem);
  letter-spacing: -0.055em;
  line-height: 1.18;
}

.home-concerns__head > p {
  margin: 0 0 8px;
  color: rgba(255,255,255,0.64);
  font-size: 0.92rem;
  line-height: 2;
}

.home-concerns__head strong {
  color: var(--lime);
}

.home-concerns__grid {
  display: grid;
  margin-top: 52px;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

.home-concerns__grid article {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  background: rgba(255,255,255,0.07);
  padding: 28px;
  transition: background 180ms ease, transform 180ms ease;
}

.home-concerns__grid article::after {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(214,232,129,0.16);
  border-radius: 50%;
  content: "";
  right: -45px;
  top: -42px;
}

.home-concerns__grid article:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-4px);
}

.home-concerns__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 17px;
  background: var(--lime);
  color: var(--green-dark);
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

.home-concerns__icon svg,
.home-hero__panel li > span svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-concerns__icon circle,
.home-hero__panel li > span circle {
  fill: currentColor;
  stroke: none;
}

.home-concerns__grid small {
  display: block;
  margin-top: 34px;
  color: var(--lime);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.home-concerns__grid h3 {
  margin: 12px 0 14px;
  font-size: 1rem;
  line-height: 1.65;
}

.home-concerns__grid p {
  margin: 0;
  color: rgba(255,255,255,0.58);
  font-size: 0.74rem;
  line-height: 1.8;
}

.home-concerns__answer {
  display: flex;
  margin-top: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 28px;
}

.home-concerns__answer > span {
  color: rgba(255,255,255,0.72);
  font-size: 0.84rem;
}

.home-concerns__answer a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 28px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0 22px;
  text-decoration: none;
}

/* Consultant */
.home-staff {
  position: relative;
  overflow: hidden;
  background: #f4f1e8;
}

.home-staff::before {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(214, 232, 129, 0.34);
  content: "";
  right: -180px;
  top: -240px;
  filter: blur(2px);
}

.home-staff__lead {
  position: relative;
  display: grid;
  align-items: end;
  gap: 72px;
  grid-template-columns: 1fr 0.9fr;
  margin-bottom: 46px;
}

.home-staff__lead h2 {
  margin: 12px 0 0;
  color: var(--green-dark);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.055em;
  line-height: 1.25;
}

.home-staff__lead > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 2;
}

.home-staff__grid {
  position: relative;
  display: grid;
  align-items: start;
  gap: 18px;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
}

.consultant-card {
  display: flex;
  min-height: 720px;
  flex-direction: column;
  border-radius: 30px;
  background: var(--green-dark);
  color: #fff;
  padding: 38px;
  box-shadow: 0 28px 70px rgba(7, 53, 48, 0.15);
}

.consultant-card__portrait {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 18%, rgba(214,232,129,0.28), transparent 28%),
    linear-gradient(145deg, #e9eddd, #cbd7c4);
}

.consultant-card__portrait > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.consultant-card__photo-placeholder {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--green-dark);
  text-align: center;
}

.consultant-card__photo-placeholder > span {
  position: relative;
  display: block;
  width: 104px;
  height: 104px;
  margin-bottom: 17px;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255,255,255,0.72);
}

.consultant-card__photo-placeholder > span::before {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #79968c;
  content: "";
  left: 35px;
  top: 21px;
}

.consultant-card__photo-placeholder > span::after {
  position: absolute;
  width: 72px;
  height: 52px;
  border-radius: 50% 50% 0 0;
  background: #79968c;
  content: "";
  bottom: -9px;
  left: 16px;
}

.consultant-card__photo-placeholder strong {
  font-size: 0.88rem;
}

.consultant-card__photo-placeholder small {
  margin-top: 5px;
  color: rgba(7,53,48,0.62);
  font-size: 0.64rem;
}

.consultant-card__photo-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--green-dark);
  font-size: 0.68rem;
  font-weight: 900;
  padding: 9px 13px;
  box-shadow: 0 8px 20px rgba(7,53,48,0.16);
}

.consultant-card__identity {
  display: flex;
  margin-top: 24px;
  align-items: center;
  gap: 18px;
}

.consultant-card__identity p {
  margin: 0 0 5px;
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.consultant-card__identity h3 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.consultant-card__identity h3 small {
  font-size: 0.82rem;
  font-weight: 500;
}

.consultant-card__record {
  display: flex;
  margin: 28px 0 26px;
  align-items: center;
  gap: 22px;
  border-block: 1px solid rgba(255,255,255,0.16);
  padding: 26px 0;
}

.consultant-card__record strong {
  color: var(--lime);
  font-size: clamp(3.4rem, 6vw, 5.2rem);
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.consultant-card__record strong small {
  margin-left: 4px;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.consultant-card__record > span {
  color: rgba(255,255,255,0.68);
  font-size: 0.78rem;
  line-height: 1.65;
}

.consultant-card__approach {
  margin: 0;
  color: rgba(255,255,255,0.84);
  font-size: 0.94rem;
  line-height: 2;
}

.consultant-card > a {
  display: flex;
  min-height: 58px;
  margin-top: 28px;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  background: #07c755;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  padding: 0 24px;
  text-decoration: none;
}

.home-staff__trust {
  border: 1px solid rgba(8, 79, 71, 0.12);
  border-radius: 30px;
  background: rgba(255,255,255,0.82);
  padding: 38px 42px;
}

.home-staff__trust-label {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.home-staff__trust ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-staff__trust li {
  display: grid;
  gap: 18px;
  grid-template-columns: 40px 1fr;
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.home-staff__trust li > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-dark);
  font-size: 0.66rem;
  font-weight: 900;
}

.home-staff__trust li strong {
  color: var(--green-dark);
  font-size: 1rem;
}

.home-staff__trust li p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.8;
}

.home-staff__operator {
  display: grid;
  align-items: center;
  gap: 6px 18px;
  border-radius: 18px;
  background: var(--cream);
  grid-template-columns: auto 1fr auto;
  padding: 18px 20px;
}

.home-staff__operator span {
  color: var(--muted);
  font-size: 0.68rem;
}

.home-staff__operator strong {
  color: var(--green-dark);
  font-size: 0.86rem;
}

.home-staff__operator a {
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
  text-decoration: none;
}

/* Illustrated scenes */
.home-scene {
  position: relative;
  margin: 0 0 26px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--cream);
  box-shadow: 0 22px 60px rgba(7, 53, 48, 0.09);
}

.home-scene::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(4, 43, 39, 0.72) 100%);
  content: "";
  pointer-events: none;
}

.home-scene > img {
  display: block;
  width: 100%;
  height: clamp(390px, 48vw, 570px);
  object-fit: cover;
}

.home-scene--consultation > img {
  object-position: center 43%;
}

.home-scene--home > img {
  object-position: center 47%;
}

.home-scene figcaption {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 34px;
  left: 38px;
  color: #fff;
}

.home-scene figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-scene figcaption strong {
  display: block;
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 1.45;
}

.home-scene__chips {
  position: absolute;
  z-index: 3;
  display: flex;
  right: 30px;
  top: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 460px;
}

.home-scene__chips span {
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: var(--green-dark);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 9px 13px;
  backdrop-filter: blur(8px);
}

/* Support */
.home-intro {
  background: #fff;
}

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

.home-support-card {
  min-height: 290px;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 34px;
}

.home-support-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 28px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-support-card h3 {
  margin: 48px 0 16px;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.home-support-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.9;
}

.home-support-card:nth-child(2) {
  background: var(--green);
  color: #fff;
}

.home-support-card:nth-child(2) > span {
  background: var(--lime);
  color: var(--green-dark);
}

.home-support-card:nth-child(2) p {
  color: rgba(255,255,255,0.72);
}

.home-support-card:nth-child(3) {
  background: var(--cream);
}

.home-note-card {
  display: grid;
  margin-top: 22px;
  align-items: center;
  gap: 52px;
  border-radius: 24px;
  background: #eef1df;
  grid-template-columns: 0.9fr 1.1fr;
  padding: 34px 40px;
}

.home-note-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
}

.home-note-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.65;
}

.home-note-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.9;
}

/* Eligibility */
.home-check {
  background: var(--green-dark);
  color: #fff;
}

.home-check__grid {
  display: grid;
  align-items: start;
  gap: 72px;
  grid-template-columns: 1fr 0.86fr;
}

.home-check .home-eyebrow {
  color: var(--lime);
}

.home-check .home-muted {
  color: rgba(255,255,255,0.64);
}

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

.home-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
}

.home-check-list span {
  display: grid;
  width: 26px;
  height: 26px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: rgba(214, 232, 129, 0.15);
  color: var(--lime);
  font-size: 0.72rem;
}

.home-fact-card {
  border-radius: 28px;
  background: #fff;
  color: var(--ink);
  padding: 34px;
}

.home-fact-card__label {
  display: inline-block;
  margin: 0 0 12px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 7px 12px;
}

.home-fact-card > div {
  display: grid;
  border-bottom: 1px solid var(--line);
  gap: 5px;
  grid-template-columns: 1fr auto;
  padding: 18px 0;
}

.home-fact-card > div p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
}

.home-fact-card > div strong {
  color: var(--green);
  font-size: 0.9rem;
}

.home-fact-card > div span {
  color: var(--muted);
  font-size: 0.72rem;
  grid-column: 1 / -1;
  line-height: 1.7;
}

.home-source {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.7;
}

.home-source a {
  text-decoration: underline;
}

/* Process */
.home-process {
  background: var(--cream);
}

.home-step-grid {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.home-step-grid li {
  position: relative;
  min-height: 250px;
  background: #fff;
  padding: 32px 26px;
}

.home-step-grid li:first-child {
  border-radius: 24px 0 0 24px;
}

.home-step-grid li:last-child {
  border-radius: 0 24px 24px 0;
}

.home-step-grid li > span {
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.home-step-grid li:not(:last-child)::after {
  position: absolute;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-dark);
  content: "→";
  font-size: 0.75rem;
  right: -14px;
  top: 50px;
  z-index: 2;
}

.home-step-grid h3 {
  margin: 50px 0 14px;
  font-size: 1.05rem;
}

.home-step-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.8;
}

.home-process__cta {
  margin-top: 36px;
  text-align: center;
}

.home-process__cta > p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.8rem;
}

/* Guide */
.home-guide {
  background: #fff;
}

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

.home-guide-grid article {
  border-top: 3px solid var(--green);
  background: var(--cream);
  padding: 34px;
}

.home-guide-grid article > span {
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
}

.home-guide-grid h3 {
  margin: 36px 0 16px;
  font-size: 1.23rem;
}

.home-guide-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.9;
}

.home-official-link {
  margin: 28px 0 0;
  text-align: right;
}

.home-official-link a {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-underline-offset: 4px;
}

/* Cases */
.home-cases {
  background: #eef1df;
}

.home-case-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.home-case-grid a {
  display: grid;
  min-height: 170px;
  align-content: center;
  border: 1px solid transparent;
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  padding: 28px 30px;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.home-case-grid a:hover {
  border-color: rgba(11, 92, 85, 0.25);
  background: #fff;
  transform: translateY(-3px);
}

.home-case-grid span {
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
}

.home-case-grid h3 {
  margin: 20px 0 7px;
  font-size: 1.05rem;
}

.home-case-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

/* Shared controls */
.b-btn-line,
.b-btn-phone {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 800;
  padding: 0 26px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.b-btn-line {
  background: #08a94d;
  color: #fff;
  box-shadow: 0 12px 28px rgba(8,169,77,0.2);
}

.b-btn-line:hover,
.b-btn-phone:hover {
  transform: translateY(-2px);
}

.b-btn-line--lg,
.b-btn-phone--lg {
  min-height: 60px;
  padding-inline: 34px;
}

.b-btn-phone {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--green-dark);
}

.safe-area-pb {
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
}

.b-heading {
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.4;
}

.b-section {
  padding: 92px 16px;
}

.b-container {
  width: min(760px, 100%);
  margin-inline: auto;
}

.b-container-wide {
  width: min(1040px, 100%);
  margin-inline: auto;
}

.b-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(7,63,59,0.05);
}

/* FAQ */
.home-faq {
  background: var(--cream);
}

.home-faq__grid {
  display: grid;
  align-items: start;
  gap: 70px;
  grid-template-columns: 0.7fr 1.3fr;
}

.home-faq__list {
  display: grid;
  gap: 10px;
}

.home-faq details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.home-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  list-style: none;
  padding: 22px 24px;
}

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

.home-faq summary span:last-child {
  display: grid;
  width: 26px;
  height: 26px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  transition: transform 160ms ease;
}

.home-faq details[open] summary span:last-child {
  transform: rotate(45deg);
}

.home-faq details p {
  margin: 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.9;
  padding: 20px 24px 24px;
}

/* Final */
.home-final {
  background: var(--green);
  color: #fff;
  padding: 88px 0;
}

.home-final .home-eyebrow {
  color: var(--lime);
}

.home-final__grid {
  display: grid;
  align-items: center;
  gap: 90px;
  grid-template-columns: 1.25fr 0.75fr;
}

.home-final h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.home-final__grid > div:first-child > p:last-child {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.9;
}

.home-final__action {
  border-radius: 24px;
  background: rgba(255,255,255,0.1);
  padding: 24px;
}

.home-final__action > p {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.64);
  font-size: 0.68rem;
  text-align: center;
}

/* Company */
.company-section {
  background: #fff;
  padding: 96px 0;
}

.company-grid {
  display: grid;
  gap: 72px;
  grid-template-columns: 0.65fr 1.35fr;
}

.company-grid h2 {
  margin: 0;
  font-size: 2rem;
}

.company-grid > div > p {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.8;
}

.company-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-list > div {
  display: grid;
  border-bottom: 1px solid var(--line);
  gap: 24px;
  grid-template-columns: 120px 1fr;
  padding: 18px 0;
}

.company-list dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.company-list dd {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.7;
}

/* Footer */
.site-footer {
  background: #092f2c;
  color: rgba(255,255,255,0.66);
  padding: 66px 0 40px;
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

.site-footer .site-brand {
  color: #fff;
}

.site-brand--footer {
  flex: none;
  align-items: center;
  gap: 14px;
  padding: 3px;
}

.site-brand__footer-mark {
  display: block;
  width: 68px;
  height: 68px;
  flex: none;
  object-fit: contain;
  padding: 3px;
  box-sizing: border-box;
}

.site-brand__footer-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
  line-height: 1.2;
}

.site-brand__footer-copy strong {
  color: #fff;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.site-brand__footer-copy small {
  color: rgba(255,255,255,0.58);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.site-footer .site-brand__name small {
  color: rgba(255,255,255,0.5);
}

.site-footer__nav {
  display: grid;
  gap: 22px 46px;
  grid-template-columns: repeat(3, auto);
}

.site-footer__nav p {
  margin: 0 0 10px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.site-footer__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__nav li + li {
  margin-top: 7px;
}

.site-footer__nav a {
  font-size: 0.68rem;
  text-decoration: none;
}

.site-footer__bottom {
  display: flex;
  margin-top: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.63rem;
}

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

.site-footer__bottom a {
  font-size: 0.63rem;
}

.sticky-cta-bar {
  border-color: var(--line) !important;
  background: rgba(255,255,255,0.96) !important;
  box-shadow: 0 -12px 30px rgba(7,63,59,0.1) !important;
}

.static-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.static-sticky {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  display: flex;
  width: 226px;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 10px;
  backdrop-filter: blur(16px);
}

body.site-b > .static-sticky {
  position: fixed;
}

.static-sticky a {
  min-height: 50px;
  justify-content: flex-start;
  padding-inline: 18px;
  font-size: 0.78rem;
}

.static-sticky a > svg {
  width: 21px;
  height: 21px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.static-sticky a > span {
  white-space: nowrap;
}

.static-sticky .b-btn-phone > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}

.static-sticky .b-btn-phone strong {
  font-size: 0.72rem;
}

.static-sticky .b-btn-phone small {
  color: var(--muted);
  font-size: 0.62rem;
}

/* Content pages */
.content-page {
  background: #fff;
  padding: 80px 20px 110px;
}

.content-page__article {
  width: min(780px, 100%);
  margin-inline: auto;
}

.content-breadcrumb {
  display: flex;
  margin-bottom: 52px;
  gap: 8px;
  color: var(--muted);
  font-size: 0.7rem;
}

.content-page h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.65rem);
  letter-spacing: -0.055em;
  line-height: 1.28;
}

.content-lead {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 2;
}

.content-sections {
  display: grid;
  margin-top: 72px;
  gap: 58px;
}

.content-sections section {
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.content-sections h2,
.content-faq > h2,
.content-cta h2 {
  margin: 0 0 18px;
  font-size: 1.4rem;
  letter-spacing: -0.035em;
}

.content-sections p,
.content-faq details p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 2;
}

.content-sections p + p {
  margin-top: 16px;
}

.content-cta {
  margin-top: 72px;
  border-radius: 26px;
  background: #eef1df;
  padding: 36px;
}

.content-cta > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.82rem;
}

.content-faq {
  margin-top: 72px;
}

.content-faq details {
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.content-faq summary {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 800;
  list-style: none;
  padding: 20px 22px;
}

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

.content-faq details p {
  border-top: 1px solid var(--line);
  padding: 18px 22px 22px;
}

.content-page a {
  color: var(--green);
}

/* Motion */
@media (prefers-reduced-motion: no-preference) {
  .home-support-card,
  .home-guide-grid article,
  .home-case-grid a {
    animation: home-rise linear both;
    animation-range: entry 5% cover 26%;
    animation-timeline: view();
  }

  @keyframes home-rise {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 900px) {
  .home-section {
    padding: 82px 0;
  }

  .site-header__nav > a:not(.site-header__cta) {
    display: none;
  }

  .home-hero--image {
    min-height: 1040px;
  }

  .home-hero__backdrop {
    object-position: 63% top;
  }

  .home-hero__shade {
    background:
      linear-gradient(180deg, rgba(246, 243, 234, 0.02) 0%, rgba(246, 243, 234, 0.05) 27%, rgba(246, 243, 234, 0.92) 52%, #f6f3ea 76%),
      linear-gradient(90deg, rgba(246, 243, 234, 0.2), transparent 70%);
  }

  .home-hero__overlay {
    min-height: auto;
    align-items: flex-end;
    padding: 430px 0 46px;
  }

  .home-hero__copy {
    width: 100%;
  }

  .home-hero__benefits {
    grid-template-columns: 1fr 1fr;
  }

  .home-hero__benefits > div {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .home-hero__benefits > div:nth-child(even) {
    border-right: 0;
  }

  .home-hero__benefits > div:nth-child(n+7) {
    border-bottom: 0;
  }

  .home-hero__grid,
  .home-staff__lead,
  .home-staff__grid,
  .home-check__grid,
  .home-faq__grid,
  .home-final__grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .home-hero__grid {
    gap: 44px;
    padding-block: 58px 46px;
  }

  .home-staff__lead {
    gap: 24px;
  }

  .consultant-card {
    width: min(100%, 560px);
    min-height: 0;
    margin-inline: auto;
  }

  .home-hero__panel {
    transform: none;
  }

  .home-hero__visual {
    max-width: 720px;
    margin-inline: auto;
  }

  .home-concerns__head {
    gap: 32px;
    grid-template-columns: 1fr;
  }

  .home-concerns__grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-support-grid,
  .home-guide-grid {
    grid-template-columns: 1fr;
  }

  .home-scene > img {
    height: 500px;
  }

  .home-support-card {
    min-height: auto;
  }

  .home-support-card h3 {
    margin-top: 32px;
  }

  .home-note-card {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .home-step-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-step-grid li,
  .home-step-grid li:first-child,
  .home-step-grid li:last-child {
    border-radius: 0;
  }

  .home-step-grid li:nth-child(1) {
    border-radius: 22px 0 0 0;
  }

  .home-step-grid li:nth-child(2) {
    border-radius: 0 22px 0 0;
  }

  .home-step-grid li:nth-child(3) {
    border-radius: 0 0 0 22px;
  }

  .home-step-grid li:nth-child(4) {
    border-radius: 0 0 22px 0;
  }

  .home-step-grid li:nth-child(2)::after {
    display: none;
  }

  .home-faq__grid {
    gap: 36px;
  }

  .home-final__grid,
  .company-grid {
    gap: 42px;
  }

  .site-footer__top {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  body.site-b {
    padding-bottom: 84px;
  }

  .home-shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header__inner {
    min-height: 64px;
  }

  .site-brand__name {
    font-size: 0.83rem;
  }

  .site-brand__image {
    height: 38px;
  }

  .site-brand__footer-mark {
    width: 58px;
    height: 58px;
  }

  .site-brand__footer-copy strong {
    font-size: 1rem;
  }

  .site-brand__footer-copy small {
    font-size: 0.5rem;
    letter-spacing: 0.16em;
  }

  .site-header__cta {
    min-height: 38px;
    font-size: 0.72rem;
    padding-inline: 15px;
  }

  .home-hero--image {
    min-height: 970px;
  }

  .home-hero__backdrop {
    height: 370px;
    object-position: 62% center;
  }

  .home-hero__shade {
    background: linear-gradient(180deg, rgba(246, 243, 234, 0.02) 0%, rgba(246, 243, 234, 0.06) 28%, #f6f3ea 48%, #f6f3ea 100%);
  }

  .home-hero__overlay {
    padding: 255px 0 30px;
  }

  .home-hero__badges {
    margin-bottom: 20px;
    gap: 6px;
  }

  .home-hero__badges span {
    font-size: 0.62rem;
    padding: 7px 10px;
  }

  .home-hero h1 {
    font-size: clamp(1.95rem, 8vw, 2.15rem);
  }

  .home-hero__lead {
    margin-top: 22px;
    font-size: 0.83rem;
  }

  .home-hero__lead br {
    display: none;
  }

  .home-hero__cta {
    margin-top: 22px;
  }

  .home-hero__cta .static-cta-row {
    flex-wrap: nowrap;
    gap: 7px;
  }

  .home-hero__cta .b-btn-line,
  .home-hero__cta .b-btn-phone {
    min-width: 0;
    flex: 1;
    font-size: 0.68rem;
    padding-inline: 10px;
  }

  .home-hero__benefits {
    width: calc(100% - 20px);
    gap: 0;
  }

  .home-hero__benefits > div {
    min-height: 82px;
    gap: 9px;
    padding: 12px 8px;
  }

  .home-hero__benefits > div > span {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .home-hero__benefits strong {
    font-size: 0.68rem;
  }

  .home-hero__benefits small {
    font-size: 0.56rem;
  }

  .home-hero__panel ul {
    grid-template-columns: 1fr;
  }

  .home-hero__visual::before {
    inset: 12px -6px -12px 16px;
  }

  .home-hero__visual > img {
    border-width: 5px;
    border-radius: 22px;
  }

  .home-hero__visual-card {
    right: 10px;
    bottom: -22px;
    width: min(250px, calc(100% - 20px));
  }

  .home-concerns {
    padding: 74px 0;
  }

  .home-concerns__grid {
    grid-template-columns: 1fr;
  }

  .home-concerns__grid article {
    min-height: 0;
  }

  .home-concerns__answer {
    align-items: stretch;
    flex-direction: column;
  }

  .home-concerns__answer a {
    justify-content: space-between;
  }

  .home-trust-list {
    justify-content: space-between;
  }

  .home-trust-list li {
    min-width: 0;
    flex: 1;
    padding-inline: 10px;
  }

  .home-trust-list span {
    font-size: 0.58rem;
  }

  .home-trust-list strong {
    font-size: 0.83rem;
  }

  .home-staff__lead {
    margin-bottom: 32px;
  }

  .home-staff__lead h2 {
    font-size: 2.15rem;
  }

  .consultant-card {
    min-height: 0;
    border-radius: 24px;
    padding: 28px;
  }

  .consultant-card__portrait {
    border-radius: 18px;
  }

  .consultant-card__photo-placeholder > span {
    width: 86px;
    height: 86px;
  }

  .consultant-card__photo-placeholder > span::before {
    width: 29px;
    height: 29px;
    left: 29px;
    top: 17px;
  }

  .consultant-card__photo-placeholder > span::after {
    width: 62px;
    height: 44px;
    left: 12px;
  }

  .consultant-card__identity h3 {
    font-size: 1.7rem;
  }

  .consultant-card__record {
    margin: 34px 0 28px;
  }

  .consultant-card__record strong {
    font-size: 3.6rem;
  }

  .home-staff__trust {
    border-radius: 24px;
    padding: 28px;
  }

  .home-staff__operator {
    grid-template-columns: auto 1fr;
  }

  .home-staff__operator a {
    grid-column: 1 / -1;
    margin-top: 6px;
  }

  .home-scene {
    border-radius: 22px;
  }

  .home-scene > img {
    height: 420px;
  }

  .home-scene figcaption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .home-scene__chips {
    right: 14px;
    top: 14px;
    max-width: calc(100% - 28px);
  }

  .home-scene__chips span {
    font-size: 0.6rem;
    padding: 7px 10px;
  }

  .home-section-head {
    margin-bottom: 36px;
  }

  .home-section-head h2,
  .home-check h2,
  .home-final h2 {
    font-size: 2.15rem;
  }

  .home-support-card,
  .home-guide-grid article {
    padding: 28px;
  }

  .home-note-card {
    padding: 28px;
  }

  .home-check__grid {
    gap: 44px;
  }

  .home-fact-card {
    padding: 24px;
  }

  .home-step-grid,
  .home-case-grid {
    grid-template-columns: 1fr;
  }

  .home-step-grid li,
  .home-step-grid li:nth-child(1),
  .home-step-grid li:nth-child(2),
  .home-step-grid li:nth-child(3),
  .home-step-grid li:nth-child(4) {
    min-height: 210px;
    border-radius: 0;
  }

  .home-step-grid li:first-child {
    border-radius: 22px 22px 0 0;
  }

  .home-step-grid li:last-child {
    border-radius: 0 0 22px 22px;
  }

  .home-step-grid li:not(:last-child)::after {
    display: none;
  }

  .home-case-grid a {
    min-height: 150px;
  }

  .company-list > div {
    gap: 7px;
    grid-template-columns: 1fr;
  }

  .static-sticky {
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    flex-direction: row;
    gap: 8px;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    padding: 10px 12px max(10px, env(safe-area-inset-bottom));
  }

  .static-sticky a {
    min-height: 48px;
    flex: 1;
    justify-content: center;
    padding-inline: 12px;
    font-size: 0.72rem;
  }

  .static-sticky a > svg {
    width: 19px;
    height: 19px;
  }

  .content-page {
    padding: 58px 18px 86px;
  }

  .content-breadcrumb {
    margin-bottom: 38px;
  }

  .content-sections {
    margin-top: 52px;
    gap: 44px;
  }

  .content-cta {
    padding: 26px;
  }

  .content-cta .static-cta-row {
    flex-direction: column;
  }

  .site-footer__nav {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
