:root {
  --color-ink: #211b18;
  --color-body: #463b43;
  --color-muted: #7b6e75;
  --color-paper: #fffaf0;
  --color-soft: #f6efe3;
  --color-smoke: #eee5d8;
  --color-line: #ddd0c1;
  --color-plum: #6b4a7b;
  --color-plum-dark: #3e2a4c;
  --color-lilac: #e8dff0;
  --color-lilac-deep: #c7b2d2;
  --color-moss: #556b4b;
  --color-moss-dark: #34452f;
  --color-gold: #d49b2d;
  --color-gold-soft: #ead7ac;
  --color-sumi: #292522;
  --shadow-soft: 0 18px 50px rgba(62, 42, 76, 0.12);
  --shadow-card: 0 10px 30px rgba(62, 42, 76, 0.1);
  --radius-sm: 6px;
  --max-width: 1120px;
  --header-offset: 112px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fbf5ea;
  color: var(--color-body);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: #fbf5ea url("../generated/page-bg-gigapixel.webp") center top / cover no-repeat;
}

body::after {
  display: none;
}

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

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

p,
ul {
  margin-top: 0;
}

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

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

figure {
  margin: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  background: var(--color-sumi);
  color: #fff;
  font-weight: 700;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 240, 0.96);
  border-bottom: 1px solid rgba(107, 74, 123, 0.16);
  box-shadow: 0 8px 24px rgba(62, 42, 76, 0.06);
  backdrop-filter: blur(14px);
}

.top-message {
  padding: 2px 16px;
  background: var(--color-plum-dark);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  grid-template-areas:
    "logo actions"
    "nav nav";
  gap: 2px 18px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2px 20px;
  align-items: center;
}

.site-logo {
  grid-area: logo;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  line-height: 1;
}

.site-logo__image {
  display: block;
  width: clamp(140px, 12vw, 174px);
  height: auto;
}

.header-actions {
  grid-area: actions;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.header-phone,
.button,
.mobile-phone {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  padding: 7px 16px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.header-phone,
.mobile-phone {
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-ink);
}

.header-phone::before,
.mobile-phone::before {
  content: "TEL";
  margin-right: 8px;
  color: var(--color-plum);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.button {
  border: 1px solid transparent;
  background: linear-gradient(180deg, #dca93a, var(--color-gold));
  color: #fff;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-card);
  background: linear-gradient(180deg, #e2b64f, #c98f23);
}

.global-nav {
  grid-area: nav;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--color-line);
}

.global-nav a {
  position: relative;
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  font-weight: 800;
  line-height: 1.2;
}

.global-nav a::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 2px;
  left: 16px;
  height: 2px;
  transform: scaleX(0);
  background: var(--color-plum);
  transform-origin: center;
  transition: transform 160ms ease;
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after,
.global-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero,
.page-section {
  scroll-margin-top: var(--header-offset);
}

.hero {
  position: relative;
  min-height: min(680px, calc(100svh - 86px));
  isolation: isolate;
  overflow: hidden;
  background: var(--color-soft);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -18% -10%;
  z-index: 1;
  height: 44%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 62%, rgba(199, 178, 210, 0.55) 0 27%, transparent 58%),
    radial-gradient(ellipse at 56% 78%, rgba(232, 223, 240, 0.82) 0 22%, transparent 56%),
    radial-gradient(ellipse at 92% 86%, rgba(199, 178, 210, 0.5) 0 20%, transparent 52%);
  filter: blur(0.2px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 19% 43% auto 17%;
  z-index: 1;
  width: 190px;
  height: 190px;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='190' height='190' viewBox='0 0 190 190' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d49b2d' fill-opacity='.22'%3E%3Ccircle cx='36' cy='36' r='7'/%3E%3Ccircle cx='52' cy='24' r='7'/%3E%3Ccircle cx='68' cy='36' r='7'/%3E%3Cellipse cx='52' cy='57' rx='17' ry='13' transform='rotate(-13 52 57)'/%3E%3C/g%3E%3Cg fill='%236b4a7b' fill-opacity='.16' transform='translate(92 92) rotate(16)'%3E%3Ccircle cx='22' cy='21' r='6'/%3E%3Ccircle cx='36' cy='10' r='6'/%3E%3Ccircle cx='50' cy='21' r='6'/%3E%3Cellipse cx='36' cy='40' rx='15' ry='11' transform='rotate(-12 36 40)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.72;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.14) 28%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

.hero-media > img {
  object-position: 64% 48%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  max-width: var(--max-width);
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 52px) 20px clamp(94px, 9vw, 126px);
  align-items: center;
}

.hero-copy {
  max-width: 600px;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.9);
}

.hero-kicker,
.section-label {
  margin-bottom: 12px;
  color: var(--color-plum);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker {
  font-size: clamp(15px, 1.35vw, 18px);
}

.hero-copy h1 {
  margin: 0 0 18px;
  color: var(--color-plum-dark);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 3.9vw, 50px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-title-line {
  display: inline-block;
  white-space: nowrap;
}

.hero-lead {
  margin-bottom: 14px;
  color: var(--color-ink);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 800;
  line-height: 1.65;
}

.hero-copy p:not(.hero-kicker):not(.hero-lead) {
  max-width: 480px;
  font-weight: 600;
}

.hero-collage {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-self: end;
  justify-self: end;
  max-width: 760px;
  transform: translateY(92px);
}

.tilt-photo {
  border: 6px solid #fff;
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transform: rotate(2deg);
}

.tilt-photo:nth-child(2) {
  transform: rotate(-3deg);
}

.tilt-photo--large {
  transform: rotate(-2deg);
}

.tilt-photo .image-slot {
  min-height: 138px;
  border-radius: 2px;
}

.tilt-photo--large .image-slot {
  min-height: 138px;
}

.tilt-photo figcaption {
  padding: 7px 2px 3px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}

.feature-strip {
  position: relative;
  z-index: 3;
  margin-top: -20px;
  padding: 0 20px 40px;
}

.feature-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max-width);
  margin: 0 auto;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(107, 74, 123, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.feature-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px;
  border-right: 1px dashed rgba(107, 74, 123, 0.28);
  align-items: start;
}

.feature-item:last-child {
  border-right: 0;
}

.feature-item__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-plum);
  color: #fff;
}

.feature-item__icon::before {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.feature-item__icon--dog::before {
  background-image: url("../generated/icon-feature-dog-white.png");
}

.feature-item__icon--yukata::before {
  width: 36px;
  height: 36px;
  background-image: url("../generated/icon-feature-yukata-plum.png");
}

.feature-item__icon--okami::before {
  width: 44px;
  height: 44px;
  background-image: url("../generated/icon-feature-okami-white.png");
}

.feature-item:nth-child(2) .feature-item__icon {
  background: var(--color-gold-soft);
  color: var(--color-plum-dark);
}

.feature-item:nth-child(3) .feature-item__icon {
  background: #8b6a96;
  color: #fff;
}

.feature-item h2 {
  margin: 0 0 4px;
  color: var(--color-ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.35;
}

.feature-item p {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.section-pad {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 96px) 20px;
}

.short-video.section-pad {
  padding-top: clamp(32px, 4vw, 48px);
  padding-bottom: clamp(32px, 4vw, 48px);
}

.quick-links.section-pad {
  padding-top: clamp(32px, 4vw, 48px);
  padding-bottom: clamp(24px, 3vw, 40px);
}

.section-lead {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-lead h2 {
  margin: 0;
  color: var(--color-plum);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.35;
}

.quick-links .section-lead h2 {
  font-size: clamp(18px, 2.2vw, 26px);
  white-space: nowrap;
}

.quick-links .section-lead {
  position: relative;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.quick-links .section-lead::after {
  content: "";
  width: min(820px, 80vw);
  height: 14px;
  background:
    radial-gradient(circle, rgba(107, 74, 123, 0.42) 0 3px, transparent 3.6px) left center / 12px 12px repeat-x;
}

.quick-links .section-lead h2::before,
.quick-links .section-lead h2::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin: 0 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%236b4a7b' fill-opacity='.62'%3E%3Ccircle cx='8' cy='9' r='2.6'/%3E%3Ccircle cx='15' cy='6.2' r='2.8'/%3E%3Ccircle cx='22' cy='9' r='2.6'/%3E%3Cellipse cx='15' cy='18.5' rx='7' ry='5.2' transform='rotate(-8 15 18.5)'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.short-video {
  display: grid;
  justify-items: center;
}

.video-frame {
  display: grid;
  gap: 12px;
  width: min(360px, 80vw);
  margin: 0;
}

.short-video__media {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  min-height: 0;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: var(--radius-sm);
  background: #1b1715;
  box-shadow: var(--shadow-card);
}

.video-credit {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

.video-credit a {
  color: var(--color-plum);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.quick-card {
  display: grid;
  grid-template-rows: auto minmax(64px, auto);
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.quick-card:hover,
.quick-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(37, 29, 24, 0.15);
}

.quick-card__image {
  aspect-ratio: 1 / 1;
  min-height: 0;
  border: 0;
  border-bottom: 1px solid var(--color-line);
  border-radius: 0;
}

.quick-card__label {
  display: grid;
  min-height: 64px;
  place-items: center;
  padding: 8px 6px;
  color: var(--color-plum-dark);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}

.quick-card__label--long {
  font-size: 18px;
}

.plan-banner {
  max-width: var(--max-width);
  margin: clamp(18px, 3vw, 34px) auto clamp(30px, 5vw, 56px);
  padding: 0 20px;
  text-align: center;
}

.plan-banner img {
  display: block;
  width: min(60%, 720px);
  min-width: 0;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}

.page-section {
  background: transparent;
}

.section-hero {
  position: relative;
  display: grid;
  width: 100%;
  min-height: clamp(150px, 17vw, 230px);
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.section-hero__image {
  position: absolute;
  inset: 0;
  border: 0;
  border-radius: 0;
}

.section-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.section-hero h2 {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  justify-items: center;
  margin: 0;
  padding: 0 20px;
  color: #fff;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.36);
}

.section-hero__en {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(10px, 0.95vw, 13px);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.section-hero__line {
  display: block;
  width: clamp(72px, 8vw, 118px);
  height: 1px;
  background: rgba(255, 255, 255, 0.86);
}

.section-hero__jp {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.section-body {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 88px) 20px;
}

.section-body--cuisine {
  display: grid;
  gap: clamp(34px, 5vw, 56px);
  padding-top: clamp(8px, 2vw, 18px);
}

.section-intro {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.section-intro--left {
  margin: 0 0 30px;
  text-align: left;
}

.section-intro--center {
  max-width: var(--max-width);
  margin: 0 auto 30px;
  text-align: center;
}

.section-intro .section-label {
  margin-bottom: 6px;
}

.section-intro h2,
.section-intro h3 {
  margin: 0;
  color: var(--color-plum);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(25px, 3.4vw, 36px);
  line-height: 1.35;
}

.section-intro p:not(.section-label) {
  max-width: 820px;
  margin-top: 16px;
  color: var(--color-body);
  font-weight: 600;
  line-height: 1.9;
}

.section-intro--center p:not(.section-label) {
  margin-right: auto;
  margin-left: auto;
}

.section-intro__line {
  display: block;
}

.section-intro__mobile-break {
  display: inline;
}

.cuisine-steak-photo {
  width: min(760px, 100%);
  margin: 0 auto;
}

.cuisine-steak-photo .image-slot {
  min-height: 0;
  aspect-ratio: 16 / 6;
  border: 0;
  background: transparent;
  box-shadow: var(--shadow-card);
}

.cuisine-steak-photo img {
  object-position: 50% 54%;
}

.cuisine-split {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}

.cuisine-split--intro {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
}

.cuisine-split--details {
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
}

.cuisine-main-photo .image-slot,
.cuisine-photo-grid .image-slot {
  min-height: 0;
  border: 0;
  background: transparent;
  box-shadow: var(--shadow-card);
}

.cuisine-main-photo .image-slot {
  aspect-ratio: 4 / 3;
}

.cuisine-main-photo img {
  object-position: 50% 48%;
}

.cuisine-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cuisine-photo-grid .image-slot {
  aspect-ratio: 4 / 3;
}

.cuisine-photo-grid figure:nth-child(1) img {
  object-position: 50% 52%;
}

.cuisine-photo-grid figure:nth-child(2) img {
  object-position: 50% 54%;
}

.cuisine-photo-grid figure:nth-child(3) img {
  object-position: 50% 47%;
}

.cuisine-photo-grid figure:nth-child(4) img {
  object-position: 50% 52%;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.two-column--compact {
  margin-top: 30px;
  grid-template-columns: 1fr 1fr;
}

.two-column--rates {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.text-panel,
.booking-panel {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-card);
}

.text-panel--wide {
  max-width: 820px;
  margin-bottom: 30px;
}

.text-panel h3,
.booking-panel h3 {
  margin: 0 0 14px;
  color: var(--color-ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.35;
}

.text-link {
  color: var(--color-plum);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.check-list {
  display: grid;
  gap: 8px;
  padding-left: 1.1em;
}

.photo-grid {
  display: grid;
  gap: 16px;
}

.photo-grid--cuisine {
  grid-template-columns: repeat(3, 1fr);
}

.photo-grid--facilities {
  grid-template-columns: repeat(3, 1fr);
}

.photo-tile {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.photo-tile .image-slot {
  min-height: 165px;
  border: 0;
  border-radius: 0;
}

.photo-tile figcaption {
  display: grid;
  min-height: 60px;
  place-items: center;
  padding: 10px 12px;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.room-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  gap: 16px;
  max-width: 760px;
  margin: 34px auto 0;
  align-items: start;
}

.room-detail-title {
  grid-column: 1 / -1;
  margin: 0 0 6px;
  color: var(--color-plum-dark);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.room-detail-grid .photo-tile {
  align-self: start;
  min-width: 0;
}

.room-detail-grid .photo-tile .image-slot {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.profile-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.profile-photo-grid .photo-tile {
  box-shadow: var(--shadow-card);
}

.profile-photo-grid .image-slot {
  min-height: 145px;
}

.profile-photo-grid figcaption {
  min-height: 48px;
  font-size: 12px;
}

.stack {
  display: grid;
  gap: 24px;
}

.image-slot {
  position: relative;
  display: grid;
  min-height: 170px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(33, 27, 24, 0.18);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, transparent 49.2%, rgba(107, 74, 123, 0.14) 50%, transparent 50.8%),
    linear-gradient(45deg, transparent 49.2%, rgba(212, 155, 45, 0.12) 50%, transparent 50.8%),
    var(--color-smoke);
  background-size: 42px 42px;
  color: rgba(33, 27, 24, 0.62);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.image-slot.has-image {
  background: var(--color-smoke);
  color: transparent;
}

.image-slot > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-slot--hero {
  min-height: 0;
}

.image-slot--wide {
  min-height: 210px;
  margin-bottom: 18px;
}

.image-slot--tall {
  min-height: 280px;
}

.access-section-body {
  display: grid;
  gap: clamp(28px, 4vw, 50px);
}

.access-map,
.access-guide,
.tourism-guide {
  width: min(100%, 980px);
  margin: 0 auto;
}

.access-map {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.access-map__frame {
  width: 100%;
  aspect-ratio: 16 / 7.2;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.access-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.access-map__link {
  color: var(--color-plum);
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.access-guide {
  display: grid;
  gap: 18px;
}

.access-guide__text {
  align-self: center;
  display: grid;
  align-content: center;
  padding: clamp(8px, 1.6vw, 20px) 0;
  color: var(--color-ink);
  font-weight: 700;
  line-height: 1.8;
}

.access-guide__text h4 {
  margin: 0 0 8px;
  color: var(--color-ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.35;
}

.access-guide__text p {
  margin-bottom: 8px;
}

.access-map-images {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 36px);
  align-items: start;
}

.access-map-image {
  display: grid;
  min-height: 0;
  place-items: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.access-map-image:nth-child(1),
.access-map-image:nth-child(2) {
  aspect-ratio: 1 / 1;
}

.access-map-image img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.access-map-image--illustration {
  grid-column: 1 / span 1;
  width: 100%;
  padding: 8px 10px;
}

.access-map-images .access-guide__text {
  grid-column: 2 / span 1;
}

@media (min-width: 981px) {
  .access-map-images {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .access-map-image--illustration {
    grid-column: 1 / span 1;
    width: calc(130% + clamp(20px, 4vw, 36px) * 0.3);
  }

  .access-map-images .access-guide__text {
    grid-column: 2 / span 1;
    margin-left: 30%;
  }
}

.tourism-guide {
  display: grid;
  gap: 34px;
  padding-top: 6px;
}

.tourism-guide__intro {
  margin-bottom: 0;
}

.tourism-block {
  display: grid;
  gap: 18px;
}

.tourism-block h4 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin: 0;
  color: var(--color-plum-dark);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.tourism-block h4::before,
.tourism-block h4::after {
  content: "";
  height: 1px;
  background: rgba(107, 74, 123, 0.22);
}

.tourism-block p {
  width: min(860px, 100%);
  margin: 0 auto;
  color: var(--color-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

.tourism-photo-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tourism-photo-pair img,
.tourism-photo-wide img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}

.tourism-photo-wide {
  justify-self: center;
  width: min(720px, 100%);
}

.hero-media,
.section-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
}

.map-placeholder {
  min-height: 360px;
  margin-bottom: 24px;
}

.mini-map-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mini-map-grid .image-slot {
  min-height: 130px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  font-size: 15px;
}

.price-table th,
.price-table td {
  border: 1px solid var(--color-line);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.price-table th {
  width: 34%;
  background: var(--color-soft);
  color: var(--color-ink);
  font-weight: 900;
}

.booking-panel {
  position: sticky;
  top: calc(var(--header-offset) + 22px);
  min-height: 360px;
  border-color: rgba(107, 74, 123, 0.38);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-body);
}

.booking-panel .section-label {
  color: var(--color-plum);
}

.booking-panel h3 {
  color: var(--color-plum-dark);
}

.booking-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: min(260px, 100%);
  margin-top: 26px;
}

.booking-links a {
  display: grid;
  width: 100%;
  min-height: 50px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 11px 18px;
  background: linear-gradient(180deg, #dca93a, var(--color-gold));
  color: #fff;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 12px 28px rgba(212, 155, 45, 0.22);
  transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.booking-links a:first-child {
  background: var(--color-plum);
  box-shadow: 0 12px 28px rgba(107, 74, 123, 0.2);
}

.booking-links a:nth-child(3) {
  grid-column: auto;
}

.booking-links a:hover,
.booking-links a:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(33, 27, 24, 0.16);
}

.pet-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.pet-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 0;
  background: #fff;
  box-shadow: var(--shadow-card);
  cursor: zoom-in;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.pet-card:hover,
.pet-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(62, 42, 76, 0.16);
}

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

.pet-lightbox[hidden] {
  display: none;
}

.pet-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.pet-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(33, 27, 24, 0.68);
}

.pet-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  width: min(760px, 92vw);
  max-height: 86svh;
  margin: 0;
  border: 8px solid #fff;
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 24px 80px rgba(33, 27, 24, 0.28);
}

.pet-lightbox__dialog img {
  display: block;
  width: 100%;
  max-height: min(620px, 72svh);
  object-fit: contain;
  background: var(--color-soft);
}

.pet-lightbox__dialog figcaption {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.pet-lightbox__close {
  position: absolute;
  top: -18px;
  right: -18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--color-plum-dark);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.pet-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 54px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(80, 55, 100, 0.88);
  color: #fff;
  font-family: var(--font-mincho);
  font-size: 42px;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(33, 27, 24, 0.24);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 160ms ease, transform 160ms ease;
}

.pet-lightbox__nav:hover,
.pet-lightbox__nav:focus-visible {
  background: var(--color-plum-dark);
  transform: translateY(-50%) scale(1.05);
}

.pet-lightbox__nav--prev {
  left: 12px;
}

.pet-lightbox__nav--next {
  right: 12px;
}

.site-footer {
  background: var(--color-sumi);
  color: #fff;
}

.page-top-button {
  position: fixed;
  right: clamp(14px, 2.4vw, 28px);
  bottom: clamp(14px, 2.4vw, 28px);
  z-index: 45;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(107, 74, 123, 0.72);
  box-shadow: 0 10px 26px rgba(33, 27, 24, 0.18);
  transition: transform 160ms ease, background-color 160ms ease;
}

.page-top-button::before {
  content: "";
  width: 0;
  height: 0;
  border-right: 9px solid transparent;
  border-bottom: 13px solid #fff;
  border-left: 9px solid transparent;
  transform: translateY(-2px);
}

.page-top-button:hover,
.page-top-button:focus-visible {
  transform: translateY(-2px);
  background: rgba(62, 42, 76, 0.86);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 46px 20px 28px;
}

.footer-logo {
  margin-bottom: 16px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 30px;
  font-weight: 800;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  align-content: start;
}

.footer-nav a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding-bottom: 7px;
  font-weight: 800;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

@media (max-width: 1180px) {
  .hero {
    min-height: min(620px, calc(100svh - 78px));
  }

  .hero-media > img {
    object-position: 64% 58%;
  }

  .hero-inner {
    grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 0.9fr);
    gap: 28px;
    padding-top: 34px;
    padding-bottom: 96px;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 4.4vw, 46px);
  }

  .hero-collage {
    max-width: 540px;
    transform: translateY(72px);
  }
}

@media (max-width: 980px) {
  :root {
    --header-offset: 78px;
  }

  .top-message,
  .header-actions,
  .global-nav {
    display: none;
  }

  .site-header {
    background: rgba(255, 253, 248, 0.98);
  }

  .header-inner {
    display: flex;
    min-height: 72px;
    padding: 10px 14px;
    justify-content: space-between;
  }

  .site-logo__image {
    width: 154px;
  }

  .menu-button {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    place-items: center;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--color-ink);
  }

  .menu-button span,
  .menu-button span::before,
  .menu-button span::after {
    display: block;
    width: 25px;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-button span::before {
    transform: translateY(-8px);
  }

  .menu-button span::after {
    transform: translateY(6px);
  }

  .menu-button.is-open span {
    transform: rotate(45deg);
  }

  .menu-button.is-open span::before {
    transform: translateY(0) rotate(90deg);
  }

  .menu-button.is-open span::after {
    opacity: 0;
  }

  .mobile-menu {
    position: fixed;
    inset: 72px 0 auto;
    z-index: 49;
    display: block;
    max-height: calc(100svh - 72px);
    overflow-y: auto;
    padding: 16px;
    border-top: 1px solid var(--color-line);
    background: var(--color-paper);
    box-shadow: var(--shadow-soft);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

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

  .mobile-menu__actions {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
  }

  .mobile-menu__nav {
    display: grid;
    gap: 8px;
  }

  .mobile-menu__nav a {
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    padding: 13px 14px;
    background: #fff;
    color: var(--color-ink);
    font-weight: 900;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 34px;
    padding-bottom: 36px;
  }

  .hero-copy {
    max-width: min(480px, 58vw);
  }

  .hero-media > img {
    object-position: 64% 62%;
  }

  .hero-media::after {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.28) 0%,
      rgba(255, 255, 255, 0.16) 46%,
      rgba(255, 255, 255, 0) 72%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .hero-collage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 680px;
    justify-self: stretch;
    transform: none;
  }

  .feature-strip {
    margin-top: 0;
    padding-top: 18px;
  }

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

  .feature-item {
    grid-template-columns: 48px 1fr;
    gap: 12px;
    padding: 18px 14px;
    border-right: 1px dashed rgba(107, 74, 123, 0.22);
    border-bottom: 0;
  }

  .feature-item:last-child {
    border-right: 0;
  }

  .feature-item__icon {
    width: 48px;
    height: 48px;
  }

  .feature-item__icon::before {
    width: 29px;
    height: 29px;
  }

  .feature-item__icon--okami::before {
    width: 34px;
    height: 34px;
  }

  .feature-item h2 {
    font-size: 20px;
  }

  .feature-item p {
    font-size: 13px;
    line-height: 1.65;
  }

  .short-video.section-pad,
  .quick-links.section-pad {
    padding-top: 24px;
  }

  .short-video.section-pad {
    padding-bottom: 24px;
  }

  .quick-links .section-lead h2 {
    font-size: 20px;
  }

  .quick-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .quick-card {
    min-height: 0;
    grid-template-rows: auto minmax(58px, auto);
  }

  .quick-card__image {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .quick-card__label {
    min-height: 58px;
    font-size: 16px;
  }

  .quick-card__label--long {
    font-size: 14px;
  }

  .plan-banner img {
    width: 100%;
  }

  .two-column,
  .two-column--compact,
  .two-column--rates,
  .cuisine-split--intro,
  .cuisine-split--details,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .photo-grid--cuisine,
  .photo-grid--facilities {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .profile-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .profile-photo-grid .image-slot {
    min-height: 112px;
  }

  .profile-photo-grid figcaption {
    min-height: 42px;
    font-size: 11px;
  }

  .booking-panel {
    position: static;
  }

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

  .pet-lightbox {
    padding: 18px;
  }
}

@media (max-width: 560px) {
  body {
    line-height: 1.75;
  }

  .site-logo__image {
    width: 140px;
  }

  .hero-media {
    height: 420px;
  }

  .hero-media > img {
    object-position: 58% 54%;
  }

  .hero-media::after {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.28) 0%,
      rgba(255, 255, 255, 0.12) 45%,
      rgba(255, 255, 255, 0) 72%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .hero-inner {
    padding-top: 28px;
    padding-bottom: 30px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    margin-bottom: 14px;
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.62;
  }

  .hero-copy p:not(.hero-kicker):not(.hero-lead) {
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-collage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .tilt-photo,
  .tilt-photo:nth-child(2),
  .tilt-photo--large {
    border-width: 4px;
    transform: none;
  }

  .tilt-photo--large .image-slot,
  .tilt-photo .image-slot {
    min-height: 76px;
  }

  .tilt-photo figcaption {
    padding: 5px 2px 2px;
    font-size: 10px;
    line-height: 1.35;
  }

  .feature-item {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .feature-strip__inner {
    grid-template-columns: 1fr;
  }

  .feature-item:last-child {
    border-bottom: 0;
  }

  .feature-item__icon {
    width: 48px;
    height: 48px;
  }

  .section-pad {
    padding-right: 14px;
    padding-left: 14px;
  }

  .short-video.section-pad,
  .quick-links.section-pad {
    padding-top: 18px;
  }

  .short-video.section-pad {
    padding-bottom: 18px;
  }

  .quick-links .section-lead {
    margin-bottom: 18px;
  }

  .quick-links .section-lead h2 {
    font-size: 13px;
  }

  .quick-links .section-lead h2::before,
  .quick-links .section-lead h2::after {
    width: 14px;
    height: 14px;
    margin: 0 3px;
  }

  .quick-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .quick-card {
    min-height: 0;
    grid-template-rows: auto minmax(48px, auto);
  }

  .quick-card__image {
    aspect-ratio: 1 / 1;
    min-height: 0;
    font-size: 11px;
  }

  .quick-card__label {
    min-height: 48px;
    padding: 6px 2px;
    font-size: 12px;
    line-height: 1.25;
  }

  .quick-card__label--long {
    font-size: 10px;
  }

  .plan-banner {
    margin-top: 18px;
    margin-bottom: 32px;
    padding: 0 14px;
  }

  .plan-banner img {
    width: 100%;
  }

  .section-hero {
    min-height: 132px;
  }

  .section-hero h2 {
    padding: 0 18px;
  }

  .section-hero__en {
    font-size: 10px;
  }

  .section-hero__jp {
    font-size: 27px;
  }

  .section-body {
    padding-right: 14px;
    padding-left: 14px;
  }

  .access-section-body {
    gap: 34px;
  }

  .access-map__frame {
    aspect-ratio: 4 / 3;
    border-width: 6px;
  }

  .access-map-images {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .access-map-image,
  .access-map-image--center {
    width: 100%;
    min-height: 0;
    padding: 12px;
  }

  .access-map-image--illustration {
    width: 100%;
  }

  .access-map-images .access-guide__text {
    grid-column: auto;
    padding: 0;
  }

  .tourism-guide {
    gap: 22px;
  }

  .tourism-photo-pair {
    gap: 8px;
  }

  .tourism-block p {
    font-size: 14px;
    line-height: 1.75;
  }

  .section-body--cuisine {
    gap: 28px;
    padding-top: 10px;
  }

  .section-intro {
    text-align: left;
  }

  .section-intro--left {
    margin-bottom: 24px;
  }

  .section-intro--center {
    margin-bottom: 24px;
    text-align: center;
  }

  .section-intro h2,
  .section-intro h3 {
    font-size: 22px;
  }

  .section-intro p:not(.section-label) {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.75;
  }

  .section-intro__mobile-break {
    display: block;
  }

  .cuisine-steak-photo .image-slot {
    aspect-ratio: 16 / 8;
  }

  .cuisine-photo-grid {
    gap: 8px;
  }

  .text-panel,
  .booking-panel {
    padding: 20px;
  }

  .booking-links {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .booking-links a:nth-child(3) {
    grid-column: auto;
  }

  .photo-grid--cuisine,
  .photo-grid--facilities,
  .mini-map-grid {
    grid-template-columns: 1fr;
  }

  .room-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .room-detail-title {
    font-size: 24px;
  }

  .profile-photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .profile-photo-grid .image-slot {
    min-height: 96px;
  }

  .pet-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .pet-lightbox {
    padding: 12px;
  }

  .pet-lightbox__dialog {
    width: min(340px, 94vw);
    border-width: 6px;
  }

  .pet-lightbox__close {
    top: -14px;
    right: -14px;
    width: 34px;
    height: 34px;
    font-size: 22px;
  }

  .pet-lightbox__nav {
    width: 38px;
    height: 48px;
    font-size: 34px;
  }

  .pet-lightbox__nav--prev {
    left: 8px;
  }

  .pet-lightbox__nav--next {
    right: 8px;
  }

  .pet-grid .image-slot {
    min-height: 96px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}
