:root {
  --color-primary: #c43d5a;
  --color-primary-dark: #9e2f47;
  --color-accent: #2d6a4f;
  --color-text: #2b2b2b;
  --color-text-muted: #5c5c5c;
  --color-bg: #faf8f5;
  --color-bg-alt: #f0ebe3;
  --color-white: #fff;
  --font-sans: "Noto Sans JP", "Hiragino Sans", sans-serif;
  --font-serif: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-bg);
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin-inline: auto;
  padding: 0.75rem 4vw;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.85;
}

.logo__k {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.logo__name {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
}

.logo__en {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.nav {
  margin-left: auto;
}

.nav__list {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list a {
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.nav__list a:hover {
  color: var(--color-primary);
}

.header__reserve {
  display: none;
  padding: 0.55rem 1.25rem;
  border: none;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s;
}

.header__reserve:hover {
  background: var(--color-primary-dark);
}

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}

button.btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.2s, opacity 0.2s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  margin-top: var(--header-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(30, 20, 15, 0.72) 0%,
    rgba(30, 20, 15, 0.35) 55%,
    rgba(30, 20, 15, 0.2) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  color: var(--color-white);
}

.hero__label {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  opacity: 0.9;
  margin: 0 0 1rem;
}

.hero__title {
  margin: 0 0 1.25rem;
}

.hero__title-main {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.35;
}

.hero__title-sub {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  opacity: 0.85;
}

.hero__catch {
  max-width: 28em;
  margin: 0 0 2rem;
  font-size: 1.05rem;
  opacity: 0.95;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(196, 61, 90, 0.35);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.btn--outline {
  border: 2px solid var(--color-white);
  color: var(--color-white);
  background: transparent;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.section .btn--outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

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

/* Sections */
.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 1.5rem;
  color: var(--color-text);
}

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

.section-lead {
  text-align: center;
  color: var(--color-text-muted);
  margin: -0.5rem 0 2rem;
}

/* Intro */
.intro {
  padding: 5rem 0;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro__text p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

.intro__figure {
  margin: 0;
  overflow: hidden;
}

/* About */
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.about-card {
  padding: 0;
}

.about-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: var(--color-primary);
}

.about-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Services */
.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
}

.service-list li {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.service-list li + li::before {
  content: "／";
  margin: 0 0.75rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.service-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
}

.service-box {
  padding: 0;
}

.service-box h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--color-primary);
}

.service-box p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

/* Gallery */
.gallery {
  padding: 0;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery__grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* Insurance */
.insurance-block {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  padding: 0;
}

.insurance-block__title {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin: 0 0 1.25rem;
}

.insurance-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.insurance-list li {
  font-weight: 700;
  color: var(--color-primary);
  position: relative;
  padding-left: 1rem;
}

.insurance-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  font-size: 0.6rem;
  top: 0.35em;
}

.insurance-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Hours */
.hours-table {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 1.25rem;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 0.85rem 0;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hours-table thead th {
  color: var(--color-text-muted);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.hours-table tbody th {
  width: 35%;
  font-weight: 500;
}

.hours-table__closed td,
.hours-table__closed th {
  color: var(--color-primary);
}

.hours-note {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Access */
.access__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.access-list {
  margin: 0 0 2rem;
}

.access-list > div {
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 0.5rem 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.access-list dt {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.access-list dd {
  margin: 0;
}

.access-list__en {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
}

.access__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.access__map iframe {
  width: 100%;
}

.access__map-link {
  text-align: center;
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: #2b2520;
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0;
  text-align: center;
}

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

.footer__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.footer__address,
.footer__tel {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

.footer__copy {
  margin: 1.5rem 0 0;
  opacity: 0.6;
}

/* Float reserve */
.float-reserve {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 64px;
  padding: 0 1rem;
  border: none;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(196, 61, 90, 0.45);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}

.float-reserve:hover {
  background: var(--color-primary-dark);
  transform: scale(1.05);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s, visibility 0.25s;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.modal__panel {
  position: relative;
  width: min(420px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--color-white);
  padding: 1.75rem 1.5rem 1.5rem;
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-text-muted);
  cursor: pointer;
}

.modal__close:hover {
  color: var(--color-text);
}

.modal__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-primary);
}

.modal__lead {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.booking-step[hidden] {
  display: none;
}

.booking-selected {
  margin: 0 0 0.75rem;
  font-weight: 700;
  color: var(--color-text);
}

.booking-back {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0;
  border: none;
  background: none;
  color: var(--color-primary);
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
}

.booking-confirm__label {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.booking-confirm__value {
  margin: 0.25rem 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.booking-confirm__note {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Calendar */
.calendar__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.calendar__month {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
}

.calendar__btn {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
}

.calendar__btn:hover {
  background: var(--color-bg-alt);
}

.calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 0.35rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.calendar__weekdays span:first-child,
.calendar__weekdays span:last-child {
  color: var(--color-primary);
}

.calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--color-text);
  cursor: pointer;
}

.cal-day:hover:not(:disabled) {
  background: var(--color-bg-alt);
}

.cal-day.is-selected {
  background: var(--color-primary);
  color: var(--color-white);
}

.cal-day.is-today {
  font-weight: 700;
}

.cal-day:disabled,
.cal-day.is-empty {
  color: #ccc;
  cursor: default;
}

.cal-day.is-empty {
  visibility: hidden;
}

.cal-day.is-sunday:disabled {
  color: #e0a0a8;
}

/* Time slots */
.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.time-slot {
  padding: 0.65rem 0.25rem;
  border: none;
  background: var(--color-bg);
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.time-slot:hover {
  background: var(--color-bg-alt);
}

.time-slot.is-selected {
  background: var(--color-primary);
  color: var(--color-white);
}

body.modal-open {
  overflow: hidden;
}

/* Responsive */
@media (min-width: 900px) {
  .header__reserve {
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 899px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 1rem 4vw 1.5rem;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav__list a {
    display: block;
    padding: 0.6rem 0;
    font-size: 1rem;
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .intro__grid,
  .about-cards,
  .service-detail,
  .access__grid {
    grid-template-columns: 1fr;
  }

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

  .gallery__grid img {
    height: 220px;
  }
}
