:root {
  color-scheme: light;
  --bg: #fff7fb;
  --panel: #ffffff;
  --panel-soft: #fff0f6;
  --ink: #3b2e36;
  --muted: #8a7480;
  --line: rgba(148, 93, 121, 0.16);
  --line-strong: rgba(148, 93, 121, 0.28);
  --accent: #c87599;
  --rose: #f3c8da;
  --gold: #c69b62;
  --black: #251820;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fff7fb 0%, #ffffff 42%, #fff5fa 100%);
  color: var(--ink);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.7;
  text-align: center;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 14px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 249, 252, 0.86);
  backdrop-filter: blur(22px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 218px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  object-fit: cover;
}

.brand-text {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  color: var(--muted);
  font-size: 13px;
}

.nav a,
.site-footer a {
  transition: color 180ms ease;
}

.nav a:hover,
.site-footer a:hover,
.info-list a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 268px;
}

.header-reserve,
.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.header-reserve {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
  font-weight: 900;
}

.hero {
  display: block;
  padding: clamp(22px, 3vw, 32px) 0 0;
  background: transparent;
}

.hero-image {
  width: min(1000px, calc(100% - 44px));
  height: auto;
  margin: 0 auto;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(148, 93, 121, 0.14);
}

.hero-inner {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
  padding: 24px 0 clamp(44px, 6vw, 72px);
}

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

.kicker {
  margin: 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.actions,
.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.reserve-actions {
  justify-content: center;
}

.hero .actions {
  justify-content: center;
  margin-top: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  min-width: 150px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.button.subtle {
  min-width: 76px;
  color: var(--muted);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.info-list dt {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(82px, 12vw, 142px) 0 0;
  text-align: center;
}

.section-body h2,
.reserve h2,
.section-heading h1 {
  margin: 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(24px, 3.8vw, 42px);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0;
}

.concept-title span {
  display: block;
  white-space: nowrap;
}

.concept-copy span {
  display: block;
  white-space: nowrap;
}

.section-body > p.benefit-copy {
  max-width: 900px;
}

.concept-copy.benefit-copy span {
  white-space: normal;
}

.benefit-lead {
  color: var(--accent);
  font-size: clamp(18px, 2.3vw, 30px);
  font-weight: 900;
  line-height: 1.45;
}

.benefit-body {
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(13px, 1.35vw, 17px);
  font-weight: 700;
  line-height: 1.9;
}

.section-body > p {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 24px);
  padding: clamp(16px, 3vw, 30px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  padding: 0;
  text-align: center;
}

.price-row img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
}

.price-row div {
  display: block;
  text-align: center;
}

.row-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(16px, 2.8vw, 34px);
  font-weight: 900;
  line-height: 1.18;
  white-space: nowrap;
}

.row-text {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 700;
}

.price-row strong {
  display: block;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(18px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.profile {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--panel);
}

.profile img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: top center;
}

.profile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(54, 24, 40, 0.74), rgba(54, 24, 40, 0.02) 58%);
}

.profile div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 28px;
}

.profile h3 {
  margin: 0;
  color: var(--white);
  font-size: 30px;
}

.profile h3 span {
  color: rgba(255, 247, 251, 0.78);
  font-size: 17px;
}

.profile p {
  margin: 8px 0 0;
  color: rgba(255, 247, 251, 0.78);
  font-size: 13px;
}

.note,
.legal-note,
.link-intro {
  color: var(--muted);
}

.note {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.85;
}

.note span {
  display: block;
  white-space: nowrap;
}

.reserve {
  width: min(1160px, calc(100% - 44px));
  margin: clamp(90px, 13vw, 150px) auto 0;
  padding: clamp(42px, 7vw, 72px);
  border: 1px solid var(--line-strong);
  background: var(--panel-soft);
  box-shadow: 0 24px 60px rgba(148, 93, 121, 0.1);
}

.reserve h2 {
  margin-top: 14px;
}

.info-list {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.info-list div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.info-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.info-list a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.legal-note {
  margin: 22px 0 0;
  font-size: 12px;
}

.media-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: min(1160px, calc(100% - 44px));
  margin: clamp(6px, 1.6vw, 18px) auto 0;
}

.media-banner a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.media-banner img {
  width: min(468px, 100%);
  height: auto;
}

.media-banner .compact-banner img {
  width: min(200px, 100%);
}

.media-banner span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin-top: clamp(90px, 12vw, 140px);
  padding: 34px clamp(18px, 4vw, 52px);
  border-top: 1px solid var(--line);
  color: var(--ink);
  text-align: center;
}

.site-footer p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}

.simple-page {
  min-height: 100vh;
}

.link-main {
  min-height: calc(100vh - 230px);
}

.section-heading {
  display: contents;
}

.media-links {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.media-links a {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}

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

  .brand {
    min-width: 0;
  }

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

  .profile {
    min-height: 500px;
  }

  .profile img {
    min-height: 500px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    gap: 12px;
    padding: 12px 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text {
    display: none;
  }

  .header-call {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .header-actions {
    min-width: 0;
    gap: 8px;
  }

  .header-reserve {
    min-height: 38px;
    padding: 0 11px;
    font-size: 12px;
  }

  .hero-inner,
  .section,
  .reserve {
    width: calc(100% - 32px);
  }

  .hero-image {
    width: calc(100% - 32px);
  }

  .hero-inner {
    padding: 16px 0 28px;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-top: 62px;
  }

  .section-body h2,
  .reserve h2,
  .section-heading h1 {
    max-width: 350px;
    font-size: 23px;
    line-height: 1.4;
  }

  .section-body h2.concept-title {
    font-size: min(23px, 5.65vw);
  }

  .section-body > p.concept-copy {
    font-size: min(15px, 3.5vw);
    line-height: 1.85;
  }

  .benefit-lead {
    font-size: min(19px, 4.8vw);
  }

  .benefit-body {
    font-size: min(13px, 3.45vw);
    line-height: 1.85;
  }

  .section-body > p.note {
    font-size: min(15px, 3.5vw);
    line-height: 1.85;
  }

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

  .price-list {
    gap: 8px;
    padding: 14px 0;
  }

  .price-row {
    gap: 8px;
    min-height: 0;
    padding: 0;
  }

  .price-row img {
    width: 100%;
  }

  .price-row strong {
    font-size: clamp(13px, 4.1vw, 18px);
    line-height: 1;
  }

  .row-title {
    font-size: clamp(13px, 4vw, 18px);
    line-height: 1.2;
  }

  .row-text {
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.45;
  }

  .profile {
    min-height: 270px;
  }

  .profile img {
    min-height: 270px;
  }

  .profile div {
    padding: 14px 10px;
  }

  .profile h3 {
    font-size: 20px;
  }

  .profile h3 span {
    font-size: 12px;
  }

  .profile p {
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.35;
  }

  .reserve {
    padding: 30px 20px;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    flex-direction: column;
  }
}

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

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
