:root {
  --color-bg: #fbf9ff;
  --color-bg-soft: #f1ecfb;
  --color-bg-mist: #fffdf8;
  --color-panel: #ffffff;
  --color-text: #25223b;
  --color-muted: #5c5870;
  --color-brand: #191761;
  --color-brand-soft: #5d4a9f;
  --color-lavender: #d9cff4;
  --color-lavender-pale: #f7f2ff;
  --color-sky: #7fb1e8;
  --color-leaf: #8f9e2b;
  --color-gold: #dcb961;
  --color-gold-soft: #f4e4ba;
  --color-line: #1d7a46;
  --color-line-deep: #145f36;
  --color-instagram: #2f257b;
  --color-border: #d7cde9;
  --shadow-soft: 0 12px 32px rgba(25, 23, 97, 0.14);
  --shadow-cta: 0 10px 22px rgba(25, 23, 97, 0.22);
  --focus: rgba(25, 23, 97, 0.28);
  --font-logo: "Yuji Syuku", "Shippori Mincho", "Noto Serif JP", serif;
  --font-serif: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  --font-sans: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-xs: 0.78rem;
  --font-sm: 0.9rem;
  --font-base: 1rem;
  --font-md: 1.1rem;
  --font-lg: 1.35rem;
  --font-xl: 1.75rem;
  --font-2xl: 2.18rem;
  --font-logo-size: 4rem;
  --container: 1120px;
  --pad-x: 20px;
  --section-y: 58px;
  --header-h: 64px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
  :root {
    --font-xl: 1.95rem;
    --font-2xl: 2.34rem;
    --font-logo-size: 5.05rem;
    --pad-x: 32px;
    --section-y: 78px;
    --header-h: 76px;
  }
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: var(--font-base);
  line-height: 1.9;
  letter-spacing: 0;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
  border-radius: 6px;
}

::selection {
  background: var(--color-gold-soft);
  color: var(--color-brand);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--color-brand);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: var(--font-sm);
}

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

.nowrap,
.text-chunk {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

.container {
  width: min(100%, calc(var(--container) + (var(--pad-x) * 2)));
  margin: 0 auto;
  padding-right: var(--pad-x);
  padding-left: var(--pad-x);
}

.container--narrow {
  max-width: 880px;
}

.section {
  position: relative;
  padding: var(--section-y) 0;
  overflow: hidden;
}

.section--white {
  background:
    linear-gradient(90deg, rgba(220, 185, 97, 0.15), transparent 18%, transparent 82%, rgba(220, 185, 97, 0.15)),
    var(--color-bg-mist);
}

.section--lavender {
  background:
    radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.9), transparent 42%),
    linear-gradient(135deg, rgba(247, 242, 255, 0.96), rgba(231, 224, 247, 0.92));
}

.section--mist {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 249, 255, 0.96)),
    var(--color-bg);
}

.section--premium {
  background:
    linear-gradient(135deg, rgba(25, 23, 97, 0.94), rgba(45, 37, 120, 0.92)),
    var(--color-brand);
  color: #fff;
}

.section--premium::before,
.section--premium::after,
.final-cta::before,
.section--lavender::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.72;
}

.section--premium::before,
.final-cta::before {
  width: 220px;
  height: 42px;
  right: -36px;
  top: 34px;
  border-top: 8px solid rgba(244, 228, 186, 0.56);
  border-bottom: 8px solid rgba(244, 228, 186, 0.35);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.section--premium::after,
.section--lavender::after {
  width: 120px;
  height: 120px;
  left: -42px;
  bottom: 28px;
  background-image:
    linear-gradient(45deg, transparent 44%, rgba(220, 185, 97, 0.5) 45%, rgba(220, 185, 97, 0.5) 55%, transparent 56%),
    linear-gradient(-45deg, transparent 44%, rgba(220, 185, 97, 0.5) 45%, rgba(220, 185, 97, 0.5) 55%, transparent 56%);
  background-size: 28px 28px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(251, 249, 255, 0.82);
  border-bottom: 1px solid rgba(215, 205, 233, 0.7);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 249, 255, 0.95);
  box-shadow: 0 10px 24px rgba(25, 23, 97, 0.1);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, calc(var(--container) + 40px));
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.site-header__brand,
.site-footer__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--color-brand);
}

.site-header__mark,
.site-footer__brand span {
  font-family: var(--font-logo);
  font-size: 1.72rem;
  line-height: 1;
}

.site-header__sub {
  font-size: var(--font-xs);
  color: var(--color-muted);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 4px;
  font-family: var(--font-sans);
  font-size: var(--font-xs);
  color: var(--color-brand);
}

.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle__line {
  position: relative;
}

.nav-toggle__line::before,
.nav-toggle__line::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__line::before {
  top: -7px;
}

.nav-toggle__line::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line::before {
  transform: translateY(7px) rotate(38deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line::after {
  transform: translateY(-7px) rotate(-38deg);
}

.global-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  display: grid;
  gap: 6px;
  padding: 20px var(--pad-x) 24px;
  background: rgba(251, 249, 255, 0.98);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  transform: translateY(-120%);
  visibility: hidden;
  transition: transform 0.28s var(--ease), visibility 0.28s;
}

.global-nav.is-open {
  transform: translateY(0);
  visibility: visible;
}

.global-nav a {
  min-height: 44px;
  padding: 10px 4px;
  font-family: var(--font-sans);
  font-size: var(--font-sm);
  color: var(--color-brand);
}

.global-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--color-line);
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(20, 95, 54, 0.24);
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .global-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    visibility: visible;
  }

  .global-nav a {
    padding: 0;
  }

  .global-nav__cta {
    min-width: 108px;
    min-height: 40px;
    padding: 0 18px !important;
  }
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 86svh;
  padding: calc(var(--header-h) + 14px) 0 34px;
  overflow: hidden;
  background: var(--color-bg);
}

.hero__bg,
.hero__bg img,
.hero__mist {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__bg img {
  object-fit: cover;
  object-position: 58% center;
}

.hero__mist {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(251, 249, 255, 0.82) 0%, rgba(251, 249, 255, 0.66) 34%, rgba(251, 249, 255, 0.14) 62%, rgba(251, 249, 255, 0) 100%),
    linear-gradient(180deg, rgba(251, 249, 255, 0.05), rgba(251, 249, 255, 0.3));
}

.hero__ornament {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0.62;
}

.hero__ornament--left {
  left: 18px;
  top: 32%;
  width: 74px;
  height: 74px;
  background-image:
    linear-gradient(45deg, transparent 42%, rgba(220, 185, 97, 0.72) 44%, rgba(220, 185, 97, 0.72) 56%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, rgba(220, 185, 97, 0.72) 44%, rgba(220, 185, 97, 0.72) 56%, transparent 58%);
  background-size: 24px 24px;
  opacity: 0.42;
}

.hero__ornament--right {
  right: 12%;
  top: 18%;
  width: 152px;
  height: 42px;
  border-top: 8px solid rgba(220, 185, 97, 0.5);
  border-bottom: 8px solid rgba(220, 185, 97, 0.34);
  border-radius: 50%;
  transform: rotate(-6deg);
}

.hero__inner {
  position: relative;
  z-index: 3;
}

.hero__copy {
  width: min(100%, 620px);
}

.hero__eyebrow,
.section__eyebrow {
  font-family: var(--font-sans);
  font-size: var(--font-sm);
  color: var(--color-brand);
}

.hero__brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 8px;
  color: var(--color-brand);
}

.hero__brand-main,
.profile__logo {
  font-family: var(--font-logo);
  font-size: var(--font-logo-size);
  line-height: 1;
}

.hero__brand-kana,
.profile__kana {
  font-family: var(--font-serif);
  font-size: var(--font-sm);
}

.hero__brand-en {
  font-size: var(--font-md);
  color: var(--color-muted);
}

.hero__title {
  margin-top: 20px;
  font-size: var(--font-2xl);
  line-height: 1.5;
  font-weight: 500;
  color: var(--color-text);
}

.hero__lead {
  margin-top: 16px;
  color: var(--color-muted);
  font-size: var(--font-base);
}

.hero__actions,
.final-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

.hero__note,
.menu-note,
.final-cta__note {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: var(--font-sm);
}

.button,
.sticky-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 12px 22px;
  font-family: var(--font-sans);
  font-size: var(--font-base);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  box-shadow: var(--shadow-cta);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, filter 0.25s ease;
}

.button:hover,
.sticky-cta__button:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.button--line,
.sticky-cta__button {
  background: linear-gradient(180deg, var(--color-line), var(--color-line-deep));
  color: #fff;
}

.button--instagram {
  background: linear-gradient(135deg, var(--color-instagram), #4d3a95);
  color: #fff;
}

@media (min-width: 640px) {
  .hero__actions,
  .final-cta__actions {
    flex-direction: row;
    align-items: center;
  }

  .hero__actions .button,
  .final-cta__actions .button {
    min-width: 230px;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 80svh;
    padding-bottom: 28px;
  }

  .hero__copy {
    margin-left: 18px;
  }

  .hero__mist {
    background:
      linear-gradient(90deg, rgba(251, 249, 255, 0.86) 0%, rgba(251, 249, 255, 0.7) 36%, rgba(251, 249, 255, 0.16) 58%, rgba(251, 249, 255, 0) 100%),
      linear-gradient(180deg, rgba(251, 249, 255, 0.03), rgba(251, 249, 255, 0.28));
  }
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 34px;
  text-align: center;
}

.section-heading--left {
  justify-content: flex-start;
  text-align: left;
}

.section-heading--stack > div {
  display: grid;
  gap: 2px;
}

.section-heading__deco {
  position: relative;
  flex: 0 0 50px;
  height: 22px;
}

.section-heading__deco::before,
.section-heading__deco::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 1px solid var(--color-gold);
  transform: translateY(-50%) rotate(45deg);
}

.section-heading__deco::before {
  left: 6px;
}

.section-heading__deco::after {
  right: 6px;
}

.section__title {
  font-size: var(--font-xl);
  line-height: 1.45;
  font-weight: 500;
  color: var(--color-brand);
}

.section--premium .section__title,
.section--premium .section__eyebrow {
  color: #fff;
}

.section-lead {
  color: var(--color-muted);
}

.section-lead--center {
  text-align: center;
}

.section--premium .section-lead {
  color: rgba(255, 255, 255, 0.86);
}

.worry-grid,
.service-grid,
.menu-grid,
.premium-grid {
  display: grid;
  gap: 18px;
}

.worry-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.worry-card,
.service-card,
.menu-card,
.premium-card {
  position: relative;
  border: 1px solid rgba(215, 205, 233, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.worry-card {
  min-height: 166px;
  padding: 24px 12px 20px;
  text-align: center;
}

.worry-card__icon {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  color: var(--color-brand-soft);
}

.worry-card__icon::before,
.worry-card__icon::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 3px solid currentColor;
  opacity: 0.62;
}

.worry-card__icon--question::before {
  border-radius: 50%;
}

.worry-card__icon--question::after {
  inset: 18px 20px 10px;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.worry-card__icon--people::before {
  border-radius: 50% 50% 42% 42%;
}

.worry-card__icon--people::after {
  inset: 23px 8px 7px;
  border-radius: 999px 999px 4px 4px;
}

.worry-card__icon--clock::before {
  border-radius: 50%;
}

.worry-card__icon--clock::after {
  inset: 13px 21px 22px;
  border-width: 0 3px 3px 0;
}

.worry-card__icon--hand::before {
  border-radius: 18px;
  transform: rotate(-12deg);
}

.worry-card__icon--hand::after {
  inset: 8px 14px 23px;
  border-width: 0 0 3px 3px;
  transform: rotate(-12deg);
}

.worry-card h3 {
  font-size: var(--font-base);
  line-height: 1.75;
  font-weight: 500;
}

.service-grid,
.menu-grid {
  margin-top: 10px;
}

.service-card {
  padding: 30px 22px;
  text-align: center;
}

.service-card + .service-card {
  border-top-color: rgba(220, 185, 97, 0.4);
}

.service-card__symbol {
  position: relative;
  display: block;
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border: 1px solid rgba(116, 88, 179, 0.38);
  border-radius: 50%;
  color: var(--color-brand-soft);
}

.service-card__symbol::before,
.service-card__symbol::after {
  content: "";
  position: absolute;
}

.service-card__symbol--crystal::before {
  inset: 16px 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.service-card__symbol--crystal::after {
  left: 28px;
  bottom: 10px;
  width: 12px;
  height: 16px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.service-card__symbol--compass::before {
  inset: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.service-card__symbol--compass::after {
  left: 29px;
  top: 12px;
  width: 10px;
  height: 42px;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 52%, 50% 100%, 0 52%);
}

.service-card__symbol--gate::before {
  left: 14px;
  right: 14px;
  top: 18px;
  height: 6px;
  background: currentColor;
}

.service-card__symbol--gate::after {
  left: 19px;
  right: 19px;
  top: 28px;
  height: 30px;
  border-left: 5px solid currentColor;
  border-right: 5px solid currentColor;
}

.service-card h3,
.menu-card__name,
.premium-card h3,
.value-card h3 {
  color: var(--color-brand);
  font-size: var(--font-lg);
  line-height: 1.55;
  font-weight: 500;
}

.service-card p,
.menu-card p,
.premium-card p,
.value-card p,
.profile__text {
  color: var(--color-muted);
}

.service-note {
  margin-top: 28px;
}

.menu-card {
  padding: 28px 22px;
  text-align: center;
}

.menu-card::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 86px;
  height: 20px;
  border-top: 5px solid rgba(220, 185, 97, 0.28);
  border-radius: 50%;
}

.menu-card--featured {
  border-color: rgba(116, 88, 179, 0.42);
  background: linear-gradient(180deg, #fff, rgba(247, 242, 255, 0.96));
}

.menu-card--gold {
  border-color: rgba(220, 185, 97, 0.76);
}

.menu-card__price {
  margin: 10px 0 12px;
  color: var(--color-brand);
  font-size: var(--font-xl);
  line-height: 1.3;
}

.menu-card__price span {
  font-size: var(--font-2xl);
}

.menu-note {
  text-align: center;
}

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

.value-card {
  display: grid;
  gap: 18px;
  padding: 10px;
  border: 1px solid rgba(215, 205, 233, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 22px rgba(25, 23, 97, 0.08);
}

.value-card picture,
.value-card img {
  width: 100%;
  height: 150px;
}

.value-card img {
  object-fit: cover;
  border-radius: 6px;
}

.value-card div {
  padding: 2px 8px 12px;
}

.value-card h3 {
  font-size: var(--font-md);
}

.value-card p {
  margin-top: 8px;
}

.profile {
  display: grid;
  gap: 34px;
  align-items: center;
}

.profile__mark {
  display: grid;
  justify-items: center;
  text-align: center;
}

.profile__mark picture {
  width: 168px;
  height: 168px;
  margin-bottom: 14px;
  border: 4px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.profile__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile__logo {
  color: var(--color-brand);
}

.profile__kana {
  margin-top: -6px;
  color: var(--color-muted);
}

.profile__text + .profile__text {
  margin-top: 16px;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.mini-gallery picture,
.mini-gallery img {
  width: 100%;
  height: 112px;
}

.mini-gallery img {
  object-fit: cover;
  border: 1px solid rgba(215, 205, 233, 0.9);
  border-radius: 8px;
}

.premium-grid {
  margin-top: 30px;
}

.premium-card {
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.94);
}

.premium-card--main {
  border-color: rgba(244, 228, 186, 0.92);
}

.premium-card__price {
  color: var(--color-brand);
  font-family: var(--font-serif);
  font-size: var(--font-xl);
  line-height: 1.2;
}

.premium-card h3 {
  margin-top: 10px;
}

.premium-card p {
  margin-top: 10px;
}

.premium-card ul {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  color: var(--color-muted);
  font-size: var(--font-sm);
}

.premium-card li {
  position: relative;
  padding-left: 16px;
}

.premium-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  border: 1px solid var(--color-gold);
  transform: rotate(45deg);
}

.option-accordion {
  margin-top: 24px;
  border: 1px solid rgba(244, 228, 186, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
  overflow: clip;
}

.option-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 16px 18px;
  color: var(--color-brand);
  font-family: var(--font-sans);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.option-accordion__icon {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.option-accordion__icon::before,
.option-accordion__icon::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 10px;
  height: 2px;
  background: var(--color-brand);
}

.option-accordion__icon::after {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.option-accordion[open] .option-accordion__icon::after {
  transform: rotate(0);
}

.option-table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--color-border);
}

.option-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: var(--font-sm);
}

.option-table th,
.option-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(215, 205, 233, 0.7);
  text-align: left;
  vertical-align: top;
}

.option-table thead th {
  color: var(--color-brand);
  background: var(--color-lavender-pale);
  font-family: var(--font-sans);
}

.option-table tbody th {
  color: var(--color-brand);
  font-weight: 600;
}

.final-cta {
  background:
    linear-gradient(180deg, rgba(241, 236, 251, 0.96), rgba(250, 247, 255, 0.98)),
    var(--color-bg-soft);
}

.final-cta__inner {
  position: relative;
  text-align: center;
}

.final-cta__actions {
  justify-content: center;
}

.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 45;
  display: flex;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta__button {
  width: min(100%, 420px);
  min-height: 50px;
  padding: 12px 20px;
}

.site-footer {
  padding: 38px 0 34px;
  background: #fff;
  border-top: 1px solid rgba(215, 205, 233, 0.84);
}

.site-footer__inner {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.site-footer__brand {
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.site-footer__brand small {
  color: var(--color-muted);
  font-size: var(--font-sm);
  font-weight: 400;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: var(--color-brand);
  font-family: var(--font-sans);
  font-size: var(--font-sm);
}

.site-footer__copy {
  color: var(--color-muted);
  font-family: var(--font-sans);
  font-size: var(--font-xs);
}

.page {
  padding-top: calc(var(--header-h) + 42px);
}

.doc-body {
  display: grid;
  gap: 22px;
  color: var(--color-muted);
}

.doc-body h2 {
  margin-top: 22px;
  color: var(--color-brand);
  font-size: var(--font-lg);
  line-height: 1.55;
  font-weight: 500;
}

.doc-body ul {
  display: grid;
  gap: 8px;
  padding-left: 1.2em;
  list-style: disc;
}

.doc-body a {
  color: var(--color-brand);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.doc-note {
  margin-top: 30px;
  color: var(--color-muted);
  font-family: var(--font-sans);
  font-size: var(--font-sm);
  text-align: right;
}

.not-found {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 40px) var(--pad-x) 56px;
  background:
    linear-gradient(180deg, rgba(251, 249, 255, 0.92), rgba(255, 255, 255, 0.96)),
    var(--color-bg);
  text-align: center;
}

.not-found__body {
  width: min(100%, 560px);
}

.not-found h1 {
  color: var(--color-brand);
  font-size: var(--font-2xl);
  line-height: 1.45;
  font-weight: 500;
}

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

.not-found .button {
  margin-top: 28px;
}

.fade-in,
.section__title,
.section-lead {
  opacity: 1;
  transform: none;
}

.motion-ready .fade-in,
.motion-ready .section__title,
.motion-ready .section-lead {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(24px);
  transition:
    opacity 0.72s var(--ease),
    filter 0.72s var(--ease),
    transform 0.72s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.motion-ready .fade-in.is-visible,
.motion-ready .section__title.is-visible,
.motion-ready .section-lead.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.motion-ready .hero__copy > * {
  animation: hero-rise 0.82s var(--ease) both;
}

.motion-ready .hero__copy > *:nth-child(2) {
  animation-delay: 0.08s;
}

.motion-ready .hero__copy > *:nth-child(3) {
  animation-delay: 0.16s;
}

.motion-ready .hero__copy > *:nth-child(4) {
  animation-delay: 0.24s;
}

.motion-ready .hero__copy > *:nth-child(5) {
  animation-delay: 0.32s;
}

.hover-lift {
  transition: transform 0.28s var(--ease), box-shadow 0.28s ease, border-color 0.28s ease;
}

@media (hover: hover) {
  .hover-lift:hover {
    transform: translateY(-4px);
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .worry-grid,
  .service-grid,
  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .worry-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .worry-card {
    min-height: 172px;
  }

  .service-card {
    min-height: 312px;
  }

  .value-card {
    grid-template-columns: minmax(220px, 320px) 1fr;
    align-items: center;
    padding: 10px 18px 10px 10px;
  }

  .value-card picture,
  .value-card img {
    height: 158px;
  }

  .profile {
    grid-template-columns: 260px 1fr;
    gap: 56px;
  }

  .profile__mark picture {
    width: 206px;
    height: 206px;
  }

  .premium-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .premium-card--main {
    grid-column: span 3;
  }
}

@media (min-width: 1040px) {
  .premium-card--main {
    grid-column: span 2;
    grid-row: span 2;
  }

  .premium-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .hero__mist {
    background:
      linear-gradient(180deg, rgba(251, 249, 255, 0.5), rgba(251, 249, 255, 0.62) 35%, rgba(251, 249, 255, 0.44)),
      linear-gradient(90deg, rgba(251, 249, 255, 0.82), rgba(251, 249, 255, 0.08));
  }

  .hero__brand {
    flex-wrap: wrap;
  }

  .hero__title {
    max-width: 20rem;
  }

  .hero__ornament--right {
    right: -22px;
  }

  .section-heading {
    gap: 10px;
  }

  .section-heading__deco {
    flex-basis: 28px;
  }

  .worry-card {
    padding-right: 8px;
    padding-left: 8px;
  }

  .mini-gallery {
    gap: 8px;
  }

  .mini-gallery picture,
  .mini-gallery img {
    height: 88px;
  }

  .option-table {
    min-width: 0;
  }

  .option-table thead {
    display: none;
  }

  .option-table,
  .option-table tbody,
  .option-table tr,
  .option-table th,
  .option-table td {
    display: block;
    width: 100%;
  }

  .option-table tr {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(215, 205, 233, 0.7);
  }

  .option-table th,
  .option-table td {
    border: 0;
    padding: 0;
  }

  .option-table tbody th {
    margin-bottom: 8px;
    font-size: var(--font-base);
  }

  .option-table td {
    display: grid;
    grid-template-columns: 5.5em minmax(0, 1fr);
    gap: 10px;
    color: var(--color-muted);
  }

  .option-table td + td {
    margin-top: 5px;
  }

  .option-table td:nth-child(2)::before {
    content: "内容";
    color: var(--color-brand);
    font-family: var(--font-sans);
    font-size: var(--font-xs);
    font-weight: 700;
  }

  .option-table td:nth-child(3)::before {
    content: "料金";
    color: var(--color-brand);
    font-family: var(--font-sans);
    font-size: var(--font-xs);
    font-weight: 700;
  }
}

@media (max-width: 430px) {
  :root {
    --font-logo-size: 3.05rem;
    --font-2xl: 1.72rem;
    --font-xl: 1.55rem;
  }

  .hero {
    min-height: 78svh;
    padding-top: calc(var(--header-h) + 10px);
    padding-bottom: 22px;
  }

  .hero__brand {
    margin-top: 4px;
  }

  .hero__title {
    margin-top: 14px;
    line-height: 1.42;
  }

  .hero__lead {
    margin-top: 13px;
    line-height: 1.68;
  }

  .hero__actions {
    gap: 10px;
    margin-top: 18px;
  }

  .button,
  .sticky-cta__button {
    min-height: 48px;
  }

  .hero__note {
    margin-top: 8px;
  }

  .hero__actions .button,
  .final-cta__actions .button {
    width: 100%;
  }

  .worry-grid {
    gap: 12px;
  }

  .worry-card h3 {
    font-size: 0.95rem;
  }
}

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

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

  .fade-in,
  .section__title,
  .section-lead,
  .motion-ready .fade-in,
  .motion-ready .section__title,
  .motion-ready .section-lead {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
