:root {
  --ink: #1f211c;
  --muted: #62665c;
  --paper: #fbfaf6;
  --cream: #f1ede3;
  --green: #103b2b;
  --green-2: #1f5a42;
  --line: #35c75a;
  --gold: #c8ad72;
  --border: rgba(31, 33, 28, .14);
  --shadow: 0 24px 70px rgba(20, 24, 18, .16);
  --radius: 8px;
  --max: 1180px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.75;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--border);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, .92);
  border-bottom: 1px solid rgba(31, 33, 28, .08);
  backdrop-filter: blur(16px);
}

.brand {
  min-width: 178px;
}

.brand__name {
  display: block;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.1;
}

.brand__sub {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
  font-weight: 700;
  font-size: .94rem;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .24s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.tel-link {
  font-family: Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

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

.btn--small {
  min-height: 44px;
  padding: 0 20px;
  font-size: .92rem;
}

.btn--large {
  min-height: 72px;
  padding: 15px 26px;
  flex-direction: column;
  gap: 2px;
}

.btn--large small {
  font-weight: 600;
  opacity: .82;
}

.btn--line {
  color: #fff;
  background: var(--line);
  box-shadow: 0 16px 36px rgba(53, 199, 90, .28);
}

.btn--ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .44);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.btn--ghost-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .54);
  background: rgba(255, 255, 255, .08);
}

.btn--outline {
  color: var(--green);
  border: 1px solid rgba(16, 59, 43, .28);
  background: #fff;
}

.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(16, 59, 43, .28);
  border-radius: var(--radius);
  background: transparent;
  place-items: center;
  padding: 10px;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--green);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 76px 0 auto 0;
  z-index: 90;
  display: none;
  background: rgba(251, 250, 246, .98);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu nav {
  display: grid;
  gap: 0;
  padding: 12px 22px 28px;
}

.mobile-menu a {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 800;
}

.mobile-menu a::after {
  content: ">";
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(8, 28, 21, .9) 0%, rgba(8, 28, 21, .72) 35%, rgba(8, 28, 21, .2) 72%),
    linear-gradient(0deg, rgba(0, 0, 0, .38), rgba(0, 0, 0, .04));
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 72px 0 92px;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.hero__copy {
  min-width: 0;
}

.google-rating {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  margin-bottom: 18px;
  padding: 8px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
  font-weight: 900;
}

.google-rating__brand {
  font-family: Arial, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.google-rating strong {
  color: #f6b500;
  letter-spacing: .04em;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 800;
  line-height: 1.18;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 6.2vw, 6.05rem);
}

.copy-mobile {
  display: none;
}

.hero__lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero__badges span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero__microcopy {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: .95rem;
  font-weight: 700;
}

.hero-card {
  padding: clamp(24px, 3vw, 34px);
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
}

.hero-card__label {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 4px 10px;
  color: var(--green);
  background: var(--cream);
  border-radius: 999px;
  font-weight: 900;
  font-size: .82rem;
}

.hero-card h2 {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  line-height: 1.35;
}

.hero-checks {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.hero-checks li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}

.hero-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--line);
  box-shadow: inset 0 0 0 4px #fff;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.hero-mini-grid div {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 12px 10px;
  text-align: center;
  background: var(--paper);
  border: 1px solid rgba(31, 33, 28, .1);
  border-radius: var(--radius);
}

.hero-mini-grid strong {
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 1.6rem;
  line-height: 1;
}

.hero-mini-grid span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.35;
}

.hero-card__link {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  color: #fff;
  background: var(--green);
  border-radius: var(--radius);
  font-weight: 900;
}

.proof-bar {
  width: min(var(--max), calc(100% - 44px));
  margin: -42px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.proof-bar div {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 22px;
  border-right: 1px solid var(--border);
}

.proof-bar div:last-child {
  border-right: 0;
}

.proof-bar strong {
  font-family: Georgia, serif;
  color: var(--green);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.proof-bar span {
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: clamp(72px, 9vw, 128px) 0;
}

.section--cream {
  background: var(--cream);
}

.section--dark {
  color: #fff;
  background: var(--green);
}

.section__head,
.section__grid,
.trust-split,
.footer {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.section__head {
  max-width: 790px;
  margin-bottom: 46px;
}

.section__head--row {
  max-width: var(--max);
  display: grid;
  grid-template-columns: 1fr minmax(260px, 430px);
  align-items: end;
  gap: 28px;
}

.section__head p:not(.section-kicker),
.rich-text,
.trust-split__content p,
.price-note {
  color: var(--muted);
}

.section--dark .section__head p:not(.section-kicker),
.section--dark .price-note {
  color: rgba(255, 255, 255, .76);
}

.section h2,
.final-cta h2,
.sub-hero h1,
.contact-hero h1 {
  font-size: clamp(2rem, 4.2vw, 4rem);
}

.section__grid--intro {
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr;
  gap: clamp(34px, 7vw, 96px);
}

.rich-text {
  font-size: 1.06rem;
}

.promise-grid {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.promise-card,
.mini-case,
.price-card {
  border-radius: var(--radius);
}

.promise-card {
  min-height: 300px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(31, 33, 28, .1);
}

.promise-card .num {
  color: var(--gold);
  font-family: Georgia, serif;
  font-weight: 800;
}

.promise-card h3,
.mini-case h3,
.flow-list h3,
.trust-split h2,
.work-card h3,
.price-card h3,
.trust-board h3,
.voice-panel h3,
.area-panel h3 {
  margin: 12px 0 10px;
  line-height: 1.45;
}

.promise-card p,
.mini-case p,
.flow-list p,
.work-card p,
.faq-list p,
.trust-board p,
.voice-panel p,
.area-panel p {
  margin: 0;
  color: var(--muted);
}

.trust-split {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(300px, 1fr);
  gap: clamp(36px, 7vw, 82px);
  align-items: center;
}

.trust-split__image img {
  aspect-ratio: 4 / 3;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

.text-link::after {
  content: ">";
}

.section-more {
  width: min(var(--max), calc(100% - 44px));
  margin: 30px auto 0;
}

.section-more--dark .text-link {
  color: #fff;
}

.works-grid {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr .8fr;
  gap: 18px;
}

.work-card--featured {
  grid-row: span 2;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 18px 52px rgba(20, 24, 18, .1);
}

.work-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.work-card__body {
  padding: 30px;
}

.work-card__body > span,
.mini-case span {
  color: var(--green-2);
  font-weight: 900;
  font-size: .86rem;
}

.work-card dl {
  display: flex;
  gap: 12px;
  margin: 24px 0 0;
}

.work-card dl div {
  min-width: 120px;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: var(--radius);
}

.work-card dt {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}

.work-card dd {
  margin: 0;
  font-weight: 900;
}

.mini-case {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
}

.mini-case strong {
  display: block;
  margin-top: 22px;
  color: var(--green);
}

.service-overview .detail-card {
  min-height: 260px;
}

.trust-board {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-board article,
.voice-panel,
.area-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.trust-board article {
  min-height: 270px;
  padding: 28px;
}

.trust-board span {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--green);
  background: var(--cream);
  font-weight: 900;
  font-size: .82rem;
}

.review-area {
  width: min(var(--max), calc(100% - 44px));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(300px, .9fr);
  gap: 18px;
}

.voice-panel,
.area-panel {
  padding: clamp(28px, 4vw, 42px);
}

.voice-panel blockquote {
  margin: 24px 0;
  padding: 0 0 0 22px;
  border-left: 4px solid var(--gold);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.65;
}

.area-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.area-chip-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid rgba(16, 59, 43, .2);
  border-radius: 999px;
  color: var(--green);
  background: var(--paper);
  font-weight: 900;
}

.price-grid {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-card {
  position: relative;
  min-height: 280px;
  padding: 30px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
}

.price-card--accent {
  background: #fff;
  color: var(--ink);
}

.price-card p,
.price-card span {
  color: rgba(255, 255, 255, .72);
}

.price-card--accent p,
.price-card--accent span {
  color: var(--muted);
}

.price-card strong {
  display: block;
  margin: 24px 0 10px;
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.1;
}

.price-card .label {
  display: inline-flex;
  padding: 4px 10px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  font-weight: 900;
}

.price-note {
  width: min(var(--max), calc(100% - 44px));
  margin: 28px auto 0;
}

.flow-list {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  list-style: none;
}

.flow-list li {
  padding: 28px;
  border-top: 3px solid var(--green);
  background: #fff;
  box-shadow: 0 18px 52px rgba(20, 24, 18, .08);
}

.flow-list span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
}

.faq-list {
  width: min(920px, calc(100% - 44px));
  margin: 0 auto;
}

.faq-list details {
  background: #fff;
  border: 1px solid rgba(31, 33, 28, .1);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}

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

.faq-list p {
  padding: 0 24px 24px;
}

.final-cta {
  color: #fff;
  background:
    linear-gradient(rgba(10, 45, 32, .9), rgba(10, 45, 32, .9)),
    url("assets/consultation.jpg") center / cover;
  padding: clamp(76px, 10vw, 136px) 0;
}

.final-cta__inner {
  width: min(860px, calc(100% - 44px));
  margin: 0 auto;
  text-align: center;
}

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

.final-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 22px;
}

.final-cta small {
  color: rgba(255, 255, 255, .72);
}

.sub-hero {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, .86fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: clamp(54px, 8vw, 92px) 0;
}

.sub-hero--plain {
  display: block;
  min-height: auto;
  max-width: 920px;
}

.sub-hero__content p:not(.section-kicker),
.contact-hero p,
.policy-body p {
  color: var(--muted);
}

.sub-hero h1,
.contact-hero h1 {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  line-height: 1.18;
}

.sub-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
}

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

.breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: var(--gold);
}

.page-section {
  padding: clamp(64px, 8vw, 112px) 0;
}

.page-section > .section__head,
.two-column,
.detail-grid,
.case-stack,
.price-table-wrap,
.factor-grid,
.timeline,
.faq-columns,
.profile-grid,
.company-table-wrap,
.area-grid,
.contact-hero,
.contact-grid,
.policy-body,
.cta-row {
  width: min(var(--max), calc(100% - 44px));
  margin-left: auto;
  margin-right: auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.two-column h2,
.page-section h2 {
  margin-top: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  line-height: 1.28;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.detail-card,
.notice-card,
.profile-card,
.contact-card,
.factor-grid article,
.quote-box {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
}

.detail-card {
  min-height: 330px;
  padding: 28px;
}

.detail-card > span,
.profile-card span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-weight: 800;
}

.detail-card h3,
.factor-grid h3,
.notice-card h3,
.contact-card h2 {
  margin: 12px 0 10px;
}

.detail-card p,
.detail-card li,
.factor-grid p,
.notice-card p,
.spec-list dd,
.company-table td {
  color: var(--muted);
}

.detail-card ul {
  margin: 20px 0 0;
  padding-left: 18px;
}

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

.diagnosis-list div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(31, 33, 28, .08);
  border-radius: var(--radius);
}

.diagnosis-list strong {
  color: var(--green);
  font-size: 1.2rem;
}

.case-stack {
  display: grid;
  gap: 22px;
}

.case-detail {
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(320px, 1fr);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 52px rgba(20, 24, 18, .08);
}

.case-detail--text {
  grid-template-columns: 1fr minmax(260px, .42fr);
}

.case-detail__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.case-detail__body,
.quote-box,
.notice-card,
.contact-card {
  padding: clamp(26px, 4vw, 42px);
}

.spec-list {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--border);
}

.spec-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.spec-list dt {
  color: var(--green);
  font-weight: 900;
}

.quote-box {
  display: grid;
  align-content: center;
  background: var(--green);
  color: #fff;
}

.quote-box p {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.45rem;
  line-height: 1.5;
}

.quote-box span {
  margin-top: 18px;
  color: rgba(255, 255, 255, .72);
}

.price-table-wrap {
  display: grid;
  gap: 22px;
}

.price-table,
.company-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.price-table caption {
  text-align: left;
  padding: 20px 22px;
  color: var(--green);
  font-size: 1.3rem;
  font-weight: 900;
  background: #fff;
}

.price-table th,
.price-table td,
.company-table th,
.company-table td {
  padding: 18px 22px;
  border-top: 1px solid var(--border);
  text-align: left;
}

.price-table th {
  color: var(--green);
  background: var(--cream);
}

.price-table--accent caption,
.price-table--accent th {
  background: var(--green);
  color: #fff;
}

.factor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.factor-grid article {
  padding: 26px;
}

.timeline {
  display: grid;
  gap: 18px;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.timeline span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 2.4rem;
  font-weight: 900;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.faq-columns h2 {
  font-size: 1.55rem;
}

.faq-list--page {
  width: 100%;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.profile-card {
  padding: 30px;
}

.profile-card strong {
  display: block;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.company-table th {
  width: 190px;
  color: var(--green);
  background: var(--cream);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.area-grid span,
.area-grid a {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 900;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, .86fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: clamp(54px, 8vw, 92px) 0;
}

.contact-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-hero__actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

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

.contact-card--line {
  color: #fff;
  background: var(--green);
}

.contact-card--line p:not(.section-kicker),
.contact-card--line small {
  color: rgba(255, 255, 255, .78);
}

.contact-card small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
}

.policy-body {
  max-width: 860px;
  padding: 42px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.policy-body h2 {
  margin-top: 34px;
}

.policy-body h2:first-child {
  margin-top: 0;
}

.news-list {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.news-card,
.empty-news {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.news-card {
  min-height: 240px;
  padding: 28px;
}

.news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
}

.news-card__meta span {
  color: var(--green);
}

.news-card h3 {
  margin: 16px 0 10px;
  line-height: 1.5;
}

.news-card p {
  margin: 0;
  color: var(--muted);
}

.news-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.news-card__tags span {
  padding: 3px 10px;
  border: 1px solid rgba(16, 59, 43, .18);
  border-radius: 999px;
  color: var(--green);
  font-size: .82rem;
  font-weight: 800;
}

.empty-news {
  grid-column: 1 / -1;
  padding: 34px;
  text-align: center;
}

.empty-news h3 {
  margin: 0 0 8px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.5rem;
}

.empty-news p {
  margin: 0;
  color: var(--muted);
}

.contact-form {
  width: min(920px, calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  gap: 18px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(31, 33, 28, .18);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
}

.form-trap {
  position: absolute;
  left: -9999px;
}

.map-grid {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, .42fr);
  gap: 18px;
}

.map-embed,
.review-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 430px;
  border: 0;
}

.review-panel {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 32px;
}

.review-panel h3 {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.7rem;
  line-height: 1.35;
}

.review-panel p {
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 44px 0 110px;
  color: var(--muted);
}

.footer strong {
  display: block;
  color: var(--ink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.3rem;
}

.footer p {
  margin: 4px 0;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 14px 24px;
  font-weight: 800;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(251, 250, 246, .96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.mobile-cta a {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 900;
}

.mobile-cta__line {
  color: #fff;
  background: var(--line);
}

.mobile-cta__tel {
  color: var(--green);
  border: 1px solid rgba(16, 59, 43, .35);
  background: #fff;
}

@media (max-width: 1020px) {
  .desktop-nav,
  .tel-link {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .proof-bar,
  .hero__content,
  .promise-grid,
  .trust-board,
  .flow-list,
  .price-grid,
  .detail-grid,
  .factor-grid,
  .profile-grid,
  .area-grid,
  .news-list,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promise-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    height: 68px;
    padding: 0 14px 0 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand__name {
    font-size: 1.08rem;
  }

  .brand__sub {
    font-size: .54rem;
  }

  .header-actions {
    gap: 8px;
  }

  .btn--small {
    min-height: 42px;
    padding: 0 14px;
  }

  .mobile-menu {
    inset-top: 68px;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero__image {
    object-position: 64% center;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(8, 28, 21, .96) 0%, rgba(8, 28, 21, .8) 48%, rgba(8, 28, 21, .22) 100%),
      linear-gradient(90deg, rgba(8, 28, 21, .5), rgba(8, 28, 21, .05));
  }

  .hero__inner {
    width: min(100% - 32px, var(--max));
    padding: 52px 0 84px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12.5vw, 4rem);
  }

  .copy-desktop {
    display: none;
  }

  .copy-mobile {
    display: inline;
  }

  .google-rating {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    min-height: 44px;
    margin-bottom: 12px;
    padding: 8px 10px;
    font-size: .94rem;
  }

  .google-rating__brand {
    font-size: 1.02rem;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: .7rem;
    letter-spacing: .12em;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .btn--ghost {
    display: none;
  }

  .hero__badges span {
    min-height: 34px;
    padding: 6px 11px;
    font-size: .86rem;
  }

  .hero-card {
    padding: 22px;
  }

  .hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .hero-mini-grid div {
    min-height: 68px;
    grid-template-columns: 80px 1fr;
    align-items: center;
    text-align: left;
  }

  .proof-bar {
    width: 100%;
    margin: 0;
    box-shadow: none;
    border-left: 0;
    border-right: 0;
  }

  .proof-bar div {
    min-height: 96px;
    padding: 18px;
  }

  .section {
    padding: 70px 0;
  }

  .section__head,
  .section__grid,
  .trust-split,
  .footer,
  .sub-hero,
  .page-section > .section__head,
  .two-column,
  .detail-grid,
  .case-stack,
  .price-table-wrap,
  .factor-grid,
  .timeline,
  .faq-columns,
  .profile-grid,
  .company-table-wrap,
  .area-grid,
  .contact-hero,
  .contact-grid,
  .policy-body,
  .cta-row,
  .news-list,
  .contact-form,
  .map-grid,
  .trust-board,
  .review-area {
    width: min(100% - 32px, var(--max));
  }

  .section__grid--intro,
  .section__head--row,
  .hero__content,
  .trust-split,
  .works-grid,
  .sub-hero,
  .two-column,
  .case-detail,
  .case-detail--text,
  .contact-hero,
  .contact-grid,
  .faq-columns,
  .news-list,
  .map-grid,
  .review-area {
    grid-template-columns: 1fr;
  }

  .promise-grid,
  .trust-board,
  .flow-list,
  .price-grid,
  .detail-grid,
  .factor-grid,
  .profile-grid,
  .area-grid {
    width: min(100% - 32px, var(--max));
    grid-template-columns: 1fr;
  }

  .sub-hero {
    min-height: auto;
    padding: 46px 0 64px;
  }

  .sub-hero img,
  .contact-hero img {
    aspect-ratio: 16 / 11;
  }

  .page-section {
    padding: 64px 0;
  }

  .detail-card {
    min-height: auto;
  }

  .case-detail__media img {
    min-height: 260px;
  }

  .spec-list div,
  .timeline li,
  .diagnosis-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .timeline li {
    padding: 24px;
  }

  .price-table-wrap {
    overflow-x: auto;
  }

  .price-table {
    min-width: 660px;
  }

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

  .contact-hero {
    padding: 46px 0 64px;
  }

  .contact-hero__actions,
  .cta-row {
    display: grid;
  }

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

  .contact-form {
    padding: 24px;
  }

  .policy-body {
    padding: 26px;
  }

  .works-grid {
    width: min(100% - 32px, var(--max));
  }

  .work-card dl {
    flex-wrap: wrap;
  }

  .mobile-cta {
    display: grid;
  }

  .footer {
    display: grid;
    padding-bottom: 120px;
  }

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

@media (max-width: 430px) {
  .brand__sub {
    letter-spacing: .08em;
  }

  .header-actions .btn--small {
    display: none;
  }

  .proof-bar {
    grid-template-columns: 1fr 1fr;
  }

  .proof-bar strong {
    font-size: 1.75rem;
  }

  .proof-bar span {
    font-size: .82rem;
  }

  .btn--large {
    min-height: 64px;
    padding-inline: 18px;
  }
}
