:root {
  --font-gothic: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont,
    "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", sans-serif;
  --font-mincho: "Shippori Mincho B1", "Hiragino Mincho ProN", "Yu Mincho",
    "YuMincho", serif;
  --font-latin: "Oswald", "Zen Kaku Gothic New", sans-serif;
  --ink: #14120f;
  --ink-2: #242424;
  --ink-3: #404040;
  --paper: #faf7f1;
  --bone: #efe9dd;
  --bone-2: #e7e0d5;
  --white: #ffffff;
  --red: #b8151d;
  --red-dark: #8d0f16;
  --gold: #b08b4f;
  --green: #2c7651;
  --line: rgba(23, 23, 23, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(15, 15, 15, 0.12);
  --radius-sm: 10px;
  --radius: 20px;
  --radius-lg: 34px;
  --container: 1200px;
  --header-height: 88px;
  color-scheme: light;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-gothic);
  font-size: 16px;
  line-height: 1.85;
  overflow-wrap: anywhere;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  font-feature-settings: "palt";
}

h1,
h2,
h3 {
  line-height: 1.28;
  letter-spacing: -0.045em;
}

h1,
h2 {
  font-weight: 900;
}

h3 {
  font-weight: 800;
}

:focus-visible {
  outline: 3px solid #f5c94a;
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

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

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--red);
  font-family: var(--font-latin);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::after {
  height: 1px;
  flex: 1 1 auto;
  max-width: 92px;
  background: currentColor;
  content: "";
  opacity: 0.42;
}

.eyebrow--light {
  color: var(--gold);
}

/* ステートメント用の明朝 */
.mincho {
  font-family: var(--font-mincho);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.section {
  padding-block: clamp(84px, 9vw, 144px);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 54px;
}

.section-heading h2,
.clarity__intro h2,
.records__copy h2,
.review h2,
.faq h2,
.contact h2 {
  margin-bottom: 20px;
  font-size: clamp(1.85rem, 3.1vw, 2.95rem);
  line-height: 1.45;
}

.section-heading > p:last-child,
.clarity__intro > p:last-child,
.records__copy > p,
.faq__heading > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: #62605d;
  font-size: 1.05rem;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: 64px;
  max-width: none;
}

.section-heading--split h2 {
  margin-bottom: 0;
}

.section-heading--split > p {
  margin-bottom: 9px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease;
}

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

.button--red {
  background: var(--red);
  color: var(--white);
}

.button--red:hover {
  background: var(--red-dark);
}

.button--dark {
  background: var(--ink);
  color: var(--white);
}

.button--dark:hover {
  background: #333;
}

.button--light {
  background: var(--white);
  color: var(--ink);
}

.button--light:hover {
  background: var(--bone);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.46);
  background: transparent;
  color: var(--white);
}

.button--outline-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

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

.button--outline-dark:hover {
  background: var(--ink);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.5;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link--light {
  color: var(--white);
}

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  background: rgba(251, 250, 247, 0.96);
  border-bottom: 1px solid var(--line);
}

.header-note {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  line-height: 1.4;
}

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

.header-note p {
  margin: 0;
}

.header-note strong {
  color: var(--white);
}

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

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

.brand img {
  width: 52px;
  height: 48px;
  border-radius: 9px;
  object-fit: cover;
}

.brand__text {
  display: grid;
  gap: 3px;
  line-height: 1.2;
}

.brand__text small {
  color: #6b655c;
  font-family: var(--font-latin);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.brand__text strong {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 30px);
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

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

.header-phone {
  display: grid;
  flex: 0 0 auto;
  min-width: 166px;
  gap: 1px;
  padding: 11px 18px;
  border-radius: 12px;
  background: var(--red);
  color: var(--white);
  text-align: center;
  transition: background-color 0.2s ease;
}

.header-phone:hover {
  background: var(--red-dark);
}

.header-phone small {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.header-phone strong {
  font-family: var(--font-latin);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.menu-toggle {
  display: none;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  cursor: pointer;
  border: 0;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  content: "";
}

.menu-toggle__lines {
  position: relative;
}

.menu-toggle__lines::before {
  position: absolute;
  top: -6px;
}

.menu-toggle__lines::after {
  position: absolute;
  top: 6px;
}

.menu-toggle__label {
  display: block;
  margin-top: 7px;
  font-size: 0.52rem;
  font-weight: 800;
}

.mobile-menu {
  position: fixed;
  z-index: 200;
  inset: 0;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(3px);
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(92vw, 480px);
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 28px;
  background: var(--paper);
  box-shadow: -20px 0 70px rgba(0, 0, 0, 0.28);
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}

.menu-close {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 1.65rem;
  line-height: 1;
}

.mobile-intents {
  display: grid;
  gap: 10px;
}

.mobile-intents a {
  display: grid;
  grid-template-columns: 66px 64px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 15px 18px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
}

.mobile-intents a:nth-child(2) {
  background: var(--red);
}

.mobile-intents small {
  color: #e2bd7c;
  font-family: var(--font-latin);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.mobile-intents a:nth-child(2) small {
  color: #ffe4b3;
}

.mobile-intents strong {
  font-size: 1.2rem;
}

.mobile-intents span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: right;
}

.mobile-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-block: 24px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.mobile-links a {
  display: flex;
  min-height: 60px;
  align-items: center;
  padding: 12px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 800;
}

.mobile-menu__phone {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
}

/* Hero */
.hero {
  overflow: hidden;
  padding-block: clamp(54px, 7vw, 92px);
  background:
    radial-gradient(circle at 28% 20%, rgba(200, 29, 37, 0.18), transparent 34%),
    var(--ink);
  color: var(--white);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(400px, 0.88fr);
  align-items: center;
  gap: clamp(44px, 4.5vw, 68px);
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-block: 20px;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(2.3rem, 3.55vw, 3.5rem);
  line-height: 1.34;
}

.hero__h1-lead {
  display: block;
  margin-bottom: 0.22em;
  font-size: 0.58em;
  font-weight: 700;
  letter-spacing: 0.01em;
  opacity: 0.92;
}

.hero h1 em {
  display: block;
  color: #e8c78a;
  font-family: var(--font-mincho);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.hero__actions .text-link {
  margin-left: 6px;
}

.hero__booking {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 700;
}

.hero__visual {
  position: relative;
  margin: 0;
  isolation: isolate;
}

.hero__visual::before {
  position: absolute;
  z-index: -1;
  top: -26px;
  right: -28px;
  width: 72%;
  height: 80%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  content: "";
}

.hero__visual img {
  width: 100%;
  min-height: 570px;
  max-height: 670px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: 50% center;
  filter: contrast(1.03);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.34);
}

.hero__visual figcaption {
  position: absolute;
  right: 22px;
  bottom: 26px;
  left: 22px;
  display: grid;
  gap: 2px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 15px;
  background: rgba(17, 17, 17, 0.83);
  backdrop-filter: blur(12px);
}

.hero__visual figcaption strong {
  font-size: 0.92rem;
}

.hero__visual figcaption span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
}

.hero__visual > small {
  position: absolute;
  top: 14px;
  right: 18px;
  padding: 4px 8px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.55rem;
}

/* Proof */
.proof {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof__grid > * {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  text-align: left;
}

.proof__grid > *:first-child {
  border-left: 1px solid var(--line);
}

.proof__grid a {
  transition: background-color 0.2s ease;
}

.proof__grid a:hover {
  background: var(--bone);
}

.proof strong {
  color: var(--red);
  font-family: var(--font-latin);
  font-size: clamp(1.6rem, 2.7vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.proof span {
  max-width: 120px;
  color: #55524e;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.45;
}

/* Pathways */
.pathways {
  background: var(--paper);
}

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

.pathway-card {
  position: relative;
  display: flex;
  min-height: 640px;
  flex-direction: column;
  overflow: hidden;
  padding: 40px 34px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(23, 23, 23, 0.055);
}

.pathway-card--repair {
  border-top: 7px solid var(--red);
  padding-top: 34px;
}

.pathway-card__number {
  position: absolute;
  top: 20px;
  right: 26px;
  color: rgba(20, 18, 15, 0.08);
  font-family: var(--font-latin);
  font-size: 5.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.pathway-card__label {
  margin-bottom: 38px;
  color: var(--red);
  font-family: var(--font-latin);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pathway-card h3 {
  position: relative;
  margin-bottom: 22px;
  font-size: clamp(1.4rem, 1.95vw, 1.85rem);
  line-height: 1.5;
}

.pathway-card > p:not(.pathway-card__label) {
  margin-bottom: 26px;
  color: #65615d;
  font-size: 0.93rem;
}

.pathway-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 34px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.pathway-card li {
  position: relative;
  padding-left: 21px;
  color: #484541;
  font-size: 0.8rem;
  font-weight: 700;
}

.pathway-card li::before {
  position: absolute;
  top: 0.73em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.pathway-card__actions {
  display: grid;
  gap: 20px;
  align-items: start;
  margin-top: auto;
}

.pathway-card__actions .text-link {
  width: fit-content;
}

/* Clarity */
.clarity {
  border-block: 1px solid var(--line);
  background: var(--bone);
}

.clarity__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 42px clamp(50px, 8vw, 110px);
}

.clarity__intro {
  position: sticky;
  top: 30px;
  align-self: start;
}

.clarity__intro h2 {
  font-size: clamp(1.8rem, 2.95vw, 2.8rem);
}

.clarity__items {
  display: grid;
  border-top: 1px solid var(--ink);
}

.clarity__items article {
  position: relative;
  display: grid;
  grid-template-columns: 110px 190px 1fr;
  align-items: start;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.clarity__items h3 {
  margin: 4px 0 0;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.clarity__items p {
  margin: 1px 0 5px;
  color: #5c5955;
  font-size: 0.86rem;
}

.clarity__items a {
  grid-column: 3;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
}

.status {
  display: inline-flex;
  width: fit-content;
  min-width: 76px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
}

.status--free {
  background: #dcefe5;
  color: #1e6948;
}

.status--paid {
  background: #f4dedf;
  color: var(--red-dark);
}

.clarity__note {
  grid-column: 2;
  margin: -18px 0 0;
  color: #5d5850;
  font-size: 0.72rem;
}

/* Symptoms */
.symptoms {
  background: var(--white);
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.symptom-grid a {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: color 0.25s ease, background-color 0.25s ease;
}

.symptom-grid a:hover {
  background: var(--ink);
  color: var(--white);
}

.symptom-grid span {
  margin-bottom: 54px;
  color: var(--red);
  font-family: var(--font-latin);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.symptom-grid strong {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.4;
}

.symptom-grid small {
  margin-top: auto;
  font-size: 0.7rem;
  font-weight: 800;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
}

/* Stance */
.stance {
  padding-block: clamp(84px, 10vw, 150px);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(200, 29, 37, 0.11), transparent 42%),
    var(--ink);
  color: var(--white);
}

.stance__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(48px, 5.5vw, 84px);
}

.stance__image {
  position: relative;
  margin: 0;
}

.stance__image::after {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: -18px;
  width: 46%;
  height: 50%;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  content: "";
}

.stance__image img {
  width: 100%;
  min-height: 610px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(1.08);
}

.stance__image figcaption {
  position: absolute;
  z-index: 3;
  bottom: 12px;
  left: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.55rem;
}

.stance__copy h2 {
  margin-bottom: 28px;
  font-size: clamp(1.95rem, 3.35vw, 3.2rem);
  line-height: 1.45;
}

.stance__copy h2 em {
  display: inline-block;
  color: #e8c78a;
  font-family: var(--font-mincho);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.stance__copy > p:not(.eyebrow):not(.stance__signature) {
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.72);
}

.stance__list {
  display: grid;
  margin: 0 0 35px;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.stance__list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: center;
  padding: 19px 0;
  border-bottom: 1px solid var(--line-light);
}

.stance__list span {
  color: var(--gold);
  font-family: var(--font-latin);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.stance__list strong {
  font-size: 0.9rem;
}

.stance__signature {
  position: relative;
  margin: 0;
  padding-left: 22px;
  color: var(--white);
  font-family: var(--font-mincho);
  font-size: clamp(1.15rem, 2.1vw, 1.62rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.7;
}

.stance__signature::before {
  position: absolute;
  top: 0.35em;
  bottom: 0.35em;
  left: 0;
  width: 3px;
  background: var(--red);
  content: "";
}

/* Records */
.records {
  overflow: hidden;
  background: var(--paper);
}

.records__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
}

.records__copy > p {
  max-width: 690px;
}

.records__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 650px;
  margin-block: 42px;
  border-block: 1px solid var(--ink);
}

.records__stats div {
  display: grid;
  gap: 2px;
  padding: 24px;
}

.records__stats div + div {
  border-left: 1px solid var(--line);
}

.records__stats strong {
  color: var(--red);
  font-family: var(--font-latin);
  font-size: clamp(2.1rem, 4.1vw, 3.9rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
}

.records__stats span {
  color: #66615b;
  font-size: 0.72rem;
  font-weight: 800;
}

.records__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.records__image {
  position: relative;
  margin: 0;
}

.records__image::before {
  position: absolute;
  z-index: -1;
  top: 9%;
  right: -100vw;
  bottom: -9%;
  left: 24%;
  background: var(--bone);
  content: "";
}

.records__image img {
  width: 100%;
  max-height: 720px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(100%) contrast(1.05);
  box-shadow: var(--shadow);
}

.records__image figcaption {
  position: absolute;
  right: -18px;
  bottom: 32px;
  max-width: 250px;
  padding: 17px 20px;
  border-radius: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

/* Review */
.review {
  border-block: 1px solid var(--line);
  background: var(--bone);
}

.review__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: 34px clamp(50px, 9vw, 120px);
}

.review h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.85rem);
}

.review__score {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-self: end;
}

.review__score > strong {
  color: var(--red);
  font-family: var(--font-latin);
  font-size: clamp(4.4rem, 8.2vw, 7.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.review__score div {
  display: grid;
  gap: 4px;
}

.review__score span {
  color: #7a5709;
  font-size: 1.15rem;
  letter-spacing: 0.11em;
}

.review__score small {
  color: #69645e;
  font-size: 0.72rem;
  font-weight: 800;
}

.review blockquote {
  position: relative;
  margin: 0;
  padding: 34px 38px 32px 70px;
  border-left: 3px solid var(--red);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(23, 23, 23, 0.07);
}

.review blockquote::before {
  position: absolute;
  top: 17px;
  left: 24px;
  color: var(--red);
  content: "“";
  font-family: Georgia, serif;
  font-size: 4.4rem;
  line-height: 1;
}

.review blockquote p {
  margin-bottom: 13px;
  font-family: var(--font-mincho);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 2.05;
}

.review blockquote cite {
  color: #5d5850;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
}

.review__disclosure {
  display: block;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  color: #5d5850;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.7;
}

.review__grid > .button {
  justify-self: end;
}

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

.faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(55px, 8vw, 120px);
}

.faq__heading {
  position: sticky;
  top: 30px;
}

.faq h2 {
  font-size: clamp(1.85rem, 3.05vw, 2.9rem);
}

.faq__list {
  border-top: 1px solid var(--ink);
}

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

.faq summary {
  position: relative;
  padding: 27px 58px 27px 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  list-style: none;
}

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

.faq summary::before,
.faq summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 18px;
  height: 2px;
  background: var(--red);
  content: "";
  transition: transform 0.2s ease;
}

.faq summary::after {
  transform: rotate(90deg);
}

.faq details[open] summary::after {
  transform: rotate(0);
}

.faq details p {
  max-width: 760px;
  margin: -5px 0 0;
  padding: 0 58px 28px 4px;
  color: #64605a;
  font-size: 0.9rem;
}

/* Contact */
.contact {
  padding-block: clamp(80px, 9vw, 130px);
  background:
    linear-gradient(120deg, rgba(200, 29, 37, 0.13), transparent 45%),
    var(--ink);
  color: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.contact h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.05rem);
}

.contact__copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.contact dl {
  display: grid;
  margin: 32px 0 0;
  border-top: 1px solid var(--line-light);
}

.contact dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.8rem;
}

.contact dt {
  color: rgba(255, 255, 255, 0.52);
  font-weight: 700;
}

.contact dd {
  margin: 0;
  font-weight: 800;
}

.contact__actions {
  display: grid;
  gap: 20px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.contact-phone {
  display: grid;
  gap: 4px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-light);
}

.contact-phone small {
  color: #f0c97f;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.contact-phone strong {
  font-family: var(--font-latin);
  font-size: clamp(2.4rem, 5.1vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.contact-phone span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
}

.contact__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact__actions > .text-link {
  width: fit-content;
}

/* Utility */
.utility {
  padding-block: 76px;
  background: var(--paper);
}

.utility__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.utility__grid a {
  display: grid;
  min-height: 180px;
  align-content: center;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.2s ease;
}

.utility__grid a:hover {
  background: var(--bone);
}

.utility__grid small {
  margin-bottom: 17px;
  color: var(--red);
  font-family: var(--font-latin);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.utility__grid strong {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.utility__grid span {
  color: #6f6963;
  font-size: 0.72rem;
  font-weight: 700;
}

/* Footer */
.site-footer {
  padding-block: 74px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #101010;
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 0.75fr);
  gap: 55px;
}

.brand--footer img {
  filter: none;
}

.brand--footer .brand__text small {
  color: rgba(255, 255, 255, 0.66);
}

.footer__brand p {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  font-weight: 700;
}

.footer__grid h2 {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-latin);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer__grid nav,
.footer__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__grid nav a,
.footer__info > a {
  padding-block: 5px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.77rem;
  font-weight: 700;
}

.footer__grid nav a:hover,
.footer__info > a:hover {
  color: var(--white);
}

.footer__info p {
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
}

.footer__info p a {
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 900;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.65rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom div {
  display: flex;
  gap: 24px;
}

.footer__bottom a:hover {
  color: var(--white);
}

.mobile-quick {
  display: none;
}

/* 質感（紙・金属の粒子感）— のっぺりした平面を避ける */
.hero,
.stance,
.contact {
  position: relative;
}

.hero::after,
.stance::after,
.contact::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  content: "";
  mix-blend-mode: overlay;
  opacity: 0.16;
  pointer-events: none;
}

.hero > *,
.stance > *,
.contact > * {
  position: relative;
  z-index: 1;
}

/* AI集客サービス（同業者向けの別事業） */
.utility__grid a.utility--ai {
  background: var(--ink);
  color: var(--white);
}

.utility__grid a.utility--ai:hover {
  background: #23201b;
}

.utility__grid a.utility--ai small {
  color: var(--gold);
}

.utility__grid a.utility--ai span {
  color: rgba(255, 255, 255, 0.62);
}

/* 横スクロールさせる表が親をはみ出さないようにする（旧ページ互換） */
.table-scroll-wrap {
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* フッター最下部のクレジット行 */
.footer__credit {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.63rem;
}

.footer__credit a {
  color: rgba(255, 255, 255, 0.64);
  transition: color 0.2s ease;
}

.footer__credit a:hover {
  color: rgba(255, 255, 255, 0.78);
}

/* Responsive */
@media (max-width: 1099px) {
  .desktop-nav,
  .header-phone {
    display: none;
  }

  .header-main {
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
    gap: 40px;
  }

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

  .pathway-card:last-child {
    grid-column: 1 / -1;
    min-height: 520px;
  }

  .pathway-card:last-child .pathway-card__actions {
    grid-template-columns: minmax(220px, 0.45fr) 1fr;
    align-items: center;
  }

  .symptom-grid,
  .utility__grid {
    grid-template-columns: 1fr 1fr;
  }

  .stance__grid {
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    gap: 55px;
  }

  .stance__image img {
    min-height: 520px;
  }

  .footer__grid {
    grid-template-columns: 1.25fr repeat(3, 0.75fr);
    gap: 30px;
  }
}

@media (max-width: 879px) {
  .hero__grid,
  .stance__grid,
  .records__grid,
  .review__grid,
  .faq__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    padding-bottom: 0;
  }

  .hero__visual img {
    min-height: 440px;
    max-height: 540px;
  }

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

  .proof__grid > * {
    border-bottom: 1px solid var(--line);
  }

  .proof__grid > *:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .proof__grid > *:nth-child(3),
  .proof__grid > *:nth-child(4) {
    border-bottom: 0;
  }

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

  .pathway-card,
  .pathway-card:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .pathway-card:last-child .pathway-card__actions {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .clarity__intro,
  .faq__heading {
    position: static;
  }

  .clarity__note {
    grid-column: 1;
    margin-top: 0;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stance__image {
    order: 2;
  }

  .stance__copy {
    order: 1;
  }

  .stance__image img {
    min-height: 460px;
  }

  .records__image {
    max-width: 520px;
    margin-inline: auto;
  }

  .records__image::before {
    right: -50vw;
  }

  .review__score,
  .review__grid > .button {
    justify-self: start;
  }

  .faq__grid {
    gap: 36px;
  }

  .contact__grid {
    gap: 44px;
  }

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

  .utility__grid a {
    min-height: 150px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 639px) {
  :root {
    --header-height: 70px;
  }

  html {
    scroll-padding-bottom: 76px;
  }

  body {
    padding-bottom: 72px;
  }

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

  .section {
    padding-block: 78px;
  }

  .header-note {
    display: none;
  }

  .header-main {
    min-height: var(--header-height);
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 42px;
    height: 39px;
  }

  .brand__text small {
    font-size: 0.47rem;
    letter-spacing: 0.12em;
  }

  .brand__text strong {
    font-size: 0.79rem;
  }

  .menu-toggle {
    width: 47px;
    height: 47px;
  }

  .mobile-menu__panel {
    width: 100%;
    padding: 20px 16px 95px;
  }

  .mobile-intents a {
    grid-template-columns: 52px 52px 1fr;
    min-height: 70px;
    padding: 13px 14px;
  }

  .mobile-links {
    grid-template-columns: 1fr;
  }

  .mobile-links a {
    min-height: 52px;
  }

  .hero {
    padding-block: 54px 62px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(1.75rem, 7.4vw, 2.4rem);
  }

  .hero__lead {
    margin-bottom: 27px;
    font-size: 0.92rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    width: fit-content;
    margin: 7px 0 0;
  }

  .hero__visual img {
    min-height: 360px;
    max-height: 420px;
    object-position: 57% center;
  }

  .hero__visual::before {
    display: none;
  }

  .hero__visual figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 13px 15px;
  }

  .proof__grid {
    width: 100%;
  }

  .proof__grid > * {
    min-height: 96px;
    gap: 8px;
    padding: 18px 12px;
  }

  .proof strong {
    font-size: 1.65rem;
  }

  .proof span {
    max-width: 90px;
    font-size: 0.6rem;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .clarity__intro h2,
  .records__copy h2,
  .review h2,
  .faq h2,
  .contact h2 {
    font-size: clamp(1.55rem, 6.4vw, 2.05rem);
  }

  .pathway-card {
    padding: 32px 24px 28px;
  }

  .pathway-card--repair {
    padding-top: 26px;
  }

  .pathway-card__label {
    margin-bottom: 30px;
  }

  .pathway-card h3 {
    font-size: 1.65rem;
  }

  .clarity__grid {
    gap: 36px;
  }

  .clarity__items article {
    grid-template-columns: 90px 1fr;
    gap: 12px 16px;
    padding: 25px 0;
  }

  .clarity__items h3 {
    grid-column: 2;
  }

  .clarity__items p,
  .clarity__items a {
    grid-column: 1 / -1;
  }

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

  .symptom-grid a {
    min-height: 235px;
    padding: 20px;
  }

  .symptom-grid span {
    margin-bottom: 34px;
  }

  .symptom-grid strong {
    font-size: 1.05rem;
  }

  .section-cta,
  .records__actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .section-cta .button,
  .records__actions .button {
    width: 100%;
  }

  .stance__copy h2 {
    font-size: clamp(1.65rem, 6.9vw, 2.25rem);
  }

  .pathway-card h3 {
    font-size: 1.4rem;
  }

  .stance__image img {
    min-height: 370px;
  }

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

  .records__stats div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .records__image {
    width: calc(100% - 18px);
    margin-left: 0;
  }

  .records__image figcaption {
    right: -18px;
    bottom: 20px;
  }

  .review__score {
    gap: 15px;
  }

  .review__score > strong {
    font-size: 4.5rem;
  }

  .review blockquote {
    padding: 31px 23px 27px 50px;
  }

  .review blockquote::before {
    left: 14px;
  }

  .review__grid > .button {
    width: 100%;
  }

  .faq summary {
    padding-block: 23px;
    padding-left: 0;
    font-size: 0.9rem;
  }

  .faq details p {
    padding-right: 10px;
    padding-left: 0;
    font-size: 0.83rem;
  }

  .contact__actions {
    padding: 25px 20px;
  }

  .contact-phone strong {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

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

  .utility {
    padding-block: 58px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 22px;
  }

  .footer__brand,
  .footer__info {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__bottom div {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .mobile-quick {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--ink);
    box-shadow: 0 -12px 35px rgba(0, 0, 0, 0.18);
  }

  .mobile-quick a {
    display: grid;
    min-height: 70px;
    place-content: center;
    gap: 1px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
    text-align: center;
  }

  .mobile-quick a:nth-child(2) {
    background: var(--red);
  }

  .mobile-quick small {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-latin);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.16em;
  }

  .mobile-quick strong {
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .header-note,
  .desktop-nav,
  .header-phone,
  .menu-toggle,
  .mobile-menu,
  .mobile-quick,
  .hero__actions,
  .contact__actions {
    display: none !important;
  }

  body {
    padding: 0;
    background: #fff;
    color: #000;
  }

  .hero,
  .stance,
  .contact,
  .site-footer {
    background: #fff;
    color: #000;
  }
}
