:root {
  --ink: #172033;
  --muted: #667085;
  --paper: #f4f7fb;
  --surface: #ffffff;
  --line: #d8e0ea;
  --blue: #1463d9;
  --navy: #102a43;
  --green: #06c755;
  --amber: #f4b740;
  --shadow: 0 18px 50px rgba(23, 32, 51, .14);
  --radius: 8px;
  --font-body: "Noto Sans JP", sans-serif;
  --font-display: "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
[id] { scroll-margin-top: 86px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.85;
  letter-spacing: 0;
  padding-bottom: 76px;
  word-break: normal;
  line-break: strict;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(16px, 4vw, 44px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(23, 32, 51, .1);
  backdrop-filter: blur(14px);
}
.site-header.is-scrolled { box-shadow: 0 8px 28px rgba(23, 32, 51, .12); }
.brand img {
  width: 178px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}
.header-actions { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 900; }
.header-actions > a:not(.header-tel):not(.header-line) { color: var(--muted); }
.header-tel,
.header-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 16px;
  border-radius: 999px;
  color: #fff;
}
.header-tel { background: var(--blue); }
.header-line { background: var(--green); }

.hero {
  position: relative;
  min-height: 760px;
  padding: 150px max(20px, calc((100vw - 1120px) / 2)) 80px;
  color: #fff;
  overflow: hidden;
  background: var(--navy);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(16, 42, 67, .94), rgba(16, 42, 67, .62) 48%, rgba(16, 42, 67, .28)),
    linear-gradient(0deg, rgba(16, 42, 67, .78), transparent 42%);
}
.hero__bg {
  position: absolute;
  inset: 74px 0 0;
  z-index: 0;
  width: 100%;
  height: calc(100% - 74px);
  object-fit: cover;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero__area {
  display: inline-flex;
  margin: 0 0 20px;
  padding: 8px 18px;
  border: 2px solid rgba(255, 255, 255, .64);
  border-radius: 999px;
  font-weight: 900;
  background: rgba(255, 255, 255, .14);
}
h1,
h2,
h3,
p,
li,
dt,
dd,
a,
span {
  overflow-wrap: break-word;
  word-break: normal;
}
h1,
h2,
h3,
.button,
.header-actions,
.section-title p {
  letter-spacing: 0;
}
.line { display: block; }
.hero-title__phrase span { display: inline; }
h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: 1.16;
}
.hero__lead {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.9;
  color: rgba(255, 255, 255, .92);
}
.hero__lead span {
  display: block;
}
.hero__contact,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__contact {
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.35;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(23, 32, 51, .18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 30px rgba(23, 32, 51, .2); }
.button--tel { background: var(--blue); }
.button--line { background: var(--green); }
.button--dark { background: var(--navy); }

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1120px;
  margin: -42px auto 0;
  position: relative;
  z-index: 3;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.intro-band div { padding: 24px 28px; border-right: 1px solid var(--line); }
.intro-band div:last-child { border-right: 0; }
.intro-band span { display: block; color: var(--muted); font-size: 13px; font-weight: 900; }
.intro-band b { display: block; margin-top: 4px; font-size: 22px; }

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) 0;
}
.section-title {
  margin: 0 auto 36px;
  text-align: center;
  max-width: 900px;
}
.section-title p {
  margin: 0 0 8px;
  color: var(--blue);
  font-weight: 900;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.45;
}
.section-title h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.28;
  max-width: 840px;
  margin-inline: auto;
}
.section-title--light p,
.section-title--light h2 { color: #fff; }
.section-title--left { text-align: left; }
.lead-copy {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
  font-size: 17px;
  line-height: 2;
  color: var(--muted);
}

.free-consult {
  display: grid;
  grid-template-columns: .8fr 1fr 1fr;
  align-items: center;
  gap: 18px;
  width: min(1120px, calc(100% - 40px));
  margin: 36px auto 0;
  padding: 22px;
  border: 2px solid rgba(20, 99, 217, .28);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.free-consult p {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.45;
}
.free-consult b {
  display: block;
  color: var(--blue);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
}
.free-consult ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-weight: 700;
}
.free-consult li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}
.free-consult__actions {
  display: grid;
  gap: 10px;
}

.worry-list,
.service-grid {
  display: grid;
  gap: 16px;
}
.worry-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.worry-list article,
.service-grid article,
.flow-list article,
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(23, 32, 51, .06);
}
.worry-list article,
.service-grid article { padding: 24px; }
.service-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
}
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: var(--blue);
  background: rgba(20, 99, 217, .1);
}
.service-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.worry-list article {
  overflow: hidden;
}
.worry-list article:not(.has-image) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border-color: rgba(20, 99, 217, .24);
}
.worry-list article.has-image {
  padding: 0;
}
.worry-list article.has-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.worry-card__body {
  padding: 22px 24px 24px;
}
.worry-list h3,
.service-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.45;
}
.worry-list p,
.service-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.value {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1120px) / 2));
  background: var(--blue);
}
.point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.point-grid article {
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(16, 42, 67, .32);
  overflow: hidden;
}
.point-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.point-card__body {
  padding: 22px 24px 24px;
}
.point-grid span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-weight: 900;
  font-size: 13px;
}
.point-grid h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.45;
}
.point-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}
.case-body dl,
.company-card dl {
  margin: 0;
}
.case-body dl div,
.company-card dl div {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 1px;
  border-top: 1px solid var(--line);
}
.case-body dt,
.case-body dd,
.company-card dt,
.company-card dd {
  margin: 0;
  padding: 15px 18px;
  line-height: 1.75;
}
.case-body dt,
.company-card dt { font-weight: 900; background: #f8fafc; }
.case-body dd,
.company-card dd { background: #fff; }
.case-grid {
  display: grid;
  gap: 22px;
}
.case-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.case-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.case-photos figure {
  position: relative;
  margin: 0;
  min-height: 270px;
}
.case-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-photos figcaption {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(16, 42, 67, .84);
  font-weight: 900;
  font-size: 12px;
}
.case-body {
  padding: 24px;
}
.case-body > p {
  margin: 0 0 4px;
  color: var(--blue);
  font-weight: 900;
}
.case-body h3 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.45;
}

.compare-scroll { overflow-x: auto; }
.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.compare-table caption { display: none; }
.compare-table th,
.compare-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}
.compare-table thead th {
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}
.compare-table tbody th {
  text-align: left;
  font-weight: 900;
  background: #f8fafc;
  white-space: nowrap;
}
.compare-table tbody th:first-child { width: 26%; }
.compare-table td.us { color: var(--blue); font-weight: 900; background: rgba(20, 99, 217, .05); }
.compare-table td .mark--ok { color: var(--green); font-weight: 900; }
.compare-table td .mark--triangle { color: var(--amber); font-weight: 900; }
.compare-table td .mark--ng { color: var(--muted); font-weight: 900; }
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }

.message-card {
  padding: clamp(24px, 5vw, 40px);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.message-card p {
  margin: 0 0 16px;
  color: var(--ink);
  line-height: 2;
}
.message-card p:last-of-type { margin-bottom: 0; }
.message-card__signature {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 900;
  font-size: 14px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.review-grid article {
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(23, 32, 51, .06);
}
.review-grid p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.9;
}
.review-grid span {
  color: var(--blue);
  font-weight: 900;
  font-size: 14px;
}

.mid-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: min(1120px, calc(100% - 40px));
  margin: -34px auto 0;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(20, 99, 217, .16);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(23, 32, 51, .1);
}
.mid-cta__text {
  display: grid;
  gap: 8px;
}
.mid-cta p {
  margin: 0;
  color: var(--blue);
  font-weight: 900;
  line-height: 1.45;
}
.mid-cta h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
}
.mid-cta span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.75;
}
.mid-cta__actions {
  display: grid;
  gap: 10px;
  justify-items: stretch;
  min-width: min(320px, 100%);
}
.mid-cta__tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 10px 18px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  color: var(--blue);
  font-size: 24px;
  font-weight: 900;
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 52px 20px;
  text-align: center;
  color: #fff;
  background: var(--navy);
}
.final-cta p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.35;
}
.final-cta__tel {
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1;
  font-weight: 900;
  color: var(--amber);
}
.price-list {
  display: grid;
  gap: 12px;
}
.price-list div {
  display: grid;
  grid-template-columns: .8fr .65fr 1.35fr;
  align-items: center;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}
.price-list span,
.price-list b,
.price-list em {
  height: 100%;
  padding: 18px;
  background: #fff;
  font-style: normal;
}
.price-list span { font-weight: 900; }
.price-list b { color: var(--blue); font-size: 24px; }
.price-list b { line-height: 1.35; }
.price-list em { color: var(--muted); line-height: 1.75; }
.note {
  max-width: 840px;
  margin: 18px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.flow-list article { overflow: hidden; }
.flow-list img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.flow-list span {
  display: inline-block;
  margin: 24px 24px 0;
  color: var(--blue);
  font-weight: 900;
}
.flow-list h3 {
  margin: 6px 24px 8px;
  font-size: 21px;
  line-height: 1.45;
}
.flow-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.area {
  padding-top: 0;
}
.area-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius);
  color: #fff;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.area-card h3 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.45;
}
.area-card p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
}
.area-card ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.area-card li {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .14);
  font-weight: 900;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details { padding: 0 22px; }
.faq-list summary {
  padding: 20px 0;
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.55;
}
.faq-list p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
}

.company-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  padding: clamp(24px, 5vw, 46px);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.company-card > div > p {
  margin: 18px 0 0;
  color: var(--muted);
}
.map {
  width: 100%;
  height: 360px;
  margin-top: 22px;
  border: 0;
  border-radius: var(--radius);
}

.final-cta {
  position: relative;
  grid-template-columns: 180px minmax(0, 760px);
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 5vw, 52px);
  overflow: hidden;
  text-align: left;
}
.final-cta img {
  width: 180px;
  max-height: 220px;
  object-fit: contain;
}
.final-cta__content {
  display: grid;
  justify-items: start;
  gap: 12px;
}
.final-cta__lead {
  max-width: 680px;
  color: rgba(255, 255, 255, .86);
  font-weight: 700;
  line-height: 1.8;
}
.final-cta__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}
.final-cta__notes li {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  font-weight: 900;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding: 26px 20px 104px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
}
.footer p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.footer img {
  width: 120px;
  height: 28px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.sticky-cta {
  position: fixed;
  z-index: 30;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 36px rgba(23, 32, 51, .22);
  backdrop-filter: blur(14px);
}
.sticky-cta a {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
}
.sticky-cta a:first-child { background: var(--blue); }
.sticky-cta a:last-child { background: var(--green); }

@media (max-width: 900px) {
  .header-actions > a:not(.header-line) { display: none; }
  .hero { min-height: 680px; padding-top: 126px; }
  .intro-band,
  .free-consult,
  .mid-cta,
  .worry-list,
  .service-grid,
  .point-grid,
  .review-grid,
  .flow-list,
  .area-card,
  .company-card,
  .final-cta {
    grid-template-columns: 1fr 1fr;
  }
  .intro-band div:nth-child(2) { border-right: 0; }
  .intro-band div:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line); }
  .flow-list { grid-template-columns: 1fr 1fr; }
  .free-consult { align-items: stretch; }
  .free-consult__actions { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
  .mid-cta {
    grid-template-columns: 1fr;
    margin-top: -22px;
  }
  .company-card,
  .final-cta { grid-template-columns: 1fr; }
  .final-cta img { display: none; }
}

@media (max-width: 640px) {
  body { padding-bottom: 82px; }
  h1,
  h2,
  h3,
  p,
  li,
  dt,
  dd,
  a,
  span,
  b,
  em,
  summary {
    overflow-wrap: anywhere;
    line-break: anywhere;
  }
  .site-header { height: 64px; padding: 10px 14px; }
  .site-header,
  .hero,
  .value,
  .final-cta {
    width: 100vw;
    max-width: 100vw;
  }
  .brand img { width: 128px; height: 34px; }
  .header-actions { display: none; }
  .hero {
    min-height: 646px;
    padding: 122px 20px 62px;
  }
  .hero::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 20px;
    right: 20px;
    top: 84px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--green), var(--amber));
    box-shadow: 0 10px 26px rgba(20, 99, 217, .3);
  }
  .hero::after {
    background:
      linear-gradient(180deg, rgba(16, 42, 67, .16), rgba(16, 42, 67, .78) 58%, rgba(16, 42, 67, .92)),
      linear-gradient(90deg, rgba(16, 42, 67, .9), rgba(16, 42, 67, .46));
  }
  h1 {
    font-size: 34px;
    line-height: 1.22;
  }
  .hero-title__phrase span { display: block; }
  .section-title h2 {
    font-size: 27px;
    line-height: 1.36;
    max-width: 100%;
  }
  .section-title p {
    font-size: 15px;
  }
  .hero__bg {
    inset: 64px 0 0;
    height: calc(100% - 64px);
    object-position: 58% center;
  }
  .hero__lead {
    font-size: 17px;
    line-height: 1.82;
  }
  .lead-copy {
    text-align: left;
  }
  .button {
    min-height: 52px;
    padding-inline: 16px;
    font-size: 15px;
  }
  .hero__contact .button,
  .final-cta__actions .button {
    width: 100%;
  }
  .intro-band {
    width: calc(100vw - 28px);
    margin-top: -22px;
    grid-template-columns: 1fr;
  }
  .intro-band div,
  .intro-band div:nth-child(2),
  .intro-band div:last-child {
    grid-column: auto;
    border-right: 0;
    border-top: 1px solid var(--line);
  }
  .intro-band div:first-child { border-top: 0; }
  .section {
    width: calc(100vw - 28px);
    max-width: 1120px;
    padding: 64px 0;
  }
  .worry-list,
  .service-grid,
  .free-consult,
  .mid-cta,
  .point-grid,
  .review-grid,
  .flow-list,
  .area-card,
  .case-photos,
  .price-list div,
  .company-card dl div {
    grid-template-columns: 1fr;
  }
  .compare-table tbody th:first-child { width: auto; }
  .case-photos figure { min-height: 220px; }
  .case-body dl div { grid-template-columns: 1fr; }
  .free-consult {
    width: calc(100vw - 28px);
    margin-top: 28px;
    padding: 18px;
  }
  .mid-cta {
    width: calc(100vw - 28px);
    margin-top: -18px;
    padding: 20px;
  }
  .mid-cta h2 {
    font-size: 24px;
  }
  .mid-cta__tel {
    font-size: 22px;
  }
  .free-consult__actions,
  .area-card ul {
    grid-template-columns: 1fr;
  }
  .final-cta { padding: 42px 14px; }
  .final-cta__tel { font-size: 38px; }
  .final-cta {
    text-align: center;
  }
  .final-cta__content {
    justify-items: center;
  }
  .final-cta__notes {
    justify-content: center;
  }
  .footer {
    display: block;
    padding-bottom: 100px;
    text-align: center;
  }
  .footer p {
    justify-content: center;
    flex-direction: column;
  }
  .sticky-cta { display: grid; }
}
