/* === Design Tokens === */
:root {
  --bg: #faf9f6;
  --text: #1a1a1a;
  --text-muted: #666;
  --accent: #947133;
  --dark: #1a1a1a;
  --white: #ffffff;
  --font-serif: 'Noto Serif JP', 'Yu Mincho', serif;
  --font-sans: 'Noto Sans JP', Arial, sans-serif;
  --max-w: 1200px;
  --radius: 8px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--bg); color: var(--text); font-size: 15px; line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100000;
  transform: translateY(-160%);
  background: var(--dark);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 700;
  transition: transform .2s;
}

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

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 3px solid #0b63ce;
  outline-offset: 3px;
}

:where(input, textarea, select):focus-visible {
  border-color: #0b63ce;
  box-shadow: 0 0 0 3px rgba(11, 99, 206, 0.18);
}

/* === Layout === */
.lp-container { max-width: var(--max-w); margin: 0 auto; padding: 0 60px; }
.lp-section { padding: 80px 0; }
.section-head { margin-bottom: 40px; }
.section-title { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; letter-spacing: 0.05em; }
.section-subtitle { font-size: 0.875rem; color: var(--text-muted); margin-top: 4px; }

/* === Header === */
#site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0 40px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow .3s;
}
#site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.1); }
.header-logo { font-family: var(--font-serif); font-size: 1.1rem; line-height: 1.2; flex-shrink: 0; }
.header-logo span { display: block; font-size: 0.7rem; font-weight: 400; color: var(--text-muted); }
.header-nav { display: flex; gap: 24px; align-items: center; }
.header-nav a { font-size: 0.82rem; font-weight: 500; color: var(--text); transition: color .2s; white-space: nowrap; }
.header-nav a:hover { color: var(--accent); }
.header-right { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.btn-cta { background: var(--dark); color: var(--white); padding: 8px 16px; border-radius: 4px; font-size: 0.78rem; font-weight: 700; white-space: nowrap; transition: background .2s; }
.btn-cta:hover { background: #333; }
.header-insta img { width: 22px; height: 22px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Desktop language menu: horizontal grid so additional languages wrap inside the viewport. */
#langSwitcherMenu,
.lang-switcher-dropdown {
  width: min(720px, calc(100vw - 32px)) !important;
  min-width: min(420px, calc(100vw - 32px)) !important;
  max-width: calc(100vw - 32px) !important;
  padding: 14px !important;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
  gap: 6px 14px !important;
}

.lang-switcher-btn {
  display: inline-block;
  background: #f5f5f5;
  border: 1px solid #767676;
  border-radius: 4px;
  padding: 3px 10px;
  font: 700 12px var(--font-sans);
  color: #333;
  cursor: pointer;
}

.lang-switcher-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  min-width: 160px;
  list-style: none;
  padding: 4px 0;
  margin: 0;
  z-index: 99999;
}

#langSwitcherMenu.is-open,
.lang-switcher-dropdown.open,
li.lang-switcher-wrap:hover .lang-switcher-dropdown {
  display: grid !important;
}

#langSwitcherMenu.is-open {
  position: fixed !important;
  left: 50% !important;
  right: auto !important;
  top: 72px !important;
  transform: translateX(-50%) !important;
}

#langSwitcherMenu li,
.lang-switcher-dropdown li {
  display: block !important;
  width: auto !important;
  height: auto !important;
}

#langSwitcherMenu li a,
.lang-switcher-dropdown li a {
  display: block !important;
  padding: 8px 10px !important;
  border-radius: 4px !important;
  line-height: 1.35 !important;
  text-align: left !important;
  white-space: nowrap !important;
}

#langSwitcherMenu li a:hover,
.lang-switcher-dropdown li a:hover {
  background: #f4f2ee !important;
}

/* SP 言語ボタン（モバイルのみ表示） */
.sp-lang-btn-wrap { display: none; position: relative; }
.sp-lang-btn { background: none; border: 1px solid #767676; border-radius: 4px; padding: 5px 8px; font-size: 1rem; cursor: pointer; line-height: 1; }
.sp-lang-dropdown { display: none; position: absolute; right: 0; top: calc(100% + 6px); background: #fff; border: 1px solid #ddd; border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.15); min-width: 180px; list-style: none; padding: 4px 0; margin: 0; z-index: 99999; }
.sp-lang-dropdown li a { display: block; padding: 10px 16px; font-size: 0.9rem; color: #333; text-decoration: none; white-space: nowrap; }
.sp-lang-dropdown li a:hover { background: #f5f5f5; }
.sp-lang-dropdown.is-open {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 6px 14px;
  width: min(360px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  padding: 14px;
  right: 50%;
  transform: translateX(50%);
}

.sp-lang-dropdown.is-open li a {
  padding: 8px 10px;
  border-radius: 4px;
  line-height: 1.35;
}
.sp-nav {
  display: none; position: fixed; top: 64px; left: 0; right: 0; width: 100%;
  background: var(--white); z-index: 999;
  border-bottom: 1px solid #eee;
  padding: 20px 24px; flex-direction: column; gap: 0;
}
.sp-nav.is-open { display: flex; }
.sp-nav a { display: block; font-size: 0.95rem; font-weight: 500; padding: 14px 0; border-bottom: 1px solid #f0ede8; color: var(--text); }
.sp-nav .sp-cta { margin-top: 12px; background: var(--dark); color: var(--white); text-align: center; padding: 14px; border-radius: 4px; font-weight: 700; border-bottom: none; }
.sp-nav .sp-lang-section { margin-top: 16px; padding-top: 12px; border-top: 2px solid #e8e5e0; }
.sp-nav .sp-lang-label { display: block; font-size: 0.7rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; padding: 0 0 8px; border-bottom: none; pointer-events: none; }
.sp-nav .sp-lang-links { display: flex; flex-wrap: wrap; gap: 6px; padding-bottom: 4px; }
.sp-nav .sp-lang-link { display: inline-block; font-size: 0.82rem; padding: 6px 10px; border: 1px solid #e0ddd8 !important; border-radius: 20px; color: var(--text-muted); background: #faf8f5; white-space: nowrap; }
.sp-nav .sp-lang-link:last-child { border-bottom: 1px solid #e0ddd8 !important; }

/* === Hero === */
#hero { padding: 0; background: var(--bg); }
.hero-inner { display: flex; min-height: 520px; }
.hero-left { width: 38%; padding: 80px 48px 80px 80px; display: flex; flex-direction: column; justify-content: center; }
.hero-catch { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 700; line-height: 1.45; margin-bottom: 20px; }
.hero-catch em { color: var(--accent); font-style: normal; }
.hero-brand { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
.hero-brand span { display: block; font-size: 0.85rem; font-weight: 400; color: var(--text-muted); }
.hero-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.9; }
.hero-right { width: 62%; position: relative; overflow: hidden; }
.hero-slider { height: 100%; min-height: 520px; }
.hero-slider .slick-list,
.hero-slider .slick-track,
.hero-slider .slick-slide,
.hero-slider .slick-slide > div { height: 100%; }
.hero-slider-img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: 48px; right: -16px; z-index: 10;
  width: 184px; height: 184px; border-radius: 50%;
  background: var(--white); box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 20px;
}
.hero-badge p { font-size: 0.78rem; font-weight: 700; line-height: 1.6; color: var(--text); }
.hero-badge img { width: 68px; margin-top: 8px; object-fit: contain; }
.hero-slider .slick-dots { bottom: 16px; }
.hero-slider .slick-dots li button::before { color: var(--white); font-size: 8px; opacity: 0.7; }
.hero-slider .slick-dots li.slick-active button::before { opacity: 1; }
.hero-slider-toggle {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 12;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 4px;
  background: rgba(26,26,26,0.82);
  color: var(--white);
  font: 700 0.78rem var(--font-sans);
  padding: 8px 12px;
  cursor: pointer;
}
.hero-slider-toggle:hover { background: rgba(26,26,26,0.94); }

/* === CALENDAR STATUS === */
#calendar-status {
  background: linear-gradient(180deg, #f6f1e9 0%, #fbf9f6 100%);
  border-top: 1px solid #ece4da;
  border-bottom: 1px solid #ece4da;
}
.section-head--calendar { margin-bottom: 28px; }
.calendar-status-shell { display: flex; flex-direction: column; gap: 20px; }
.calendar-summary-grid { display: grid; grid-template-columns: 1.05fr 1.4fr; gap: 20px; }
.calendar-panel {
  background: rgba(255,255,255,0.88);
  border: 1px solid #eadfce;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(70,52,35,0.06);
  padding: 24px;
}
.calendar-panel--today {
  background: linear-gradient(135deg, rgba(94,66,39,0.96) 0%, rgba(43,58,70,0.95) 100%);
  color: var(--white);
  border-color: rgba(255,255,255,0.08);
}
.calendar-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.calendar-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.calendar-panel--today .calendar-kicker { color: rgba(255,255,255,0.86); }
.calendar-panel-note { font-size: 0.76rem; color: var(--text-muted); }
.calendar-today {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.calendar-state {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1.5;
  color: var(--white);
}
.calendar-caption {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.82);
}
.calendar-today.status-normal .calendar-state { color: #fff4c2; }
.calendar-today.status-partial .calendar-state { color: #ffd6a5; }
.calendar-today.status-closed .calendar-state { color: #ffb7b7; }
.calendar-today.status-event .calendar-state { color: #d5f1ff; }
.calendar-today.status-error .calendar-state { color: #ffd3d3; }
.calendar-upcoming-list { display: flex; flex-direction: column; gap: 12px; }
.calendar-upcoming-item {
  border-top: 1px solid #efe6dc;
  padding-top: 12px;
}
.calendar-upcoming-item:first-child {
  border-top: none;
  padding-top: 0;
}
.calendar-upcoming-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.calendar-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.badge-private { background: #2f2f2f; color: var(--white); }
.badge-event { background: #d8ecff; color: #285b8f; }
.calendar-upcoming-date {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.calendar-upcoming-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.65;
}
.calendar-week-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}
.calendar-day-card {
  border: 1px solid #ece2d5;
  border-radius: 8px;
  background: #fffdfa;
  min-height: 220px;
  padding: 16px 14px;
}
.calendar-day-card.status-closed { background: #fff3f0; border-color: #f0cbc4; }
.calendar-day-card.status-partial { background: #fff8f0; border-color: #efd8b8; }
.calendar-day-card.status-event { background: #f5faff; border-color: #d7e4f2; }
.calendar-day-head {
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid #efe7de;
}
.calendar-day-date {
  font-size: 0.92rem;
  font-weight: 700;
}
.calendar-day-list { display: flex; flex-direction: column; gap: 10px; }
.calendar-entry {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 10px;
  border-left: 3px solid #d2c2ac;
}
.calendar-entry--private { border-left-color: #6f4a2e; }
.calendar-entry--event { border-left-color: #5f8ab7; }
.calendar-entry-time {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}
.calendar-entry-title {
  font-size: 0.8rem;
  line-height: 1.5;
}
.calendar-empty {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* === NEWS === */
#news-bar { background: #f5f4f1; border-top: 1px solid #e0ded9; border-bottom: 1px solid #e0ded9; }
.news-bar-inner { display: flex; align-items: center; gap: 16px; padding: 14px 60px; max-width: var(--max-w); margin: 0 auto; }
.news-label { background: var(--dark); color: var(--white); font-size: 0.72rem; font-weight: 700; padding: 3px 10px; letter-spacing: 0.12em; white-space: nowrap; }
.news-date { font-size: 0.8rem; color: var(--text-muted); white-space: nowrap; }
.news-sep { color: #ccc; }
.news-text { font-size: 0.875rem; flex: 1; }
.news-more { font-size: 0.8rem; color: var(--text-muted); white-space: nowrap; transition: color .2s; }
.news-more:hover { color: var(--text); }

/* === SYSTEM === */
#system { background: var(--white); }
.system-mv {
  width: 100%;
  height: 400px;
  background: url("../images/DSC_1361.jpg") center center / cover no-repeat;
}
.system-grid { display: grid; grid-template-columns: 1fr 1.4fr 0.85fr; gap: 40px; align-items: start; }
.price-wrap {
  background: #fffef5; border: 1px solid #e8e0b0;
  border-radius: 4px; padding: 28px 24px 20px;
  position: relative; box-shadow: 2px 4px 10px rgba(0,0,0,0.07);
}
.price-wrap::before {
  content: ''; position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 70%; height: 10px; background: #d4a847; border-radius: 3px; z-index: 1;
}
.price-wrap-title { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.12em; margin-bottom: 14px; }
.price-tbl { width: 100%; border-collapse: collapse; }
.price-tbl th { text-align: left; font-size: 1rem; font-weight: 600; padding: 11px 6px; border-bottom: 1px solid #ebe6c8; }
.price-tbl td { text-align: right; font-size: 1.1rem; font-weight: 700; padding: 11px 6px; border-bottom: 1px solid #ebe6c8; }
.price-tbl tr:last-child th,
.price-tbl tr:last-child td { border-bottom: none; }
.price-note { font-size: 0.75rem; color: var(--text-muted); text-align: right; margin-top: 10px; font-style: italic; }
.fac-label { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.1em; }
.fac-sub { font-size: 0.68rem; }
.fac-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 10px; margin-top: 14px; }
.fac-item { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.fac-item img { width: 34px; height: 34px; object-fit: contain; }
.fac-item span { font-size: 0.7rem; color: var(--text); line-height: 1.4; }
.beginner-box { background: #fffbe6; border: 2px solid #f0d060; border-radius: var(--radius); padding: 28px 20px; text-align: center; }
.beginner-box h3 { font-size: 0.875rem; font-weight: 700; margin-bottom: 10px; }
.beginner-box p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }
.btn-outline { display: inline-block; border: 1.5px solid var(--text); padding: 8px 22px; font-size: 0.8rem; font-weight: 700; border-radius: 4px; transition: all .2s; }
.btn-outline:hover { background: var(--text); color: var(--white); }

/* === MONTHLY PLAN === */
#plan { background: var(--bg); }
.plan-head-row { display: flex; align-items: baseline; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.plan-tagline { font-size: 0.95rem; color: var(--text-muted); font-style: italic; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan-card { border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 14px rgba(0,0,0,0.08); background: var(--white); transition: transform .25s, box-shadow .25s; display: block; }
.plan-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(0,0,0,0.13); }
.plan-card > a { display: block; color: inherit; }
.plan-card__img { aspect-ratio: 16/9; overflow: hidden; }
.plan-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.plan-card:hover .plan-card__img img { transform: scale(1.04); }
.plan-card__header { padding: 16px 20px; }
.plan-card--morning .plan-card__header  { background: #5c3d1e; }
.plan-card--weekday .plan-card__header  { background: #2d5a3d; }
.plan-card--everyday .plan-card__header { background: #1e3a5f; }
.plan-card__name-en { display: block; font-size: 1rem; font-weight: 700; color: var(--white); }
.plan-card__name-ja { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.65); margin-top: 2px; }
.plan-card__price { display: block; font-size: 1.45rem; font-weight: 700; color: var(--white); margin-top: 6px; }
.plan-card__price small { font-size: 0.8rem; font-weight: 400; }
.plan-card__body { padding: 16px 20px 20px; }
.plan-card__hours { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid #f0ede8; }
.plan-card__features { display: flex; flex-direction: column; gap: 6px; }
.plan-card__features li { font-size: 0.82rem; color: var(--text); padding-left: 16px; position: relative; }
.plan-card__features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* === NEW PLAN (photo card) === */
.new-plan-section { margin-top: 60px; padding-top: 48px; border-top: 2px dashed #e0ded9; }
.new-plan-label { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--white); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; padding: 4px 14px; border-radius: 20px; margin-bottom: 20px; }
.plan-card--photo > a { display: block; color: inherit; }
.plan-card__photo-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.plan-card__photo-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.plan-card:hover .plan-card__photo-wrap img { transform: scale(1.04); }
.plan-card__photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 100%);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  padding: 18px 20px;
}
.plan-card__photo-en { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.8); letter-spacing: 0.08em; line-height: 1.2; }
.plan-card__photo-ja { font-size: 1.05rem; font-weight: 700; color: var(--white); margin: 4px 0 6px; }
.plan-card__photo-price { font-size: 1.5rem; font-weight: 700; color: var(--white); }
.plan-card__photo-price small { font-size: 0.78rem; font-weight: 400; }
.plan-card__photo-hours { font-size: 0.7rem; color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.18); padding: 2px 10px; border-radius: 20px; margin-top: 6px; display: inline-block; }

/* === PRIVATE === */
#private { background: var(--white); }
.private-desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 32px; }
.private-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.private-card { border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 14px rgba(0,0,0,0.08); background: var(--white); transition: transform .25s; }
.private-card:hover { transform: translateY(-4px); }
.private-card a { display: flex; height: 100%; }
.private-card__img { width: 44%; flex-shrink: 0; overflow: hidden; }
.private-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.private-card:hover .private-card__img img { transform: scale(1.04); }
.private-card__body { padding: 24px 24px 20px; display: flex; flex-direction: column; justify-content: center; }
.private-card__body h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.private-card__body p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.private-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 5px; }
.price-num { font-size: 1.3rem; font-weight: 700; color: var(--text); }
.price-unit { font-size: 0.78rem; color: var(--text-muted); }
.private-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 8px; }

.private-page {
  padding: 72px 0 88px;
}

.private-page > h2 {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 28px;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.private-page .reservation-images:first-of-type {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.private-page .reservation-images:first-of-type > a {
  display: block;
  color: inherit;
  height: 100%;
}

.private-page .reservation-images:first-of-type .reservation-card {
  height: 100%;
}

.private-page .reservation-images:first-of-type .snip1418 {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.private-page .reservation-images:first-of-type .snip1418 img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.private-page .reservation-images:first-of-type .snip1418 figcaption {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.private-page .reservation-images:first-of-type .snip1418 h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.private-page .reservation-images:first-of-type .snip1418 p {
  margin-bottom: 0;
}

.private-page .reservation-images:first-of-type .price {
  margin-top: auto;
  font-size: 1.45rem;
  line-height: 1.55;
  letter-spacing: 0;
  color: var(--text);
}

.private-page .systeminfo {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.private-page .reservation-images:last-of-type {
  margin-top: 40px;
}

.private-page .mail-adress {
  margin-top: 56px;
}

/* === ACCESS === */
#access { background: var(--bg); }
.access-grid { display: grid; grid-template-columns: 1fr 1fr 0.75fr; gap: 48px; align-items: start; }
.access-map-wrap { position: relative; }
.access-map-wrap iframe { width: 100%; height: 280px; border-radius: var(--radius); border: 0; display: block; }
.access-map-wrap gmpx-store-locator { width: 100%; height: 280px; border-radius: var(--radius); display: block; overflow: hidden; }
.access-sticky {
  position: absolute; bottom: -12px; right: 16px;
  background: #fde68a; padding: 10px 14px;
  font-size: 0.78rem; font-weight: 700; line-height: 1.5;
  transform: rotate(-3deg); box-shadow: 2px 2px 6px rgba(0,0,0,0.12);
}
.access-info h3 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--text-muted); margin: 20px 0 6px; }
.access-info h3:first-child { margin-top: 0; }
.access-info address,
.access-info p { font-size: 0.875rem; line-height: 1.85; font-style: normal; }
.access-info small { font-size: 0.75rem; color: var(--text-muted); display: block; }
.btn-map { display: inline-flex; align-items: center; gap: 6px; background: var(--dark); color: var(--white); padding: 12px 24px; border-radius: 4px; font-size: 0.85rem; font-weight: 700; margin-top: 20px; transition: background .2s; }
.btn-map:hover { background: #333; }
.access-photo-wrap { position: relative; }
.access-photo-wrap img { border-radius: var(--radius); width: 100%; height: 240px; object-fit: cover; }
.access-welcome {
  position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%) rotate(2deg);
  background: var(--white); padding: 8px 16px; font-size: 0.8rem; font-weight: 700;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.1); white-space: nowrap; border-radius: 2px;
}

/* === CONTACT === */
#contact { background: var(--white); }
.contact-box { max-width: 940px; margin: 0 auto; background: #f9f8f5; border-radius: 12px; padding: 48px; }
.contact-box h2 { font-family: var(--font-serif); font-size: 1.7rem; display: flex; align-items: baseline; gap: 16px; margin-bottom: 6px; }
.contact-box h2 span { font-family: var(--font-sans); font-size: 0.95rem; font-weight: 400; color: var(--text-muted); }
.contact-lead { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 32px; line-height: 1.8; }
.contact-alternatives {
  border: 1px solid #e8dfcf;
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px 20px;
  margin-bottom: 28px;
}
.contact-alternatives h3 {
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.contact-alternatives ul {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}
.contact-alternatives li,
.contact-alternatives p {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.contact-alternatives a,
.access-info small a {
  color: #6f4f17;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 28px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.8rem; font-weight: 700; }
.form-group input,
.form-group textarea {
  border: 1.5px solid #ddd; border-radius: 6px;
  padding: 12px 14px; font-size: 0.875rem; font-family: var(--font-sans);
  background: var(--white); transition: border-color .2s; width: 100%; color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; }
.form-group--content { grid-column: 2; grid-row: 1 / 3; }
.form-group--content textarea { height: 168px; }
.field-error { color: #c0392b; font-size: 0.8rem; min-height: 1.4em; }
.field-error[hidden] { display: none; }
.form-group [aria-invalid="true"] { border-color: #c0392b; }
.form-submit { grid-column: 1 / 3; display: flex; justify-content: flex-end; margin-top: 4px; }
.btn-submit { background: var(--dark); color: var(--white); border: none; padding: 14px 44px; font-size: 0.9rem; font-weight: 700; border-radius: 4px; cursor: pointer; font-family: var(--font-sans); transition: background .2s; }
.btn-submit:hover { background: #333; }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.form-error { color: #c0392b; font-size: 0.82rem; margin-top: 8px; }
.form-done { text-align: center; padding: 48px 20px; }
.form-done p { font-size: 0.95rem; color: var(--text); line-height: 1.9; }
.hp-trap { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* === System Page === */
.system-page {
  background: var(--bg);
}

.system-hero {
  padding: 72px 0 48px;
  background: var(--white);
  border-bottom: 1px solid #ebe5da;
}

.system-hero h1 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: left;
  margin-bottom: 16px;
}

.system-hero p {
  max-width: 820px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0;
  text-align: left;
}

.system-page-section {
  padding: 64px 0 80px;
}

.system-pricing-card {
  background: var(--white);
  border: 1px solid #ebe5da;
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 40px;
}

.system-pricing-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.system-pricing-head h2 {
  margin-bottom: 10px;
}

.system-pricing-head p {
  color: var(--text-muted);
  line-height: 1.9;
}

.system-pricing-badge {
  flex-shrink: 0;
  border-radius: 999px;
  background: #f6efe2;
  color: #6f4f17;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 14px;
}

.system-pricing-table-wrap {
  overflow-x: auto;
}

.system-pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.system-pricing-table caption {
  text-align: left;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.system-pricing-table th,
.system-pricing-table td {
  border: 1px solid #e6dece;
  padding: 12px 14px;
}

.system-pricing-table thead th {
  background: #f8f4ec;
  font-size: 0.85rem;
  text-align: left;
}

.system-pricing-table tbody th {
  font-size: 0.88rem;
  font-weight: 700;
  text-align: left;
}

.system-pricing-table tbody td {
  font-size: 0.96rem;
  text-align: right;
}

.system-pricing-table tbody td:last-child {
  color: var(--text);
  font-weight: 700;
}

.system-pricing-notes {
  list-style: disc;
  padding-left: 1.2em;
  margin-top: 18px;
}

.system-pricing-notes li {
  color: var(--text-muted);
  line-height: 1.8;
}

.system-page-section h2 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  letter-spacing: 0;
  text-align: left;
  margin-bottom: 28px;
}

.system-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.system-feature {
  background: var(--white);
  border: 1px solid #ebe5da;
  border-radius: var(--radius);
  padding: 24px;
}

.system-feature h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: left;
  margin-bottom: 12px;
}

.system-feature p {
  color: var(--text-muted);
  line-height: 1.9;
  letter-spacing: 0;
  text-align: left;
}

.system-feature p + p,
.system-feature p + .system-media,
.system-media + p,
.system-summary-list + .system-media {
  margin-top: 16px;
}

.system-feature a {
  color: #6f4f17;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.system-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid #eee7dc;
  background: #f4f0e8;
}

.system-media img {
  width: 100%;
}

.system-summary-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.system-summary-list li {
  border: 1px solid #d6c7ab;
  border-radius: 4px;
  background: #fffaf1;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 10px;
}

.room {
  max-width: var(--max-w);
  margin: 40px auto 0;
  padding: 0 60px;
}

.room iframe {
  width: 100%;
  min-height: 560px;
  border-radius: var(--radius);
}

/* === Accessibility Policy Page === */
.accessibility-page {
  background: var(--bg);
}

.accessibility-hero {
  background: var(--white);
  border-bottom: 1px solid #ebe5da;
  padding: 72px 0 48px;
}

.accessibility-hero h1,
.accessibility-section h2 {
  font-family: var(--font-serif);
  letter-spacing: 0;
}

.accessibility-hero h1 {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 14px;
}

.accessibility-hero p {
  max-width: 820px;
  color: var(--text-muted);
  line-height: 1.9;
}

.accessibility-section {
  padding: 56px 0;
}

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

.accessibility-card {
  background: var(--white);
  border: 1px solid #ebe5da;
  border-radius: var(--radius);
  padding: 24px;
}

.accessibility-card h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.accessibility-card p,
.accessibility-card li {
  color: var(--text-muted);
  line-height: 1.9;
}

.accessibility-card ul {
  list-style: disc;
  padding-left: 1.3em;
}

/* === Footer === */
#site-footer { background: #1a1a1a; color: rgba(255,255,255,0.82); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1fr 1.3fr 0.9fr; gap: 60px; max-width: var(--max-w); margin: 0 auto; padding: 0 80px 48px; }
.footer-logo { font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); line-height: 1.2; }
.footer-logo span { display: block; font-size: 0.72rem; font-weight: 400; color: rgba(255,255,255,0.72); margin-top: 2px; }
.footer-insta { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 0.8rem; color: rgba(255,255,255,0.82); }
.footer-insta img { width: 18px; filter: brightness(10); opacity: .7; }
.footer-addr { margin-top: 14px; font-size: 0.78rem; color: rgba(255,255,255,0.74); line-height: 1.9; font-style: normal; }
.footer-hours :is(h2, h4),
.footer-links :is(h2, h4) { font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.78); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.footer-hours p { font-size: 0.8rem; line-height: 2; }
.footer-hours small { font-size: 0.72rem; color: rgba(255,255,255,0.72); display: block; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.84); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 16px 80px; max-width: var(--max-w); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.72); }
.pagetop-btn { background: none; border: none; cursor: pointer; font-size: 0.8rem; color: rgba(255,255,255,0.82); font-family: var(--font-sans); transition: color .2s; }
.pagetop-btn:hover { color: var(--white); }

/* === Tablet (769px-1024px) === */
@media (max-width: 1024px) {
  .lp-container { padding: 0 40px; }
  .header-nav { gap: 16px; }
  .header-nav a { font-size: 0.76rem; }
  .hero-left { padding: 60px 32px 60px 48px; }
  .hero-catch { font-size: 2rem; }
  .system-mv { height: 240px; }
  .calendar-summary-grid { grid-template-columns: 1fr; }
  .calendar-week-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .news-bar-inner { padding: 14px 40px; }
  .system-grid { grid-template-columns: 1fr 1fr; }
  .beginner-box { grid-column: 1 / 3; }
  .access-grid { grid-template-columns: 1fr 1fr; }
  .access-photo-wrap { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 0 48px 40px; gap: 40px; }
  .footer-bottom { padding: 16px 48px; }
  .system-feature-list { grid-template-columns: 1fr; }
  .system-pricing-head { flex-direction: column; }
  .room { padding: 0 40px; }
}

/* === SP (max 768px) === */
@media (max-width: 768px) {
  .lp-container { padding: 0 20px; }
  .lp-section { padding: 52px 0; }
  #site-header { padding: 0 20px; gap: 10px; }
  .header-nav, .header-right { display: none; }
  #langSwitcherMenu,
  .lang-switcher-dropdown {
    width: calc(100vw - 32px) !important;
    min-width: 0 !important;
    right: -56px !important;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
  }
  #langSwitcherMenu {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    top: 58px !important;
    width: min(360px, calc(100vw - 32px)) !important;
    max-width: none !important;
    transform: translateX(-50%) !important;
  }
  .sp-lang-btn-wrap {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1002;
    margin-left: auto;
    flex: 0 0 auto;
  }
  .sp-lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
  }
  .hamburger {
    display: flex;
    position: relative;
    right: auto;
    top: auto;
    width: auto;
    height: auto;
    z-index: 1002;
    margin-left: 6px;
    flex: 0 0 auto;
  }
  .system-mv { height: 180px; }
  .hero-inner { flex-direction: column; }
  .hero-left { width: 100%; padding: 48px 24px 36px; }
  .hero-right { width: 100%; }
  .hero-slider { min-height: 260px; }
  .hero-badge { width: 148px; height: 148px; bottom: 16px; right: 12px; padding: 14px; }
  .hero-badge p { font-size: 0.7rem; }
  .hero-badge img { width: 56px; }
  .hero-catch { font-size: 1.8rem; }
  .hero-brand { font-size: 1.2rem; }
  .calendar-panel { padding: 18px; }
  .calendar-today { min-height: auto; }
  .calendar-state { font-size: 1.2rem; }
  .calendar-week-grid { grid-template-columns: 1fr; }
  .calendar-day-card { min-height: auto; }
  .news-bar-inner { padding: 12px 20px; gap: 10px; }
  .news-date, .news-sep { display: none; }
  .system-grid { grid-template-columns: 1fr; }
  .beginner-box { grid-column: auto; }
  .plan-grid { grid-template-columns: 1fr; }
  .private-grid { grid-template-columns: 1fr; }
  .private-card a { flex-direction: column; }
  .private-card__img { width: 100%; height: 200px; }
  .private-page {
    padding: 52px 0 72px;
  }
  .private-page > h2 {
    width: min(100%, calc(100% - 24px));
    margin-bottom: 20px;
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }
  .private-page .reservation-images:first-of-type {
    grid-template-columns: 1fr;
    gap: 20px;
    width: min(100%, calc(100% - 24px));
    margin-bottom: 48px;
  }
  .private-page .reservation-images:first-of-type .snip1418 img {
    aspect-ratio: 16 / 9;
  }
  .private-page .systeminfo {
    width: min(100%, calc(100% - 24px));
  }
  .private-page .reservation-images:last-of-type {
    margin-top: 32px;
  }
  .private-page .mail-adress {
    margin-top: 40px;
  }
  .access-grid { grid-template-columns: 1fr; }
  .contact-box { padding: 28px 20px; }
  .contact-form { grid-template-columns: 1fr; }
  .form-group--content { grid-column: auto; grid-row: auto; }
  .form-submit { grid-column: auto; }
  .accessibility-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; padding: 0 24px 36px; gap: 32px; }
  .footer-bottom { padding: 16px 24px; }
  .system-hero { padding: 48px 0 34px; }
  .system-hero h1 { font-size: 1.8rem; }
  .system-page-section { padding: 44px 0 56px; }
  .system-pricing-card { padding: 20px; }
  .system-pricing-table { min-width: 0; }
  .system-feature { padding: 20px; }
  .room { padding: 0 20px; }
  .room iframe { min-height: 420px; }
}

@media screen and (max-width: 600px) {
  .system-pricing-table-wrap {
    overflow-x: visible;
  }

  .system-pricing-table,
  .system-pricing-table thead,
  .system-pricing-table tbody,
  .system-pricing-table tr,
  .system-pricing-table th,
  .system-pricing-table td {
    display: table-cell;
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    padding: 12px 14px;
    clip: auto;
    overflow: visible;
    border-right: 1px solid #e6dece;
    border-bottom: 1px solid #e6dece;
    font-size: inherit;
    text-align: inherit;
  }

  .system-pricing-table {
    display: table;
    width: 100%;
    table-layout: fixed;
    min-width: 0;
  }

  .system-pricing-table thead {
    display: table-header-group;
    position: static;
  }

  .system-pricing-table tbody {
    display: table-row-group;
  }

  .system-pricing-table tr {
    display: table-row;
  }

  .system-pricing-table th,
  .system-pricing-table td {
    padding: 12px 10px;
    font-size: 0.94rem;
  }

  .system-pricing-table thead th {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .system-pricing-table thead th:first-child,
  .system-pricing-table tbody th {
    width: 44%;
  }

  .system-pricing-table thead th:last-child,
  .system-pricing-table tbody td {
    width: 56%;
  }

  .system-pricing-table tbody td {
    text-align: right;
    white-space: nowrap;
  }

  .system-pricing-table th:last-child,
  .system-pricing-table td:last-child {
    border-right: 1px solid #e6dece;
  }

  .system-pricing-table td::before {
    content: none;
  }
}

/* === Legacy Page Rescue === */
.news-container,
.gallery-contents,
.bottominfo,
.reservation-plan-boxes,
.systeminfo,
.mail-adress {
  width: min(1120px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.news-container {
  max-width: 920px;
  padding: 120px 0 88px;
}

.news-mv {
  min-height: 180px;
  padding: 72px 20px 28px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.news-mv h1,
.news-mv h2 {
  margin: 0;
  position: static;
  top: auto;
  left: auto;
  transform: none;
  padding: 0;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 1.15;
  letter-spacing: 0.08em;
  color: var(--text);
}

.news-container h2,
.systeminfo > h2,
.reservation-text h2,
.bottominfo h2,
.news-mv h2 {
  font-family: var(--font-serif);
  color: var(--text);
  letter-spacing: 0;
}

.news-container h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  padding: 0;
  margin-bottom: 28px;
}

.news-contents {
  display: block;
}

.newstext {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 2;
}

.note-direct-link-wrap {
  margin: 0;
  padding: 14px 18px 18px;
  border-top: 1px solid #eee6db;
}

.note-direct-link {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.systeminfo,
.systeminfo ul,
.systeminfo ol {
  color: var(--text-muted);
}

.systeminfo {
  max-width: 1120px;
  padding: 64px 0 88px;
}

.systeminfo > h2,
.systeminfo h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 28px;
}

.systeminfo h3 {
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 28px 0 12px;
}

.systeminfo li,
.systeminfo p,
.reservation-text,
.adresstext,
.gallery-policy,
.mail-adress {
  font-size: 1rem;
  line-height: 1.9;
}

.systeminfo li {
  margin-bottom: 10px;
}

.systeminfo table {
  width: 100%;
  margin: 0;
}

.systeminfo table li {
  display: block;
}

.bottominfo {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 36px;
  margin-top: 72px;
  margin-bottom: 96px;
  align-items: start;
}

.access,
.adress {
  width: 100%;
  height: auto;
}

.map {
  width: 100%;
  max-width: none;
  min-height: 420px;
  padding-top: 16px;
}

.map iframe {
  position: absolute;
  inset: 16px 0 0;
  width: 100%;
  height: calc(100% - 16px);
  border-radius: 8px;
}

.adresstext {
  padding: 16px 0 0;
}

.gallery-list {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px 28px;
  padding-left: 0;
  padding: 24px 0 8px;
  list-style: none;
}

.gallery-list a {
  display: inline-block;
  color: var(--text);
  margin-left: 0;
  transform: none;
}

.gallery-list li {
  padding-right: 0;
}

.gallery-contents {
  width: min(1120px, calc(100% - 40px));
  color: var(--text-muted);
  font-size: 1rem;
  padding-top: 24px;
  padding-bottom: 88px;
}

.gallery-contents section {
  margin-bottom: 48px;
}

.gallery-contents iframe {
  width: 100%;
  min-height: 540px;
}

.gallery-policy {
  margin-top: 20px;
}

.gallery-facilitys {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.border {
  border: 1px solid #d8cfbf;
  border-radius: 999px;
  padding: 8px 14px;
  margin: 0;
  background: #fff;
}

.reservation-plan-boxes {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  margin-top: 72px;
  margin-bottom: 72px;
  padding-left: 0;
}

.monthly-plan-boxes {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  width: min(980px, calc(100% - 80px));
  margin: 56px auto 72px;
  padding-left: 0;
}

.plan-detail {
  width: min(860px, calc(100% - 80px));
  margin: 0 auto;
  padding: 64px 0 88px;
}

.plan-detail-hero {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 48px;
}

.plan-detail-hero img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.plan-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 40px;
}

.plan-detail-new-badge {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  width: fit-content;
}

.plan-detail-en {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.08em;
}

.plan-detail-ja {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 4px 0 10px;
}

.plan-detail-price-badge {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.plan-detail-price-badge small {
  font-size: 0.9rem;
  font-weight: 400;
}

.plan-detail-hours-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.8rem;
  padding: 3px 14px;
  border-radius: 20px;
  margin-top: 8px;
  width: fit-content;
}

.plan-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.plan-info-box {
  background: #f9f7f4;
  border-radius: var(--radius);
  padding: 24px 28px;
}

.plan-info-box h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.plan-info-box p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text);
}

.plan-notes {
  background: #fff8f0;
  border: 1px solid #f0e0c8;
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 40px;
}

.plan-notes h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
}

.plan-notes ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-notes li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1em;
  position: relative;
  line-height: 1.7;
}

.plan-notes li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.plan-cta-wrap {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.plan-cta-secondary {
  border: 2px solid var(--dark);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
}

.plan-cta-secondary:hover {
  opacity: 0.8;
}

.reservation-card {
  width: 100%;
  margin: 0;
}

.reservation-card figure,
.reservation-card .snip1418 {
  width: 100%;
}

.snip1418 {
  max-width: none;
  min-width: 0;
  margin: 0;
  border: 1px solid #e8e0d2;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.snip1418 img {
  display: block;
  width: 100%;
  height: auto;
}

.snip1418 figcaption {
  padding: 18px 18px 20px;
}

.snip1418 h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.5;
  color: var(--text);
}

.snip1418 p {
  padding: 0;
  margin-bottom: 10px;
  font-size: 0.92rem;
  line-height: 1.75;
  letter-spacing: 0;
  color: var(--text-muted);
}

.snip1418 .price {
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--text);
}

.reservation-text {
  width: 100%;
  color: var(--text-muted);
  padding: 0;
  font-size: 1rem;
  line-height: 1.9;
}

.reservation-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 24px;
  padding-bottom: 0;
}

.reservation-text h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin: 24px 0 10px;
}

.reservation-images {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 72px;
}

.mail-adress {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 88px;
}

.mail-adress iframe {
  width: 100%;
  max-width: 100%;
  border: 0;
}

.private-contact-section {
  margin-top: 56px;
}

.plan-contact-section {
  margin-top: 56px;
}

.private-contact-section .contact-box {
  max-width: none;
}

.plan-contact-section .contact-box {
  max-width: none;
}

.private-contact-section .contact-lead small {
  display: block;
  margin-top: 8px;
}

.plan-contact-section .contact-lead small {
  display: block;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .bottominfo,
  .reservation-plan-boxes,
  .monthly-plan-boxes {
    grid-template-columns: 1fr;
  }

  .map {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .news-container,
  .gallery-contents,
  .bottominfo,
  .reservation-plan-boxes,
  .monthly-plan-boxes,
  .plan-detail,
  .systeminfo,
  .mail-adress,
  .gallery-list,
  .reservation-images {
    width: min(100%, calc(100% - 24px));
  }

  .news-container {
    padding: 88px 0 64px;
  }

  .newstext,
  .systeminfo li,
  .systeminfo p,
  .reservation-text,
  .adresstext,
  .gallery-policy,
  .mail-adress {
    font-size: 0.95rem;
    line-height: 1.85;
  }

  .systeminfo {
    padding: 48px 0 64px;
  }

  .gallery-list {
    gap: 8px 18px;
    padding: 16px 0 0;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .gallery-list li {
    flex: 0 0 auto;
  }

  .gallery-contents {
    padding-top: 16px;
    padding-bottom: 64px;
  }

  .gallery-contents iframe {
    min-height: 420px;
  }

  .reservation-plan-boxes {
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .monthly-plan-boxes {
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .plan-detail {
    padding-top: 40px;
    padding-bottom: 64px;
  }

  .plan-detail-hero img {
    height: 240px;
  }

  .plan-detail-hero-overlay {
    padding: 24px 20px;
  }

  .plan-detail-ja {
    font-size: 1.5rem;
  }

  .plan-info-grid {
    grid-template-columns: 1fr;
  }

  .reservation-card {
    max-width: 360px;
    margin: 0 auto;
  }

  .reservation-text h2,
  .news-mv h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    line-height: 1.3;
  }

  .snip1418 figcaption {
    padding: 16px;
  }

  .snip1418 h3 {
    font-size: 1rem;
  }

  .snip1418 p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .bottominfo {
    margin-top: 40px;
    margin-bottom: 64px;
    gap: 24px;
  }
}
