*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: #efeae4;
  color: #4c4c4c;
  font-family: "Noto Serif JP", serif;
  -webkit-font-smoothing: antialiased;
}

a:hover {
  opacity: 0.7;
}

img { max-width: 100%; display: block; }
dl, dd { margin: 0; }

/* ─── Utility ─── */
.sp-only { display: none; }
@media (max-width: 600px) {
  .sp-only { display: revert; }
}

/* ─── Page layout ─── */
.page-wrapper {
  width: 100%;
  overflow-x: hidden;
}

/* ─── Hero ─── */
.hero-section {
  position: relative;
  width: 100%;
  background-color: transparent;
  box-sizing: border-box;
  overflow: hidden;
}

.hero-section__logo {
  width: 219px;
  height: 122px;
  object-fit: contain;
  display: block;
  margin: 56px auto 12px;
}

.hero-section__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 52px 0 0;
  width: 100%;
}

.hero-section__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #4c4c4c;
  text-align: center;
  margin: 0 0 88px;
  white-space: nowrap;
}

.hero-section__image-wrap {
  width: 1256px;
  max-width: 100%;
  aspect-ratio: 1256 / 722;
  overflow: hidden;
}

.hero-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-section__desc {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #4c4c4c;
  text-align: center;
  margin: 102px 0 0;
  padding-bottom: 12px;
}

@media (max-width: 600px) {
  .hero-section__logo { left: 16px; width: 130px; height: auto; }
  .hero-section__body { padding-top: 80px; }
  .hero-section__title { font-size: 28px; margin-bottom: 28px; white-space: normal; }
  .hero-section__image-wrap { width: 100%; }
  .hero-section__desc {font-size: 13px;margin-top: 28px;padding: 0 20px 48px;text-align: center;}
}

/* ─── Floorplan ─── */
.floorplan-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 106px;
  padding: 80px 0 0px;
  width: 100%;
  box-sizing: border-box;
}

.floorplan-section__heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #4c4c4c;
  text-align: center;
  margin: 0;
}

.floorplan-section__map {
  position: relative;
  width: 960px;
  max-width: 100%;
}

.floorplan-section__map-img {
  display: block;
  width: 100%;
  height: auto;
}

.floorplan-section__compass {
  position: absolute;
  right: 3%;
  bottom: 3%;
  width: 9%;
  height: auto;
  pointer-events: none;
}

.floorplan-pin {
  position: absolute;
  width: 4.15%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floorplan-pin__circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #7d6e3a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.floorplan-pin:hover .floorplan-pin__circle,
.floorplan-pin:focus .floorplan-pin__circle {
  background-color: #5a4e28;
  transform: scale(1.12);
}

.floorplan-pin__circle svg {
  width: 55%;
  height: 55%;
  fill: #fff;
}

.fp-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(97, 97, 97, 0.8);
  align-items: center;
  justify-content: center;
}

.fp-lightbox.is-open { display: flex; }

.fp-lightbox__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 80px;
  box-sizing: border-box;
  gap: 24px;
}

.fp-lightbox__arrow {
  flex: 0 0 auto;
  padding: 12px;
  height: 72px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.15s;
}

.fp-lightbox__arrow:hover { opacity: 1; }

.fp-lightbox__arrow svg {
  width: 36px;
  height: 72px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fp-lightbox__arrow--prev svg { transform: scaleX(-1); }

.fp-lightbox__content {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 1186px;
  display: flex;
  flex-direction: column;
}

.fp-lightbox__img-wrap {
  position: relative;
}

.fp-lightbox__img {
  display: block;
  width: 100%;
  aspect-ratio: 1186 / 668;
  object-fit: cover;
}

.fp-lightbox__close {
  position: absolute;
  top: 0;
  transform: translateY(-100%);
  right: 0;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  border: none;
  align-items: center;
  background: transparent;
  padding: 0;
  transition: background 0.15s;
}

.fp-lightbox__close:hover {
    opacity: 0.7;
}

.fp-lightbox__close svg {width: 100%;height: 100%;}

.fp-lightbox__info {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
}

.fp-lightbox__caption {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fp-lightbox__counter {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .floorplan-section {padding: 48px 16px 24px;gap: 36px;}
  .floorplan-section__heading { font-size: 22px; }
  .floorplan-pin { width: 8%; }
  .fp-lightbox__stage { padding: 0 8px; gap: 4px; }
  .fp-lightbox__arrow { padding: 8px; height: auto; }
  .fp-lightbox__arrow svg { width: 18px; height: 36px; }
  .fp-lightbox__close { bottom: 8px; right: 8px; width: 28px; height: 28px; }
  .fp-lightbox__close svg { width: 20px; height: 20px; }
  .fp-lightbox__caption, .fp-lightbox__counter { font-size: 14px; white-space: normal; }
  .fp-lightbox__caption { white-space: normal; text-overflow: clip; }
  .fp-lightbox__info { padding-top: 10px; align-items: flex-start; }
}

/* ─── Room Section ─── */
.room-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px 0 12px;
  width: 100%;
  box-sizing: border-box;
}

.room-section__heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #4c4c4c;
  text-align: center;
  margin: 0;
}

.room-section__lead {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #4c4c4c;
  text-align: center;
}

.room-section__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  max-width: 1446px;
  padding: 48PX 40px 0;
  box-sizing: border-box;
}

.room-card {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  width: 100%;
  font-family: "Noto Serif JP", serif;
}

.room-card__image {
  flex: 1 0 0;
  min-width: 0;
  height: 456px;
  overflow: hidden;
  position: relative;
}

.room-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-card__body {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.room-card__title {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #4c4c4c;
}

.room-card__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #4c4c4c;
}

.room-card__info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.room-card__info-row {
  display: flex;
  align-items: stretch;
  gap: 5px;
}

.room-card__label {
  background-color: #7d6e3a;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  white-space: nowrap;
  min-width: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.room-card__value {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #4c4c4c;
  display: flex;
  align-items: center;
  padding: 0 10px;
  margin: 0;
  word-break: break-all;
}

.room-card__note {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #4c4c4c;
}

@media (max-width: 910px) {
  .room-section { padding: 48px 0 24px; gap: 28px; }
  .room-section__heading { font-size: 24px; }
  .room-section__lead { font-size: 13px; margin-top: -12px; padding: 0 20px; }
  .room-section__list { padding: 0 20px; gap: 40px; }

  .room-card { flex-direction: column; gap: 20px; }
  .room-card__image { width: 100%; height: 56vw; min-height: 200px; flex: none; }
  .room-card__title { font-size: 18px; }
  .room-card__description, .room-card__note { font-size: 14px; }
  .room-card__label, .room-card__value { font-size: 14px; }
  .room-card__info-row { align-items: flex-start; }
  .room-card__value { word-break: normal; overflow-wrap: break-word; white-space: normal; }
}

/* ─── Menu ─── */
.menu-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 80px 0 12px;
  width: 100%;
  box-sizing: border-box;
  font-family: "Noto Serif JP", serif;
}

.menu-section__title {
  font-weight: 400;
  font-size: 36px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #4c4c4c;
  text-align: center;
  margin: 0;
}

.menu-section__group {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.menu-section__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 457px;
  height: 60px;
  padding: 0 30px;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  transition: background-color 0.25s ease;
}

.menu-section__btn--dark  { background-color: #7d6e3a; }
.menu-section__btn--mid   { background-color: #99874a; }
.menu-section__btn--light { background-color: #a1925e; }
.menu-section__btn--dark:hover  { background-color: #6a5d31; }
.menu-section__btn--mid:hover   { background-color: #82733e; }
.menu-section__btn--light:hover { background-color: #8a7c52; }

.menu-section__btn-icon {
  position: absolute;
  right: 19px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.menu-section__note {
  max-width: 548px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #4c4c4c;
  text-align: center;
  margin: 0;
}

@media (max-width: 600px) {
  .menu-section { align-items: stretch; padding: 48px 20px 12px; gap: 20px; }
  .menu-section__title { font-size: 24px; text-align: center; }
  .menu-section__group { gap: 20px; }
  .menu-section__btn { width: 100%; font-size: 14px; white-space: normal; text-align: center; padding: 14px 44px 14px 16px; height: auto; line-height: 1.6; }
  .menu-section__btn-icon { right: 14px; width: 14px; height: 14px; }
  .menu-section__note {font-size: 12px;line-height: 1.8;text-align: left;}
}

/* ─── Reservation ─── */
.reservation-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 80px 0 12px;
  width: 100%;
  box-sizing: border-box;
  font-family: "Noto Serif JP", serif;
}

.reservation-section__title {
  font-weight: 400;
  font-size: 36px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #4c4c4c;
  text-align: center;
  margin: 0;
}

.reservation-section__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 457px;
  height: 60px;
  padding: 0 30px;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}

.reservation-section__btn--book { background-color: #7d6e3a; }
.reservation-section__btn--book:hover { background-color: #6a5d31; }

.reservation-section__btn--tel {
  background-color: #99874a;
  flex-direction: column;
  gap: 0;
  height: auto;
  min-height: 60px;
  padding: 8px 30px;
  white-space: normal;
  text-align: center;
}
.reservation-section__btn--tel:hover { background-color: #82733e; }

.reservation-section__btn-text {
  display: flex;
  align-items: center;
  gap: 6px;
}

.reservation-section__btn-sub {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: #fff;
}

.reservation-section__btn-arrow {
  position: absolute;
  right: 19px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .reservation-section { align-items: stretch; padding: 48px 20px 12px; gap: 20px; }
  .reservation-section__title { font-size: 24px; text-align: center; }
  .reservation-section__btn { width: 100%; font-size: 14px; white-space: normal; text-align: center; height: auto; padding: 14px 44px 14px 16px; line-height: 1.6; }
  .reservation-section__btn-arrow { right: 14px; width: 9px; height: 18px; }
  .reservation-section__btn--tel { padding: 14px 20px; flex-direction: column; gap: 4px; }
  .reservation-section__btn-text { flex-wrap: wrap; justify-content: center; }
  .reservation-section__btn-sub { font-size: 11px; }
}

/* ─── Footer ─── */
.footer { width: 100%; box-sizing: border-box; margin-top: 80px; }

.footer__upper {
  width: 100%;
  background-color: #544a27;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 16px 30px;
  gap: 16px;
}

.footer__logo {
  width: 188px;
  height: auto;
  display: block;
}

.footer__nav { width: 100%; }

.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__nav-item {
  position: relative;
  padding: 0 16px;
}

.footer__nav-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 16px;
  background-color: #fff;
  transform: translateY(-50%);
}

.footer__nav-list > .footer__nav-item:last-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 16px;
  background-color: #fff;
  transform: translateY(-50%);
}

.footer__nav-item a {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.footer__nav-item--light a {
  font-weight: 300;
  letter-spacing: 0.04em;
}

.footer__lower {
  width: 100%;
  padding: 8px 16px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

.footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.267;
  letter-spacing: 0.03em;
  color: #544a27;
  text-align: center;
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .footer__upper { padding: 32px 16px 24px; }
  .footer__nav-list { flex-direction: column; gap: 8px; }
  .footer__nav-item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 16px;
    background-color: #fff;
    transform: translateY(-50%);
  }
  .footer__copyright { font-size: 10px; white-space: normal; }
}

/* ─── Page top button ─── */
.pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background-color: #7d6e3a;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease, visibility 0.25s;
  z-index: 900;
}

.pagetop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pagetop:hover { background-color: #5a4e28; }

@media (max-width: 600px) {
  .pagetop { right: 16px; bottom: 16px; width: 40px; height: 40px; }
}

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
