:root {
  --red: #e8352c;
  --red-dark: #c42a22;
  --wine: #6b1b22;
  --wine-deep: #3d0f14;
  --cream: #f7f3ec;
  --white: #fff;
  --text: #1a1a1a;
  --text-sub: #6b6b6b;
  --border: #e0e0e0;
  --footer-black: #141414;
  --font-display: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", "Zen Kaku Gothic New", sans-serif;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 128px;
  --radius-btn: 12px;
  --radius-card: 16px;
  --container: 1160px;
  --ease: cubic-bezier(.22, 1, .36, 1)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  line-height: 1.8;
  overflow-x: hidden
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
  font-weight: 700;
  line-height: 1.35
}

p {
  margin: 0
}

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

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

button {
  cursor: pointer;
  font-family: inherit
}

.container {
  max-width: var(--container);
  padding: 0 var(--space-3);
  margin: 0 auto
}

.section {
  padding: var(--space-8) 0;
  position: relative
}

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

.section--white {
  background: var(--white)
}

.section--wine {
  background: var(--wine);
  color: var(--white)
}

.reveal {
  opacity: 0;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transform: translateY(24px)
}

.reveal.is-visible,
.reveal-stagger.is-visible>* {
  opacity: 1;
  transform: translateY(0)
}

.reveal-stagger>* {
  opacity: 0;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transform: translateY(20px)
}

.reveal-stagger>:first-child {
  transition-delay: 20ms
}

.reveal-stagger>:nth-child(2) {
  transition-delay: .1s
}

.reveal-stagger>:nth-child(3) {
  transition-delay: .18s
}

.reveal-stagger>:nth-child(4) {
  transition-delay: .26s
}

.reveal-stagger>:nth-child(5) {
  transition-delay: .34s
}

.eyebrow {
  font-family: var(--font-display);
  letter-spacing: .16em;
  color: var(--red);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  align-items: baseline;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex
}

.eyebrow:before {
  content: "";
  background: var(--red);
  width: 24px;
  height: 2px;
  display: inline-block
}

.eyebrow-jp {
  font-family: var(--font-body);
  letter-spacing: .06em;
  color: var(--text-sub);
  text-transform: none;
  font-size: 12px;
  font-weight: 500
}

.section--wine .eyebrow {
  color: #ff8f88
}

.section--wine .eyebrow:before {
  background: #ff8f88
}

.eyebrow--center {
  align-items: center
}

.eyebrow--center:before {
  transform: translateY(1.5px)
}

.section-title {
  margin-bottom: var(--space-2);
  letter-spacing: -.01em;
  font-size: clamp(26px, 3.4vw, 36px)
}

.section-lead {
  color: var(--text-sub);
  max-width: 640px;
  font-size: 16px
}

.section--wine .section-lead {
  color: #ffffffbf
}

.section-header {
  text-align: center;
  margin: 0 auto var(--space-6);
  max-width: 720px
}

.section-header .section-lead {
  margin: 0 auto
}

.btn {
  border-radius: var(--radius-btn);
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s ease;
  border: 2px solid #0000;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex
}

.btn:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px
}

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

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 20px #e8352c47
}

.btn--primary:hover {
  background: var(--red-dark);
  box-shadow: 0 12px 28px #e8352c5c
}

.btn--outline {
  color: var(--red);
  border-color: var(--red);
  background: 0 0
}

.btn--outline:hover {
  background: var(--red);
  color: var(--white)
}

.btn--ghost {
  color: var(--white);
  backdrop-filter: blur(4px);
  background: #ffffff0f;
  border-color: #ffffff80
}

.btn--ghost:hover {
  background: #ffffff29
}

.btn--wine {
  background: var(--white);
  color: var(--wine)
}

.btn--wine:hover {
  background: var(--cream)
}

.btn--block {
  width: 100%
}

.btn--sm {
  padding: 10px 18px;
  font-size: 14px
}

.site-header {
  z-index: 100;
  padding: 18px 0;
  transition: background .3s, box-shadow .3s, padding .3s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0
}

.site-header.is-scrolled {
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
  background: #ffffffe6;
  padding: 12px 0
}

.nav {
  justify-content: space-between;
  align-items: center;
  display: flex
}

.nav-logo {
  font-family: var(--font-display);
  color: var(--red-dark);
  font-size: 18px;
  font-weight: 700;
  transition: color .3s
}

.site-header.is-scrolled .nav-logo {
  color: var(--red)
}

.nav-logo span {
  color: var(--white)
}

.site-header.is-scrolled .nav-logo span {
  color: var(--text);
}

.nav-links {
  align-items: center;
  gap: var(--space-4);
  letter-spacing: .04em;
  font-size: 13px;
  font-weight: 600;
  display: flex
}

.nav-links a {
  color: #ffffffd9;
  transition: color .3s
}

.site-header.is-scrolled .nav-links a {
  color: var(--text)
}

.nav-links a:hover {
  color: var(--red)
}

.nav-cta {
  align-items: center;
  gap: var(--space-2);
  display: flex
}

.nav-toggle,
.mobile-menu {
  display: none
}

.hero {
  background: var(--wine);
  isolation: isolate;
  align-items: center;
  min-height: 100svh;
  display: flex;
  position: relative;
  overflow: hidden
}

.hero-bg {
  z-index: 0;
  position: absolute;
  inset: 0
}

.hero-bg img {
  object-fit: cover;
  object-position: center 22%;
  opacity: .5;
  width: 100%;
  height: 100%;
  animation: heroZoom 16s var(--ease) forwards;
  transform: scale(1.06)
}

@keyframes heroZoom {
  to {
    transform: scale(1)
  }
}

.hero-bg:after {
  content: "";
  background: linear-gradient(#3d0f1473 0%, #14040699 55%, #140406f0 100%);
  position: absolute;
  inset: 0
}

.hero-watermark {
  z-index: 1;
  font-family: var(--font-display);
  color: #ffffff0d;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  font-size: clamp(70px, 16vw, 240px);
  font-weight: 700;
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translate(-50%)
}

.hero-content {
  z-index: 2;
  width: 100%;
  padding: 140px 0 var(--space-6);
  color: var(--white);
  position: relative
}

.hero-eyebrow {
  letter-spacing: .1em;
  color: #ffffffe6;
  margin-bottom: var(--space-3);
  opacity: 0;
  animation: fadeUp .8s var(--ease) .1s forwards;
  border: 1px solid #ffffff59;
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  font-size: 12px;
  display: inline-flex
}

.hero-eyebrow:before {
  content: "";
  background: var(--red);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  display: inline-block
}

.hero h1 {
  margin-bottom: var(--space-3);
  max-width: 860px;
  color: var(--white);
  opacity: 0;
  animation: fadeUp .9s var(--ease) .25s forwards;
  font-size: clamp(32px, 5.6vw, 62px);
  line-height: 1.25
}

.hero h1 em {
  color: var(--red);
  font-style: normal
}

.hero-sub {
  color: #ffffffd1;
  margin-bottom: var(--space-4);
  opacity: 0;
  max-width: 480px;
  animation: fadeUp .9s var(--ease) .4s forwards;
  font-size: 17px
}

.hero-cta {
  gap: var(--space-2);
  opacity: 0;
  animation: fadeUp .9s var(--ease) .55s forwards;
  flex-wrap: wrap;
  display: flex
}

.hero-note {
  margin-top: var(--space-4);
  color: #ffffff80;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .7s forwards;
  font-size: 12px
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.scroll-cue {
  z-index: 2;
  right: var(--space-3);
  bottom: var(--space-4);
  color: #ffffffa6;
  letter-spacing: .16em;
  writing-mode: vertical-rl;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  display: flex;
  position: absolute
}

.scroll-cue:after {
  content: "";
  writing-mode: horizontal-tb;
  background: #fff6;
  width: 1px;
  height: 42px;
  animation: 1.8s ease-in-out infinite scrollcue
}

@keyframes scrollcue {

  0%,
  to {
    opacity: .35;
    transform: scaleY(.35)
  }

  50% {
    opacity: 1;
    transform: scaleY(1)
  }
}

.watermark-wrap {
  overflow: hidden
}

.watermark {
  z-index: 0;
  font-family: var(--font-display);
  color: #1a1a1a08;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  font-size: clamp(64px, 13vw, 190px);
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.section--wine .watermark {
  color: #ffffff0a
}

.watermark-wrap>.container {
  z-index: 1;
  position: relative
}

.pain-grid {
  gap: var(--space-3);
  grid-template-columns: repeat(4, 1fr);
  display: grid
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-4) var(--space-3);
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease
}

.pain-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 20px 36px #1a1a1a14
}

.pain-card p {
  font-size: 15px;
  font-weight: 700
}

.feature-grid {
  gap: var(--space-4);
  grid-template-columns: repeat(2, 1fr);
  display: grid
}

.feature-card {
  gap: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-card);
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px #1a1a1a0f
}

.feature-icon {
  background: var(--red);
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2px
}

.feature-card h3 {
  margin-bottom: 6px;
  font-size: 17px
}

.feature-card p {
  color: var(--text-sub);
  font-size: 14px
}

.pricing-grid {
  gap: var(--space-3);
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  display: grid
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-4);
  gap: var(--space-2);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  flex-direction: column;
  display: flex;
  position: relative
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px #1a1a1a1a
}

.price-card > .btn {
  margin-top: auto
}

.price-card--featured {
  border: 2px solid var(--red);
  box-shadow: 0 14px 36px #e8352c29
}

.price-card--featured:hover {
  box-shadow: 0 22px 48px #e8352c3d
}

.price-badge {
  background: var(--red);
  color: var(--white);
  white-space: nowrap;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translate(-50%)
}

.price-name {
  font-size: 18px;
  font-weight: 700
}

.price-name--featured {
  color: var(--red)
}

.price-amount {
  font-size: 30px;
  font-weight: 700
}

.price-amount small {
  color: var(--text-sub);
  font-size: 14px;
  font-weight: 500
}

.price-tagline {
  color: var(--text-sub);
  border-top: 1px solid var(--border);
  padding-top: var(--space-2);
  font-size: 13px
}

.price-list {
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  font-size: 14px;
  list-style: none;
  display: flex
}

.price-list li {
  padding-left: 18px;
  position: relative
}

.price-list li:before {
  content: "";
  background: var(--red);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 8px;
  left: 0
}

.teaser-grid {
  gap: var(--space-3);
  grid-template-columns: repeat(2, 1fr);
  display: grid
}

.teaser-card {
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-card);
  background: var(--cream);
  border: 1px solid var(--border);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex
}

.teaser-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px #1a1a1a0f
}

.teaser-card h3 {
  margin-bottom: 6px;
  font-size: 16px
}

.teaser-card p {
  color: var(--text-sub);
  font-size: 13px
}

.teaser-price {
  color: var(--red);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700
}

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

.process-item {
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border);
  grid-template-columns: 72px 1fr;
  display: grid
}

.process-item:last-child {
  border-bottom: none
}

.process-num {
  font-family: var(--font-display);
  color: var(--red);
  font-size: 24px;
  font-weight: 700
}

.process-item h3 {
  margin-bottom: 4px;
  font-size: 17px
}

.process-item p {
  color: var(--text-sub);
  font-size: 14px
}

.people-grid {
  gap: var(--space-3);
  grid-template-columns: repeat(3, 1fr);
  display: grid
}

.people-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  overflow: hidden
}

.people-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px #1a1a1a24
}

.people-photo {
  aspect-ratio: 4/3;
  background: var(--cream);
  overflow: hidden
}

.people-photo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .5s var(--ease)
}

.people-card:hover .people-photo img {
  transform: scale(1.08)
}

.people-body {
  padding: var(--space-3)
}

.people-name {
  font-size: 15px;
  font-weight: 700
}

.people-role {
  color: var(--text-sub);
  margin: 4px 0 var(--space-2);
  font-size: 13px
}

.people-links {
  gap: 10px;
  display: flex
}

.people-links a {
  color: var(--text-sub);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  transition: color .2s, border-color .2s
}

.people-links a:hover {
  color: var(--red);
  border-color: var(--red)
}

.testimonial {
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: var(--space-5);
  text-align: center;
  max-width: 760px;
  margin: 0 auto
}

.testimonial p {
  font-size: 16px;
  line-height: 1.9
}

.testimonial-name {
  margin-top: var(--space-3);
  color: var(--text-sub);
  font-size: 13px
}

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

.faq-q {
  text-align: left;
  width: 100%;
  padding: var(--space-3) 0;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  color: inherit;
  background: 0 0;
  border: none;
  font-size: 15px;
  font-weight: 700;
  display: flex
}

.faq-q:after {
  content: "+";
  color: var(--red);
  transition: transform .3s var(--ease);
  flex: none;
  font-size: 22px;
  font-weight: 400
}

.faq-q[aria-expanded=true]:after {
  transform: rotate(45deg)
}

.faq-a {
  max-height: 0;
  color: var(--text-sub);
  max-width: 680px;
  transition: max-height .35s var(--ease), padding .35s var(--ease);
  font-size: 14px;
  overflow: hidden
}

.faq-a.is-open {
  max-height: 220px;
  padding-bottom: var(--space-3)
}

.rep-grid {
  gap: var(--space-6);
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  display: grid
}

.rep-photo {
  aspect-ratio: 1;
  border-radius: var(--radius-card);
  color: #ffffff8c;
  text-align: center;
  padding: var(--space-3);
  background: #ffffff0f;
  border: 1px solid #ffffff2e;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  display: flex
}

.rep-message p {
  margin-bottom: var(--space-3);
  color: #ffffffeb;
  font-size: 15px;
  line-height: 2
}

.final-cta {
  text-align: center
}

.final-cta-buttons {
  gap: var(--space-2);
  margin-top: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
  display: flex
}

.final-cta-note {
  margin-top: var(--space-3);
  color: var(--text-sub);
  font-size: 13px
}

.site-footer {
  background: var(--footer-black);
  color: #ffffffb8;
  padding: var(--space-6) 0 var(--space-3)
}

.footer-top {
  gap: var(--space-4);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid #ffffff1f;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  display: grid
}

.footer-brand {
  font-family: var(--font-display);
  color: var(--red);
  margin-bottom: var(--space-2);
  font-size: 18px
}

.footer-brand span {
  color: var(--white)
}

.footer-desc {
  max-width: 280px;
  font-size: 13px;
  line-height: 1.9
}

.footer-sns {
  gap: var(--space-2);
  margin-top: var(--space-3);
  display: flex
}

.footer-sns a {
  border: 1px solid #fff3;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  transition: border-color .2s;
  display: flex
}

.footer-sns a:hover {
  border-color: var(--red)
}

.footer-sns svg {
  fill: #ffffffd9;
  width: 16px;
  height: 16px
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: var(--space-2);
  letter-spacing: .06em;
  font-size: 13px
}

.footer-col ul {
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  font-size: 13px;
  list-style: none;
  display: flex
}

.footer-col a:hover {
  color: var(--white)
}

.footer-note {
  color: #ffffff8c;
  margin-top: var(--space-2);
  max-width: 320px;
  font-size: 12px;
  line-height: 1.8
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  padding-top: var(--space-3);
  flex-wrap: wrap;
  font-size: 12px;
  display: flex
}

.footer-legal {
  gap: var(--space-3);
  flex-wrap: wrap;
  display: flex
}

.scroll-top-btn {
  z-index: 200;
  background: var(--red);
  opacity: 0;
  pointer-events: none;
  width: 46px;
  height: 46px;
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .2s ease;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  bottom: 20px;
  right: 20px;
  transform: translateY(12px);
  box-shadow: 0 8px 20px #e8352c59
}

.scroll-top-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0)
}

.scroll-top-btn:hover {
  background: var(--red-dark)
}

.scroll-top-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.4px
}

.spec-list {
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex
}

.spec-row {
  border-bottom: 1px dashed var(--border);
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  font-size: 13px;
  display: flex
}

.spec-row:last-child {
  border-bottom: none
}

.spec-row dt {
  color: var(--text);
  margin: 0;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0
}

.spec-row dd {
  color: var(--text-sub);
  text-align: right;
  margin: 0
}

.spec-row--block {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px
}

.spec-row--block dd {
  text-align: left;
  line-height: 1.9
}

.price-amount--label {
  color: var(--red);
  font-size: 22px
}

.page-intro {
  padding-top: 160px;
  padding-bottom: var(--space-5)
}

.back-link {
  color: var(--text-sub);
  margin-bottom: var(--space-3);
  align-items: center;
  gap: 6px;
  font-size: 13px;
  display: inline-flex
}

.back-link:hover {
  color: var(--red)
}

.note-banner {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-3) var(--space-4);
  color: var(--text-sub);
  text-align: center;
  font-size: 14px
}

.note-banner strong {
  color: var(--red)
}

.text-center {
  text-align: center
}

@media (width<=960px) {
  .hero {
    min-height: 92svh
  }

  .hero-watermark,
  .scroll-cue {
    display: none
  }

  .pain-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .feature-grid,
  .pricing-grid,
  .people-grid,
  .teaser-grid,
  .rep-grid {
    grid-template-columns: 1fr
  }

  .rep-photo {
    max-width: 220px;
    margin: 0 auto
  }

  .footer-top {
    grid-template-columns: 1fr 1fr
  }
}

.site-header.is-scrolled .btn--ghost {
  color: var(--red);
  border-color: var(--red);
  background: transparent;
}

.site-header.is-scrolled .btn--ghost:hover {
  background: var(--red);
  color: var(--white);
}

@media (width<=640px) {
  .section {
    padding: var(--space-6) 0
  }

  .hero-content {
    padding-top: 110px
  }

  .nav-links,
  .nav-cta .btn--outline,
  .nav-cta .btn--ghost {
    display: none
  }

  .nav-toggle {
    background: #ffffff1a;
    border: 1px solid #ffffff4d;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    display: flex;
    position: relative
  }

  .site-header.is-scrolled .nav-toggle {
    background: var(--cream);
    border-color: var(--border)
  }

  .nav-toggle span,
  .nav-toggle span:before,
  .nav-toggle span:after {
    content: "";
    background: var(--white);
    height: 2px;
    transition: transform .2s, opacity .2s, background .3s;
    position: absolute;
    left: 10px;
    right: 10px
  }

  .site-header.is-scrolled .nav-toggle span,
  .site-header.is-scrolled .nav-toggle span:before,
  .site-header.is-scrolled .nav-toggle span:after {
    background: var(--text)
  }

  .nav-toggle span {
    top: 19px
  }

  .nav-toggle span:before {
    top: -7px
  }

  .nav-toggle span:after {
    top: 7px
  }

  .nav-toggle[aria-expanded=true] span {
    background: 0 0 !important
  }

  .nav-toggle[aria-expanded=true] span:before {
    transform: translateY(7px)rotate(45deg);
    background: var(--text) !important
  }

  .nav-toggle[aria-expanded=true] span:after {
    transform: translateY(-7px)rotate(-45deg);
    background: var(--text) !important
  }

  .mobile-menu {
    z-index: 90;
    background: var(--white);
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
    opacity: 0;
    pointer-events: none;
    flex-direction: column;
    transition: opacity .3s;
    display: flex;
    position: fixed;
    inset: 0
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto
  }

  .mobile-menu a {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--text)
  }

  .pain-grid,
  .footer-top {
    grid-template-columns: 1fr
  }
}

/* ============ Contact Form (共通コンポーネント) ============ */
.contact-layout {
  gap: var(--space-6);
  grid-template-columns: 1fr .8fr;
  align-items: start;
  display: grid
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-5);
  flex-direction: column;
  gap: var(--space-3);
  display: flex
}

.form-group {
  flex-direction: column;
  gap: 8px;
  display: flex
}

.form-label {
  font-size: 14px;
  font-weight: 700
}

.form-label small {
  color: var(--text-sub);
  font-weight: 500;
  margin-left: 6px
}

.form-input,
.form-select,
.form-textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .2s ease
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--red)
}

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

.form-submit-note {
  color: var(--text-sub);
  font-size: 12px
}

.contact-aside {
  flex-direction: column;
  gap: var(--space-3);
  display: flex
}

.contact-aside-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-4)
}

.contact-aside-card h3 {
  margin-bottom: 8px;
  font-size: 15px
}

.contact-aside-card p {
  color: var(--text-sub);
  font-size: 13px
}

@media (width<=960px) {
  .contact-layout {
    grid-template-columns: 1fr
  }
}

/* ============ ヒーローを持たない下層ページ用ヘッダー ============ */
.site-header--solid {
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
  background: #ffffffe6;
  padding: 12px 0
}

.site-header--solid .nav-logo {
  color: var(--red)
}

.site-header--solid .nav-logo span {
  color: var(--text)
}

.site-header--solid .nav-links a {
  color: var(--text)
}

.site-header--solid .btn--ghost {
  color: var(--red);
  border-color: var(--red);
  background: transparent
}

.site-header--solid .btn--ghost:hover {
  background: var(--red);
  color: var(--white)
}

.site-header--solid .nav-toggle {
  background: var(--cream);
  border-color: var(--border)
}

.site-header--solid .nav-toggle span,
.site-header--solid .nav-toggle span:before,
.site-header--solid .nav-toggle span:after {
  background: var(--text)
}

/* ============ 利用規約・プライバシーポリシー等の本文 ============ */
.legal-content {
  max-width: 760px
}

.legal-content h2 {
  margin-top: var(--space-5);
  margin-bottom: var(--space-2);
  font-size: 19px
}

.legal-content h2:first-of-type {
  margin-top: 0
}

.legal-content p {
  color: var(--text-sub);
  margin-bottom: var(--space-2);
  font-size: 15px;
  line-height: 1.9
}

.legal-content ul,
.legal-content ol {
  color: var(--text-sub);
  margin: 0 0 var(--space-2);
  padding-left: 1.4em;
  font-size: 15px;
  line-height: 1.9
}

.legal-content .legal-date {
  color: var(--text-sub);
  margin-top: var(--space-5);
  font-size: 13px
}
