:root {
  --navy: #333333;
  --navy-dark: #253149;
  --blue: #4f6fba;
  --blue-dark: #3f5fa9;
  --light-blue: #eef5ff;
  --orange: #e8843a;
  --orange-dark: #c76f2f;
  --green: #4f6fba;
  --green-dark: #3f5fa9;
  --gold: #4f6fba;
  --silver: #7d96ce;
  --bronze: #92a8d7;
  --bg: #f3f3f3;
  --paper: #ffffff;
  --white: #ffffff;
  --line: #d2d2d2;
  --muted: #666666;
  --text: #4a4a4a;
  --red: #e84a3c;
  --yellow: #fff4b8;
  --shadow: 0 2px 14px rgba(0,0,0,.08);
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  margin: 0;
  min-height: 100dvh;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  line-height: 1.75;
  font-size: 14px;
  font-weight: 600;
  overflow-x: hidden;
  overflow-y: auto;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-top: 0;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 1px 6px rgba(0,0,0,.04);
}

.site-header__inner {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}

.brand__mark {
  width: 54px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand__mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.tree-sun {
  fill: #ffcf57;
}

.tree-canopy {
  fill: #3fb56f;
}

.tree-canopy--back {
  fill: #77d996;
}

.tree-trunk {
  fill: #b87535;
}

.tree-ground {
  fill: #5f8f45;
}

.brand__text {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  letter-spacing: 0;
}

.brand__text strong {
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}

.brand__text small {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
}

.global-nav a {
  color: #1f2937;
  text-align: center;
  line-height: 1.1;
}

.global-nav small {
  display: block;
  color: #7a8592;
  font-size: 8px;
  margin-top: 3px;
}

.nav-search {
  font-size: 22px;
  line-height: 1;
}

.mobile-filter-open {
  display: none;
}

.top-strip {
  height: 28px;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
  font-size: 12px;
  color: #30343a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-shell {
  width: min(1120px, calc(100% - 28px));
  margin: 42px auto 80px;
  display: grid;
  grid-template-columns: 238px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.search-sidebar {
  position: sticky;
  top: 100px;
  z-index: 20;
}

.filter-card {
  background: #fff;
  padding: 22px 18px;
  border: 1px solid #e5e5e5;
  box-shadow: var(--shadow);
}

.filter-head {
  display: none;
}

.filter-card label {
  display: block;
  margin-bottom: 16px;
  font-weight: 700;
  color: #222;
  font-size: 12px;
}

.filter-card label span {
  display: block;
  margin-bottom: 7px;
}

.filter-card select,
.filter-card input {
  width: 100%;
  height: 42px;
  border: 1px solid #d8d8d8;
  border-radius: 3px;
  background: #fff;
  padding: 0 12px;
  color: #2d3748;
  font-size: 13px;
}

.filter-card select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #222 50%), linear-gradient(135deg, #222 50%, transparent 50%);
  background-position: calc(100% - 18px) 16px, calc(100% - 9px) 16px;
  background-size: 10px 10px, 10px 10px;
  background-repeat: no-repeat;
}

.filter-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.filter-actions button {
  height: 40px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.btn-reset {
  background: #7a7a7a;
}

.btn-search {
  background: var(--orange);
}

.main-content {
  min-width: 0;
  width: min(1120px, calc(100% - 32px));
  margin: 32px auto 72px;
}

.main-content.has-sidebar {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.content-column {
  min-width: 0;
}

.estimate-card {
  border: 2px solid var(--blue);
  background: #fff;
  margin: 0 auto 28px;
}

.estimate-title {
  background: linear-gradient(135deg, #f7fbff 0%, #e7f2ff 100%);
  text-align: center;
  padding: 24px 20px 14px;
}

.estimate-title h2 {
  color: #333333;
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
}

.estimate-title span {
  font-size: 22px;
}

.estimate-title em {
  color: var(--orange);
  font-style: normal;
  font-size: 30px;
}

.estimate-title p {
  margin: 0;
  font-size: 12px;
  color: #59636f;
}

.step-line {
  margin: 22px 18px 18px;
  padding-bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
  border-bottom: 4px solid #ddd;
}

.step-line span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #d7d7d7;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
}

.step-line .active {
  background: var(--blue);
}

.estimate-card h3 {
  color: var(--blue-dark);
  text-align: center;
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
}

.estimate-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 18px 22px;
}

.estimate-options button {
  min-height: 74px;
  background: #fff;
  border: 1px solid #d7e3f3;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #313942;
  font-weight: 700;
  cursor: pointer;
}

.estimate-options strong {
  color: #62676d;
  font-size: 22px;
  line-height: 1;
}

.estimate-options span {
  font-size: 12px;
}

.intro-copy {
  margin-bottom: 22px;
}

.intro-copy p {
  margin: 0 0 14px;
}

.updated {
  text-align: right;
  font-size: 12px;
  color: #333;
}

.intro-copy h1 {
  color: #333333;
  font-size: 20px;
  line-height: 1.55;
  margin: 16px 0 18px;
  font-weight: 700;
}

.result-count {
  font-weight: 700;
}

.notice-box {
  background: #f7f8fb;
  border-left: 3px solid var(--blue);
  padding: 18px 22px;
  color: #666666;
  font-size: 13px;
}

.ranking-list {
  display: grid;
  gap: 28px;
}

.vendor-card {
  position: relative;
  background: var(--paper);
  border: 2px solid var(--gold);
  border-radius: 6px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.vendor-card:nth-of-type(n+4) {
  background: #fff;
  border-color: #d7e3f3;
}

.vendor-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  min-width: 76px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: 0 8px 16px rgba(47, 86, 177, 0.14);
  white-space: nowrap;
}

.vendor-badge span {
  font-size: 13px;
}

.badge-pickup { background: var(--blue); }
.badge-sponsor,
.badge-pr { background: linear-gradient(135deg, #f59b23, #d46d1a); }
.badge-ranking { background: linear-gradient(135deg, #d9a825, #b78108); }
.badge-check { background: #24a164; }

.vendor-head {
  min-height: 54px;
  padding-left: 112px;
  margin-bottom: 14px;
}

.vendor-head h2 {
  margin: 0;
  color: var(--blue);
  font-size: 20px;
  line-height: 1.3;
  text-decoration: underline;
}

.vendor-head p {
  margin: 3px 0 0;
  color: #5a6571;
  font-size: 12px;
}

.region-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.region-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  background: #eef4ff;
  color: var(--blue);
  border: 1px solid #cfdcf7;
  white-space: nowrap;
}

.region-badge.badge-local {
  background: #eaf8f1;
  color: #127944;
  border-color: #b9e7cf;
}

.region-badge.badge-area {
  background: #eef4ff;
  color: var(--blue);
}

.region-badge.badge-nearby {
  background: #fff7e8;
  color: #a45a00;
  border-color: #f4d39b;
}

.region-badge.badge-pr {
  background: #fff0dc;
  color: #b95600;
  border-color: #f5c782;
}

.region-badge.badge-work {
  background: #f1ecff;
  color: #5a3ab7;
  border-color: #d9ccff;
}

.vendor-grid {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 18px;
  align-items: start;
}

.vendor-image {
  background: #edf3ff;
  border: 1px solid #d7e3f3;
  min-height: 178px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.vendor-image img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  object-position: top center;
  background: #fff;
}

.rating-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin: 15px 0 6px;
}

.stars {
  color: #ffc107;
  font-size: 22px;
  letter-spacing: 0;
}

.rating-line strong {
  font-size: 22px;
}

.rating-line a {
  color: var(--blue);
  text-decoration: underline;
  font-size: 12px;
}

.catch-copy {
  color: var(--red);
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 8px;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #4e5966;
  font-size: 13px;
}

.spec-list li {
  margin: 4px 0;
}

.spec-list span {
  color: var(--blue);
  display: inline-block;
  width: 20px;
  font-weight: 700;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 14px;
}

.tag-row span {
  background: var(--blue);
  color: #fff;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
}

.vendor-card:nth-of-type(n+4) .tag-row span {
  background: #f7f8fb;
  color: var(--blue-dark);
  border: 1px solid #d7e3f3;
}

.vendor-description {
  margin: 0;
  font-size: 13px;
}

.local-proof {
  background: #fffaf0;
  border: 1px solid #f4ddb3;
  border-left: 4px solid #d79a2b;
  margin: 14px 0 0;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.7;
}

.local-proof strong {
  display: block;
  color: #8d5200;
  font-size: 13px;
  margin-bottom: 4px;
}

.local-proof p {
  margin: 0 0 6px;
}

.local-proof a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
}

.local-proof small {
  color: #777;
  margin-left: 8px;
}

.review-box {
  background: #f7fbff;
  border: 1px solid #dce8f8;
  border-left: 4px solid var(--blue);
  margin: 16px 0 0;
  padding: 12px 14px;
}

.review-box strong {
  display: block;
  color: var(--blue-dark);
  font-size: 13px;
  margin-bottom: 4px;
}

.review-box p {
  margin: 0;
  color: #555;
  font-size: 12px;
  line-height: 1.7;
}

.micro-copy {
  text-align: center;
  margin: 24px 0 14px;
  color: #4a5563;
}

.micro-copy strong {
  color: var(--blue);
}

.vendor-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  width: min(640px, 100%);
  margin: 0 auto;
}

.vendor-cta a {
  min-height: 54px;
  flex: 1 1 0;
  border-radius: 6px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.btn-official {
  background: var(--blue);
  box-shadow: inset 0 -3px 0 var(--blue-dark);
}

.btn-review {
  background: var(--orange);
  box-shadow: inset 0 -3px 0 var(--orange-dark);
}

.review-page {
  background: #f4f6f9;
  min-height: 100dvh;
  overflow-y: auto;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.review-page .main-content {
  max-width: 1040px;
  margin: 0 auto;
}

.review-detail-hero {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  border: 1px solid #dce8f8;
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.review-hero-image {
  border: 1px solid #d7e3f3;
  background: #edf3ff;
  overflow: hidden;
}

.review-hero-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.review-hero-body h1 {
  margin: 12px 0 6px;
  color: var(--blue);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.review-page-badge {
  position: static;
  box-shadow: none;
}

.review-hero-cta {
  margin-top: 18px;
  max-width: 360px;
}

.review-hero-cta a,
.review-bottom-cta a,
.review-detail-empty a {
  min-height: 54px;
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  font-weight: 700;
}

.review-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}

.review-info-grid > div,
.review-score-section,
.review-comments-section,
.review-bottom-cta,
.review-detail-empty {
  background: #fff;
  border: 1px solid #dce8f8;
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.review-info-grid h2,
.review-score-section h2,
.review-comments-section h2,
.review-bottom-cta h2,
.review-detail-empty h1 {
  margin: 0 0 16px;
  color: #2f3337;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 10px;
}

.review-info-grid dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px 18px;
  margin: 0;
  font-size: 14px;
}

.review-info-grid dt {
  color: var(--blue);
  font-weight: 700;
}

.review-info-grid dd {
  margin: 0;
}

.review-score-section,
.review-comments-section,
.review-bottom-cta {
  margin-top: 28px;
}

.review-score-panel {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #edf1f7;
  padding: 18px;
}

.review-score-panel > strong {
  font-size: 42px;
  line-height: 1;
}

.review-comment-card {
  border: 1px solid #e1e7ef;
  border-radius: 6px;
  padding: 18px;
  margin-top: 14px;
}

.review-summary-card {
  border: 1px solid #dbe6f3;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 20px;
  margin-top: 14px;
}

.review-source-note {
  margin: -6px 0 16px;
  color: #7b8491;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
}

.review-source-note a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.review-comment-score {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.review-comment-card p,
.review-summary-card p,
.review-placeholder {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.review-placeholder {
  background: #f7fbff;
  border-left: 4px solid var(--blue);
  padding: 16px 18px;
}

.review-bottom-cta {
  text-align: center;
}

.review-bottom-cta p {
  margin: 0 0 18px;
}

.listing-link {
  margin-top: 26px;
  text-align: right;
  font-size: 12px;
  margin-bottom: 28px;
}

.listing-link a {
  color: var(--blue);
  text-decoration: underline;
}

.tag-panel-note {
  margin: 14px 0 8px;
  color: #4d5a66;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.area-intro,
.area-detail-content {
  background: #fff;
  border: 1px solid #dce8f8;
  border-left: 5px solid var(--blue);
  border-radius: 6px;
  padding: 20px 22px;
  margin: 22px 0 26px;
  box-shadow: var(--shadow);
}

.area-intro h2,
.area-detail-content h2 {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: 20px;
  line-height: 1.4;
}

.area-intro p,
.area-detail-content p {
  margin: 0 0 12px;
  color: #3f4852;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 400;
}

.area-intro ul {
  margin: 12px 0 0;
  padding-left: 1.2em;
  color: #4e5966;
  font-size: 13px;
  line-height: 1.8;
}

.area-faq {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.area-faq h3 {
  margin: 0;
  color: var(--blue);
  font-size: 17px;
}

.faq-item {
  background: #f7fbff;
  border: 1px solid #dce8f8;
  padding: 13px 15px;
}

.faq-item h4 {
  margin: 0 0 6px;
  color: #333;
  font-size: 14px;
}

.faq-item p {
  margin: 0;
  font-size: 13px;
}

.tag-panel {
  background: #fff;
  border: 1px solid #d8d8d8;
  box-shadow: var(--shadow);
  border-radius: 4px;
  padding: 18px 20px;
  margin-bottom: 18px;
}

.tag-panel h2 {
  margin: 0 0 12px;
  color: #333333;
  font-size: 16px;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 10px;
}

.tag-panel p {
  margin: 0 0 10px;
  font-size: 12px;
}

.tag-panel a {
  color: var(--blue);
}

.text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.station-links {
  margin-top: 10px;
}

.text-links a {
  font-size: 12px;
}

.text-links a::before {
  content: "›";
  color: var(--blue);
  margin-right: 4px;
  font-weight: 700;
}

.article-content {
  margin: 42px auto 0;
  max-width: 100%;
  background: #fff;
  padding: 0 32px 56px;
}

.article-hero-title {
  background: #eef5ff;
  border-left: 6px solid var(--blue);
  padding: 22px 26px;
  margin-bottom: 46px;
}

.article-hero-title h2 {
  margin: 0;
  color: #333;
  font-size: 28px;
  line-height: 1.45;
  font-weight: 700;
}

.article-content section {
  margin: 0 0 56px;
}

.article-lead h3 {
  position: relative;
  color: #333333;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  padding: 16px 0 16px 24px;
  margin: 0 0 40px;
  font-size: 24px;
  font-weight: 700;
}

.article-lead h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 290px;
  height: 3px;
  background: var(--blue);
}

.article-heading {
  position: relative;
  color: #333;
  border-bottom: 4px solid #e8e8e8;
  padding: 0 0 14px;
  margin: 0 0 34px;
  font-size: 25px;
  line-height: 1.45;
  font-weight: 700;
}

.article-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 280px;
  height: 4px;
  background: var(--blue);
}

.article-heading span {
  color: var(--red);
}

.article-content p {
  margin: 0 0 22px;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.article-content strong {
  font-weight: 700;
}

.quote-line {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 34px;
}

.marker {
  font-weight: 700;
  background: linear-gradient(transparent 58%, var(--yellow) 58%);
}

.zigzag-card {
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  margin: 36px 0 64px;
}

.zigzag-card.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 46%);
}

.zigzag-card.reverse img {
  grid-column: 2;
}

.zigzag-card.reverse div {
  grid-column: 1;
  grid-row: 1;
}

.zigzag-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: #eef5ff;
}

.zigzag-card div {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 8px solid #f5f5f5;
  padding: 34px 36px;
  margin-left: 0;
}

.zigzag-card.reverse div {
  margin-left: 0;
  margin-right: 0;
}

.zigzag-card h4 {
  color: #c35d00;
  margin: 0 0 22px;
  font-size: 21px;
  font-weight: 700;
}

.zigzag-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

.specialist-reasons > p {
  margin-bottom: 44px;
}

.reason-item {
  margin: 0 0 58px;
}

.reason-item h4 {
  position: relative;
  margin: 0 0 22px;
  padding-left: 42px;
  color: #333;
  font-size: 23px;
  line-height: 1.45;
  font-weight: 700;
}

.reason-item h4::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  color: #42a8bb;
  font-size: 28px;
  font-weight: 700;
}

.reason-item p {
  margin: 0;
  font-weight: 400;
  line-height: 1.75;
}

.diagram {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 26px 0;
}

.diagram div {
  border: 1px solid #d8d8d8;
  background: #fff;
  padding: 18px;
}

.diagram strong,
.diagram span,
.diagram em {
  display: block;
}

.diagram strong {
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.diagram em {
  margin-top: 10px;
  color: #59636f;
  font-style: normal;
  font-size: 12px;
}

.blue-box {
  background: #f7fbff;
  border: 1px solid #dce8f8;
  padding: 22px;
  margin: 22px 0;
}

.blue-box ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.warning-list p {
  border-top: 1px solid #d9dde2;
  padding-top: 16px;
}

.warning-list strong {
  color: #333333;
}

.district-box {
  background: #f7f8fb;
  padding: 18px;
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.district-box a {
  border: 1px solid var(--blue);
  color: var(--blue);
  background: #fff;
  padding: 5px 12px;
  font-weight: 700;
  font-size: 12px;
}

.business-page {
  width: min(1120px, calc(100% - 28px));
  margin: 38px auto 72px;
}

.business-hero {
  background: #fff;
  border: 1px solid #dce8f8;
  border-top: 5px solid var(--blue);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.business-hero__inner {
  padding: 44px 48px;
  background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
}

.business-eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.business-hero h1 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0;
}

.business-hero p {
  max-width: 820px;
  margin: 0;
  color: #4e5966;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 400;
}

.business-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.business-btn {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.business-btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: inset 0 -3px 0 var(--blue-dark);
}

.business-btn-outline {
  background: #fff;
  color: var(--blue);
  border: 1px solid #cfdcf7;
}

.business-btn:disabled {
  cursor: default;
  opacity: .75;
}

.business-section {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-top: 28px;
  padding: 30px 34px;
}

.business-section-muted {
  background: #f9fbff;
  border-color: #dce8f8;
}

.business-section__head {
  margin-bottom: 22px;
}

.business-section__head h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  border-bottom: 3px solid var(--blue);
  padding-bottom: 12px;
}

.business-section__head p {
  margin: 0;
  color: #5a6571;
  font-size: 14px;
  font-weight: 400;
}

.business-cards,
.business-info-grid {
  display: grid;
  gap: 18px;
}

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

.business-info-grid {
  grid-template-columns: 1fr 1fr;
}

.business-cards article,
.business-info-grid > div {
  background: #fff;
  border: 1px solid #dce8f8;
  border-radius: 6px;
  padding: 20px;
}

.business-cards span {
  display: inline-flex;
  min-width: 42px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.business-cards h3,
.business-info-grid h3,
.business-flow h3 {
  margin: 12px 0 8px;
  color: var(--blue-dark);
  font-size: 17px;
  line-height: 1.45;
}

.business-cards p,
.business-flow p {
  margin: 0;
  color: #4e5966;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 400;
}

.business-info-grid ul {
  margin: 10px 0 0;
  padding-left: 1.2em;
  color: #4e5966;
  font-size: 13px;
  line-height: 1.9;
  font-weight: 400;
}

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

.business-flow li {
  background: #f7fbff;
  border: 1px solid #dce8f8;
  border-radius: 6px;
  padding: 18px;
}

.business-flow span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
}

.business-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.business-contact-form label {
  display: grid;
  gap: 7px;
}

.business-contact-form span {
  color: #333;
  font-size: 13px;
  font-weight: 700;
}

.business-contact-form em {
  color: var(--red);
  font-style: normal;
}

.business-contact-form input,
.business-contact-form select,
.business-contact-form textarea {
  width: 100%;
  border: 1px solid #cfd6df;
  border-radius: 6px;
  background: #fff;
  color: #333;
  font: inherit;
  font-weight: 500;
  padding: 12px 13px;
}

.business-contact-form input:focus,
.business-contact-form select:focus,
.business-contact-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(79, 111, 186, .14);
}

.business-contact-form .is-invalid {
  border-color: var(--red);
  background: #fffafa;
}

.business-contact-form .is-invalid:focus {
  outline-color: rgba(232, 74, 60, .15);
}

.business-contact-form textarea {
  resize: vertical;
}

.field-error,
.field-help {
  min-height: 18px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
}

.field-error {
  color: var(--red);
}

.field-help {
  color: #777;
}

.privacy-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 8px 10px;
  background: #fff;
  border: 1px solid #dce8f8;
  border-radius: 6px;
  padding: 13px 14px;
}

.privacy-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.privacy-consent span,
.privacy-consent .field-error {
  grid-column: 2;
}

.privacy-consent a {
  color: var(--blue);
  text-decoration: underline;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-wide,
.form-message,
.form-actions {
  grid-column: 1 / -1;
}

.form-message {
  background: #eaf8f1;
  border: 1px solid #b9e7cf;
  border-left: 4px solid #24a164;
  color: #127944;
  padding: 13px 15px;
  font-weight: 700;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.form-confirm-note {
  width: 100%;
  margin: 0;
  color: #4e5966;
  font-size: 13px;
  font-weight: 700;
}

.form-actions small {
  color: #666;
  font-size: 12px;
  font-weight: 400;
}

.site-footer {
  background: #fff;
  border-top: 1px solid #dce8f8;
  margin-top: 48px;
}

.site-footer__inner {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.site-footer strong {
  color: var(--navy);
  font-size: 18px;
}

.site-footer p {
  margin: 6px 0 0;
  color: #666;
  font-size: 12px;
  font-weight: 400;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: flex-end;
}

.site-footer a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.site-footer__notice {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  border-top: 1px solid #eef1f5;
  padding: 12px 0 0;
  line-height: 1.7;
  color: #667085;
  font-size: 12px;
  font-weight: 400;
}

.site-footer__notice a {
  font-size: inherit;
}

.site-footer__copy {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  border-top: 1px solid #eef1f5;
  padding: 14px 0 18px;
  text-align: center;
}

.legal-page {
  width: min(920px, calc(100% - 28px));
  margin: 38px auto 72px;
}

.legal-hero,
.legal-card {
  background: #fff;
  border: 1px solid #dce8f8;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-hero {
  border-top: 5px solid var(--blue);
  padding: 34px 38px;
  margin-bottom: 24px;
}

.legal-hero h1 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.35;
}

.legal-hero p,
.legal-card p {
  margin: 0;
  color: #4e5966;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 400;
}

.legal-card {
  padding: 28px 32px;
  margin-bottom: 20px;
}

.legal-card h2 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 21px;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 8px;
}

.legal-card h2:not(:first-child) {
  margin-top: 28px;
}

.legal-card a {
  color: var(--blue);
  text-decoration: underline;
  font-weight: 700;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.legal-table th,
.legal-table td {
  border-bottom: 1px solid #e4eaf5;
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  width: 180px;
  color: var(--navy);
  background: #f7fbff;
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #333;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 700;
  z-index: 45;
}

.mobile-filter-bar,
.filter-backdrop {
  display: none;
}

@media (max-width: 900px) {
  .site-header__inner {
    height: 62px;
  }

  .main-content {
    width: min(720px, calc(100% - 32px));
    margin: 24px auto 72px;
  }

  .main-content.has-sidebar {
    display: block;
  }

  .brand__text strong {
    font-size: 18px;
  }

  .global-nav {
    display: none;
  }

  .mobile-filter-open {
    display: inline-flex;
    border: 0;
    background: var(--orange);
    color: #fff;
    border-radius: 4px;
    padding: 9px 14px;
    font-weight: 700;
  }

  .page-shell {
    width: min(720px, calc(100% - 24px));
    margin-top: 24px;
    display: block;
  }

  .business-page {
    width: min(720px, calc(100% - 24px));
    margin: 24px auto 72px;
  }

  .business-hero__inner,
  .business-section {
    padding: 24px 18px;
  }

  .business-cards,
  .business-info-grid,
  .business-flow,
  .business-contact-form {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    display: block;
  }

  .site-footer nav {
    justify-content: flex-start;
    margin-top: 16px;
  }

  .legal-hero,
  .legal-card {
    padding: 22px 18px;
  }

  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
  }

  .business-hero__actions,
  .form-actions {
    align-items: stretch;
  }

  .business-btn {
    width: 100%;
  }

  .search-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(320px, 88vw);
    transform: translateX(-105%);
    transition: transform .2s ease;
    z-index: 80;
    background: #f1f3f5;
    overflow-y: auto;
  }

  .filter-open .search-sidebar {
    transform: translateX(0);
  }

  .filter-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
  }

  .filter-close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #d7dce1;
    font-size: 20px;
  }

  .filter-card {
    min-height: 100%;
    padding-top: 28px;
  }

  .filter-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.36);
    z-index: 70;
  }

  .filter-open .filter-backdrop {
    display: block;
  }

  .mobile-filter-bar {
    display: block;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 60;
    height: 48px;
    border: 0;
    border-radius: 24px;
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(0,0,0,.22);
  }

  .estimate-options {
    grid-template-columns: 1fr 1fr;
  }

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

  .vendor-image img {
    height: 220px;
  }

  .vendor-cta {
    width: 100%;
    flex-direction: column;
  }

  .review-detail-hero,
  .review-info-grid {
    grid-template-columns: 1fr;
  }

  .review-detail-hero,
  .review-info-grid > div,
  .review-score-section,
  .review-comments-section,
  .review-bottom-cta,
  .review-detail-empty {
    padding: 18px;
  }

  .review-hero-image img {
    height: 210px;
  }

  .review-info-grid dl {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .review-score-panel {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .article-hero-title {
    padding: 18px;
    margin-bottom: 34px;
  }

  .article-hero-title h2 {
    font-size: 23px;
  }

  .article-lead h3,
  .article-heading {
    font-size: 21px;
  }

  .article-content p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
  }

  .zigzag-card,
  .zigzag-card.reverse {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 28px 0 46px;
  }

  .zigzag-card.reverse img,
  .zigzag-card.reverse div {
    grid-column: auto;
    grid-row: auto;
  }

  .zigzag-card img {
    height: 230px;
  }

  .zigzag-card div,
  .zigzag-card.reverse div {
    margin: 0;
    border-width: 6px;
    padding: 24px 20px;
  }

  .zigzag-card h4 {
    font-size: 19px;
  }

  .reason-item h4 {
    font-size: 20px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 13px;
  }

  .main-content {
    width: calc(100% - 28px);
    margin: 20px auto 64px;
  }

  .top-strip {
    justify-content: flex-start;
    padding: 0 12px;
    overflow: hidden;
    white-space: nowrap;
  }

  .estimate-title h2 {
    font-size: 24px;
  }

  .estimate-title span {
    font-size: 18px;
  }

  .estimate-options {
    grid-template-columns: 1fr;
  }

  .vendor-card {
    padding: 14px;
  }

  .vendor-badge {
    position: static;
    width: fit-content;
    margin-bottom: 10px;
  }

  .vendor-head {
    padding-left: 0;
  }

  .vendor-head h2 {
    font-size: 18px;
  }

  .stars {
    font-size: 18px;
  }

  .article-content {
    padding-bottom: 70px;
  }
}

/* Home page */
.home-page {
  background: #fff;
}

.home-page .site-header {
  background: #fff;
  border-bottom: 1px solid #edf2f8;
  box-shadow: 0 4px 18px rgba(27, 47, 76, 0.08);
}

.home-page .site-header__inner {
  width: min(1390px, calc(100% - 64px));
  height: 104px;
}

.home-page .brand {
  gap: 14px;
}

.home-page .brand__mark {
  width: 64px;
  height: 48px;
}

.home-page .brand__text strong {
  color: #272e38;
  font-size: clamp(20px, 2vw, 31px);
  letter-spacing: 0;
}

.home-page .brand__text small {
  color: #f47c24;
  font-size: clamp(16px, 1.6vw, 25px);
}

.home-page .global-nav {
  gap: clamp(22px, 3.4vw, 52px);
  font-size: 16px;
  font-weight: 700;
}

.home-page .global-nav a {
  color: #172033;
}

.home-page .global-nav small {
  color: #333b4a;
  font-size: 12px;
  font-weight: 600;
}

.home-page .nav-search {
  display: none;
}

.home-page .nav-search::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 4px solid #111827;
  border-radius: 50%;
}

.home-page .nav-search::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 22px;
  width: 11px;
  height: 4px;
  border-radius: 999px;
  background: #111827;
  transform: rotate(-48deg);
  transform-origin: left center;
}

.home-hero {
  position: relative;
  min-height: 720px;
  background: #f6fbff url("/images/minna-exterior-navi/exterior-hero-background.png") center top / cover no-repeat;
  color: #173761;
  overflow: hidden;
}

.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-hero::before {
  inset: auto -80px -120px 48%;
  height: 360px;
  background:
    repeating-linear-gradient(150deg, transparent 0 26px, rgba(52, 127, 205, 0.18) 27px 34px, transparent 35px 66px),
    linear-gradient(135deg, rgba(221, 241, 255, 0.95), rgba(235, 247, 255, 0.45));
  clip-path: polygon(10% 20%, 100% 0, 100% 100%, 0 100%);
}

.home-hero::after {
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.86) 0 3px, transparent 3.5px),
    radial-gradient(circle, rgba(42, 129, 213, 0.18) 0 2px, transparent 2.5px);
  background-size: 34px 34px, 18px 18px;
  background-position: 54% 12%, 56% 43%;
  mask-image: radial-gradient(circle at 61% 18%, #000 0 12%, transparent 26%), radial-gradient(circle at 61% 48%, #000 0 13%, transparent 22%);
}

.home-hero__pattern {
  display: none;
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1380px, calc(100% - 72px));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(760px, 1fr) minmax(420px, 0.62fr);
  grid-template-rows: 1fr auto 68px;
  gap: 24px 34px;
  align-items: center;
  padding-top: 70px;
}

.home-hero__copy {
  position: relative;
  z-index: 4;
  align-self: center;
  padding: 0 0 24px 2px;
  text-align: left;
}

.home-hero__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 34px;
  margin: 0 0 28px;
  color: #1f5fae;
  font-size: clamp(17px, 1.55vw, 24px);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.home-hero__eyebrow::before,
.home-hero__eyebrow::after {
  content: "";
  width: 44px;
  height: 2px;
  background: #1f5fae;
  transform: rotate(45deg);
}

.home-hero__eyebrow::after {
  transform: rotate(-45deg);
}

.home-hero h1 {
  margin: 0;
  color: #173761;
  font-size: clamp(34px, 3.1vw, 50px);
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.home-hero h1 span {
  display: block;
  white-space: nowrap;
}

.home-hero h1 em {
  color: #f47c24;
  font-style: normal;
}

.home-hero__lead {
  margin: 30px 0 0;
  color: #2a313d;
  font-size: clamp(19px, 2vw, 29px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.home-hero__stats {
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: min(360px, 100%);
  gap: 14px;
  margin-top: 28px;
  padding: 9px 26px;
  border: 2px solid #bfd9f4;
  border-radius: 999px;
  background: rgba(243, 249, 255, 0.86);
  box-shadow: inset 0 1px 0 #fff, 0 10px 26px rgba(41, 99, 168, 0.1);
  color: #1f2937;
  font-weight: 700;
}

.home-hero__stats strong {
  color: #2f67b9;
  font-size: clamp(42px, 4vw, 54px);
  line-height: 1;
}

.home-hero__visual {
  display: none;
}

.home-hero__visual::before {
  content: "";
  position: absolute;
  inset: -20px -120px 46px 44px;
  border-radius: 46% 0 0 54%;
  background: linear-gradient(135deg, #b9ddff 0%, #72b7ee 58%, #5b9fe0 100%);
  transform: skewX(-5deg);
}

.iso-office {
  position: relative;
  z-index: 2;
  width: min(470px, 78vw);
  height: 330px;
  transform: rotateX(58deg) rotateZ(-36deg);
  transform-style: preserve-3d;
  filter: drop-shadow(22px 28px 24px rgba(29, 75, 130, 0.22));
}

.iso-office__floor,
.iso-office__wall,
.iso-office__frame,
.iso-office__desk,
.iso-office__shelf,
.iso-office__plant {
  position: absolute;
  transform-style: preserve-3d;
}

.iso-office__floor {
  inset: 72px 28px 18px 36px;
  background:
    linear-gradient(90deg, rgba(210, 217, 225, 0.9) 1px, transparent 1px),
    linear-gradient(0deg, rgba(210, 217, 225, 0.9) 1px, transparent 1px),
    #eef0f2;
  background-size: 62px 62px;
  border: 12px solid #fff;
  box-shadow: inset 0 0 0 1px #d7dee7;
}

.iso-office__wall {
  background: linear-gradient(90deg, #f4d8b8, #fff 56%);
  border: 12px solid #fff;
  box-shadow: inset 0 0 0 1px rgba(187, 199, 214, 0.75);
}

.iso-office__wall--left {
  left: 36px;
  top: 72px;
  width: 82px;
  height: 210px;
  transform-origin: left bottom;
  transform: rotateY(90deg) translateZ(1px);
}

.iso-office__wall--back {
  left: 36px;
  top: 72px;
  width: 405px;
  height: 96px;
  transform-origin: left top;
  transform: rotateX(90deg) translateY(-96px);
}

.iso-office__frame--front {
  left: 168px;
  top: 72px;
  width: 276px;
  height: 210px;
  border: 12px solid #fff;
  border-left-width: 9px;
  background:
    linear-gradient(90deg, transparent 0 31%, rgba(255,255,255,0.95) 31.8% 34%, transparent 34.8% 65%, rgba(255,255,255,0.95) 65.8% 68%, transparent 68.8%),
    rgba(231, 242, 252, 0.44);
  transform-origin: right bottom;
  transform: rotateY(-90deg) translateZ(0);
}

.iso-office__desk {
  left: 112px;
  top: 176px;
  width: 136px;
  height: 72px;
  background: #ead5bd;
  border: 8px solid #fff;
  transform: translateZ(34px);
  box-shadow: 0 0 0 1px rgba(188, 164, 139, 0.28);
}

.iso-office__desk::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 8px;
  width: 28px;
  height: 62px;
  background: #d5ad83;
  transform: rotateY(90deg);
  transform-origin: left center;
}

.iso-office__shelf {
  left: 58px;
  top: 102px;
  width: 58px;
  height: 98px;
  background:
    linear-gradient(90deg, transparent 46%, rgba(177, 127, 78, 0.36) 47% 52%, transparent 53%),
    linear-gradient(0deg, transparent 31%, rgba(177, 127, 78, 0.36) 32% 36%, transparent 37% 65%, rgba(177, 127, 78, 0.36) 66% 70%, transparent 71%),
    #d6a86f;
  transform: translateZ(54px);
}

.iso-office__plant {
  right: 78px;
  bottom: 72px;
  width: 44px;
  height: 74px;
  transform: translateZ(62px) rotateZ(36deg) rotateX(-58deg);
}

.iso-office__plant::before {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 0;
  width: 24px;
  height: 32px;
  border-radius: 6px 6px 12px 12px;
  background: linear-gradient(#f8f8f7, #d8dde4);
  box-shadow: inset 0 -4px 0 rgba(0,0,0,0.06);
}

.iso-office__plant i {
  position: absolute;
  left: 20px;
  bottom: 26px;
  width: 9px;
  height: 48px;
  border-radius: 999px 999px 0 0;
  background: #4f8b43;
  transform-origin: bottom center;
}

.iso-office__plant i:nth-child(1) { transform: rotate(-34deg); }
.iso-office__plant i:nth-child(2) { transform: rotate(-12deg); height: 56px; }
.iso-office__plant i:nth-child(3) { transform: rotate(16deg); height: 52px; }
.iso-office__plant i:nth-child(4) { transform: rotate(42deg); }

.hero-map {
  position: absolute;
  z-index: 1;
  right: -38px;
  bottom: -6px;
  width: 560px;
  height: 260px;
  opacity: 0.96;
}

.hero-map__road {
  position: absolute;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 8px rgba(103, 163, 220, 0.22);
}

.hero-map__road--one {
  left: 64px;
  right: -20px;
  top: 130px;
  height: 22px;
  transform: rotate(-19deg);
}

.hero-map__road--two {
  left: 180px;
  top: 26px;
  width: 24px;
  height: 245px;
  transform: rotate(30deg);
}

.hero-map__road--three {
  left: 0;
  top: 188px;
  width: 250px;
  height: 20px;
  transform: rotate(14deg);
}

.hero-map__pin {
  position: absolute;
  right: 130px;
  bottom: 66px;
  width: 78px;
  height: 78px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, #f8b34e, #f47c24);
  transform: rotate(-45deg);
  box-shadow: 0 12px 26px rgba(231, 117, 30, 0.34);
}

.hero-map__pin::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: #fff;
}

.hero-map__dot {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #6ba9e7;
  box-shadow: inset 0 0 0 13px rgba(255, 255, 255, 0.82);
}

.hero-map__dot--one {
  left: 130px;
  bottom: 34px;
}

.hero-map__dot--two {
  right: 30px;
  top: 62px;
}

.home-search {
  grid-column: 1 / 2;
  align-self: start;
  width: min(900px, 100%);
  margin: 10px 0 0;
  padding: 24px 28px 26px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(212, 225, 239, 0.92);
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(40, 65, 95, 0.16);
  color: #1f2937;
  text-align: left;
}

.home-hero__copy {
  grid-column: 1 / 2;
}

.home-search label {
  display: block;
  margin: 0 0 18px;
  color: #1f5fae;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 700;
}

.home-search__row {
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(280px, 1fr) 90px;
  gap: 12px;
}

.home-search select,
.home-search input,
.home-search button {
  min-height: 76px;
  border-radius: 10px;
  font: inherit;
}

.home-search select,
.home-search input {
  border: 2px solid #dce4ef;
  padding: 0 22px;
  background: #fff;
  color: #1f2937;
  font-size: 18px;
  font-weight: 700;
}

.home-search input::placeholder {
  color: #7c8592;
}

.home-search button {
  display: grid;
  place-items: center;
  border: 0;
  background: #f47c24;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: inset 0 -4px 0 rgba(185, 80, 12, 0.35), 0 10px 18px rgba(244, 124, 36, 0.24);
}

.home-search p {
  margin: 17px 0 0;
  color: #5d6876;
  font-size: 17px;
  font-weight: 700;
}

.home-section {
  position: relative;
  padding: 68px 0;
}

.home-section__inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.home-section__label {
  position: absolute;
  inset: 24px auto auto 50%;
  transform: translateX(-50%);
  color: #eaf1f8;
  font-size: clamp(64px, 12vw, 150px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  pointer-events: none;
}

.home-news {
  background: #f7f9fc;
}

.home-news__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.home-news ul {
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.home-news li + li {
  border-top: 1px solid #edf1f7;
}

.home-news a {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  color: #2f3337;
}

.home-news time {
  color: var(--blue);
  font-weight: 700;
}

.home-news b {
  color: var(--orange);
}

.home-heading {
  margin-bottom: 30px;
  text-align: center;
}

.home-heading span {
  display: block;
  color: #1f5fae;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-heading h2 {
  margin: 8px 0 10px;
  color: #173761;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.home-heading p {
  margin: 0 auto;
  color: #647084;
  text-align: center;
}

.home-area {
  background:
    radial-gradient(circle at 9% 0%, rgba(232, 244, 255, 0.95) 0 9%, transparent 9.5%),
    radial-gradient(circle at 98% 0%, rgba(229, 244, 255, 0.8) 0 13%, transparent 13.5%),
    linear-gradient(180deg, #fff, #f8fbff);
  overflow: hidden;
}

.area-panel {
  position: relative;
  padding: 34px;
  border: 1px solid #dceaf7;
  border-radius: 18px;
  background:
    radial-gradient(circle at 0 0, rgba(216, 237, 255, 0.42), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(220, 240, 255, 0.52), transparent 28%),
    rgba(247, 252, 255, 0.92);
  box-shadow: 0 16px 42px rgba(31, 95, 174, 0.09);
}

.area-panel::before,
.area-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(92, 164, 231, 0.28) 0 2px, transparent 2.5px);
  background-size: 18px 18px;
}

.area-panel::before {
  left: -40px;
  top: -26px;
  width: 180px;
  height: 150px;
}

.area-panel::after {
  right: -42px;
  bottom: -22px;
  width: 190px;
  height: 150px;
}

.area-panel__main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(520px, 1.08fr) minmax(420px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.area-map {
  margin: 0;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid #d7e6f5;
  border-radius: 14px;
  background: #eaf6ff;
  box-shadow: 0 12px 26px rgba(47, 94, 140, 0.1);
}

.area-map img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.popular-area {
  min-height: 360px;
  padding: 32px 30px 24px;
  border: 1px solid #d7e6f5;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.popular-area h3 {
  position: relative;
  margin: 0 0 32px;
  color: #173761;
  font-size: clamp(22px, 1.8vw, 26px);
  font-weight: 700;
}

.popular-area h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 66px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f47c24 0 44%, #1f5fae 44% 100%);
}

.popular-area__buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.area-button {
  min-height: 58px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 14px;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid #d9e1ea;
  border-radius: 10px;
  background: #fff;
  color: #1d2430;
  box-shadow: 0 8px 16px rgba(28, 51, 77, 0.08);
}

.area-button.is-active {
  border-color: #fac9aa;
  background: #fff2e9;
}

.pin-icon {
  position: relative;
  width: 22px;
  height: 22px;
  display: inline-block;
  border-radius: 50% 50% 50% 0;
  background: #3e86df;
  transform: rotate(-45deg);
}

.pin-icon::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #fff;
}

.area-button.is-active .pin-icon {
  background: #f47c24;
}

.area-button strong {
  min-width: 0;
  color: #1d2430;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.28;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.area-button em,
.wide-area-buttons em {
  color: #6c7a8e;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
}

.area-button.is-active em {
  color: #f47c24;
}

.popular-area p {
  margin: 28px 0 0;
  color: #5d6876;
  font-size: 14px;
}

.wide-area-buttons {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.wide-area-buttons a {
  min-height: 76px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid #e2e9f1;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(28, 51, 77, 0.08);
}

.wide-area-buttons strong {
  color: #1d2430;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}

.area-icon {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: end center;
  color: #3e86df;
}

.area-icon::before {
  content: "";
  width: 26px;
  height: 28px;
  background: currentColor;
  opacity: 0.95;
}

.area-icon--building::before {
  clip-path: polygon(8% 100%, 8% 20%, 28% 20%, 28% 0, 72% 0, 72% 20%, 92% 20%, 92% 100%, 78% 100%, 78% 34%, 62% 34%, 62% 100%, 38% 100%, 38% 34%, 22% 34%, 22% 100%);
}

.area-icon--temple {
  color: #f47c24;
}

.area-icon--temple::before {
  clip-path: polygon(50% 0, 92% 18%, 82% 30%, 82% 100%, 68% 100%, 68% 48%, 32% 48%, 32% 100%, 18% 100%, 18% 30%, 8% 18%);
}

.area-icon--bridge::before {
  clip-path: polygon(6% 100%, 6% 48%, 16% 48%, 16% 72%, 84% 72%, 84% 48%, 94% 48%, 94% 100%, 84% 100%, 84% 84%, 16% 84%, 16% 100%);
}

.area-icon--tower::before {
  clip-path: polygon(42% 0, 58% 0, 64% 32%, 82% 100%, 64% 100%, 58% 70%, 42% 70%, 36% 100%, 18% 100%, 36% 32%);
}

.area-icon--tokyo {
  color: #f47c24;
}

.area-icon--tokyo::before {
  clip-path: polygon(48% 0, 52% 0, 58% 38%, 82% 100%, 64% 100%, 58% 78%, 42% 78%, 36% 100%, 18% 100%, 42% 38%);
}

/* Legacy area styles kept for older generated pages if needed. */
.home-area-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-area-cards a {
  position: relative;
  min-height: 160px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--area-img) center/cover no-repeat;
  box-shadow: var(--shadow);
}

.home-area-cards a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58));
}

.home-area-cards span {
  position: relative;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.home-area-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 26px;
}

.home-area-links > div {
  padding: 24px;
  border: 1px solid #dce8f8;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.home-area-links h3 {
  margin: 0 0 14px;
  color: #2f3337;
  font-size: 18px;
  font-weight: 700;
}

.home-area-links a {
  display: inline-flex;
  margin: 0 18px 12px 0;
  color: var(--blue);
  font-weight: 700;
}

.home-area-links a::before {
  content: "›";
  margin-right: 8px;
}

.home-service {
  position: relative;
  background:
    radial-gradient(circle at 4% 4%, rgba(216, 236, 255, 0.85) 0 9%, transparent 9.5%),
    radial-gradient(circle at 96% 0%, rgba(226, 241, 255, 0.7) 0 10%, transparent 10.5%),
    radial-gradient(circle at 95% 85%, rgba(220, 240, 255, 0.8) 0 9%, transparent 9.5%),
    linear-gradient(180deg, #fbfdff, #f5faff);
  overflow: hidden;
}

.home-service::before,
.home-service::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(68, 143, 220, 0.32) 0 2px, transparent 2.5px);
  background-size: 18px 18px;
}

.home-service::before {
  left: 0;
  top: 12px;
  width: 190px;
  height: 160px;
}

.home-service::after {
  right: 0;
  bottom: 24px;
  width: 180px;
  height: 150px;
}

.service-heading span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.service-heading span::before,
.service-heading span::after {
  content: "";
  width: 34px;
  height: 2px;
  background: #1e40af;
}

.service-heading h2 {
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.25;
}

.service-heading p {
  max-width: 900px;
  color: #334155;
  font-size: clamp(15px, 1.45vw, 20px);
}

.service-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(560px, 1.02fr) minmax(620px, 1fr);
  gap: 30px;
  align-items: stretch;
}

.service-visual {
  margin: 0;
  min-height: 612px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid #dceaf7;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 38px rgba(30, 64, 175, 0.11);
  overflow: hidden;
}

.service-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 14px;
}

.service-feature-list {
  display: grid;
  gap: 12px;
}

.service-feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 112px;
  padding: 18px 24px 18px 18px;
  background: #fff;
  border: 1px solid #e4edf8;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(31, 95, 174, 0.1);
}

.service-icon {
  position: relative;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf4ff;
  color: #1f5fae;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.service-icon--house::before {
  width: 38px;
  height: 30px;
  bottom: 16px;
  clip-path: polygon(0 36%, 50% 0, 100% 36%, 88% 36%, 88% 100%, 12% 100%, 12% 36%);
}

.service-icon--house::after {
  width: 10px;
  height: 16px;
  bottom: 16px;
  border-radius: 2px 2px 0 0;
  background: #eaf4ff;
}

.service-icon--review::before {
  width: 44px;
  height: 32px;
  border: 4px solid currentColor;
  border-radius: 50%;
  background: transparent;
}

.service-icon--review::after {
  width: 24px;
  height: 24px;
  background: #f8b41f;
  clip-path: polygon(50% 0, 61% 34%, 98% 34%, 68% 55%, 79% 90%, 50% 68%, 21% 90%, 32% 55%, 2% 34%, 39% 34%);
}

.service-icon--tools::before {
  width: 44px;
  height: 12px;
  border-radius: 999px;
  transform: rotate(-45deg);
}

.service-icon--tools::after {
  width: 38px;
  height: 12px;
  border-radius: 999px;
  transform: rotate(45deg);
  box-shadow: 17px -14px 0 -4px currentColor;
}

.service-icon--money::before {
  width: 34px;
  height: 42px;
  border: 5px solid currentColor;
  border-radius: 5px;
  background:
    linear-gradient(currentColor 0 0) 50% 31% / 18px 4px no-repeat,
    linear-gradient(currentColor 0 0) 50% 52% / 18px 4px no-repeat,
    transparent;
}

.service-icon--money::after {
  right: 12px;
  bottom: 10px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f47c24;
  color: #fff;
  content: "¥";
  font-size: 17px;
  font-weight: 700;
}

.service-icon--support::before {
  width: 42px;
  height: 35px;
  border: 5px solid currentColor;
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  background: transparent;
}

.service-icon--support::after {
  width: 44px;
  height: 28px;
  bottom: 14px;
  border-radius: 22px 22px 9px 9px;
  background: currentColor;
  box-shadow: 0 13px 0 -8px currentColor;
}

.service-feature-card h3 {
  margin: 0 0 5px;
  color: #071b4d;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.3;
  font-weight: 700;
}

.service-feature-card p {
  margin: 0;
  color: #334155;
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.65;
}

.service-cta {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  text-align: center;
}

.service-cta a {
  width: min(560px, 100%);
  min-height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff8a1f, #f5680b);
  color: #fff;
  box-shadow: inset 0 -5px 0 rgba(177, 73, 0, 0.35), 0 12px 24px rgba(245, 104, 11, 0.28);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 700;
}

.service-cta a span {
  position: relative;
  width: 34px;
  height: 34px;
  border: 6px solid currentColor;
  border-radius: 50%;
}

.service-cta a span::after {
  content: "";
  position: absolute;
  right: -17px;
  bottom: -9px;
  width: 19px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
}

.service-cta p {
  margin: 12px 0 0;
  color: #1e40af;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.ad-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  align-items: center;
  padding: 34px 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f59b23, #f7c948);
  color: #fff;
  box-shadow: 0 18px 36px rgba(232, 132, 58, 0.32);
}

.ad-banner span {
  grid-column: 1 / -1;
  font-size: 17px;
  font-weight: 700;
}

.ad-banner strong {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0.05em;
}

.ad-banner em {
  justify-self: end;
  font-style: normal;
  font-size: 20px;
  font-weight: 700;
}

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

.article-card-grid a {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid #dce8f8;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  color: #2f3337;
}

.article-card-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid #e6edf7;
}

.article-card-grid strong {
  font-size: 16px;
  line-height: 1.55;
  color: var(--blue);
}

.article-card-grid time {
  color: #748094;
  font-size: 13px;
}

.home-more {
  margin: 28px 0 0;
  text-align: center;
}

.home-more a {
  display: inline-flex;
  min-width: 220px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  border-radius: 999px;
  color: var(--blue);
  font-weight: 700;
}

.footer-area-map {
  width: min(1120px, calc(100% - 32px));
  margin: 20px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.footer-area-map a {
  color: #fff;
  opacity: 0.86;
}

@media (max-width: 960px) {
  .home-page .site-header__inner {
    width: min(100% - 28px, 720px);
    height: auto;
    min-height: 88px;
    padding: 16px 0;
    flex-wrap: wrap;
    gap: 12px;
  }

  .home-page .global-nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

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

  .home-hero__inner {
    width: min(100% - 32px, 720px);
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 44px 0 46px;
  }

  .home-hero__copy {
    padding: 0;
  }

  .home-hero__visual {
    min-height: 360px;
    order: 2;
  }

  .home-search {
    grid-column: auto;
    order: 3;
    margin: 0;
  }

  .home-search__row,
  .service-layout,
  .home-area-links {
    grid-template-columns: 1fr;
  }

  .service-layout {
    gap: 22px;
  }

  .service-visual {
    min-height: auto;
    padding: 0;
  }

  .service-visual img {
    height: auto;
    object-fit: contain;
  }

  .service-feature-card {
    min-height: auto;
  }

  .area-panel {
    padding: 22px;
  }

  .area-panel__main {
    grid-template-columns: 1fr;
  }

  .area-map,
  .popular-area {
    min-height: auto;
  }

  .area-map img {
    min-height: 280px;
  }

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

  .wide-area-buttons {
    grid-template-columns: repeat(5, minmax(190px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .wide-area-buttons a {
    scroll-snap-align: start;
  }

  .home-area-cards,
  .article-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 640px) {
  .home-page .brand__mark {
    width: 52px;
    height: 40px;
  }

  .home-page .brand__text strong {
    font-size: 19px;
  }

  .home-page .brand__text small {
    font-size: 15px;
  }

  .home-page .global-nav a {
    font-size: 13px;
  }

  .home-page .global-nav small {
    font-size: 10px;
  }

  .home-hero__inner {
    width: min(100% - 24px, 420px);
    padding: 34px 0 40px;
  }

  .home-hero__eyebrow {
    gap: 14px;
    margin-bottom: 16px;
    font-size: 14px;
  }

  .home-hero__eyebrow::before,
  .home-hero__eyebrow::after {
    width: 24px;
  }

  .home-hero h1 {
    font-size: clamp(27px, 7.2vw, 32px);
    line-height: 1.42;
  }

  .home-hero h1 span {
    white-space: normal;
  }

  .home-hero__lead {
    margin-top: 20px;
    font-size: 16px;
  }

  .home-hero__stats {
    margin-top: 18px;
    padding: 8px 18px;
  }

  .home-hero__stats strong {
    font-size: 40px;
  }

  .home-hero__visual {
    min-height: 205px;
  }

  .home-hero__visual::before {
    inset: 12px -80px 18px 26px;
  }

  .iso-office {
    width: 330px;
    height: 210px;
    transform: scale(0.52) rotateX(58deg) rotateZ(-36deg);
  }

  .hero-map {
    right: -220px;
    bottom: -42px;
    transform: scale(0.52);
  }

  .home-search {
    padding: 18px;
    border-radius: 14px;
  }

  .home-search label {
    font-size: 18px;
  }

  .home-search select,
  .home-search input,
  .home-search button {
    min-height: 60px;
    font-size: 15px;
  }

  .home-search p {
    font-size: 13px;
  }

  .home-search__row,
  .ad-banner {
    grid-template-columns: 1fr;
  }

  .home-news a {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 16px;
  }

  .home-news time,
  .home-news a span {
    grid-column: 1;
  }

  .home-news b {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    white-space: nowrap;
  }

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

  .service-heading h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .service-heading p {
    font-size: 15px;
  }

  .service-feature-card {
    gap: 14px;
    padding: 14px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .service-feature-card h3 {
    font-size: 19px;
  }

  .service-feature-card p {
    font-size: 13px;
  }

  .service-cta a {
    width: min(100%, 340px);
    min-height: 62px;
    gap: 12px;
    font-size: 22px;
  }

  .service-cta a span {
    width: 24px;
    height: 24px;
    border-width: 5px;
  }

  .service-cta a span::after {
    right: -13px;
    bottom: -7px;
    width: 15px;
    height: 5px;
  }

  .service-cta p {
    font-size: 14px;
  }

  .area-panel {
    margin-inline: -4px;
    padding: 16px;
    border-radius: 16px;
  }

  .area-map img {
    min-height: 210px;
  }

  .popular-area {
    padding: 24px 18px 20px;
  }

  .popular-area__buttons {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .area-button {
    min-height: 60px;
  }

  .wide-area-buttons {
    grid-template-columns: 1fr;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .wide-area-buttons a {
    min-height: 62px;
  }

  .home-section__label {
    font-size: 56px;
    top: 18px;
  }

  .home-area-cards,
  .article-card-grid {
    grid-template-columns: 1fr;
  }

  .home-area-cards a {
    min-height: 130px;
  }

  .ad-banner {
    padding: 26px 22px;
  }

  .ad-banner em {
    justify-self: start;
  }
}
