/* =========================================================
   いますぐ365 — modern local service website
   ========================================================= */

:root {
  --bg: #f7f3ec;
  --paper: #fffdf9;
  --ink: #17272a;
  --ink-soft: #314448;
  --muted: #677477;
  --line: #ddd7cd;
  --line-light: #ece7df;
  --coral: #c9472d;
  --coral-dark: #a93823;
  --coral-pale: #fbe8df;
  --navy: #173a43;
  --navy-deep: #102d34;
  --sage: #dbe5d9;
  --green: #2d755d;
  --line-green: #087a3e;
  --sand: #e7c586;
  --yellow: #f1cf68;
  --shadow-sm: 0 10px 30px rgba(24, 39, 42, 0.07);
  --shadow-md: 0 24px 70px rgba(24, 39, 42, 0.12);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-xl: 48px;
  --container: 1200px;
  --header-height: 82px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo,
    sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.025em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #0b6473;
  outline-offset: 3px;
}

.section-dark :focus-visible,
.contact :focus-visible,
.site-footer :focus-visible {
  outline-color: #f3d56b;
}

a.button:focus-visible,
button.button:focus-visible,
.mobile-cta a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px #0b6473;
}

::selection {
  background: var(--coral);
  color: #fff;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.utility-bar {
  position: relative;
  z-index: 50;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-inner p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.utility-inner a {
  display: flex;
  align-items: baseline;
  gap: 9px;
  transition: color 0.2s ease;
}

.utility-inner a:hover {
  color: #fff;
}

.utility-inner strong {
  font-size: 14px;
  letter-spacing: 0.04em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #79d8a5;
  box-shadow: 0 0 0 4px rgba(121, 216, 165, 0.12);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(221, 215, 205, 0.72);
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(18px) saturate(1.25);
  transition:
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 249, 0.97);
  box-shadow: 0 8px 30px rgba(18, 39, 43, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--coral);
  color: #fff;
  box-shadow: 0 9px 22px rgba(232, 98, 67, 0.24);
  transform: rotate(-3deg);
  transition: transform 0.35s var(--ease);
}

.brand:hover .brand-mark {
  transform: rotate(2deg) translateY(-2px);
}

.brand-mark svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy small {
  margin: 0 0 5px 2px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand-copy strong {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-copy strong span {
  margin-left: 3px;
  color: var(--coral);
}

.site-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.55vw, 26px);
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding-block: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.site-nav a:hover {
  color: var(--coral-dark);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.phone-button {
  color: var(--ink);
  line-height: 1.1;
}

.phone-button svg {
  width: 32px;
  height: 32px;
  padding: 7px;
  border-radius: 50%;
  background: var(--coral-pale);
  fill: none;
  stroke: var(--coral-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-button span {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.phone-button small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.menu-toggle {
  display: none;
}

/* Buttons */
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-align: center;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

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

.button-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 12px 26px rgba(210, 71, 44, 0.24);
}

.button-primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 16px 34px rgba(210, 71, 44, 0.3);
}

.button-line {
  background: var(--line-green);
  color: #fff;
  box-shadow: 0 10px 22px rgba(6, 199, 85, 0.18);
}

.button-line:hover {
  background: #066b35;
  box-shadow: 0 14px 28px rgba(6, 199, 85, 0.24);
}

.button-outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  background: var(--ink);
  color: #fff;
}

.button-large {
  min-height: 64px;
  padding: 13px 25px;
  border-radius: 18px;
  font-size: 15px;
}

.button-large svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-large > span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.button-large small {
  margin-bottom: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.78;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 38px 0 50px;
  background:
    radial-gradient(circle at 5% 15%, rgba(232, 98, 67, 0.11), transparent 24%),
    radial-gradient(circle at 94% 6%, rgba(45, 117, 93, 0.1), transparent 25%),
    var(--bg);
}

.hero::before {
  content: "";
  position: absolute;
  top: 42px;
  right: -70px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(23, 58, 67, 0.08);
  border-radius: 50%;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  overflow: hidden;
  border: 1px solid rgba(221, 215, 205, 0.82);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow-md);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 5.5vw, 82px) clamp(34px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--coral-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  margin-right: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--coral-pale);
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 3.35vw, 56px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.055em;
}

.hero h1 strong {
  position: relative;
  display: inline-block;
  color: var(--coral-dark);
  font-weight: 900;
}

.keep-word {
  white-space: nowrap;
}

.hero-break-mobile {
  display: inline;
}

.hero h1 strong::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -2px;
  bottom: 3px;
  left: -2px;
  height: 12px;
  border-radius: 99px;
  background: rgba(241, 207, 104, 0.46);
  transform: rotate(-1deg);
}

.hero-lead {
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.hero-microcopy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 32px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}

.hero-facts > div {
  padding: 0 16px;
  border-left: 1px solid var(--line-light);
}

.hero-facts > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts dt {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-facts dd {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px;
  margin: 0;
  font-size: 12px;
  font-weight: 800;
}

.hero-facts dd strong {
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.hero-facts dd small {
  flex-basis: 100%;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
}

.hero-media {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #eee1ca;
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 253, 249, 0.2), transparent 24%);
  pointer-events: none;
}

.hero-media picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
}

.hero-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 14px 35px rgba(16, 45, 52, 0.14);
  backdrop-filter: blur(14px);
}

.hero-badge p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.25;
}

.hero-badge small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 9px;
}

.hero-badge strong {
  font-size: 13px;
}

.hero-badge-top {
  top: 26px;
  right: 26px;
}

.hero-badge-top > span {
  color: #65b689;
  font-size: 18px;
}

.hero-badge-bottom {
  right: 28px;
  bottom: 30px;
}

.hero-badge svg {
  width: 28px;
  height: 28px;
  fill: var(--yellow);
  stroke: var(--coral-dark);
  stroke-width: 1.3;
}

.need-strip {
  padding: 0 0 28px;
}

.need-strip-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.72);
}

.need-strip p {
  flex: 0 0 auto;
  margin: 0;
  font-size: 12px;
  font-weight: 900;
}

.need-strip ul,
.area-chips,
.service-card ul,
.small-jobs ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.need-strip ul {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.need-strip li {
  padding: 5px 11px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 11px;
  box-shadow: 0 4px 12px rgba(24, 39, 42, 0.05);
}

/* Sections */
.section {
  position: relative;
  padding: clamp(88px, 9vw, 140px) 0;
}

.section-tint {
  border-block: 1px solid var(--line-light);
  background: #eee9e0;
}

.section-dark {
  overflow: hidden;
  background: var(--navy-deep);
  color: #fff;
}

.section-heading h2,
.section-header h2,
.faq-intro h2,
.contact-intro h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child,
.section-header > p,
.faq-intro > p:not(.eyebrow),
.contact-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.section-header {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}

.section-header > p {
  margin: 0 0 7px;
  line-height: 2;
}

.section-header.light .eyebrow {
  color: #f2ad95;
}

.section-header.light > p {
  color: rgba(255, 255, 255, 0.66);
}

.intro {
  overflow: hidden;
  background: var(--paper);
}

.intro::after {
  content: "365";
  position: absolute;
  z-index: 0;
  top: 20px;
  right: -20px;
  color: rgba(232, 98, 67, 0.04);
  font-size: clamp(160px, 25vw, 390px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.1em;
  pointer-events: none;
}

.intro-grid,
.reason-grid {
  position: relative;
  z-index: 1;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
}

.intro-copy .lead {
  margin-top: 4px;
  color: var(--ink);
  font-size: clamp(18px, 1.75vw, 23px);
  font-weight: 650;
  line-height: 2;
}

.intro-copy p:last-child {
  margin-top: 24px;
  color: var(--muted);
  line-height: 2.15;
}

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

.reason-card {
  position: relative;
  min-height: 290px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: #f8f4ed;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.reason-card:hover {
  border-color: rgba(232, 98, 67, 0.28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}

.reason-number {
  position: absolute;
  top: 18px;
  right: 25px;
  color: rgba(23, 39, 42, 0.06);
  font-size: 62px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
}

.reason-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 17px;
  background: var(--coral-pale);
  color: var(--coral-dark);
}

.reason-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reason-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.5;
}

.reason-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

/* Services */
.services {
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -80px;
  width: 420px;
  height: 420px;
  border: 80px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

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

.service-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 8px 26px rgba(24, 39, 42, 0.045);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s ease;
}

.service-card:hover {
  box-shadow: 0 20px 45px rgba(24, 39, 42, 0.11);
  transform: translateY(-7px);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
}

.service-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-coral { background: #f9ddd2; color: #bd4f38; }
.icon-sand { background: #f2e5c8; color: #8e6527; }
.icon-blue { background: #dfe9ee; color: #3e697b; }
.icon-green { background: #dce9dc; color: #487353; }
.icon-purple { background: #e7e0ec; color: #755989; }
.icon-navy { background: #dce5e7; color: #315c65; }
.icon-yellow { background: #f8ebbc; color: #917018; }
.icon-mint { background: #daeee8; color: #397c68; }

.service-no {
  position: absolute;
  align-self: flex-end;
  margin: 3px 1px 0 0;
  color: #a7aeac;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.service-card > p:not(.service-no) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 20px;
}

.service-card li {
  padding: 4px 8px;
  border-radius: 6px;
  background: #f2eee7;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
}

.service-card > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 25px;
  color: var(--coral-dark);
  font-size: 11px;
  font-weight: 900;
}

.service-card > a span {
  font-size: 17px;
  transition: transform 0.25s var(--ease);
}

.service-card > a:hover span {
  transform: translateX(4px);
}

.small-jobs {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 60px;
  margin-top: 32px;
  padding: 40px 46px;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.small-jobs .eyebrow {
  margin-bottom: 10px;
  color: #f3ad94;
}

.small-jobs h3 {
  margin: 0 0 7px;
  font-size: 25px;
}

.small-jobs p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.small-jobs ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.small-jobs li {
  position: relative;
  padding: 12px 12px 12px 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 11px;
}

.small-jobs li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  color: #7bd6a8;
  font-weight: 900;
}

/* Price */
.price {
  background: var(--paper);
}

.price-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 20px;
}

.price-main-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(38px, 5vw, 64px);
  border-radius: var(--radius-lg);
  background: var(--coral);
  color: #fff;
  box-shadow: 0 22px 50px rgba(206, 73, 46, 0.22);
}

.price-main-card::after {
  content: "¥";
  position: absolute;
  right: -5px;
  bottom: -60px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 270px;
  font-weight: 900;
  line-height: 1;
}

.price-label {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.price-amount {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin: 0;
  line-height: 1;
}

.price-amount > span {
  flex-basis: 100%;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
}

.price-amount strong {
  font-size: clamp(58px, 6.5vw, 92px);
  font-weight: 900;
  letter-spacing: -0.07em;
}

.price-amount em {
  font-size: 21px;
  font-style: normal;
  font-weight: 900;
}

.price-addition {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 28px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.1);
}

.price-addition span {
  padding: 3px 8px;
  border-radius: 5px;
  background: #fff;
  color: var(--coral-dark);
  font-size: 10px;
  font-weight: 900;
}

.price-addition strong {
  font-size: 15px;
}

.price-note {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

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

.fee-card {
  display: flex;
  flex-direction: column;
  padding: 29px;
  border: 1px solid var(--line-light);
  border-radius: 27px;
  background: #f8f5ef;
}

.fee-card-wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}

.fee-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 15px;
  background: var(--sage);
  color: var(--green);
}

.fee-card-wide .fee-icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  margin: 0;
}

.fee-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fee-card p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.fee-card strong {
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.4;
  letter-spacing: -0.04em;
}

.fee-card small {
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.price-examples {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 55px;
  margin-top: 62px;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.example-heading .eyebrow {
  margin-bottom: 9px;
}

.example-heading h3 {
  margin: 0;
  font-size: 27px;
}

.example-heading > p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.example-list {
  display: flex;
  flex-direction: column;
}

.example-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
}

.example-row:first-child {
  padding-top: 0;
}

.example-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.example-row p {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.example-row p strong {
  font-size: 13px;
}

.example-row p span,
.formula {
  color: var(--muted);
  font-size: 10px;
}

.example-row > strong {
  color: var(--coral-dark);
  font-size: 15px;
  white-space: nowrap;
}

.price-caution {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 19px 24px;
  border-radius: 17px;
  background: #f8f1df;
}

.price-caution svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #a17724;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-caution p {
  margin: 0;
  color: #6e5b34;
  font-size: 11px;
}

.text-link {
  color: var(--coral-dark);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

/* Flow */
.flow::before {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -200px;
  width: 600px;
  height: 600px;
  border: 90px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
}

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

.flow-list::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 63px;
  left: 12%;
  width: 76%;
  border-top: 1px dashed rgba(255, 255, 255, 0.24);
}

.flow-item {
  position: relative;
  z-index: 1;
  min-height: 280px;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(10px);
}

.flow-no {
  position: absolute;
  top: 20px;
  right: 23px;
  color: rgba(255, 255, 255, 0.22);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.flow-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 29px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  box-shadow: 0 12px 32px rgba(232, 98, 67, 0.26);
}

.flow-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-item h3 {
  margin: 0 0 12px;
  font-size: 19px;
}

.flow-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.9;
}

/* Area */
.area {
  background: var(--paper);
}

.area-grid {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  align-items: center;
  gap: clamp(60px, 10vw, 140px);
}

.area-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.35;
  letter-spacing: -0.055em;
}

.area-copy > p:not(.eyebrow):not(.area-note) {
  margin: 27px 0 0;
  color: var(--muted);
  line-height: 2.1;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 27px;
}

.area-chips li {
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
}

.area-chips .primary {
  border-color: var(--coral);
  background: var(--coral);
  color: #fff;
}

.area-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.area-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 35%),
    linear-gradient(145deg, #dde8dd, #cddbd6);
}

.area-visual::before,
.area-visual::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 410px;
  border-radius: 47% 53% 41% 59% / 58% 37% 63% 42%;
  background: rgba(255, 255, 255, 0.54);
  transform: rotate(26deg);
}

.area-visual::before {
  top: 53px;
  left: 155px;
}

.area-visual::after {
  right: 90px;
  bottom: -90px;
  width: 200px;
  height: 300px;
  opacity: 0.38;
  transform: rotate(-18deg);
}

.area-visual > p {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 18px;
  margin: 0;
  color: rgba(23, 58, 67, 0.12);
  font-size: 44px;
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.07em;
  text-align: right;
}

.area-visual > p strong {
  font-size: 68px;
}

.map-orbit {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(23, 58, 67, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one { width: 310px; height: 310px; }
.orbit-two { width: 440px; height: 440px; opacity: 0.55; }

.map-pin {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: 95px;
  height: 95px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 8px solid rgba(255, 255, 255, 0.58);
  border-radius: 50% 50% 50% 8px;
  background: var(--coral);
  color: #fff;
  box-shadow: 0 15px 35px rgba(189, 79, 56, 0.26);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin span,
.map-pin strong {
  transform: rotate(45deg);
}

.map-pin span { font-size: 8px; opacity: 0.78; }
.map-pin strong { margin-top: -1px; font-size: 19px; }

.map-city {
  position: absolute;
  z-index: 4;
  padding: 7px 12px;
  border: 1px solid rgba(23, 58, 67, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(23, 58, 67, 0.08);
  backdrop-filter: blur(8px);
}

.city-moriya { top: 66%; left: 16%; }
.city-tsukuba { top: 20%; left: 48%; }
.city-ushiku { top: 45%; right: 9%; }
.city-ryugasaki { right: 16%; bottom: 17%; }
.city-tsuchiura { top: 17%; right: 12%; }
.city-bando { top: 30%; left: 8%; }

/* Voices */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.voice-card {
  position: relative;
  margin: 0;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.88);
}

.voice-card::before {
  content: "“";
  position: absolute;
  top: 2px;
  right: 21px;
  color: rgba(232, 98, 67, 0.09);
  font-family: Georgia, serif;
  font-size: 110px;
  line-height: 1;
}

.voice-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(15px, 1.55vw, 19px);
  font-weight: 650;
  line-height: 2;
}

.voice-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.avatar {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coral-pale);
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 900;
}

.voice-card figcaption p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.5;
}

.voice-card figcaption strong { font-size: 12px; }
.voice-card figcaption small { color: var(--muted); font-size: 9px; }

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  align-items: start;
  gap: clamp(50px, 9vw, 130px);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.faq-intro > p:not(.eyebrow) {
  margin: 22px 0 28px;
  line-height: 2;
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr 24px;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 20px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.65;
  list-style: none;
}

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

.faq-item summary > span,
.faq-answer > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coral-pale);
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 900;
}

.faq-item summary::after {
  content: "+";
  grid-column: 3;
  grid-row: 1;
  color: var(--coral-dark);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  transition: transform 0.3s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 0 42px 26px 0;
}

.faq-answer > span {
  background: var(--navy);
  color: #fff;
}

.faq-answer p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 2;
}

/* Contact */
.contact {
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.contact::before {
  content: "";
  position: absolute;
  top: -210px;
  left: -180px;
  width: 520px;
  height: 520px;
  border: 90px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
}

.contact-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: clamp(50px, 7vw, 90px);
}

.contact-intro .eyebrow {
  color: #f4b099;
}

.contact-intro > p:not(.eyebrow) {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 2;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 34px;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    background 0.25s ease,
    transform 0.25s var(--ease),
    border-color 0.25s ease;
}

.contact-option:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.contact-option-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--coral);
  font-size: 10px;
  font-weight: 900;
}

.contact-option.line .contact-option-icon { background: var(--line-green); }
.contact-option.mail .contact-option-icon { background: #577981; }

.contact-option-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-option p {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  line-height: 1.35;
}

.contact-option small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
}

.contact-option strong {
  overflow: hidden;
  font-size: 16px;
  letter-spacing: 0;
  text-overflow: ellipsis;
}

.contact-option p span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
}

.contact-form-card {
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-lg);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(5, 19, 22, 0.28);
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-light);
}

.form-heading > span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--coral-pale);
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 900;
}

.form-heading h3 {
  margin: 0;
  font-size: 21px;
}

.form-heading p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 17px;
}

.field > span {
  font-size: 11px;
  font-weight: 800;
}

.field em {
  margin-left: 5px;
  color: var(--coral-dark);
  font-size: 9px;
  font-style: normal;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: #fff;
  font-size: 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a9afad;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(232, 98, 67, 0.09);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid #0b6473;
  outline-offset: 2px;
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 3px 0 20px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.check-field input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--coral);
}

.check-field a {
  color: var(--coral-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.button-submit {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 15px;
}

.button-submit span {
  font-size: 20px;
}

.form-note,
.form-status {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.7;
  text-align: center;
}

.form-status:not(:empty) {
  padding: 10px;
  border-radius: 9px;
  background: var(--coral-pale);
  color: var(--coral-dark);
}

/* Company */
.company {
  background: var(--paper);
}

.company-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 10vw, 140px);
  align-items: start;
}

.company .section-heading > p:last-child {
  margin-top: 26px;
  line-height: 2;
}

.company-table {
  padding: 13px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #faf7f1;
}

.company-table dl {
  margin: 0;
}

.company-table dl > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 25px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line-light);
}

.company-table dl > div:last-child {
  border-bottom: 0;
}

.company-table dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.company-table dd {
  margin: 0;
  font-size: 13px;
  font-weight: 650;
}

.company-table a {
  color: var(--coral-dark);
  text-decoration: underline;
  text-decoration-color: rgba(232, 98, 67, 0.3);
  text-underline-offset: 4px;
}

/* Footer */
.site-footer {
  padding: 72px 0 26px;
  background: #0c252b;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.7fr;
  gap: 70px;
}

.brand-light .brand-copy small { color: rgba(255, 255, 255, 0.48); }
.brand-light .brand-copy strong { color: #fff; }

.footer-brand > p {
  max-width: 330px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.53);
  font-size: 12px;
  line-height: 1.9;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h3 {
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: #fff; }

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.footer-phone {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.footer-contact > span {
  margin: 3px 0 17px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

.footer-contact .button {
  min-height: 42px;
  padding-inline: 22px;
  font-size: 11px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}

.footer-bottom p { margin: 0; }
.footer-bottom a { transition: color 0.2s ease; }
.footer-bottom a:hover { color: #fff; }

.mobile-cta {
  display: none;
}

/* Secondary / policy pages */
.subpage-main {
  min-height: 60vh;
  background: var(--paper);
}

.subpage-hero {
  padding: 88px 0 55px;
  border-bottom: 1px solid var(--line-light);
  background:
    radial-gradient(circle at 80% 20%, rgba(45, 117, 93, 0.1), transparent 25%),
    var(--bg);
}

.subpage-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.25;
  letter-spacing: -0.06em;
}

.breadcrumb {
  display: flex;
  gap: 7px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 10px;
}

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

.legal-content {
  width: min(calc(100% - 48px), 860px);
  margin-inline: auto;
  padding: 70px 0 110px;
}

.legal-lead {
  margin: 0 0 45px;
  padding: 24px 27px;
  border-left: 4px solid var(--coral);
  border-radius: 0 14px 14px 0;
  background: var(--bg);
  color: var(--ink-soft);
}

.legal-section {
  margin-top: 46px;
}

.legal-section h2 {
  margin: 0 0 15px;
  font-size: 23px;
  line-height: 1.5;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.legal-section a {
  color: var(--coral-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 70px 24px;
  background: var(--bg);
  text-align: center;
}

.not-found-inner {
  max-width: 600px;
}

.not-found .code {
  margin: 0;
  color: var(--coral);
  font-size: clamp(90px, 18vw, 180px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.09em;
}

.not-found h1 {
  margin: 20px 0 10px;
  font-size: 28px;
}

.not-found p {
  margin: 0 0 28px;
  color: var(--muted);
}

/* Motion */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1180px) {
  .header-inner { gap: 18px; }
  .site-nav { gap: 14px; }
  .site-nav a { font-size: 11px; }
  .phone-button span { display: none; }
  .phone-button svg { width: 39px; height: 39px; padding: 9px; }
  .hero-shell { grid-template-columns: minmax(0, 1fr) minmax(390px, 0.95fr); }
  .hero-copy { padding-inline: 42px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card h3 { font-size: 20px; }
}

@media (max-width: 960px) {
  :root { --header-height: 72px; }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: var(--ink);
    transition:
      transform 0.3s var(--ease),
      opacity 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin: 0;
    padding: 22px max(24px, calc((100vw - var(--container)) / 2));
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 249, 0.98);
    box-shadow: 0 20px 40px rgba(18, 39, 43, 0.12);
    backdrop-filter: blur(18px);
  }

  .js-ready .site-nav:not(.is-open) {
    display: none;
  }

  .js-ready .site-nav.is-open {
    display: grid;
  }

  .site-nav.is-open a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line-light);
    font-size: 13px;
  }

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

  .hero-copy { padding: 55px; }
  .hero-media { min-height: 460px; }
  .hero-media img { object-position: 57% center; }

  .intro-grid,
  .area-grid,
  .contact-shell,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid { gap: 35px; }
  .reason-grid { grid-template-columns: 1fr; }
  .reason-card { min-height: auto; }

  .section-header {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-header > p { max-width: 600px; }
  .small-jobs { grid-template-columns: 1fr; gap: 28px; }

  .price-layout,
  .price-examples {
    grid-template-columns: 1fr;
  }

  .price-examples { gap: 34px; }
  .flow-list { grid-template-columns: repeat(2, 1fr); }
  .flow-list::before { display: none; }

  .area-grid { gap: 45px; }
  .area-visual { min-height: 500px; }

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

  .faq-intro { position: static; }
  .contact-shell { gap: 48px; }
  .company-grid { gap: 45px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 55px;
  }

  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root {
    --header-height: 67px;
    --radius-xl: 30px;
  }

  html { scroll-padding-top: calc(var(--header-height) + 12px); }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
    font-size: 15px;
  }

  .container { width: min(calc(100% - 32px), var(--container)); }
  .utility-bar { display: none; }

  .header-inner { min-height: var(--header-height); }
  .brand-mark { width: 39px; height: 39px; border-radius: 12px; }
  .brand-mark svg { width: 29px; height: 29px; }
  .brand-copy strong { font-size: 19px; }
  .brand-copy small { font-size: 8px; }
  .menu-toggle { width: 42px; height: 42px; }

  .site-nav.is-open {
    grid-template-columns: 1fr;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    padding: 16px;
  }

  .hero { padding: 18px 0 31px; }
  .hero-shell { border-radius: 26px; }
  .hero-copy { padding: 35px 24px 30px; }
  .eyebrow { margin-bottom: 13px; font-size: 9px; }
  .eyebrow span { display: table; margin: 0 0 8px; }
  .hero h1 { font-size: clamp(31px, 10vw, 42px); line-height: 1.35; }
  .hero h1 strong { display: block; }
  .hero-break-mobile { display: block; }
  .hero-lead { margin-top: 20px; font-size: 14px; line-height: 1.9; }
  .hero-lead br { display: none; }
  .hero-actions { margin-top: 25px; }
  .button-large { min-height: 59px; }
  .hero-facts { margin-top: 26px; padding-top: 20px; }
  .hero-facts > div { padding-inline: 9px; }
  .hero-facts dd strong { font-size: 18px; }
  .hero-facts dd { font-size: 10px; }
  .hero-media { min-height: 350px; }
  .hero-media img { object-position: 62% center; }
  .hero-badge { padding: 9px 11px; border-radius: 12px; }
  .hero-badge-top { top: 14px; right: 14px; }
  .hero-badge-bottom { right: 14px; bottom: 14px; }
  .hero-badge strong { font-size: 11px; }
  .hero-badge small { font-size: 9px; }
  .hero-badge svg { width: 22px; height: 22px; }

  .need-strip { display: none; }
  .section { padding: 80px 0; }

  .section-heading h2,
  .section-header h2,
  .faq-intro h2,
  .contact-intro h2 {
    font-size: 35px;
  }

  .section-header { margin-bottom: 38px; }
  .intro::after { right: -10px; font-size: 170px; }
  .intro-copy .lead { font-size: 17px; line-height: 1.95; }
  .intro-copy p:last-child { line-height: 2; }
  .reason-grid { gap: 12px; margin-top: 45px; }
  .reason-card { padding: 25px; border-radius: 24px; }
  .reason-icon { margin-bottom: 24px; }
  .reason-number { font-size: 50px; }

  .service-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { padding: 25px; border-radius: 24px; }
  .service-card h3 { font-size: 20px; }
  .service-card > p:not(.service-no) { font-size: 13px; }

  .small-jobs { margin-top: 20px; padding: 28px 23px; border-radius: 24px; }
  .small-jobs ul { grid-template-columns: repeat(2, 1fr); gap: 7px; }
  .small-jobs li { padding: 10px 8px 10px 26px; font-size: 11px; }
  .small-jobs li::before { left: 9px; }

  .price-layout { gap: 12px; }
  .price-main-card { padding: 35px 26px; border-radius: 25px; }
  .price-amount strong { font-size: 60px; }
  .fee-grid { gap: 10px; }
  .fee-card { padding: 22px; border-radius: 22px; }
  .fee-card strong { font-size: 18px; }
  .fee-card-wide { gap: 14px; }
  .fee-card-wide .fee-icon { flex-basis: 45px; width: 45px; height: 45px; }

  .price-examples { margin-top: 40px; padding: 25px 20px; border-radius: 24px; }
  .example-row { grid-template-columns: 1fr auto; gap: 8px; }
  .formula { display: none; }
  .example-row > strong { font-size: 12px; }

  .price-caution { grid-template-columns: auto 1fr; align-items: start; }
  .price-caution .text-link { grid-column: 2; }

  .flow-list { grid-template-columns: 1fr; gap: 11px; }
  .flow-item { min-height: auto; padding: 24px; }
  .flow-icon { width: 56px; height: 56px; margin-bottom: 20px; }

  .area-copy h2 { font-size: 38px; }
  .area-visual { min-height: 390px; border-radius: 27px; }
  .area-visual::before { top: 42px; left: 95px; width: 185px; height: 300px; }
  .orbit-one { width: 230px; height: 230px; }
  .orbit-two { width: 335px; height: 335px; }
  .map-pin { width: 76px; height: 76px; }
  .map-city { padding: 5px 9px; font-size: 8px; }
  .area-visual > p { font-size: 31px; }
  .area-visual > p strong { font-size: 48px; }
  .city-moriya { left: 7%; }
  .city-tsuchiura { right: 6%; }

  .voice-grid {
    display: flex;
    gap: 12px;
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .voice-grid::-webkit-scrollbar { display: none; }
  .voice-card { min-width: min(84vw, 340px); padding: 26px; scroll-snap-align: start; }
  .voice-card blockquote { font-size: 15px; }

  .faq-item summary { min-height: 78px; grid-template-columns: 33px 1fr 20px; gap: 9px; font-size: 13px; }
  .faq-item summary > span,
  .faq-answer > span { width: 30px; height: 30px; }
  .faq-answer { grid-template-columns: 33px 1fr; gap: 9px; padding-right: 10px; }
  .faq-answer p { font-size: 12px; }

  .contact-shell { gap: 40px; }
  .contact-form-card { padding: 26px 20px; border-radius: 25px; }
  .form-heading > span { width: 48px; height: 48px; }
  .form-heading h3 { font-size: 17px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-option strong { font-size: 14px; }

  .company-table { padding: 8px 20px; border-radius: 24px; }
  .company-table dl > div { grid-template-columns: 92px 1fr; gap: 12px; padding: 17px 0; }
  .company-table dt { font-size: 10px; }
  .company-table dd { font-size: 12px; }

  .site-footer { padding-top: 58px; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-links { gap: 20px; }
  .footer-contact { grid-column: auto; }
  .footer-bottom { margin-top: 43px; }

  .mobile-cta {
    position: fixed;
    z-index: 1200;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 92px;
    gap: 8px;
    padding: 8px max(10px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    border-top: 1px solid rgba(221, 215, 205, 0.7);
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 -12px 30px rgba(23, 39, 42, 0.12);
    backdrop-filter: blur(16px);
  }

  .mobile-cta > a {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
  }

  .mobile-cta-phone {
    gap: 9px;
    background: var(--coral);
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0;
  }

  .mobile-cta-phone svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-cta-phone span { display: flex; flex-direction: column; line-height: 1.2; }
  .mobile-cta-phone small { margin-bottom: 2px; font-size: 10px; font-weight: 700; opacity: 0.85; }
  .mobile-cta-line { background: var(--line-green); color: #fff; font-size: 12px; font-weight: 900; }

  .subpage-hero { padding: 65px 0 40px; }
  .legal-content { width: min(calc(100% - 32px), 860px); padding: 55px 0 90px; }
  .legal-lead { padding: 20px; }
  .legal-section h2 { font-size: 20px; }
}

@media (max-width: 390px) {
  .hero-facts > div { padding-inline: 6px; }
  .hero-facts dd strong { font-size: 16px; }
  .fee-grid { grid-template-columns: 1fr; }
  .fee-card-wide { grid-column: auto; }
  .small-jobs ul { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .utility-bar,
  .site-header,
  .mobile-cta,
  .site-footer,
  .hero-actions,
  .contact-form-card {
    display: none !important;
  }

  body { background: #fff; color: #000; }
  .section { padding: 40px 0; break-inside: avoid; }
  .hero-shell,
  .service-card,
  .reason-card,
  .price-main-card { box-shadow: none; }
}
