@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,500;0,600;1,500&family=Shippori+Mincho:wght@400;500;600&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

:root {
  --rose: #c0607a;
  --rose-deep: #a24f68;
  --rose-pale: #f0d0da;
  --ink: #4a3636;
  --ink-soft: #7a5c5c;
  --paper: #fffdfb;
  --blush: #fdf0f4;
  --line: #ecd9de;
  --dark: #2a2325;
  --serif: 'Shippori Mincho', 'Yu Mincho', serif;
  --script: 'Cormorant', serif;
  --sans: 'Zen Kaku Gothic New', sans-serif;
  --shadow: 0 24px 60px rgb(67 42 50 / 12%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
figure, blockquote, p { margin-block-start: 0; }
.shell { width: min(1120px, calc(100% - 64px)); margin-inline: auto; }
.section { padding-block: clamp(84px, 10vw, 140px); }
.section--tint { background: var(--blush); }
.section--dark { color: #fdf7f8; background: var(--dark); }
.mobile-only { display: none; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--dark);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(24px, 4vw, 72px);
  color: var(--ink);
  background: rgb(255 253 251 / 92%);
  border-bottom: 1px solid rgb(48 41 43 / 9%);
  backdrop-filter: blur(12px);
}
.brand { display: grid; text-decoration: none; }
.brand span { color: var(--rose); font-family: var(--script); font-size: 1.85rem; font-style: italic; font-weight: 600; letter-spacing: .04em; }
.brand small { margin-top: -4px; color: var(--ink-soft); font-size: .64rem; letter-spacing: .14em; }
.header-reserve {
  position: relative;
  padding: 8px 4px;
  font-size: .82rem;
  letter-spacing: .16em;
  text-decoration: none;
}
.header-reserve::after { content: ''; position: absolute; right: 0; bottom: 3px; left: 0; height: 1px; background: var(--rose-deep); transform-origin: left; transition: transform .25s ease; }
.header-reserve:hover::after { transform: scaleX(.45); }

.hero {
  position: relative;
  display: grid;
  min-height: min(880px, 100svh);
  align-items: end;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgb(251 231 238 / 97%) 0%, rgb(251 231 238 / 92%) 30%, rgb(251 231 238 / 45%) 50%, rgb(251 231 238 / 0%) 62%),
    url('assets/hero.jpg') center / cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 104px auto 0 53%;
  width: 1px;
  background: linear-gradient(transparent, rgb(255 255 255 / 38%), transparent);
  opacity: .45;
}
.hero__content { position: relative; z-index: 1; padding-block: 204px 98px; }
.eyebrow {
  margin-bottom: 18px;
  color: var(--rose-deep);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.hero .eyebrow { color: var(--rose-deep); }
.hero__brand {
  max-width: 720px;
  margin: 0;
  font-family: var(--script);
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: .02em;
  color: var(--rose-deep);
}
.hero__kana { margin: 6px 0 30px; font-size: .92rem; letter-spacing: .14em; color: var(--ink-soft); }
.hero__lead { margin-bottom: 36px; font-size: .96rem; font-weight: 500; line-height: 1.9; letter-spacing: .05em; }
.hero__scroll {
  position: absolute;
  right: 34px;
  bottom: 64px;
  padding-bottom: 66px;
  font-size: .58rem;
  letter-spacing: .32em;
  writing-mode: vertical-rl;
  color: var(--rose-deep);
}
.hero__scroll::after { content: ''; position: absolute; right: 50%; bottom: 0; width: 1px; height: 52px; background: var(--rose); }

.reserve-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.button {
  position: relative;
  display: inline-grid;
  min-width: 192px;
  min-height: 56px;
  place-items: center;
  padding: 12px 28px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { color: white; background: var(--rose); border-color: var(--rose); box-shadow: 0 12px 28px rgb(117 56 75 / 22%); }
.button--primary:hover { background: var(--rose-deep); border-color: var(--rose-deep); }
.button--secondary { color: var(--rose-deep); background: rgb(255 253 251 / 94%); border-color: var(--rose-pale); }
.button--text { min-width: auto; color: inherit; border-color: transparent; background: transparent; text-decoration: underline; text-underline-offset: 7px; }
.button:focus-visible, .faq__question:focus-visible, .header-reserve:focus-visible, .brand:focus-visible, .mobile-reserve:focus-visible { outline: 3px solid #191315; outline-offset: 4px; }

.trust {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -36px;
  padding: 30px 16px;
  background: var(--paper);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.trust p { display: grid; margin: 0; padding: 4px 22px; text-align: center; border-right: 1px solid var(--line); }
.trust p:last-child { border-right: 0; }
.trust strong { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; letter-spacing: .06em; }
.trust span { color: var(--ink-soft); font-size: .71rem; letter-spacing: .05em; }

.menu-focus { padding-top: 82px; padding-bottom: 92px; background: var(--paper); }
.menu-focus .section-heading { max-width: 760px; margin-bottom: 34px; }
.menu-focus__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.menu-focus__card { display: flex; min-height: 244px; flex-direction: column; padding: 28px 26px 24px; background: var(--blush); border: 1px solid var(--rose-pale); border-radius: 18px; }
.menu-focus__card--primary { background: #fff8f8; border: 2px solid var(--rose); box-shadow: 0 14px 30px rgb(192 96 122 / 12%); }
.menu-focus__label { margin: 0 0 16px; color: var(--rose-deep); font-size: .72rem; font-weight: 700; letter-spacing: .1em; }
.menu-focus__card h3 { margin: 0 0 14px; color: var(--ink); font-family: var(--serif); font-size: 1.2rem; font-weight: 600; letter-spacing: .04em; }
.menu-focus__card p:not(.menu-focus__label) { margin: 0; color: var(--ink-soft); font-size: .84rem; line-height: 1.85; }
.menu-focus__card strong { margin-top: auto; padding-top: 20px; color: var(--rose-deep); font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.menu-focus__button { display: flex; width: fit-content; margin: 26px auto 0; }

.section-heading { max-width: 670px; margin: 0 auto 62px; text-align: center; }
.section-heading--left { margin-inline: 0; text-align: left; }
.section-heading h2, .care h2, .staff h2, .reserve h2 {
  margin: 0 0 24px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.8vw, 3.2rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .09em;
}
.section-heading > p:last-child { color: var(--ink-soft); }

.reason-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.reason-grid article { position: relative; min-height: 280px; padding: 46px 30px 34px; border-right: 1px solid var(--line); }
.reason-grid article:last-child { border-right: 0; }
.reason-grid article > span { position: absolute; top: 18px; right: 20px; color: var(--rose-pale); font-family: var(--serif); font-size: 2.4rem; line-height: 1; }
.reason-grid h3 { position: relative; margin: 58px 0 18px; font-family: var(--serif); font-size: 1.16rem; font-weight: 600; letter-spacing: .04em; }
.reason-grid p { color: var(--ink-soft); font-size: .9rem; }
.reason-grid .reason--room { padding-top: 30px; }
.reason--room figure { margin: 0 0 22px; overflow: hidden; background: var(--paper); border-radius: 14px; box-shadow: 0 12px 28px rgb(62 39 45 / 7%); }
.reason--room img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.reason--room figcaption { padding: 10px 12px 12px; color: var(--ink-soft); font-family: var(--serif); font-size: .75rem; letter-spacing: .06em; text-align: center; }
.reason--room h3 { margin-top: 18px; }
.reason-grid .reason--care { padding-top: 30px; }
.reason--care figure { margin: 0 0 22px; overflow: hidden; background: var(--paper); border-radius: 14px; box-shadow: 0 12px 28px rgb(62 39 45 / 7%); }
.reason--care img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.reason--care figcaption { padding: 10px 12px 12px; color: var(--ink-soft); font-family: var(--serif); font-size: .75rem; letter-spacing: .06em; text-align: center; }
.reason--care h3 { margin-top: 18px; }

.care { position: relative; overflow: hidden; }
.care::before { content: 'CARE'; position: absolute; right: -24px; bottom: -70px; color: rgb(192 96 122 / 6%); font-family: var(--serif); font-size: clamp(9rem, 20vw, 20rem); line-height: 1; }
.care__layout { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: clamp(48px, 8vw, 108px); }
.care__copy > p:not(.eyebrow, .note) { color: var(--ink-soft); }
.note { margin-top: 32px; padding-left: 20px; color: var(--rose-deep); font-family: var(--serif); border-left: 2px solid var(--rose); }

/* サロンについて（オーナー紹介） */
.about__layout { display: grid; grid-template-columns: 300px 1fr; align-items: start; gap: clamp(40px, 6vw, 80px); }
.about__profile figure { margin: 0; background: var(--paper); box-shadow: 0 18px 40px rgb(62 39 45 / 8%); }
.about__profile img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about__profile figcaption { padding: 16px 18px 20px; color: var(--ink-soft); font-family: var(--serif); font-size: .8rem; letter-spacing: .08em; text-align: center; }
.about__profile figcaption span { display: block; margin-top: 4px; color: var(--rose-deep); font-family: var(--script); font-size: 1.35rem; letter-spacing: .1em; }
.about__license { margin: 26px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.about__license li { padding: 11px 0 11px 16px; position: relative; color: var(--ink-soft); font-size: .82rem; line-height: 1.6; letter-spacing: .03em; border-bottom: 1px solid var(--line); }
.about__license li::before { content: ''; position: absolute; top: 1.15em; left: 0; width: 5px; height: 5px; background: var(--rose); border-radius: 50%; }
.about__copy p { margin: 0 0 20px; color: var(--ink-soft); }
.about__cert { margin: clamp(48px, 6vw, 72px) 0 0; }
.about__cert img { width: 100%; height: auto; background: var(--paper); box-shadow: 0 18px 40px rgb(62 39 45 / 8%); }
.about__cert figcaption { margin-top: 14px; color: var(--ink-soft); font-family: var(--serif); font-size: .8rem; letter-spacing: .08em; text-align: center; }

.care-progress { position: relative; margin-top: clamp(64px, 8vw, 104px); padding-top: clamp(48px, 6vw, 72px); border-top: 1px solid var(--rose-pale); }
.care-progress__heading { max-width: 620px; margin-bottom: clamp(32px, 4vw, 48px); }
.care-progress__heading h3 { margin: 0 0 14px; font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-weight: 600; letter-spacing: .04em; }
.care-progress__heading > p:not(.eyebrow, .care-progress__lead-note) { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.care-progress__lead-note { margin: 16px 0 0; padding-left: 18px; color: var(--rose-deep); font-family: var(--serif); font-size: .95rem; border-left: 2px solid var(--rose); }
.care-progress__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 34px); margin: 0; padding: 0; list-style: none; }
.care-progress__steps--two { grid-template-columns: repeat(2, 1fr); }
.care-progress__sub { margin: clamp(34px, 4.5vw, 52px) 0 clamp(16px, 2vw, 22px); padding-left: 16px; color: var(--rose-deep); font-family: var(--serif); font-size: .95rem; letter-spacing: .04em; border-left: 2px solid var(--rose); }
.care-progress__steps li { position: relative; container-type: inline-size; }
.care-progress__steps li + li::before {
  content: '';
  position: absolute;
  top: clamp(70px, 12vw, 108px);
  top: 50cqw;
  left: calc(clamp(20px, 3vw, 34px) / -2);
  width: 9px;
  height: 9px;
  border-top: 1.5px solid var(--rose);
  border-right: 1.5px solid var(--rose);
  transform: translate(-50%, -50%) rotate(45deg);
}
.care-progress__steps figure { margin: 0; }
.care-progress__steps img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; box-shadow: 0 18px 40px rgb(62 39 45 / 10%); }
.care-progress__steps figcaption { margin-top: 15px; color: var(--ink-soft); font-size: .8rem; line-height: 1.75; }
.care-progress__steps figcaption strong { display: block; margin-bottom: 3px; color: var(--rose-deep); font-family: var(--serif); font-size: .87rem; font-weight: 600; letter-spacing: .08em; }
.care-progress__note { margin: clamp(26px, 3vw, 34px) 0 0; color: var(--ink-soft); font-size: .72rem; letter-spacing: .02em; }

.image-placeholder {
  display: grid;
  place-items: center;
  color: #876f75;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 32%), transparent),
    repeating-linear-gradient(45deg, #eadcdf 0, #eadcdf 1px, #f3e9eb 1px, #f3e9eb 9px);
  font-family: var(--serif);
  font-size: .74rem;
  letter-spacing: .12em;
}

.first-visit { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(52px, 9vw, 120px); }
.first-visit .section-heading { margin-bottom: 0; }
.steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.steps li { position: relative; display: grid; grid-template-columns: 88px 180px 1fr; align-items: baseline; padding: 27px 0; border-bottom: 1px solid var(--line); }
.steps span { color: var(--rose-deep); font-size: .65rem; font-weight: 700; letter-spacing: .12em; }
.steps h3 { margin: 0; font-family: var(--serif); font-size: 1.03rem; font-weight: 600; }
.steps p { margin: 0; color: var(--ink-soft); font-size: .86rem; }

.gallery { background: linear-gradient(180deg, var(--paper) 0 20%, #f2e6e9 20% 78%, var(--paper) 78%); }
.gallery-grid { display: grid; grid-template-columns: 1.15fr .9fr 1.05fr; align-items: start; gap: 24px; }
.gallery-grid figure { margin: 0; }
.gallery-grid figure:nth-child(2) { margin-top: 64px; }
.gallery-grid img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; box-shadow: 0 22px 50px rgb(66 41 48 / 13%); }
.gallery-grid figcaption { margin-top: 13px; color: var(--ink-soft); font-family: var(--serif); font-size: .76rem; letter-spacing: .12em; }

.section-heading--light .eyebrow { color: #dba8b7; }
.section-heading--light > p:last-child { color: #cfc3c6; }
.menu { position: relative; overflow: hidden; }
.menu.section--dark { color: var(--ink); background: var(--blush); }
.menu.section--dark .section-heading--light .eyebrow { color: var(--rose); }
.menu.section--dark .section-heading--light > p:last-child { color: var(--ink-soft); }
.menu::after { content: ''; position: absolute; top: -220px; right: -180px; width: 520px; height: 520px; border: 1px solid rgb(192 96 122 / 10%); border-radius: 50%; box-shadow: 0 0 0 80px rgb(192 96 122 / 3%); }
.menu-category { position: relative; z-index: 1; margin-top: 36px; }
.menu-category:first-of-type { margin-top: 0; }
.menu-category__title { display: flex; align-items: center; gap: 12px; margin: 0 0 12px; color: var(--rose-deep); font-family: var(--serif); font-size: .82rem; font-weight: 600; letter-spacing: .1em; }
.menu-category__title span { padding: 3px 10px; color: white; background: var(--rose); border-radius: 999px; font-family: var(--sans); font-size: .62rem; font-weight: 700; letter-spacing: .08em; }
.menu-category__note { max-width: 640px; margin: -4px 0 14px; color: var(--ink-soft); font-size: .78rem; line-height: 1.85; }
.menu-category__note--terms { max-width: none; margin: 16px 0 0; padding: 16px 20px; background: var(--paper); border: 1px solid var(--rose-pale); font-size: .74rem; }
.menu-category__note--terms strong { display: inline-block; margin-bottom: 5px; color: var(--rose-deep); letter-spacing: .04em; }
.menu-category--main .menu-category__title { font-size: 1.05rem; }
.menu-category--main .menu-list { border-color: var(--rose); box-shadow: 0 14px 36px rgb(192 96 122 / 10%); }
.menu-category--main .menu-category__title span { background: var(--rose-deep); }
.menu-subheading { position: relative; z-index: 1; margin: 64px 0 0; padding-top: 22px; color: var(--rose-deep); font-family: var(--serif); font-size: 1.25rem; letter-spacing: .08em; border-top: 1px solid var(--rose-pale); }
.menu-list { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; overflow: hidden; background: var(--rose-pale); border: 1px solid var(--rose-pale); border-radius: 16px; }
.menu-list article { display: flex; min-height: 152px; align-items: center; justify-content: space-between; gap: 20px; padding: 32px 36px; background: var(--paper); }
.menu-list h4 { margin: 0 0 5px; color: var(--ink); font-family: var(--serif); font-size: 1rem; font-weight: 500; }
.menu-list p { margin: 0; color: var(--ink-soft); font-size: .78rem; }
.menu-list strong { flex: none; color: var(--rose); font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.placeholder-notice { margin-top: 18px; color: var(--ink-soft); font-size: .72rem; text-align: center; }

.staff { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(50px, 10vw, 130px); }
.staff__portrait { position: relative; min-height: 550px; padding: 26px 0 0 26px; }
.staff__portrait::before { content: ''; position: absolute; inset: 0 26px 26px 0; border: 1px solid var(--rose-pale); }
.staff__portrait .image-placeholder { position: relative; height: 100%; min-height: 520px; background: linear-gradient(145deg, #d6bdc4, #f3e9eb 54%, #cab0b8); }
.staff__portrait .image-placeholder::after { content: 'PORTRAIT'; color: rgb(83 48 60 / 45%); font-family: var(--serif); font-size: clamp(3rem, 6vw, 6rem); letter-spacing: .04em; transform: rotate(-90deg); }
.staff__label { display: inline-block; margin: 0 0 18px; padding: 6px 16px; color: var(--rose-deep); background: var(--blush); font-size: .78rem; font-weight: 700; letter-spacing: .08em; }
.staff__copy > p:last-child { max-width: 580px; color: var(--ink-soft); }

.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.voice-grid blockquote { position: relative; margin: 0; padding: 42px 34px 32px; background: var(--paper); border-top: 3px solid var(--rose-pale); }
.voice-grid blockquote::before { content: '“'; position: absolute; top: 2px; left: 24px; color: var(--rose-pale); font-family: Georgia, serif; font-size: 4.5rem; line-height: 1; }
.voice-grid blockquote p { position: relative; margin: 22px 0 26px; font-family: var(--serif); font-size: .95rem; line-height: 2; }
.voice-grid blockquote footer { color: var(--ink-soft); font-size: .72rem; text-align: right; }

.instagram { display: grid; grid-template-columns: .44fr 1.56fr; align-items: end; gap: 50px; }
.instagram .section-heading { margin-bottom: 0; }
.instagram__icon { width: 20px; height: 20px; flex: none; }
.instagram__follow { display: inline-flex; align-items: center; gap: 10px; margin-top: 4px; }
.instagram-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.instagram-grid a { display: block; overflow: hidden; }
.instagram-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: filter .3s ease, transform .3s ease; }
.instagram-grid a:hover img { filter: saturate(.75); transform: scale(1.04); }

.faq__list { max-width: 850px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-family: var(--serif);
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
}
.faq__question span { display: grid; width: 32px; height: 32px; flex: none; place-items: center; color: var(--rose-deep); border: 1px solid var(--rose-pale); border-radius: 50%; font-family: var(--sans); }
.faq__answer { padding: 0 56px 22px 4px; color: var(--ink-soft); }
.faq__answer p { margin: 0; }
.faq__list-inline { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.faq__list-inline li { font-size: .86rem; line-height: 1.85; }
.faq__list-inline strong { display: block; margin-bottom: 2px; color: var(--rose-deep); font-size: .72rem; font-weight: 700; letter-spacing: .08em; }
.faq__list-inline small { color: #9b8489; font-size: .74rem; }

.access__layout { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(42px, 7vw, 90px); }
.map-embed { min-height: 440px; overflow: hidden; background: var(--blush); border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 100%; min-height: 440px; border: 0; }
.access dl { margin: 0; border-top: 1px solid var(--line); }
.access dl div { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.access dt { color: var(--rose-deep); font-size: .74rem; font-weight: 700; letter-spacing: .08em; }
.access dd { margin: 0; font-size: .89rem; }

.reserve { position: relative; overflow: hidden; color: var(--ink); background: var(--blush); text-align: center; }
.reserve::before, .reserve::after { content: ''; position: absolute; width: 340px; height: 340px; border: 1px solid rgb(192 96 122 / 12%); border-radius: 50%; }
.reserve::before { top: -190px; left: -100px; }
.reserve::after { right: -130px; bottom: -210px; }
.reserve__inner { position: relative; z-index: 1; }
.reserve .eyebrow { color: var(--rose); }
.reserve h2 { margin-bottom: 18px; }
.reserve__inner > p:not(.eyebrow) { margin-bottom: 36px; color: var(--ink-soft); }
.reserve-actions--final { justify-content: center; }
.reserve__inner > p.reserve__note { margin: 22px 0 0; font-size: .78rem; line-height: 1.9; color: var(--ink-soft); }
.reserve .button--primary { color: white; background: var(--rose); border-color: var(--rose); box-shadow: 0 15px 32px rgb(192 96 122 / 22%); }
.reserve .button--primary:hover { background: var(--rose-deep); border-color: var(--rose-deep); }
.reserve .button--secondary { color: var(--rose-deep); background: transparent; border-color: var(--rose-pale); }

.site-footer { padding: 54px 28px; color: var(--ink-soft); background: var(--paper); border-top: 1px solid var(--line); text-align: center; }
.site-footer p { margin: 0 0 8px; color: var(--rose); font-family: var(--script); font-size: 1.9rem; font-style: italic; font-weight: 600; letter-spacing: .04em; }
.site-footer small { font-size: .7rem; letter-spacing: .04em; }
.mobile-reserve { display: none; }

@media (max-width: 900px) {
  /* 横長のトップ画像は縦画面で写真が切れるので、縦長版に差し替える */
  .hero {
    /* 画面幅で写真の高さが決まるため、文字が写真に重ならない高さを確保する */
    min-height: max(760px, min(100vw * 1.45, 1150px));
    background:
      linear-gradient(180deg, rgb(251 231 238 / 0%) 38%, rgb(251 231 238 / 80%) 56%, rgb(251 231 238 / 94%) 100%),
      url('assets/hero-mobile.jpg') center top / cover no-repeat;
  }
  .hero__scroll { display: none; }
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
  .reason-grid article:nth-child(2) { border-right: 0; }
  .reason-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .care__layout, .first-visit, .staff, .access__layout { grid-template-columns: 1fr; }
  .about__layout { grid-template-columns: 1fr; gap: 36px; }
  .about__profile { display: grid; grid-template-columns: 220px 1fr; align-items: start; gap: 28px; }
  .about__license { margin-top: 0; }
  .care__copy { max-width: 650px; }
  .first-visit { gap: 40px; }
  .instagram { grid-template-columns: 1fr; }
  .menu-list { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { padding-bottom: 84px; font-size: 15px; }
  .shell { width: min(100% - 36px, 620px); }
  .section { padding-block: 64px; }
  .mobile-only { display: initial; }
  .about__profile { grid-template-columns: 1fr; gap: 22px; }
  .about__profile figure { max-width: 260px; margin-inline: auto; }
  .site-header { min-height: 84px; padding-inline: 20px; }
  .brand span { font-size: 1.24rem; }
  .brand small { font-size: .54rem; }
  .header-reserve { font-size: .72rem; }
  .hero { min-height: 680px; }
  .hero::after { display: none; }
  .hero__content { padding-block: 132px 76px; }
  .hero__brand { max-width: 500px; font-size: clamp(2.6rem, 14vw, 4.2rem); }
  .hero__kana { margin-bottom: 22px; }
  .hero__lead { font-size: .86rem; }
  .hero__scroll { display: none; }
  .reserve-actions { display: grid; width: 100%; max-width: 430px; }
  .button { width: 100%; min-width: 0; }
  .trust { grid-template-columns: repeat(2, 1fr); margin-top: -22px; padding: 18px 10px; }
  .trust p { padding: 12px 8px; }
  .trust p:nth-child(2) { border-right: 0; }
  .trust p:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust strong { font-size: .98rem; }
  .menu-focus { padding-block: 62px 68px; }
  .menu-focus__grid { grid-template-columns: 1fr; gap: 12px; }
  .menu-focus__card { min-height: 0; padding: 24px 22px; }
  .menu-focus__card strong { padding-top: 16px; }
  .menu-focus__button { width: 100%; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .care h2, .staff h2, .reserve h2 { font-size: clamp(1.75rem, 7.8vw, 2.45rem); }
  .reason-grid { grid-template-columns: 1fr; }
  .reason-grid article { min-height: 0; padding: 34px 24px; border-right: 0; border-bottom: 1px solid var(--line); }
  .reason-grid article:last-child { border-bottom: 0; }
  .reason-grid h3 { margin-top: 22px; }
  .care-progress { margin-top: 34px; padding-top: 28px; }
  .care-progress__steps { gap: 9px; }
  .care-progress__steps li + li::before { left: -4px; width: 7px; height: 7px; }
  .care-progress__steps figcaption { margin-top: 10px; font-size: .68rem; line-height: 1.6; }
  .care-progress__steps figcaption strong { font-size: .76rem; letter-spacing: .04em; }
  .steps li { grid-template-columns: 72px 1fr; gap: 4px; }
  .steps li p { grid-column: 2; margin-top: 7px; }
  .gallery { background: linear-gradient(180deg, var(--paper) 0 14%, #f2e6e9 14% 88%, var(--paper) 88%); }
  .gallery-grid { grid-template-columns: 1fr; gap: 28px; }
  .gallery-grid figure:nth-child(2) { margin-top: 0; }
  .gallery-grid img { aspect-ratio: 5 / 4; }
  .menu-list article { min-height: 0; padding: 22px 18px; }
  .menu-subheading { margin-top: 48px; }
  .staff__portrait { min-height: 390px; padding: 18px 0 0 18px; }
  .staff__portrait .image-placeholder { min-height: 370px; }
  .voice-grid { grid-template-columns: 1fr; }
  .instagram-grid { gap: 5px; }
  .access__layout { gap: 36px; }
  .map-embed, .map-embed iframe { min-height: 310px; }
  .access dl div { grid-template-columns: 86px 1fr; }
  .reserve-actions--final { margin-inline: auto; }
  .site-footer { padding-bottom: 36px; }
  .mobile-reserve {
    position: fixed;
    z-index: 50;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    min-height: 58px;
    place-items: center;
    color: white;
    background: var(--rose);
    border: 1px solid rgb(255 255 255 / 26%);
    box-shadow: 0 14px 34px rgb(192 96 122 / 30%);
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-decoration: none;
  }
}

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