:root {
  --ink: #102a43;
  --ink-soft: #536372;
  --paper: #fbfaf4;
  --paper-alt: #f3f7f4;
  --white: #fff;
  --mint: #00a99d;
  --mint-light: #dff7f2;
  --line: rgba(16, 42, 67, .13);
  --orange: #ffb86b;
  --shadow: 0 26px 80px rgba(16, 42, 67, .09);
  --header: 86px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.85;
  letter-spacing: .02em;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--mint); color: white; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -60px;
  z-index: 999;
  padding: 10px 16px;
  color: white;
  background: var(--ink);
  border-radius: 999px;
}
.skip-link:focus { top: 18px; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--paper);
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-logo {
  display: grid;
  text-align: center;
  gap: 2px;
  font: 900 clamp(2.3rem, 6vw, 5rem)/.85 "Inter", sans-serif;
  letter-spacing: -.05em;
}
.loader p {
  position: absolute;
  bottom: 42px;
  margin: 0;
  font: 800 .78rem "Inter", sans-serif;
  letter-spacing: .2em;
  color: var(--ink-soft);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 52px);
  pointer-events: none;
}
.brand,
.menu-button,
.nav {
  pointer-events: auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font: 900 1.1rem/1 "Inter", sans-serif;
  letter-spacing: -.02em;
  background: rgba(251, 250, 244, .76);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  padding: 9px 15px 9px 9px;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 50px rgba(16, 42, 67, .08);
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  padding: 14px 20px;
  background: rgba(251, 250, 244, .74);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 50px rgba(16, 42, 67, .08);
}
.nav a {
  font: 800 .78rem/1 "Inter", sans-serif;
  letter-spacing: .09em;
  color: var(--ink);
}
.nav a:hover { color: var(--mint); }
.menu-button {
  display: none;
  align-items: center;
  gap: 10px;
  border: 0;
  background: rgba(251, 250, 244, .8);
  border-radius: 999px;
  padding: 15px 18px;
  color: var(--ink);
  box-shadow: 0 16px 50px rgba(16, 42, 67, .08);
}
.menu-button span {
  font: 800 .78rem/1 "Inter", sans-serif;
  letter-spacing: .12em;
}
.menu-button i {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
}

.section {
  padding: clamp(88px, 12vw, 170px) clamp(18px, 5vw, 68px);
}
.section-title-mini,
.eyebrow {
  margin: 0 0 14px;
  color: var(--mint);
  font: 900 .82rem/1.2 "Inter", sans-serif;
  letter-spacing: .16em;
}
.section-heading {
  width: min(100%, 1180px);
  margin: 0 auto clamp(36px, 6vw, 72px);
}
.section-heading span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--mint);
  font: 900 .92rem/1 "Inter", sans-serif;
  letter-spacing: .16em;
}
.section-heading h2,
.profile-copy h2,
.price-copy h2,
.faq-grid h2,
.contact h2,
.event-inner h2 {
  margin: 0;
  font: 900 clamp(2.15rem, 6vw, 5.8rem)/.93 "Inter", "Noto Sans JP", sans-serif;
  letter-spacing: -.065em;
}
.section-heading h2 {
  max-width: 900px;
}
p {
  margin: 0 0 1.1em;
  color: var(--ink-soft);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header) + 24px) clamp(14px, 4vw, 42px) clamp(34px, 5vw, 64px);
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 14px;
  z-index: 0;
  border-radius: clamp(28px, 4vw, 54px);
  overflow: hidden;
  background: var(--mint-light);
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251,250,244,.92) 0%, rgba(251,250,244,.62) 35%, rgba(251,250,244,.05) 78%),
    linear-gradient(0deg, rgba(16,42,67,.2), rgba(16,42,67,0) 45%);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(92vw, 710px);
  padding: clamp(22px, 4vw, 56px);
}
.hero h1 {
  margin: 0 0 24px;
  font: 900 clamp(2.15rem, 4.6vw, 4.6rem)/1.08 "Inter", "Noto Sans JP", sans-serif;
  letter-spacing: -.035em;
}
.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  color: var(--ink);
}
.hero-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font: 900 .82rem/1 "Inter", "Noto Sans JP", sans-serif;
  letter-spacing: .09em;
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: white; }
.button-light { background: rgba(255,255,255,.72); color: var(--ink); backdrop-filter: blur(10px); }
.scroll-cue {
  position: absolute;
  right: clamp(22px, 4vw, 58px);
  bottom: clamp(30px, 5vw, 64px);
  z-index: 1;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.7);
  color: white;
  background: rgba(16,42,67,.38);
  backdrop-filter: blur(12px);
}
.scroll-cue span {
  font: 900 .64rem/1 "Inter", sans-serif;
  letter-spacing: .16em;
  writing-mode: vertical-rl;
}
.scroll-cue::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: inherit;
  border: 1px dashed rgba(255,255,255,.55);
  animation: rotate 12s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }

.event-section {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 58vh;
  padding: clamp(72px, 12vw, 160px) 22px;
}
.section-number {
  position: absolute;
  left: clamp(18px, 5vw, 64px);
  top: clamp(58px, 9vw, 120px);
  color: rgba(16,42,67,.12);
  font: 900 clamp(5rem, 14vw, 14rem)/1 "Inter", sans-serif;
  letter-spacing: -.08em;
}
.event-inner {
  width: min(100%, 790px);
  text-align: center;
}
.event-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 28px 0;
  font: 900 clamp(1.2rem, 2.2vw, 2rem)/1 "Inter", sans-serif;
  letter-spacing: -.02em;
}
.event-detail i {
  width: 54px;
  height: 1px;
  background: var(--line);
}
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--mint);
  font-weight: 900;
}
.text-button::after { content: "→"; }

.gallery-marquee {
  width: 100%;
  overflow: hidden;
}
.gallery-track {
  width: min(100%, 1280px);
  margin: 0 auto;
  columns: 3 280px;
  column-gap: clamp(18px, 3vw, 36px);
}
.gallery-track figure {
  break-inside: avoid;
  margin: 0 0 clamp(18px, 3vw, 36px);
  position: relative;
}
.gallery-track img {
  width: 100%;
  border-radius: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery-track figcaption {
  margin-top: 12px;
  font: 900 .78rem/1.2 "Inter", sans-serif;
  letter-spacing: .12em;
  color: var(--ink);
}

.profile {
  background: var(--paper-alt);
}
.profile-grid,
.price-shop,
.faq-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}
.profile-art img,
.price-visual img {
  border-radius: clamp(28px, 5vw, 60px);
  box-shadow: var(--shadow);
}
.profile-copy .lead {
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 800;
}
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.profile-tags li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.5);
  color: var(--ink);
  font-size: .92rem;
  font-weight: 700;
}

.works-categories {
  width: min(100%, 1180px);
  margin: -26px auto 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.works-categories button {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--ink);
  cursor: pointer;
  font: 900 .76rem/1 "Inter", sans-serif;
  letter-spacing: .11em;
}
.works-categories button.active {
  background: var(--ink);
  color: white;
}
.works-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 30px);
}
.work-card {
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.work-card.is-hidden {
  display: none;
}
.work-card a {
  display: grid;
  gap: 16px;
}
.work-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 999px 999px 34px 34px;
  box-shadow: var(--shadow);
  transition: transform .55s var(--ease), border-radius .55s var(--ease);
}
.work-card:hover img {
  transform: translateY(-6px);
  border-radius: 42px;
}
.work-card p {
  margin: 0 0 4px;
  color: var(--mint);
  font: 900 .74rem/1 "Inter", sans-serif;
  letter-spacing: .14em;
}
.work-card h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  line-height: 1.35;
}
.work-card span {
  color: var(--ink-soft);
  font-size: .92rem;
}

.price-shop {
  align-items: stretch;
}
.price-copy {
  align-self: center;
}
.price-list {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}
.price-list a {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.price-list span { color: var(--ink); font-weight: 800; }
.price-list strong {
  flex-shrink: 0;
  font: 900 1rem/1 "Inter", "Noto Sans JP", sans-serif;
}

.news {
  background: var(--paper-alt);
}
.news-list {
  width: min(100%, 960px);
  margin: 0 auto;
  display: grid;
  border-top: 1px solid var(--line);
}
.news-list a {
  display: grid;
  grid-template-columns: 120px 110px 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.news-list time {
  font: 800 .9rem/1 "Inter", sans-serif;
}
.news-list span {
  justify-self: start;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--mint-light);
  color: var(--mint);
  font: 900 .7rem/1 "Inter", sans-serif;
}
.news-list p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.faq-grid {
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0 0 16px;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 38px 18px 0;
  position: relative;
  font-weight: 900;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--mint);
  font-size: 1.6rem;
  top: 13px;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 0 0 8px; }

.contact {
  padding-bottom: clamp(90px, 12vw, 160px);
}
.contact-inner {
  width: min(100%, 1060px);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 76px);
  border: 1px solid var(--line);
  border-radius: clamp(32px, 6vw, 76px);
  background:
    radial-gradient(circle at top right, rgba(0,169,157,.18), transparent 40%),
    rgba(255,255,255,.58);
  box-shadow: var(--shadow);
}
.contact h2 {
  margin-bottom: 24px;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.form-alert,
.contact-form .full {
  grid-column: 1 / -1;
}
.form-alert {
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,184,107,.18);
  color: #8b5a14;
  font-size: .92rem;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
  font-size: .92rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255,255,255,.8);
  color: var(--ink);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(0,169,157,.16);
  border-color: var(--mint);
}

.footer {
  padding: 54px clamp(18px, 5vw, 68px) 108px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  border-top: 1px solid var(--line);
}
.footer-logo {
  display: inline-block;
  margin-bottom: 8px;
  font: 900 1.4rem/1 "Inter", sans-serif;
}
.footer p { margin: 0; }
.footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer nav a,
.footer small {
  font: 800 .78rem/1 "Inter", sans-serif;
  letter-spacing: .1em;
}
.footer small {
  grid-column: 1 / -1;
  color: var(--ink-soft);
}

.mobile-fixed-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(16,42,67,.16);
}
.mobile-fixed-cta a {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 999px;
  font: 900 .82rem/1 "Inter", sans-serif;
  letter-spacing: .12em;
}
.mobile-fixed-cta a:first-child { background: var(--mint-light); color: var(--ink); }
.mobile-fixed-cta a:last-child { background: var(--ink); color: white; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav {
    position: fixed;
    inset: 82px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 28px;
    padding: 22px;
    background: rgba(251,250,244,.96);
  }
  .nav.active { display: flex; }
  .nav a { padding: 12px 4px; }
  .menu-button { display: inline-flex; }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-grid,
  .price-shop,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .price-visual { order: 2; }
}

@media (max-width: 760px) {
  :root { --header: 74px; }
  .site-header {
    padding: 0 12px;
  }
  .brand {
    padding: 8px 13px 8px 8px;
  }
  .brand span {
    font-size: .95rem;
  }
  .hero {
    padding-inline: 12px;
    align-items: end;
  }
  .hero-image {
    inset: 8px;
    border-radius: 30px;
  }
  .hero-image::after {
    background:
      linear-gradient(0deg, rgba(251,250,244,.94) 0%, rgba(251,250,244,.73) 46%, rgba(251,250,244,.12) 100%);
  }
  .hero-copy {
    width: 100%;
    padding: 18px 18px 90px;
  }
  .hero h1 {
    font-size: clamp(3.8rem, 18vw, 6.6rem);
  }
  .hero-actions,
  .contact-buttons {
    display: grid;
  }
  .button {
    width: 100%;
  }
  .scroll-cue {
    width: 66px;
    height: 66px;
    right: 22px;
    bottom: 26px;
  }
  .section {
    padding: 82px 16px;
  }
  .section-number {
    display: none;
  }
  .event-inner {
    text-align: left;
  }
  .event-detail {
    justify-content: flex-start;
    font-size: 1.1rem;
  }
  .gallery-track {
    columns: 1;
  }
  .works-grid {
    grid-template-columns: 1fr;
  }
  .work-card img {
    aspect-ratio: 4 / 3;
    border-radius: 32px;
  }
  .news-list a {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .footer {
    grid-template-columns: 1fr;
  }
  .footer nav {
    justify-content: flex-start;
  }
  .mobile-fixed-cta {
    display: grid;
  }
}

.brand-logo {
  padding: 10px 14px;
}
.brand-logo img {
  width: auto;
  height: 42px;
}
.footer-logo-image img {
  width: auto;
  height: 38px;
  display: block;
}
@media (max-width: 760px) {
  .brand-logo img {
    height: 34px;
  }
  .footer-logo-image img {
    height: 32px;
  }
}


/* === Final polish === */
:root {
  --logo-aqua: #34c4d3;
}

.brand-logo {
  background: rgba(255, 255, 255, .82);
  border-color: rgba(52, 196, 211, .22);
}

.brand-logo img {
  max-width: 178px;
  object-fit: contain;
}

.hero-image img {
  object-position: center center;
}

.hero-copy {
  background: linear-gradient(90deg, rgba(251,250,244,.42), rgba(251,250,244,0));
  border-radius: 34px;
}

.button-dark {
  background: linear-gradient(135deg, var(--ink) 0%, #153957 100%);
}

.button-light {
  background: rgba(255,255,255,.84);
}

.gallery-track img,
.work-card img,
.profile-art img,
.price-visual img {
  background: #fffdf7;
}

.contact-inner {
  border-color: rgba(52, 196, 211, .28);
}

.contact-form button {
  cursor: pointer;
}

@media (max-width: 760px) {
  .brand-logo {
    padding: 8px 10px;
  }

  .brand-logo img {
    max-width: 132px;
    height: auto;
  }

  .hero-copy {
    background: linear-gradient(0deg, rgba(251,250,244,.72), rgba(251,250,244,0));
  }

  .hero-image img {
    object-position: 58% center;
  }

  .section-heading h2,
  .profile-copy h2,
  .price-copy h2,
  .faq-grid h2,
  .contact h2,
  .event-inner h2 {
    letter-spacing: -.045em;
  }
}

/* === SEO local area section === */
.seo-area {
  background:
    radial-gradient(circle at top right, rgba(0,169,157,.12), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,.45), rgba(251,250,244,.95));
}

.seo-area-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.seo-area h2 {
  margin-bottom: 22px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 36px;
}

.area-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(16,42,67,.12);
  color: var(--ink, #102A43);
  font-weight: 800;
  font-size: .92rem;
}

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

.seo-keyword-grid article {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(16,42,67,.10);
  box-shadow: 0 16px 44px rgba(16,42,67,.06);
}

.seo-keyword-grid h3 {
  margin-top: 0;
}

.seo-footer-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(16,42,67,.12);
}

.seo-footer-links a {
  font-size: .86rem;
  color: var(--ink-soft, #536372);
  text-decoration: none;
}

.seo-footer-links a:hover {
  color: var(--mint, #00a99d);
}

@media (max-width: 860px) {
  .seo-keyword-grid {
    grid-template-columns: 1fr;
  }
}

/* === Family / vacant home service menu update === */
.family-menu {
  background:
    radial-gradient(circle at 8% 12%, rgba(243,181,98,.16), transparent 34%),
    radial-gradient(circle at 92% 10%, rgba(0,169,157,.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.54), rgba(251,250,244,.96));
}
.family-menu-inner { width: min(100%, 1180px); margin: 0 auto; }
.family-lead { max-width: 860px; font-size: clamp(1rem, 1.5vw, 1.16rem); }
.family-menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 42px; }
.family-card {
  padding: clamp(22px, 3vw, 34px);
  border-radius: clamp(28px, 4vw, 46px);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(16,42,67,.11);
  box-shadow: 0 22px 70px rgba(16,42,67,.08);
}
.family-card-wide { grid-column: 1 / -1; }
.family-card-head span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px; padding: 0 12px; margin-bottom: 14px;
  border-radius: 999px; background: var(--mint, #00a99d); color: #fff;
  font-family: "Inter", sans-serif; font-weight: 900;
}
.family-card-head h3 { margin: 0 0 8px; font-size: clamp(1.35rem, 2.4vw, 2rem); line-height: 1.35; }
.family-card-head p { margin: 0 0 22px; }
.menu-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 20px 0; border-radius: 22px; border: 1px solid rgba(16,42,67,.10); }
.menu-table { width: 100%; min-width: 680px; border-collapse: collapse; background: rgba(255,255,255,.92); }
.menu-table th, .menu-table td { padding: 15px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid rgba(16,42,67,.09); }
.menu-table th { color: var(--ink, #102A43); background: rgba(0,169,157,.08); font-size: .9rem; }
.menu-table td { color: var(--ink-soft, #536372); }
.menu-table td:first-child { color: var(--ink, #102A43); font-weight: 800; }
.target-box, .appeal-box { margin-top: 18px; padding: 20px; border-radius: 22px; background: rgba(248,246,240,.72); border: 1px solid rgba(16,42,67,.08); }
.target-box h4, .appeal-box h4 { margin: 0 0 10px; color: var(--ink, #102A43); }
.target-box ul { margin: 0; padding-left: 1.1em; color: var(--ink-soft, #536372); }
.target-box li { margin: 6px 0; }
.vacant-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; }
.area-mini-list { display: flex; flex-wrap: wrap; gap: 8px; padding-left: 0 !important; list-style: none; }
.area-mini-list li { margin: 0; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.82); color: var(--ink, #102A43); font-weight: 800; font-size: .9rem; }
.family-menu-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; justify-content: center; }
@media (max-width: 920px) {
  .family-menu-grid, .vacant-grid { grid-template-columns: 1fr; }
  .family-card-wide { grid-column: auto; }
}
@media (max-width: 640px) {
  .family-menu-cta { display: grid; }
  .family-menu-cta .button, .family-menu-cta .btn { width: 100%; }
}

/* === Refined after-service section / pickup removed === */
.after-service {
  background:
    radial-gradient(circle at 8% 10%, rgba(0,169,157,.13), transparent 32%),
    radial-gradient(circle at 92% 12%, rgba(243,181,98,.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.56), rgba(251,250,244,.96));
}

.after-service-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.after-service-heading {
  max-width: 900px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.after-service-heading h2 {
  margin-bottom: 22px;
}

.after-service-feature {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin-bottom: clamp(34px, 6vw, 72px);
  padding: clamp(18px, 3vw, 34px);
  border-radius: clamp(28px, 5vw, 56px);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(16,42,67,.10);
  box-shadow: 0 24px 70px rgba(16,42,67,.07);
}

.after-service-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: clamp(24px, 4vw, 42px);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(0,169,157,.12);
  color: var(--mint, #00a99d);
  font-weight: 900;
  font-size: .84rem;
  margin-bottom: 14px;
}

.after-service-copy ul {
  margin: 18px 0 0;
  padding-left: 1.1em;
  color: var(--ink-soft, #536372);
}

.after-service-copy li {
  margin: 7px 0;
}

.support-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.support-card {
  overflow: hidden;
  border-radius: clamp(28px, 4vw, 48px);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(16,42,67,.10);
  box-shadow: 0 22px 70px rgba(16,42,67,.08);
}

.support-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
}

.support-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.support-card:not(.support-card-wide) img {
  aspect-ratio: 4 / 3;
  height: auto;
}

.support-card-body {
  padding: clamp(22px, 3vw, 34px);
}

.support-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--ink, #102A43);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 900;
}

.support-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  line-height: 1.35;
}

.support-price,
.support-plan-list,
.support-price-grid {
  margin-top: 22px;
}

.support-price {
  padding: 18px;
  border-radius: 20px;
  background: rgba(243,181,98,.16);
  border: 1px solid rgba(243,181,98,.28);
}

.support-price span,
.support-price-grid span {
  display: block;
  color: var(--ink-soft, #536372);
  font-size: .86rem;
  font-weight: 700;
}

.support-price strong,
.support-price-grid strong {
  display: block;
  margin-top: 4px;
  color: var(--ink, #102A43);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.support-mini-list,
.support-area {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.support-mini-list span,
.support-area span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0,169,157,.10);
  color: var(--ink, #102A43);
  font-weight: 800;
  font-size: .86rem;
}

.support-plan-list {
  display: grid;
  gap: 10px;
}

.support-plan-list div,
.support-price-grid div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(248,246,240,.78);
  border: 1px solid rgba(16,42,67,.08);
}

.support-plan-list b {
  color: var(--ink, #102A43);
}

.support-plan-list span {
  color: var(--ink, #102A43);
  font-weight: 900;
}

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

.support-price-grid div {
  display: block;
}

.after-service-note {
  margin-top: 24px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: clamp(24px, 4vw, 40px);
  background: rgba(16,42,67,.92);
  color: #fff;
}

.after-service-note h3 {
  color: #fff;
  margin-top: 0;
}

.after-service-note p {
  color: rgba(255,255,255,.78);
}

.after-service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

@media (max-width: 940px) {
  .after-service-feature,
  .support-card-wide,
  .support-card-grid,
  .support-price-grid {
    grid-template-columns: 1fr;
  }

  .support-card-wide img {
    aspect-ratio: 4 / 3;
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .after-service-actions,
  .support-plan-list div {
    display: grid;
  }

  .after-service-actions .button,
  .after-service-actions .btn {
    width: 100%;
  }
}

/* === Vacant home menu revision === */
.site-header.no-brand,
.site-header {
  justify-content: flex-end;
}

.vacant-home {
  background:
    radial-gradient(circle at 10% 12%, rgba(0,169,157,.13), transparent 32%),
    radial-gradient(circle at 92% 10%, rgba(243,181,98,.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.56), rgba(251,250,244,.96));
}

.vacant-home-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.vacant-home-heading {
  max-width: 860px;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.vacant-home-feature {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  margin-bottom: clamp(30px, 5vw, 52px);
}

.vacant-home-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: clamp(26px, 4vw, 42px);
  box-shadow: 0 20px 64px rgba(16,42,67,.10);
  background: #fffdf7;
}

.vacant-home-summary {
  padding: clamp(20px, 3vw, 34px);
  border-radius: clamp(28px, 4vw, 42px);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(16,42,67,.10);
  box-shadow: 0 20px 64px rgba(16,42,67,.07);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(0,169,157,.10);
  color: var(--mint, #00a99d);
  font-weight: 900;
  font-size: .84rem;
}

.vacant-home-area,
.vacant-home-note ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vacant-home-area span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0,169,157,.10);
  color: var(--ink, #102A43);
  font-weight: 800;
  font-size: .86rem;
}

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

.vacant-menu-card {
  padding: clamp(20px, 3vw, 30px);
  border-radius: clamp(24px, 4vw, 36px);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(16,42,67,.10);
  box-shadow: 0 18px 54px rgba(16,42,67,.07);
}

.vacant-menu-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.vacant-menu-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--ink, #102A43);
  color: #fff;
  font: 900 0.9rem/1 "Inter", sans-serif;
  flex: 0 0 auto;
}

.vacant-menu-head h3 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.35;
}

.vacant-price {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(243,181,98,.16);
  color: var(--ink, #102A43);
  font-weight: 900;
  margin-bottom: 14px;
}

.vacant-home-note {
  margin-top: 24px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: clamp(24px, 4vw, 40px);
  background: rgba(16,42,67,.94);
  color: #fff;
}

.vacant-home-note h3 {
  color: #fff;
  margin-top: 0;
}

.vacant-home-note ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.vacant-home-note li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.90);
}

.vacant-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

@media (max-width: 900px) {
  .vacant-home-feature,
  .vacant-home-menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .vacant-home-actions {
    display: grid;
  }
  .vacant-home-actions .button,
  .vacant-home-actions .btn {
    width: 100%;
  }
}

/* === LINE + Aircon focus revision === */
.site-header {
  justify-content: flex-end;
}

.nav-line-cta,
.button-line {
  background: linear-gradient(135deg, #06C755 0%, #22D66F 100%) !important;
  color: #fff !important;
  border-color: rgba(6,199,85,.2) !important;
  box-shadow: 0 14px 34px rgba(6,199,85,.22) !important;
}

.nav-line-cta {
  padding: 12px 16px !important;
  border-radius: 999px;
}

.aircon-main {
  background:
    radial-gradient(circle at 10% 10%, rgba(6,199,85,.12), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(0,169,157,.14), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.60), rgba(251,250,244,.96));
}

.aircon-main-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.aircon-copy h2 {
  margin-bottom: 22px;
}

.aircon-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.aircon-points div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(16,42,67,.10);
}

.aircon-points strong {
  display: block;
  color: var(--ink, #102A43);
  margin-bottom: 6px;
}

.aircon-points span {
  color: var(--ink-soft, #536372);
  font-size: .92rem;
}

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

.aircon-visual {
  position: relative;
}

.aircon-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: clamp(28px, 4vw, 48px);
  box-shadow: 0 24px 70px rgba(16,42,67,.10);
}

.aircon-price-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(16,42,67,.10);
  box-shadow: 0 18px 44px rgba(16,42,67,.12);
}

.aircon-price-card span {
  display: block;
  color: var(--ink-soft, #536372);
  font-size: .86rem;
  font-weight: 800;
}

.aircon-price-card strong {
  display: block;
  color: var(--ink, #102A43);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.2;
}

.aircon-price-card p {
  margin: 4px 0 0;
  font-size: .86rem;
}

.line-contact-card {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 24px;
  align-items: center;
  margin: 28px 0;
  padding: clamp(20px, 3vw, 30px);
  border-radius: clamp(24px, 4vw, 40px);
  background: rgba(6,199,85,.08);
  border: 1px solid rgba(6,199,85,.18);
}

.line-contact-card h3 {
  margin-top: 0;
}

.line-contact-card img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 22px;
  background: #fff;
  padding: 10px;
}

@media (max-width: 940px) {
  .aircon-main-inner,
  .aircon-points,
  .line-contact-card {
    grid-template-columns: 1fr;
  }

  .line-contact-card img {
    width: 160px;
    height: 160px;
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .aircon-cta {
    display: grid;
  }

  .aircon-cta .button,
  .aircon-cta .btn {
    width: 100%;
  }

  .aircon-price-card {
    position: static;
    margin-top: 14px;
  }
}

/* === Sales improvement revision === */
.hero-trust-badges {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -70px 0 0 clamp(22px, 4vw, 56px);
  max-width: min(760px, 88vw);
  padding: 0 clamp(18px, 4vw, 56px);
}

.hero-trust-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(16,42,67,.10);
  color: var(--ink, #102A43);
  font-weight: 900;
  font-size: .85rem;
  box-shadow: 0 12px 30px rgba(16,42,67,.08);
}

.worry-section,
.reason-section,
.flow-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(0,169,157,.10), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.52), rgba(251,250,244,.96));
}

.worry-inner,
.reason-inner,
.flow-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

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

.worry-card,
.reason-card,
.flow-step {
  padding: clamp(20px, 2.4vw, 28px);
  border-radius: clamp(22px, 3vw, 34px);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(16,42,67,.10);
  box-shadow: 0 18px 54px rgba(16,42,67,.07);
}

.worry-card h3,
.reason-card h3,
.flow-step h3 {
  margin-top: 0;
  line-height: 1.4;
}

.aircon-detail-box {
  margin: 26px 0;
  padding: clamp(20px, 2.6vw, 28px);
  border-radius: 28px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(16,42,67,.10);
}

.aircon-detail-box h3 {
  margin-top: 0;
}

.aircon-detail-box dl {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
}

.aircon-detail-box dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(16,42,67,.09);
}

.aircon-detail-box dt {
  font-weight: 900;
  color: var(--ink, #102A43);
}

.aircon-detail-box dd {
  margin: 0;
  color: var(--ink-soft, #536372);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.flow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--ink, #102A43);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 900;
}

.flow-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 1060px) {
  .worry-grid,
  .reason-grid,
  .flow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .hero-trust-badges {
    margin: -86px 0 0 0;
    padding: 0 18px 86px;
  }

  .worry-grid,
  .reason-grid,
  .flow-steps {
    grid-template-columns: 1fr;
  }

  .aircon-detail-box dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* === DEFINITIVE FIX: hero title is too large === */
body .hero .hero-copy h1#hero-title,
html body main .hero .hero-copy h1#hero-title {
  margin: 0 0 22px !important;
  font-family: "Inter", "Noto Sans JP", sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(2.15rem, 4.6vw, 4.6rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -.035em !important;
  max-width: 720px !important;
}

@media (max-width: 760px) {
  body .hero .hero-copy h1#hero-title,
  html body main .hero .hero-copy h1#hero-title {
    font-size: clamp(2rem, 8.4vw, 3.25rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -.025em !important;
    max-width: 100% !important;
  }
}

/* === FIX: hero trust badges overlap === */
body .hero {
  min-height: 88svh !important;
  padding-bottom: clamp(56px, 7vw, 92px) !important;
}

body .hero-copy {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

body .hero-copy .hero-trust-badges,
body .hero-trust-badges {
  position: static !important;
  z-index: 2 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 18px 0 0 0 !important;
  padding: 0 !important;
  max-width: 720px !important;
}

body .hero-trust-badges span {
  min-height: 34px !important;
  padding: 0 13px !important;
  font-size: .82rem !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

body .event-section {
  margin-top: 0 !important;
  padding-top: clamp(78px, 11vw, 150px) !important;
}

@media (max-width: 760px) {
  body .hero {
    min-height: 100svh !important;
    padding-bottom: 30px !important;
  }

  body .hero-copy {
    padding-bottom: 96px !important;
  }

  body .hero-copy .hero-trust-badges,
  body .hero-trust-badges {
    margin-top: 16px !important;
    padding: 0 !important;
    max-width: 100% !important;
  }

  body .hero-trust-badges span {
    min-height: 32px !important;
    font-size: .76rem !important;
  }
}

/* === Score 90 conversion improvement === */
.hero-actions {
  gap: 12px !important;
}

.hero-line-helper {
  margin: 14px 0 0 !important;
  max-width: 620px;
  color: var(--ink, #102A43);
  font-weight: 800;
  font-size: clamp(.9rem, 1.2vw, 1rem);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(16,42,67,.10);
  border-radius: 18px;
  padding: 12px 14px;
}

body .hero-copy .hero-trust-badges,
body .hero-trust-badges {
  max-width: 640px !important;
}

.line-guide,
.policy-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(6,199,85,.10), transparent 32%),
    radial-gradient(circle at 92% 10%, rgba(0,169,157,.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(251,250,244,.96));
}

.line-guide-inner,
.policy-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.line-guide-copy {
  max-width: 820px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

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

.line-guide-card,
.policy-item,
.price-reassurance {
  padding: clamp(20px, 2.6vw, 30px);
  border-radius: clamp(22px, 3vw, 34px);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(16,42,67,.10);
  box-shadow: 0 18px 54px rgba(16,42,67,.07);
}

.line-guide-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #06C755;
  color: #fff;
  font: 900 .9rem/1 "Inter", sans-serif;
}

.line-guide-card h3,
.policy-item h3,
.price-reassurance h3 {
  margin-top: 0;
}

.line-guide-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.line-guide-cta p {
  margin: 0;
  font-weight: 800;
  color: var(--ink-soft, #536372);
}

.price-reassurance {
  margin: 18px 0 24px;
  background: rgba(243,181,98,.14);
  border-color: rgba(243,181,98,.28);
}

.price-reassurance p {
  margin-bottom: 0;
}

.policy-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.policy-copy {
  padding: clamp(22px, 3vw, 34px);
  border-radius: clamp(24px, 4vw, 40px);
  background: rgba(16,42,67,.92);
  color: #fff;
}

.policy-copy p {
  color: rgba(255,255,255,.82);
  margin: 0;
}

.policy-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 920px) {
  .line-guide-grid,
  .policy-layout,
  .policy-list {
    grid-template-columns: 1fr;
  }

  .line-guide-cta {
    display: grid;
  }

  .line-guide-cta .button {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .hero-line-helper {
    font-size: .86rem;
    padding: 10px 12px;
  }
}

/* === Aircon SEO service page === */
.service-page {
  background: var(--cream, #fbfaf4);
}

.service-header {
  justify-content: flex-end;
}

.service-hero {
  min-height: 92svh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: calc(var(--header, 84px) + 56px) clamp(22px, 5vw, 72px) 70px;
  background:
    radial-gradient(circle at 12% 14%, rgba(6,199,85,.12), transparent 32%),
    radial-gradient(circle at 90% 12%, rgba(0,169,157,.14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(251,250,244,.96));
}

.service-hero-copy h1 {
  margin: 0 0 22px;
  font: 900 clamp(2.5rem, 6vw, 5.8rem)/1.05 "Inter", "Noto Sans JP", sans-serif;
  letter-spacing: -.045em;
  color: var(--ink, #102A43);
}

.service-hero-copy > p {
  max-width: 720px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.service-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.service-hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: clamp(28px, 4vw, 52px);
  box-shadow: 0 24px 70px rgba(16,42,67,.10);
  background: #fffdf7;
}

.service-section {
  padding: clamp(70px, 9vw, 124px) clamp(22px, 5vw, 72px);
}

.service-section-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

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

.service-info-card {
  padding: clamp(20px, 2.5vw, 28px);
  border-radius: 28px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(16,42,67,.10);
  box-shadow: 0 18px 54px rgba(16,42,67,.07);
}

.service-info-card h3 {
  margin-top: 0;
}

.service-price-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(243,181,98,.16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.58), rgba(251,250,244,.96));
}

.service-price-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 20px;
  align-items: stretch;
}

.service-price-list {
  display: grid;
  gap: 14px;
}

.service-price-row {
  padding: clamp(20px, 2.5vw, 30px);
  border-radius: 28px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(16,42,67,.10);
}

.service-price-row span,
.service-price-row small {
  display: block;
  color: var(--ink-soft, #536372);
  font-weight: 800;
}

.service-price-row strong {
  display: block;
  margin: 6px 0;
  color: var(--ink, #102A43);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.service-work-scope {
  margin-top: 22px;
  padding: clamp(20px, 2.6vw, 30px);
  border-radius: 28px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(16,42,67,.10);
}

.service-work-scope ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 22px;
  padding-left: 1.1em;
}

.service-area-text {
  max-width: 760px;
}

.service-final-cta {
  background: rgba(16,42,67,.94);
  color: #fff;
  text-align: center;
}

.service-final-inner {
  width: min(100%, 900px);
  margin: 0 auto;
}

.service-final-cta h2 {
  color: #fff;
}

.service-final-cta p {
  color: rgba(255,255,255,.78);
}

.service-final-cta .service-hero-actions {
  justify-content: center;
}

@media (max-width: 980px) {
  .service-hero,
  .service-price-layout {
    grid-template-columns: 1fr;
  }

  .service-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-work-scope ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .service-hero {
    padding-top: calc(var(--header, 84px) + 36px);
  }

  .service-hero-copy h1 {
    font-size: clamp(2.1rem, 10vw, 3.7rem);
    line-height: 1.1;
  }

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

  .service-hero-actions {
    display: grid;
  }

  .service-hero-actions .button {
    width: 100%;
  }
}

/* === FIX: vacant home illustration should not be cropped === */
.vacant-home-feature {
  align-items: center !important;
}

.vacant-home-visual {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: clamp(360px, 42vw, 560px) !important;
  padding: clamp(12px, 2vw, 24px) !important;
  border-radius: clamp(28px, 4vw, 48px) !important;
  background: rgba(255,255,255,.70) !important;
  border: 1px solid rgba(16,42,67,.08) !important;
  overflow: hidden !important;
}

.vacant-home-visual img {
  width: 100% !important;
  height: auto !important;
  max-height: clamp(340px, 40vw, 520px) !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: clamp(22px, 3vw, 36px) !important;
  box-shadow: none !important;
  background: transparent !important;
}

@media (max-width: 900px) {
  .vacant-home-visual {
    min-height: auto !important;
  }

  .vacant-home-visual img {
    max-height: none !important;
  }
}

/* === Navigation cleanup === */
.nav a {
  white-space: nowrap;
}

.nav a.nav-line-cta {
  background: linear-gradient(135deg, #06C755 0%, #22D66F 100%) !important;
  color: #fff !important;
  border-radius: 999px;
  padding: 12px 18px !important;
}

@media (max-width: 980px) {
  .nav a {
    font-size: .88rem;
  }
}

/* === FIX: remove white background behind vacant home image === */
.vacant-home-visual {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  min-height: auto !important;
}

.vacant-home-visual img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: clamp(24px, 3vw, 38px) !important;
}

.vacant-home-feature {
  align-items: center !important;
}


/* === Before / After proof gallery === */
.proof-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(0,169,157,.12), transparent 32%),
    radial-gradient(circle at 92% 12%, rgba(243,181,98,.14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.58), rgba(251,250,244,.96));
}

.proof-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 34px);
}

.proof-card {
  overflow: hidden;
  border-radius: clamp(28px, 4vw, 48px);
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(16,42,67,.10);
  box-shadow: 0 22px 70px rgba(16,42,67,.08);
}

.proof-card-head {
  padding: clamp(22px, 3vw, 32px) clamp(22px, 3vw, 34px) 0;
}

.proof-card-head h3,
.proof-note h3 {
  margin: 0 0 10px;
  color: var(--ink, #102A43);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.35;
}

.proof-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: clamp(18px, 2.6vw, 30px);
}

.proof-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: clamp(20px, 3vw, 32px);
  background: #fffdf7;
  border: 1px solid rgba(16,42,67,.08);
}

.proof-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center center;
}

.proof-photo span {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(16,42,67,.86);
  font: 900 .72rem/1 "Inter", sans-serif;
  letter-spacing: .12em;
}

.proof-after span {
  background: rgba(0,169,157,.92);
}

.proof-note {
  margin-top: clamp(22px, 3vw, 34px);
  padding: clamp(22px, 3vw, 34px);
  border-radius: clamp(24px, 4vw, 40px);
  background: rgba(16,42,67,.94);
  color: #fff;
}

.proof-note p {
  color: rgba(255,255,255,.80);
}

.proof-note-light {
  margin: 0 clamp(18px, 2.6vw, 30px) clamp(18px, 2.6vw, 30px);
  background: rgba(248,246,240,.78);
  color: var(--ink, #102A43);
  border: 1px solid rgba(16,42,67,.08);
}

.proof-note-light p {
  color: var(--ink-soft, #536372);
}

.proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin-top: 18px;
}

.proof-section-compact .proof-card {
  width: min(100%, 920px);
  margin: 0 auto;
}

@media (max-width: 920px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .proof-images {
    gap: 8px;
    padding: 14px;
  }

  .proof-photo span {
    left: 8px;
    top: 8px;
    min-height: 26px;
    padding: 0 9px;
    font-size: .64rem;
  }

  .proof-actions {
    display: grid;
  }

  .proof-actions .button,
  .proof-note-light .button {
    width: 100%;
  }
}


/* === Proof visual images update === */
.proof-visual {
  margin: 0;
  padding: clamp(18px, 2.6vw, 30px);
}

.proof-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(16,42,67,.08);
  box-shadow: 0 18px 50px rgba(16,42,67,.08);
  background: #fff;
}

.proof-card-head p:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .proof-visual {
    padding: 14px;
  }
}

/* === Price menu small note update === */
.price-list a small {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft, #536372);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.4;
}
.price-list a {
  align-items: center;
}
.price-list a span {
  display: block;
}


/* === Japanese navigation labels === */
.nav a,
.menu-button span,
.footer nav a {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: .04em;
}

.nav a {
  font-size: .82rem;
}

@media (max-width: 980px) {
  .nav a {
    font-size: .9rem;
  }
}


/* === Copy & navigation clarity update 2026-06-22 === */
.section-kicker-jp,
.section-title-mini.section-kicker-jp {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: .04em;
  line-height: 1.5;
}

.nav {
  gap: clamp(10px, 1.4vw, 20px);
}

.nav a {
  white-space: nowrap;
  letter-spacing: .02em;
}

.menu-button span,
.mobile-fixed-cta a {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: .04em;
}

@media (max-width: 980px) {
  .nav a {
    letter-spacing: .02em;
  }
}


/* === Consolidated reassurance section === */
.reason-section .section-heading h2 {
  max-width: 820px;
  font-size: clamp(2.2rem, 4.7vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
