:root {
  --bg: #eef2f5;
  --paper: #ffffff;
  --ink: #1e2730;
  --muted: #627181;
  --line: rgba(30, 39, 48, 0.12);
  --brand: #4d715d;
  --brand-deep: #2f4c3d;
  --accent: #6d8576;
  --accent-soft: #e6efe8;
  --sand: #c9b398;
  --shadow: 0 16px 36px rgba(17, 28, 39, 0.1);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1180px;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: linear-gradient(180deg, #f3f6f8 0%, #eef2f5 55%, #e7edf1 100%);
  line-height: 1.75;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.brand { display: inline-flex; align-items: center; max-width: 300px; }
.brand-logo {
  display: block;
  width: 100%;
  max-width: 250px;
  height: auto;
}
.nav-toggle { display: none; border: 0; background: transparent; width: 48px; height: 48px; padding: 0; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
  transition: 0.3s ease;
}
.global-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.global-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--muted);
  transition: 0.25s ease;
}
.global-nav a:hover, .global-nav a.is-current { background: var(--accent-soft); color: var(--accent); }
.booking-menu {
  position: relative;
}
.booking-menu-trigger.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: #b7643f;
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
  border: 0;
  cursor: pointer;
}
.booking-menu-trigger.header-cta::after,
.booking-menu-trigger.floating-reserve-cta::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}
.booking-menu.is-open .booking-menu-trigger.header-cta::after,
.booking-menu.is-open .booking-menu-trigger.floating-reserve-cta::after {
  transform: translateY(2px) rotate(-135deg);
}
.booking-menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(360px, calc(100vw - 28px));
  padding: 16px;
  border-radius: 22px;
  background: rgba(248, 252, 249, 0.98);
  border: 1px solid rgba(31, 47, 61, 0.1);
  box-shadow: 0 24px 44px rgba(17, 28, 39, 0.16);
  backdrop-filter: blur(12px);
}
.booking-menu-primary,
.booking-menu-secondary,
.booking-menu-list a {
  display: flex;
  align-items: center;
  min-height: 54px;
  border-radius: 16px;
  text-decoration: none;
  transition: 0.2s ease;
}
.booking-menu-primary {
  justify-content: center;
  padding: 0 18px;
  background: #b7643f;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(183, 100, 63, 0.22);
}
.booking-menu-primary:hover {
  background: #a95835;
}
.booking-menu-secondary {
  justify-content: center;
  margin-top: 10px;
  padding: 0 18px;
  border: 1px solid rgba(35, 71, 91, 0.18);
  background: rgba(35, 71, 91, 0.06);
  color: var(--brand-deep);
  font-weight: 700;
}
.booking-menu-secondary:hover {
  background: rgba(35, 71, 91, 0.1);
}
.booking-menu-divider {
  height: 1px;
  margin: 14px 0 12px;
  background: rgba(31, 47, 61, 0.1);
}
.booking-menu-list {
  display: grid;
  gap: 8px;
}
.booking-menu-list a {
  padding: 0 16px;
  border: 1px solid rgba(31, 47, 61, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-deep);
  font-weight: 600;
}
.booking-menu-list a:hover {
  background: rgba(35, 71, 91, 0.06);
  border-color: rgba(35, 71, 91, 0.16);
}
.booking-menu-panel [role="menuitem"]:focus-visible,
.booking-menu-trigger:focus-visible {
  outline: 2px solid rgba(35, 71, 91, 0.34);
  outline-offset: 2px;
}
.booking-menu.floating-reserve-cta {
  position: fixed;
  top: 92px;
  right: 28px;
  bottom: auto;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.booking-menu-trigger.floating-reserve-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 28px;
  border-radius: 999px;
  background: #b7643f;
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 34px rgba(18, 34, 48, 0.2);
  border: 0;
  cursor: pointer;
  transition: background-color 0.22s ease, box-shadow 0.22s ease;
}
.booking-menu-trigger.floating-reserve-cta:hover {
  background: #a95835;
  box-shadow: 0 18px 36px rgba(18, 34, 48, 0.24);
}
.booking-menu.floating-reserve-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.page-main { overflow: hidden; }
.hero { padding: 52px 0 44px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 34px; align-items: stretch; }
.hero-full {
  position: relative;
  padding: 0;
  margin: 0 0 34px;
  border-bottom: 1px solid rgba(24, 32, 42, 0.08);
}
.hero-slide {
  position: relative;
  min-height: 0;
  aspect-ratio: auto;
  padding: 0;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 16, 24, 0.34) 0%,
    rgba(7, 16, 24, 0.16) 16%,
    rgba(7, 16, 24, 0) 33%,
    rgba(7, 16, 24, 0) 100%
  );
  z-index: 1;
}
.hero-slide-media,
.hero-slide-media img {
  width: 100%;
  height: auto;
}
.hero-slide-media {
  position: relative;
}
.hero-slide-media img {
  display: block;
  object-fit: contain;
  object-position: center top;
}
.hero-slide-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  justify-content: flex-start;
  min-height: 0;
  padding-top: 110px;
  padding-bottom: 34px;
  z-index: 2;
}
.hero-slider-controls {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  display: flex;
  gap: 10px;
  pointer-events: auto;
}
.hero-slider-button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.2rem;
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.hero-slider-button:hover {
  background: rgba(255, 255, 255, 0.16);
}
.top-middle-visual-section {
  padding: 0 0 8px;
}

.top-middle-visual {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 26px;
  border: 2px solid #001466;
  box-shadow: 0 12px 30px rgba(24, 32, 42, 0.08);
}

.top-middle-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-copy {
  padding: 44px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(255, 249, 239, 0.96)),
    linear-gradient(120deg, rgba(184, 92, 56, 0.12), transparent 40%);
  box-shadow: var(--shadow);
}
.hero-copy-overlay {
  position: relative;
  width: min(100%, 620px);
  min-height: 372px;
  display: flex;
  flex-direction: column;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(7, 16, 24, 0.62), rgba(7, 16, 24, 0.3)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}
.hero-copy-overlay > * {
  position: relative;
  z-index: 2;
}
.hero-copy-overlay .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}
.hero-copy-overlay h1,
.hero-copy-overlay p,
.hero-copy-overlay .hero-actions {
  flex: 0 0 auto;
}
.hero-copy-overlay p {
  margin-top: 18px;
  max-width: 32em;
  padding: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.9;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
  opacity: 0.96;
}
.hero-copy-overlay h1 {
  font-size: clamp(1.45rem, 2.8vw, 2.85rem);
  line-height: 1.34;
  max-width: 100%;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.28);
}
.hero .hero-copy-overlay h1 {
  font-size: clamp(1.45rem, 2.8vw, 2.85rem);
  line-height: 1.34;
  max-width: 100%;
}

@media (min-width: 1360px) {
  .hero-full .slide:first-child .hero-copy-overlay h1 {
    font-size: 2.5rem;
  }
}
.hero .hero-copy-overlay p {
  color: #fff;
}
.hero-copy-overlay .button-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.eyebrow {
  display: none;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(77, 113, 93, 0.12);
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}
.hero h1, .page-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.18;
}
.hero p { margin: 18px 0 0; font-size: 1.02rem; color: #394553; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
}
.button { background: var(--brand); color: #fff; }
.button-secondary { border: 1px solid rgba(24, 32, 42, 0.15); background: rgba(255, 255, 255, 0.7); }
.hero-visual {
  position: relative;
  min-height: 540px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(150deg, rgba(77, 113, 93, 0.34), rgba(184, 92, 56, 0.18)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 900'%3E%3Crect width='800' height='900' fill='%23dfe8ed'/%3E%3Crect x='0' y='560' width='800' height='340' fill='%23d8c6a8'/%3E%3Crect x='100' y='230' width='420' height='390' rx='18' fill='%23f4f5f0'/%3E%3Crect x='150' y='290' width='68' height='94' fill='%23486070'/%3E%3Crect x='244' y='290' width='68' height='94' fill='%23486070'/%3E%3Crect x='338' y='290' width='68' height='94' fill='%23486070'/%3E%3Crect x='150' y='410' width='68' height='94' fill='%23486070'/%3E%3Crect x='244' y='410' width='68' height='94' fill='%23486070'/%3E%3Crect x='338' y='410' width='68' height='94' fill='%23486070'/%3E%3Cpath d='M520 280h130c22 0 40 18 40 40v275H520z' fill='%23f0ebe1'/%3E%3Cpath d='M40 605h720' stroke='%238d3b1b' stroke-width='12'/%3E%3Cpath d='M80 550l640-160' stroke='%23ffffff' stroke-width='7' opacity='.8'/%3E%3Ccircle cx='620' cy='120' r='50' fill='%23fff5dd'/%3E%3C/svg%3E") center/cover no-repeat;
}
.hero-card { position: absolute; background: rgba(248, 252, 249, 0.94); border-radius: 22px; box-shadow: var(--shadow); }
.hero-card.train { right: 24px; top: 22px; max-width: 280px; padding: 20px 22px; }
.hero-card.stats {
  left: 22px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px 22px;
  min-width: 78%;
}
.hero-card strong { display: block; font-size: 1.7rem; color: var(--brand-deep); }
.hero-card span { font-size: 0.86rem; color: var(--muted); }
.hero-card p { margin: 8px 0 0; color: #35404d; line-height: 1.6; }
.section { padding: 40px 0 90px; }
.page-main > .section + .section {
  padding-top: 12px;
}
.section-title { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 28px; }
.section-title h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.8vw, 3rem);
}
.section-title p { margin: 0; max-width: 540px; color: var(--muted); }
.access-page .section-title h2 {
    display: inline-block;
    padding: 0;
    background: none;
  }
.grid-3, .grid-4, .grid-2 { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  background: rgba(245, 250, 246, 0.9);
  border: 1px solid rgba(24, 32, 42, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(24, 32, 42, 0.06);
}
.card-media { aspect-ratio: 16 / 10; background-size: cover; background-position: center; }
.card-body { padding: 24px; }
.card h3, .feature-card h3, .info-card h3 { margin: 0 0 10px; font-size: 1.18rem; }
.card p, .feature-card p, .info-card p, .news-card p { margin: 0; color: var(--muted); }
.info-card h3.with-mark {
  display: flex;
  align-items: center;
  gap: 0.65em;
}
.info-card .info-card-mark {
  color: var(--brand);
  font-size: 0.95em;
  line-height: 1;
  flex: none;
  transform: translateY(0);
}
.top-room-feature-section .section-title p {
  max-width: 760px;
}

.top-room-slider {
  padding: 28px;
  border: 1px solid rgba(31, 47, 61, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 38px rgba(31, 47, 61, 0.08);
}

.top-room-slider-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.top-room-slider-column {
  height: 100%;
}

.top-room-slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.top-room-slider-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 auto;
  min-width: 0;
}

.top-room-slider-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-room-slider-progress {
  min-width: 88px;
  text-align: center;
  font-weight: 700;
  color: #365868;
}

.top-room-slider-button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(31, 47, 61, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #1e2730;
  font-size: 1.15rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.top-room-slider-button:hover {
  transform: translateY(-1px);
  background: #f7fafc;
  border-color: rgba(31, 47, 61, 0.22);
}

.top-room-slider-viewport {
  position: relative;
}

.top-room-slide {
  display: none;
  gap: 18px;
}

.top-room-slide.is-active {
  display: grid;
}

.top-room-slide-media {
  overflow: hidden;
  border-radius: 24px;
  background: #e8edf3;
  aspect-ratio: 16 / 10;
}

.top-room-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.top-room-slide-copy {
  display: grid;
  gap: 12px;
}

.top-room-slider-label .badge {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 9px 18px;
  border-radius: 0;
  background: rgba(29, 78, 102, 0.12);
  color: #1d4e66;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.top-room-slide-copy h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  color: #1d4e66;
}

.top-room-slide-copy p {
  margin: 0;
  line-height: 1.85;
  color: #42515f;
}

.top-room-slider-actions {
  margin-top: 22px;
  justify-content: center;
}
.badge { display: inline-block; margin-bottom: 12px; color: var(--brand-deep); font-size: 0.8rem; letter-spacing: 0.08em; }
.feature-band {
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(77, 113, 93, 0.96), rgba(37, 61, 48, 0.92)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
  color: #eff7fa;
}
.feature-band .section-title p, .feature-band .feature-card p { color: rgba(239, 247, 250, 0.82); }
.feature-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.feature-card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  color: rgba(239, 247, 250, 0.82);
}

.is-hidden-section {
  display: none;
}

.top-gallery-section {
  padding-top: 4px;
}

.top-gallery-shell {
  position: relative;
}

.top-gallery-viewport {
  overflow: hidden;
  padding: 0 44px;
}

.top-gallery-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: topGalleryScroll 48s linear infinite;
}

.top-gallery-track-slow {
  animation-duration: 72s;
}

.top-gallery-track-84 {
  animation-duration: 84s;
}

.top-gallery-item {
  flex: 0 0 320px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(24, 32, 42, 0.08);
  background: #ffffff;
}

.top-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

@keyframes topGalleryScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 11px));
  }
}
.feature-card-list li {
  position: relative;
  padding-left: 14px;
}
.feature-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(239, 247, 250, 0.72);
  transform: translateY(-50%);
}
.selling-points { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 22px; }
.selling-main {
  padding: 30px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(244, 250, 245, 0.94), rgba(255, 255, 255, 0.86)),
    linear-gradient(90deg, rgba(228, 197, 158, 0.18), transparent 60%);
  box-shadow: var(--shadow);
}
.metric-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 24px; }
.metric {
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 32, 42, 0.08);
}
.metric strong { display: block; margin-bottom: 8px; font-size: 1.5rem; color: var(--brand-deep); }
.news-list { display: grid; gap: 16px; }
.news-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(24, 32, 42, 0.08);
}
.news-date { font-size: 0.88rem; color: var(--muted); }
.news-card strong { display: block; margin-bottom: 6px; }
.arrow-link { color: var(--brand-deep); font-weight: 700; }
.info-card, .facility-card, .tour-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(244, 249, 245, 0.84);
  border: 1px solid rgba(24, 32, 42, 0.08);
  box-shadow: 0 8px 24px rgba(24, 32, 42, 0.05);
}
.card,
.news-card,
.info-card,
.facility-card,
.tour-card,
.metric,
.room-copy-panel,
.meeting-preview-card,
.meeting-preview-detail,
.meeting-equipment-card,
.train-route-card,
.train-support-card {
  position: relative;
}
.card::after,
.news-card::after,
.info-card::after,
.facility-card::after,
.tour-card::after,
.metric::after,
.room-copy-panel::after,
.meeting-preview-card::after,
.meeting-preview-detail::after,
.meeting-equipment-card::after,
.train-route-card::after,
.train-support-card::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(77, 113, 93, 0.4), rgba(77, 113, 93, 0.08));
  pointer-events: none;
}
.page-hero { padding: 34px 0 36px; }
.page-hero-inner {
  min-height: min(60vh, 620px);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 42px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      to top right,
      rgba(12, 21, 30, 0.46) 0%,
      rgba(12, 21, 30, 0.46) 32%,
      rgba(12, 21, 30, 0.18) 50%,
      rgba(12, 21, 30, 0) 72%
    ),
    url("image/TOP/TOP_2.jpg") center center / cover no-repeat;
  color: #f8fbfc;
  box-shadow: var(--shadow);
}
.page-hero p { max-width: 760px; margin: 16px 0 0; color: rgba(248, 251, 252, 0.82); }
.page-hero p,
.room-top-copy p,
.meeting-hero-panel p {
  font-size: 1.08rem;
  font-weight: 700;
}
.page-hero-inner,
.room-top-copy,
.meeting-hero-panel {
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.28);
}
.page-hero-inner p,
.room-top-copy p,
.meeting-hero-panel p {
  max-width: 760px;
  color: rgba(248, 251, 252, 0.88);
}
.services-page-hero .page-hero-inner {
  position: relative;
  background: url("image/service/TOP_service.png") center center / cover no-repeat;
}
.contact-page-hero .page-hero-inner {
  position: relative;
  background: url("image/other/foam01.png") center center / cover no-repeat;
}
.privacy-page-hero .page-hero-inner {
  position: relative;
}
.sightseeing-page-hero .page-hero-inner {
  position: relative;
  background: url("image/sightseeing/sightseeing_top.jpg") center center / cover no-repeat;
}
.services-page-hero .page-hero-inner > * {
  position: relative;
  z-index: 1;
}
.privacy-page-hero .page-hero-inner > * {
  position: relative;
  z-index: 1;
}
.contact-page-hero .page-hero-inner > * {
  position: relative;
  z-index: 1;
}
.sightseeing-page-hero .page-hero-inner > * {
  position: relative;
  z-index: 1;
}
.room-top-visual .slide::before,
.privacy-page-hero .page-hero-inner::before,
.services-page-hero .page-hero-inner::before,
.contact-page-hero .page-hero-inner::before,
.sightseeing-page-hero .page-hero-inner::before,
.meeting-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top right,
    rgba(12, 21, 30, 0.46) 0%,
    rgba(12, 21, 30, 0.46) 32%,
    rgba(12, 21, 30, 0.18) 50%,
    rgba(12, 21, 30, 0) 72%
  );
  pointer-events: none;
}
.privacy-page-hero,
.contact-page-hero {
  padding: 34px 0 20px;
}
.privacy-page-hero .page-hero-inner,
.contact-page-hero .page-hero-inner {
  min-height: 280px;
  padding: 28px 34px 26px;
}
.privacy-page-hero .breadcrumbs,
.contact-page-hero .breadcrumbs {
  margin-bottom: 8px;
}
.privacy-page-hero p,
.contact-page-hero p {
  max-width: 720px;
  margin-top: 10px;
}
.breadcrumbs { margin-bottom: 10px; font-size: 0.92rem; color: rgba(248, 251, 252, 0.72); }
.slider { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.slide {
  display: none;
  aspect-ratio: 16 / 8;
  padding: 34px;
  color: #fff;
  background-size: cover;
  background-position: center;
  align-items: end;
}
.slide.is-active { display: flex; }
.slide-caption {
  max-width: 480px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(17, 27, 36, 0.52);
  backdrop-filter: blur(8px);
}
.split-layout { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 24px; }
.room-tabs { display: grid; gap: 14px; }
.room-tab {
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(24, 32, 42, 0.08);
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}
.room-tab.is-active { border-color: rgba(184, 92, 56, 0.32); background: rgba(255, 244, 236, 0.94); }
.room-panel {
  display: none;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(245, 250, 246, 0.9);
  border: 1px solid rgba(24, 32, 42, 0.08);
}
.room-panel.is-active { display: block; }
.room-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-bottom: 22px; }
.room-gallery div { aspect-ratio: 4 / 3; border-radius: 14px; background-size: cover; background-position: center; }
.spec-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.spec { padding: 16px 18px; border-radius: 14px; background: rgba(255, 255, 255, 0.84); border: 1px solid rgba(24, 32, 42, 0.08); }
.list-clean { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.timeline { display: grid; gap: 16px; }
.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(244, 248, 245, 0.86);
  border: 1px solid rgba(24, 32, 42, 0.08);
}
.timeline-item strong { color: var(--brand-deep); }
.cta-banner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(243, 238, 232, 0.98), rgba(231, 241, 246, 0.98)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), transparent);
  color: var(--brand-deep);
  border: 1px solid rgba(31, 47, 61, 0.08);
  box-shadow: 0 14px 30px rgba(17, 28, 39, 0.08);
}
.cta-banner p { color: #4b5865; }

.cta-banner-media {
  aspect-ratio: 1071 / 811;
  margin-bottom: 20px;
  border-radius: 18px;
  background-size: cover;
  background-position: center center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}
.site-footer {
  margin-top: 40px;
  padding: 54px 0 28px;
  color: rgba(255, 255, 255, 0.84);
  background: linear-gradient(
    to right,
    #2E6F68 0%,
    #1F4D3A 50%,
    #18382B 100%
  );
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-bottom: 26px;
}
.footer-block {
  min-width: 0;
}
.footer-brand { grid-column: 1; grid-row: 1; }
.footer-detail { grid-column: 2; grid-row: 1; }
.footer-access { grid-column: 3; grid-row: 1; }
.footer-sitemap-left { grid-column: 1; grid-row: 2; }
.footer-sitemap-right { grid-column: 2; grid-row: 2; }
.footer-support { grid-column: 3; grid-row: 2; }
.footer-partner-left { grid-column: 1; grid-row: 3; }
.footer-partner-center { grid-column: 2; grid-row: 3; }
.footer-partner-right { grid-column: 3; grid-row: 3; }
.footer-partner-row {
  display: grid;
  grid-template-rows: auto 132px;
  align-self: stretch;
  padding-top: 18px;
}
.footer-partner-left {
  position: relative;
}
.footer-partner-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(300% + 48px);
  border-top: 2px solid rgba(255, 255, 255, 0.22);
}
.footer-partner-row h4 {
  min-height: 1.6em;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0;
}
.footer-grid h3, .footer-grid h4 { margin-top: 0; color: #fff; }
.footer-logo {
  display: block;
  width: 100%;
  max-width: 280px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-detail-list {
  display: grid;
  gap: 10px;
}
.footer-detail-row {
  display: grid;
  grid-template-columns: 4.5em 1em 1fr;
  align-items: start;
}
.footer-detail-label,
.footer-detail-colon {
  color: rgba(255, 255, 255, 0.84);
}
.footer-detail-value {
  line-height: 1.7;
}
.footer-tel-mobile {
  display: none;
  color: inherit;
  text-decoration: none;
}
.footer-links a { color: inherit; }
.footer-actions { margin-top: 18px; }
.footer-button {
  min-height: 46px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-deep);
}
.footer-legal {
  margin-top: 20px;
}
.footer-banner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  height: 132px;
  margin-top: 0;
  align-self: end;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
}
.footer-banner-image {
  align-items: flex-end;
  background: transparent;
}
.footer-banner-image img {
  display: block;
  align-self: flex-end;
  width: 100%;
  height: auto;
  border-radius: 18px;
}
.footer-banner-guestone {
  padding: 16px;
  justify-content: center;
  align-items: center;
  background: #F1F0E7;
}
.footer-banner-guestone img {
  display: block;
  width: 66.666%;
  max-width: 186px;
  height: auto;
}
.footer-note { padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.9rem; color: rgba(255, 253, 248, 0.62); }
.map-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: hidden;
}
.map-frame {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(180deg, rgba(77, 113, 93, 0.18), rgba(77, 113, 93, 0.18)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 450'%3E%3Crect width='800' height='450' fill='%23e7ece9'/%3E%3Cpath d='M0 320h800' stroke='%23c9d4cf' stroke-width='60'/%3E%3Cpath d='M320 0v450' stroke='%23c9d4cf' stroke-width='44'/%3E%3Cpath d='M110 100h580' stroke='%2394b1ba' stroke-width='18' stroke-dasharray='16 18'/%3E%3Cpath d='M60 380h690' stroke='%238d3b1b' stroke-width='14'/%3E%3Ccircle cx='440' cy='235' r='26' fill='%23b85c38'/%3E%3C/svg%3E") center/cover no-repeat;
}

.grid-2 > .cta-banner h2,
.grid-2 > .map-card h2 {
  margin: 0 0 10px;
  min-height: 0;
}

.grid-2 > .map-card h3 {
  margin: 0 0 10px;
  min-height: 3.2em;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1.35;
}

.feature-band .section-title h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.6rem);
  line-height: 1.3;
}

.feature-band .section-title > div p {
  margin: 14px 0 0;
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(239, 247, 250, 0.82);
}

.grid-2 > .cta-banner p,
.grid-2 > .map-card .card-body p {
  flex-grow: 1;
}

.grid-2 > .cta-banner h2 + p,
.grid-2 > .map-card .card-body h2 + p {
  margin-top: 4px;
}

.grid-2 > .map-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.grid-2 > .map-card {
  padding: 32px;
}

.grid-2 > .map-card .map-frame {
  aspect-ratio: 1071 / 811;
  margin-bottom: 20px;
  border-radius: 18px;
  overflow: hidden;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.grid-2 > .map-card .card-body {
  padding: 0;
}

.grid-2 > .cta-banner .button-row,
.grid-2 > .map-card .button-row {
  margin-top: auto;
}

.grid-2 > .cta-banner .button-row,
.grid-2 > .map-card .card-body .button-row {
  padding-top: 18px;
}
.tour-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.tour-card { position: relative; display: grid; grid-template-columns: 170px 1fr; gap: 18px; align-items: center; }
.tour-thumb { aspect-ratio: 1 / 1; border-radius: 18px; background-size: cover; background-position: center; }
.tour-card-number {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(77, 113, 93, 0.94), rgba(47, 76, 61, 0.92)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 60%);
  color: #f8fbfc;
  font-family: var(--serif);
  font-size: 1.35rem;
  box-shadow: 0 10px 24px rgba(17, 28, 39, 0.18);
}
.tour-card-textonly {
  grid-template-columns: 96px 1fr;
  align-items: stretch;
  padding: 0;
}

.tour-text-badge {
  display: grid;
  place-items: center;
  min-height: 100%;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(77, 113, 93, 0.94), rgba(47, 76, 61, 0.92)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 60%);
  color: #f8fbfc;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-mosaic-hero {
  padding: 42px 0 28px;
}

.service-hero-stage {
  position: relative;
  height: 620px;
  min-height: 620px;
  padding: 22px;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(244, 248, 250, 0.72)),
    linear-gradient(135deg, rgba(77, 113, 93, 0.05), rgba(77, 113, 93, 0));
  box-shadow: var(--shadow);
}

.service-hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 78%, rgba(8, 18, 26, 0.42), transparent 34%),
    linear-gradient(180deg, rgba(9, 18, 24, 0.06) 0%, rgba(9, 18, 24, 0.28) 100%);
  z-index: 1;
  pointer-events: none;
}

.service-hero-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(10, minmax(28px, 1fr));
  gap: 10px;
  padding: 20px;
}

.service-hero-tile {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 28px rgba(17, 28, 39, 0.08);
  transform-origin: center center;
}

.service-hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.service-hero-fit-contain {
  background: rgba(255, 255, 255, 0.9);
}

.service-hero-fit-contain img {
  object-fit: contain;
}

.service-hero-left-focus img {
  object-position: 24% center;
}

.service-hero-pattern-1 {
  grid-column: 1 / span 4;
  grid-row: 1 / span 4;
  transform: rotate(-3.2deg) translate(4px, -2px);
  z-index: 5;
}

.service-hero-pattern-2 {
  grid-column: 3 / span 5;
  grid-row: 1 / span 5;
  transform: rotate(1.4deg) translate(-4px, 0);
  z-index: 2;
}

.service-hero-pattern-2 img {
  object-position: 57% center;
}

.service-hero-pattern-3 {
  grid-column: 8 / span 3;
  grid-row: 1 / span 4;
  transform: rotate(-1.8deg) translate(2px, 3px);
}

.service-hero-pattern-4 {
  grid-column: 10 / span 3;
  grid-row: 1 / span 5;
  transform: rotate(2.6deg) translate(-3px, -1px);
}

.service-hero-pattern-4 img {
  object-position: center center;
}

.service-hero-pattern-5 {
  grid-column: 1 / span 3;
  grid-row: 5 / span 3;
  transform: rotate(1.8deg) translate(6px, -8px);
  z-index: 3;
}

.service-hero-pattern-6 {
  grid-column: 5 / span 4;
  grid-row: 6 / span 3;
  transform: rotate(-2.2deg) translate(-2px, -6px);
  z-index: 3;
}

.service-hero-pattern-7 {
  grid-column: 7 / span 4;
  grid-row: 5 / span 4;
  transform: rotate(1.5deg) translate(-8px, 2px);
  z-index: 3;
}

.service-hero-pattern-8 {
  grid-column: 10 / span 3;
  grid-row: 5 / span 3;
  transform: rotate(-1.5deg) translate(2px, -6px);
}

.service-hero-pattern-9 {
  grid-column: 9 / span 4;
  grid-row: 7 / span 4;
  transform: rotate(2.8deg) translate(-10px, -10px);
  z-index: 4;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  min-height: 620px;
  pointer-events: none;
}

.service-hero-copy {
  position: absolute;
  left: 42px;
  bottom: 42px;
  width: min(100%, 720px);
  padding: 0;
  color: #f8fbfc;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.28);
}

.service-hero-copy .breadcrumbs {
  color: rgba(248, 251, 252, 0.76);
}

.service-hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.24;
  color: #fff;
}

.service-hero-copy p {
  margin: 14px 0 0;
  max-width: 36em;
  color: rgba(248, 251, 252, 0.88);
}

.service-card .card-media {
  aspect-ratio: 16 / 10;
}

.top-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.top-plan-grid > .card,
.top-news-grid > .top-news-card {
  display: block;
}

.top-plan-grid > .card.is-hidden,
.top-news-grid > .top-news-card.is-hidden {
  display: none;
}

.top-news-section {
  padding-bottom: 28px;
}

.top-section-carousel-controls {
  display: none;
  justify-content: flex-end;
  gap: 12px;
  margin: -6px 0 18px;
}

.top-news-carousel-controls {
  margin-top: -4px;
}

.top-section-carousel-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(31, 47, 61, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #1e2730;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.top-section-carousel-button:hover {
  transform: translateY(-1px);
  background: #f7fafc;
  border-color: rgba(31, 47, 61, 0.22);
}

.top-news-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(245, 250, 246, 0.9);
  border: 1px solid rgba(24, 32, 42, 0.08);
  box-shadow: 0 12px 30px rgba(24, 32, 42, 0.06);
}

.top-news-media {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center center;
}

.top-news-body {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.top-news-body strong,
.top-news-body p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.top-news-body strong {
  min-height: 3.2em;
  font-size: 1.08rem;
  line-height: 1.6;
  -webkit-line-clamp: 2;
}

.top-news-body p {
  min-height: 4.9em;
  color: var(--muted);
  line-height: 1.65;
  -webkit-line-clamp: 3;
}

.top-news-link-section {
  padding-top: 0;
  padding-bottom: 28px;
}

.top-news-link-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: -8px;
}

.top-news-link-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 68px;
  padding: 0 92px 0 28px;
  background: linear-gradient(90deg, #2d58d6 0%, #001466 100%);
  color: #ffffff;
  font-size: 1.24rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 14px 28px rgba(0, 20, 102, 0.22);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 50%, calc(100% - 34px) 100%, 0 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.top-news-link-cta::before {
  content: "";
  position: absolute;
  right: 26px;
  top: 50%;
  width: 28px;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}

.top-news-link-cta::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.top-news-link-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 20, 102, 0.28);
  filter: saturate(1.08);
}

.footer-map {
  overflow: hidden;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.access-map-frame {
  overflow: hidden;
  min-height: 180px;
}

.access-map {
  border: 0;
  border-radius: 0;
  min-height: 320px;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.access-route-grid,
.parking-grid {
  display: grid;
  gap: 18px;
}


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

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

.parking-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100%;
}

.parking-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 12px;
}

.parking-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.parking-item p {
  flex-grow: 1;
}

.access-route-card {
  padding: 22px 20px;
  border-radius: 18px;
  background: #f7fafb;
  border: 1px solid rgba(24, 32, 42, 0.08);
  box-shadow: none;
}

.access-route-card strong,
.access-route-card span,
.access-route-card em {
  display: block;
}

.access-route-card strong {
  margin-bottom: 10px;
  font-size: 1.06rem;
}

.access-route-card span {
  color: var(--muted);
  line-height: 1.65;
}

.access-route-card em {
  margin-top: 12px;
  font-style: normal;
  color: var(--brand-deep);
  font-weight: 700;
}

.access-train-panel {
  display: grid;
  gap: 22px;
  padding: 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(24, 32, 42, 0.08);
  box-shadow: 0 10px 30px rgba(24, 32, 42, 0.05);
}

.access-train-panel .info-card {
  background: #f7fafb;
}

.access-steps {
  display: grid;
  gap: 6px;
  margin-top: 18px;
}

.access-steps span {
  position: relative;
  display: block;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 32, 42, 0.08);
}

.access-steps span:not(:last-child)::after {
  content: "↓";
  display: block;
  margin-top: 10px;
  text-align: center;
  color: var(--brand-deep);
  font-weight: 700;
}

.access-map-bottom {
  min-height: 420px;
}

.access-map-bottom iframe {
  min-height: 420px;
}

/* Override access styles with stable ASCII-safe rules. */
.access-steps span {
  background: #f7fafb;
}

.access-steps span:not(:last-child)::after {
      content: "↓";
      display: block;
      margin-top: 6px;
      text-align: center;
      color: var(--brand-deep);
      font-size: 1.15rem;
      line-height: 1;
      font-weight: 700;
    }

.access-page .access-steps .is-arrow-only {
    min-height: 54px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.access-page .access-steps .is-arrow-only::after {
    content: "↓";
    margin-top: 0;
    font-size: 1.5rem;
    line-height: 54px;
  }
@media (max-width: 1080px) {
  .top-gallery-viewport {
    padding: 0 32px;
  }

  .top-gallery-item {
    flex-basis: 280px;
  }

  .top-room-slider {
    padding: 24px 20px;
  }

  .top-section-carousel-controls {
    display: flex;
  }

  .hero-grid, .selling-points, .split-layout, .footer-grid, .grid-4 { grid-template-columns: 1fr; }
  .grid-3, .grid-2, .tour-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-toggle { display: inline-block; }
  .header-row {
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    flex-wrap: wrap;
  }
  .brand {
    order: 1;
    max-width: 190px;
  }
  .booking-menu.header-cta {
    display: flex;
    order: 2;
    margin: 0 0 0 auto;
    flex: 0 1 auto;
  }
  .booking-menu-trigger.header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.92rem;
  }
  .booking-menu-trigger.header-cta::after {
    width: 8px;
    height: 8px;
    margin-left: 8px;
  }
  .nav-toggle {
    order: 3;
    margin-left: 0;
  }
  .global-nav {
    order: 4;
    width: 100%;
    display: none;
  }
  .global-nav.is-open {
    display: block;
    padding: 12px 0 4px;
  }
  .global-nav ul {
    flex-direction: column;
    gap: 6px;
    padding-top: 8px;
  }
  .global-nav a {
    width: 100%;
    justify-content: flex-start;
    padding: 0 14px;
  }
  .booking-menu.floating-reserve-cta {
    left: 14px;
    right: 14px;
    top: calc(8px + env(safe-area-inset-top, 0px));
    bottom: auto;
    width: auto;
    display: flex;
    justify-content: flex-end;
  }
  .booking-menu-trigger.floating-reserve-cta {
    min-height: 52px;
    padding: 0 18px;
    font-size: 1rem;
  }
  .booking-menu.floating-reserve-cta .booking-menu-panel {
    left: 0;
    right: 0;
    width: auto;
    top: calc(100% + 10px);
  }
  .hero-slide-inner {
    padding-top: 72px;
    padding-bottom: 26px;
  }
  .hero-copy-overlay {
    width: min(100%, 560px);
  }
  .service-grid,
  .access-route-grid,
  .parking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .brand-logo {
    max-width: 220px;
  }
  .footer-brand,
  .footer-detail,
  .footer-access,
  .footer-sitemap-left,
  .footer-sitemap-right,
  .footer-support,
  .footer-partner-left,
  .footer-partner-center,
  .footer-partner-right {
    grid-column: auto;
    grid-row: auto;
    align-self: start;
  }
  .footer-partner-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-height: 0;
  }
  .footer-partner-row h4 {
    width: 100%;
    min-height: 0;
    margin-bottom: 0;
    text-align: left;
  }
  .footer-partner-left::before {
    width: 100%;
  }
  .footer-banner-link {
    align-self: center;
    height: auto;
    min-height: 116px;
    margin-top: 0;
    width: 100%;
    justify-content: center;
  }
  .footer-partner-left .footer-banner-image,
  .footer-partner-center .footer-banner-image {
    width: min(100%, 480px);
    max-width: 480px;
  }
  .footer-partner-right .footer-banner-image {
    width: min(100%, 400px);
    max-width: 400px;
  }
  .footer-partner-left .footer-banner-image img,
  .footer-partner-center .footer-banner-image img,
  .footer-partner-right .footer-banner-image img {
    width: 100%;
    max-width: 100%;
  }
  .footer-sitemap-right h4 {
    display: none;
  }
}
@media (max-width: 760px) {
  .top-gallery-viewport {
    padding: 0 18px;
  }

  .top-gallery-track {
    gap: 16px;
    animation-duration: 54s;
  }

  .top-gallery-track-84 {
    animation-duration: 84s;
  }

  .top-gallery-item {
    flex-basis: 248px;
    border-radius: 18px;
  }

  .top-room-slider-grid {
    grid-template-columns: 1fr;
  }

  .top-news-grid {
    grid-template-columns: 1fr;
  }

  .top-section-carousel-controls {
    justify-content: center;
    margin: 6px 0 16px;
  }

  .top-room-slider {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .top-room-slider-head {
    margin-bottom: 16px;
  }

  .top-room-slider-progress {
    min-width: 72px;
    font-size: 0.92rem;
  }

  .top-room-slider-button {
    width: 42px;
    height: 42px;
  }

  .top-section-carousel-button {
    width: 42px;
    height: 42px;
  }

  .top-room-slide {
    gap: 18px;
  }

  .top-room-slide-copy h3 {
    font-size: 1.35rem;
  }

  .top-room-slide-media {
    aspect-ratio: 4 / 3;
  }

  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-row {
    gap: 10px;
  }
  .brand {
    max-width: 170px;
  }
  .booking-menu.floating-reserve-cta {
    top: calc(6px + env(safe-area-inset-top, 0px));
  }
  .hero-copy, .page-hero-inner, .feature-band, .cta-banner { padding: 28px; }
  .hero-full {
    margin-bottom: 18px;
    padding-bottom: 0;
  }
  .hero-full .slide.is-active {
    display: block;
  }
  .hero-slide {
    min-height: 0;
  }
  .hero-slide-media {
    position: relative;
    inset: auto;
  }
  .hero-slide-media img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: top center;
  }
  .hero-slide-inner {
    position: relative;
    inset: auto;
    min-height: 0;
    padding: 0;
    margin-top: -44px;
    align-items: stretch;
    justify-content: flex-start;
  }
  .hero-slider-controls {
    gap: 8px;
  }
  .hero-slider-button {
    width: 44px;
    height: 44px;
  }
  .hero-copy-overlay {
    width: 100%;
    max-width: none;
    padding: 20px 18px;
    border-radius: 24px;
    margin: 0 auto;
    min-height: 292px;
    display: flex;
    flex-direction: column;
  }
  .hero-copy-overlay h1 {
    font-size: clamp(1.5rem, 7vw, 2.15rem);
    line-height: 1.34;
  }
  .hero-copy-overlay p {
    font-size: 0.92rem;
    line-height: 1.75;
  }
  .hero-actions {
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: auto;
    padding-right: 106px;
  }
  .hero-actions .button,
  .hero-actions .button-secondary {
    min-height: 46px;
    min-width: 0;
    padding: 0 14px;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  .hero-visual { min-height: 420px; }
  .hero-card.stats, .hero-card.train { position: static; margin: 18px; }
  .hero-card.stats { grid-template-columns: 1fr; min-width: auto; }
  .grid-3, .grid-2, .tour-grid, .room-gallery, .spec-list, .metric-list { grid-template-columns: 1fr; }
  .news-card, .tour-card, .timeline-item { grid-template-columns: 1fr; }
  .slide { aspect-ratio: auto; }
  .service-grid,
  .access-route-grid,
  .parking-grid {
    grid-template-columns: 1fr;
  }
  .service-mosaic-hero {
    padding: 24px 0 18px;
  }
  .service-hero-stage {
    min-height: 0;
    height: auto;
    padding: 18px;
    border-radius: 20px;
  }
  .service-hero-mosaic {
    position: relative;
    inset: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 10px;
    padding: 0;
  }
  .service-hero-tile {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 132px;
    transform: none !important;
    border-radius: 16px;
  }
  .service-hero-pattern-2,
  .service-hero-pattern-9 {
    grid-column: span 2 !important;
    min-height: 168px;
  }
  .service-hero-overlay {
    min-height: 0;
    padding: 18px;
  }
  .service-hero-copy {
    left: 18px;
    right: 18px;
    bottom: 24px;
    width: auto;
    padding: 0;
  }
    .section {
      padding: 28px 0 56px;
  }
  .section-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
  }
  .section-title p {
    max-width: none;
  }
  .access-train-panel {
    padding: 18px;
  }
  .brand {
    max-width: 190px;
  }
  .brand-logo {
    max-width: 190px;
  }
  .page-hero-inner {
    min-height: 40vh;
    padding: 28px 22px;
  }
  .footer-grid {
    gap: 18px;
  }
  .footer-sitemap-right {
    margin-top: 0;
  }
  .footer-tel-desktop {
    display: none;
  }
  .footer-tel-mobile {
    display: inline;
  }
  .footer-detail-row {
    grid-template-columns: 4.5em 1em 1fr;
  }
}

@media (max-width: 1080px) and (min-width: 761px) {
  .hero-full {
    padding-bottom: 0;
  }

  .hero-full .slide.is-active {
    display: block;
  }

  .hero-slide {
    min-height: 0;
    padding: 0;
  }

  .slide {
    aspect-ratio: auto;
  }

  .hero-slide-media {
    position: relative;
  }

  .hero-slide-media img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: top center;
  }

  .hero-slide-inner {
    position: relative;
    inset: auto;
    padding: 0;
    margin-top: -60px;
    margin-bottom: 40px;
    min-height: 0;
    align-items: stretch;
    justify-content: flex-start;
  }

  .hero-copy-overlay {
    width: 100%;
    max-width: none;
    padding: 20px 18px;
    border-radius: 24px;
    min-height: 336px;
    display: flex;
    flex-direction: column;
  }

  .hero-actions {
    margin-top: auto;
    padding-right: 106px;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    padding-right: 92px;
  }

  .hero-slider-button {
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
  }
}

.room-page-hero {
  padding-bottom: 12px;
}

.room-top-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.room-top-visual .slide {
  min-height: min(60vh, 620px);
  padding: 42px;
  position: relative;
  background-size: cover;
  background-position: center center;
}

.room-top-copy {
  position: absolute;
  top: 42px;
  left: 42px;
  bottom: 42px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  max-width: 720px;
  color: #f8fbfc;
}

.room-top-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.18;
}

.room-top-copy p {
  margin-top: 14px;
  color: rgba(248, 251, 252, 0.88);
}

.room-overview {
  padding-top: 12px;
}

.room-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.room-type-card {
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(245, 250, 246, 0.9);
  border: 1px solid rgba(24, 32, 42, 0.08);
  box-shadow: 0 10px 30px rgba(24, 32, 42, 0.05);
}

.room-type-card strong {
  display: block;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.room-type-card span {
  display: none;
}

.room-section {
  padding-top: 18px;
  padding-bottom: 44px;
}

.room-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.room-showcase,
.room-copy-panel {
  background: rgba(245, 250, 246, 0.92);
  border: 1px solid rgba(24, 32, 42, 0.08);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(24, 32, 42, 0.07);
}

.room-showcase {
  padding: 20px;
}

.room-copy-panel {
  padding: 28px;
  position: sticky;
  top: 108px;
}

.room-copy-panel h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.room-copy-panel p {
  margin: 0 0 24px;
  color: #44505d;
}

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

.room-spec-item {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(24, 32, 42, 0.08);
}

.room-spec-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-deep);
}

.room-slider-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #dce4e8;
}

.room-slides {
  position: relative;
}

.room-image-slide {
  display: none;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.room-image-slide.is-active {
  display: block;
}

.room-image-slide img {
  width: 100%;
  height: min(60vw, 520px);
  object-fit: cover;
  object-position: center center;
}

.room-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 16, 24, 0.58);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.room-slider-arrow.prev {
  left: 16px;
}

.room-slider-arrow.next {
  right: 16px;
}

.room-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.room-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}

.room-thumb.is-active {
  border-color: var(--brand);
}

.room-thumb img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  object-position: center center;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 36px;
  background: rgba(7, 16, 24, 0.78);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-inner {
  max-width: min(1200px, calc(100vw - 120px));
  max-height: calc(100vh - 120px);
}

.lightbox-inner img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
}

.lightbox-nav.prev {
  left: 24px;
}

.lightbox-nav.next {
  right: 24px;
}

@media (max-width: 1080px) {
  .room-type-grid,
  .room-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .room-copy-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .hero-slide::after {
    background: linear-gradient(
      90deg,
      rgba(7, 16, 24, 0.34) 0%,
      rgba(7, 16, 24, 0.16) 16%,
      rgba(7, 16, 24, 0) 33%,
      rgba(7, 16, 24, 0) 100%
    );
  }

  .room-type-grid,
  .room-detail-grid,
  .room-spec-grid {
    grid-template-columns: 1fr;
  }

  .tour-card-textonly {
    grid-template-columns: 1fr;
  }

  .tour-text-badge {
    min-height: 92px;
  }

  .tour-card-number {
    top: 12px;
    left: 12px;
    width: 46px;
    height: 46px;
    font-size: 1.12rem;
    border-radius: 14px;
  }

  .room-top-visual .slide {
    min-height: 46vh;
    padding: 24px 18px;
  }

  .room-top-copy {
    left: 18px;
    right: 18px;
    bottom: 24px;
    max-width: none;
  }

  .room-showcase,
  .room-copy-panel {
    padding: 18px;
  }

  .room-section {
    padding-bottom: 30px;
    border-bottom: 8px solid rgba(35, 71, 91, 0.62);
  }

  .room-image-slide {
    cursor: default;
  }

  .room-image-slide img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .room-slider-arrow {
    width: 40px;
    height: 40px;
  }

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

  .room-thumb img {
    height: 58px;
  }

  .lightbox {
    display: none;
  }
}

.meeting-hero-panel {
  position: relative;
  overflow: hidden;
  min-height: min(60vh, 620px);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 42px;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    url("image/meeting/meeting_TOP.png") center center / cover no-repeat;
  box-shadow: var(--shadow);
}
.meeting-hero-panel > * {
  position: relative;
  z-index: 1;
}

.meeting-hero-panel p {
  color: rgba(248, 251, 252, 0.88);
}

.meeting-intro {
  padding-top: 24px;
  padding-bottom: 24px;
}

.meeting-preview-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: start;
  min-width: 0;
}

.meeting-preview-wrap > * {
  min-width: 0;
}

.meeting-page .page-main {
  overflow: visible;
}

.meeting-preview-card,
.meeting-preview-detail {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(31, 47, 61, 0.08);
  box-shadow: 0 14px 32px rgba(17, 28, 39, 0.06);
}

.meeting-preview-card {
  overflow: hidden;
}

.meeting-preview-lead {
  margin: 0 0 16px;
  color: var(--muted);
}

.meeting-preview-table-wrap {
  width: 100%;
  max-width: 100%;
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 18px;
  border: 1px solid rgba(31, 47, 61, 0.08);
  background: #fffdfa;
}

.meeting-preview-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  font-size: 0.96rem;
}

.meeting-preview-table th,
.meeting-preview-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(31, 47, 61, 0.08);
  text-align: center;
  vertical-align: middle;
}

.meeting-preview-table th {
  padding: 6px 8px;
  background: #d8c3a1;
  color: #263744;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.1;
  vertical-align: middle;
  white-space: nowrap;
}

.meeting-preview-count-head {
  min-width: 86px;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.meeting-preview-count-label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.76rem;
  line-height: 1.05;
  letter-spacing: 0.04em;
}

.meeting-preview-count-subheads {
  display: grid;
  grid-template-columns: 1fr;
  padding-top: 5px;
  border-top: 1px solid rgba(160, 130, 90, 0.4);
}

.meeting-preview-count-subheads span {
  display: block;
  font-size: 0.78rem;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.meeting-preview-count-subheads span + span {
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid rgba(160, 130, 90, 0.34);
}

.meeting-preview-count-cell {
  min-width: 74px;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.meeting-preview-count-cell span {
  display: block;
  line-height: 1.35;
}

.meeting-preview-count-cell span + span {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid rgba(31, 47, 61, 0.12);
}

.meeting-preview-table td:first-child,
.meeting-preview-table th:first-child {
  text-align: left;
  padding-left: 18px;
}

.meeting-preview-table th:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  background: #d8c3a1;
  box-shadow: 1px 0 0 rgba(31, 47, 61, 0.08);
}

.meeting-preview-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #fffdfa;
  box-shadow: 1px 0 0 rgba(31, 47, 61, 0.08);
}

.meeting-preview-table tbody tr:nth-child(even) {
  background: rgba(245, 241, 232, 0.64);
}

.meeting-preview-table tbody tr:nth-child(even) td:first-child {
  background: rgba(245, 241, 232, 0.96);
}

.meeting-preview-table button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--brand-deep);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  transition: 0.2s ease;
}

.meeting-preview-table button::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  opacity: 0.5;
  transition: 0.2s ease;
}

.meeting-preview-table button:hover::after,
.meeting-preview-table button.is-active::after {
  opacity: 1;
  transform: translateX(2px) rotate(-45deg);
}

.meeting-preview-table button.is-active {
  color: #8b5a37;
  background: rgba(139, 90, 55, 0.1);
  border-color: rgba(139, 90, 55, 0.22);
  box-shadow: inset 0 -2px 0 rgba(139, 90, 55, 0.15);
}

.meeting-preview-table-notes {
  display: grid;
  gap: 4px;
  margin-top: 12px;
}

.meeting-preview-table-note {
  position: relative;
  margin: 0 4px;
  padding-left: 20px;
  color: #52606c;
  font-size: 0.9rem;
  line-height: 1.7;
}

.meeting-preview-table-note::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5px;
  background: #b56a43;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.meeting-preview-detail {
  position: sticky;
  top: 108px;
  overflow: hidden;
}

.meeting-preview-visual {
  margin: -24px -24px 22px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8edf0;
}

.meeting-preview-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.meeting-preview-detail h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
  color: var(--brand-deep);
}

.meeting-preview-meta {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.meeting-preview-meta div {
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 8px;
  color: #41505d;
  font-size: 0.96rem;
}

.meeting-preview-meta strong {
  color: var(--brand-deep);
  font-weight: 700;
}

.meeting-preview-copy {
  margin: 0;
  color: #4b5865;
  line-height: 1.9;
}

.meeting-preview-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(31, 47, 61, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.meeting-room-block {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(24, 32, 42, 0.1);
}

.meeting-room-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.meeting-room-header {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 24px;
}

.meeting-room-visual {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(24, 32, 42, 0.08);
}

.meeting-room-visual img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center center;
}

.meeting-room-copy {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(24, 32, 42, 0.08);
  box-shadow: 0 12px 30px rgba(24, 32, 42, 0.05);
}

.meeting-room-copy h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--brand-deep);
}

.meeting-room-copy p {
  margin: 0;
  color: #4b5865;
}

.meeting-intro .section-title {
  position: relative;
  align-items: stretch;
  gap: 28px;
  margin-bottom: 0;
  padding: 30px 34px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(248, 252, 249, 0.96), rgba(237, 245, 239, 0.92));
  border: 1px solid rgba(201, 176, 138, 0.28);
  box-shadow: 0 16px 36px rgba(24, 32, 42, 0.06);
  overflow: hidden;
}

.meeting-intro .section-title::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, rgba(35, 71, 91, 0.86), rgba(181, 106, 67, 0.7));
}

.meeting-intro .section-title > div,
.meeting-intro .section-title > p {
  position: relative;
  z-index: 1;
}

.meeting-intro .section-title > div {
  flex: 1 1 48%;
  padding-left: 8px;
}

.meeting-intro .section-title > p {
  flex: 1 1 52%;
  align-self: center;
  max-width: 640px;
  padding: 18px 0 18px 24px;
  border-left: 1px solid rgba(150, 126, 91, 0.22);
  color: #42515f;
  font-size: 1.03rem;
  line-height: 2;
}

.meeting-intro .section-title h2 {
  color: var(--brand-deep);
  max-width: 7.2em;
  line-height: 1.28;
}

.meeting-table-wrap {
  overflow-x: auto;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(24, 32, 42, 0.08);
  box-shadow: 0 12px 30px rgba(24, 32, 42, 0.05);
}

.meeting-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.meeting-table th,
.meeting-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(24, 32, 42, 0.08);
  text-align: center;
}

.meeting-table th {
  background: #243a48;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.meeting-table tbody tr:nth-child(even) {
  background: #f7fafb;
}

.meeting-main-row {
  background: #eef4f7;
  font-weight: 700;
}

.meeting-plan-section {
  padding-top: 32px;
}

.meeting-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.meeting-plan-card {
  padding: 30px 24px;
  border-radius: 22px;
  background: rgba(248, 252, 249, 0.92);
  border: 1px solid rgba(24, 32, 42, 0.08);
  box-shadow: 0 12px 30px rgba(24, 32, 42, 0.05);
  text-align: center;
}

.meeting-plan-card h3 {
  margin: 0 0 14px;
  color: var(--brand-deep);
  font-size: 1.18rem;
}

.meeting-plan-card p {
  margin: 0;
  color: #4b5865;
  line-height: 1.9;
}

.meeting-note {
  margin-top: 24px;
  padding: 28px;
  border-radius: 22px;
  background: #fff6f1;
  border: 1px solid rgba(184, 92, 56, 0.2);
}

.meeting-note h3 {
  margin: 0 0 10px;
  color: #8d3b1b;
}

.meeting-note p {
  margin: 0 0 12px;
}

.meeting-note ul {
  margin: 0;
  padding-left: 18px;
}

.meeting-note-small {
  margin-top: 12px;
  font-size: 0.92rem;
  color: #5a6470;
}

.meeting-equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.meeting-equipment-card {
  padding: 28px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(24, 32, 42, 0.08);
  box-shadow: 0 12px 30px rgba(24, 32, 42, 0.05);
}

.meeting-equipment-card-paid {
  background: rgba(244, 247, 249, 0.96);
}

.meeting-equipment-card h3 {
  margin: 0 0 16px;
  color: var(--brand-deep);
  font-size: 1.42rem;
}

.meeting-equipment-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.meeting-equipment-list li {
  position: relative;
  padding-left: 18px;
  color: #42515f;
  line-height: 1.8;
}

.meeting-equipment-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(35, 71, 91, 0.85);
  transform: translateY(-50%);
}

.meeting-equipment-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.meeting-support {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 34px;
  border-radius: 24px;
  background: #FFFFFF;
  border: 1px solid #D9E7E0;
  color: #1F4D3A;
  box-shadow: 0 8px 20px rgba(20, 31, 41, 0.03);
}

.meeting-support h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: #1F4D3A;
}

.meeting-support p {
  margin: 0;
  color: #4D665C;
}

.facility-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.facility-anchor-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(248, 252, 249, 0.92);
  border: 1px solid rgba(24, 32, 42, 0.08);
  box-shadow: 0 8px 22px rgba(24, 32, 42, 0.05);
}

.facility-section {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(248, 252, 249, 0.92);
  border: 1px solid rgba(24, 32, 42, 0.08);
  box-shadow: 0 12px 30px rgba(24, 32, 42, 0.05);
}

.facility-section:last-child {
  margin-bottom: 0;
}

.facility-visual {
  min-height: 300px;
  border-radius: 22px;
  background-size: cover;
  background-position: center center;
}

.facility-content h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--brand-deep);
}

.facility-content p {
  margin: 0;
  color: #485564;
}

.facility-anchor-nav-rich {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.facility-anchor-nav-rich a {
  display: grid;
  gap: 6px;
  align-content: start;
  min-height: 120px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 251, 0.94));
  border: 1px solid rgba(24, 32, 42, 0.08);
  box-shadow: 0 14px 32px rgba(24, 32, 42, 0.06);
}

.facility-anchor-kicker {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.facility-anchor-nav-rich strong {
  font-size: 1rem;
  color: var(--ink);
}

.facility-anchor-nav-rich span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

.facility-anchor-nav-rich a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(24, 32, 42, 0.1);
  border-color: rgba(29, 78, 102, 0.16);
}

.room-type-grid-stylish {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.room-type-grid-stylish .room-type-card {
  position: relative;
  min-height: 118px;
  display: flex;
  align-items: end;
  padding: 22px;
  color: #f8fbfc;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 0;
  box-shadow: 0 16px 34px rgba(17, 28, 39, 0.12);
  overflow: hidden;
}

.room-type-grid-stylish .room-type-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
}

.room-type-grid-stylish .room-type-card strong {
  position: relative;
  z-index: 1;
  font-size: 1.14rem;
  line-height: 1.5;
}

.room-policy-section .info-card {
  min-height: 100%;
}

.contact-shell {
  display: grid;
  gap: 24px;
}

.contact-intro {
  padding: 28px;
  border-radius: 24px;
  background: rgba(248, 252, 249, 0.92);
  border: 1px solid rgba(24, 32, 42, 0.08);
  box-shadow: 0 12px 30px rgba(24, 32, 42, 0.05);
}

.contact-intro h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(24, 32, 42, 0.08);
  box-shadow: 0 12px 30px rgba(24, 32, 42, 0.05);
}

.form-field {
  display: grid;
  gap: 10px;
}

.form-field span {
  font-weight: 700;
  color: var(--brand-deep);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(24, 32, 42, 0.14);
  background: #fff;
  font: inherit;
  color: var(--ink);
}

.privacy-box {
  padding: 24px;
  border-radius: 20px;
  background: #f7fafb;
  border: 1px solid rgba(24, 32, 42, 0.08);
}

.privacy-box h3 {
  margin: 0 0 10px;
  color: var(--brand-deep);
}

.checkbox-field {
  display: flex;
  gap: 10px;
  align-items: start;
  margin-top: 16px;
}

.policy-layout {
  display: grid;
  gap: 18px;
}

.error-summary,
.confirm-card,
.status-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(24, 32, 42, 0.08);
  box-shadow: 0 12px 30px rgba(24, 32, 42, 0.05);
}

.error-summary {
  background: #fff4f1;
  border-color: rgba(184, 92, 56, 0.22);
}

.error-summary h3,
.confirm-card h2,
.status-card h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
}

.error-summary ul {
  margin: 0;
  padding-left: 20px;
}

.field-error {
  color: #a53f1c;
  font-size: 0.92rem;
}

.recaptcha-block {
  display: grid;
  gap: 10px;
}

.recaptcha-label {
  font-weight: 600;
  color: var(--brand-deep);
}

.recaptcha-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.confirm-card,
.status-card {
  background: rgba(255, 255, 255, 0.94);
}

.confirm-table {
  display: grid;
  gap: 0;
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(24, 32, 42, 0.08);
}

.confirm-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid rgba(24, 32, 42, 0.08);
}

.confirm-row:last-child {
  border-bottom: 0;
}

.confirm-row dt,
.confirm-row dd {
  margin: 0;
  padding: 16px 18px;
}

.confirm-row dt {
  background: #f4f8fa;
  color: var(--brand-deep);
  font-weight: 700;
}

.confirm-row dd {
  background: #fff;
}

.confirm-card .button-row form {
  display: inline-flex;
}

.form-note {
  margin: 18px 0 0;
  color: var(--muted);
}

.access-alt-panel {
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 249, 0.96)),
    linear-gradient(120deg, rgba(29, 78, 102, 0.08), rgba(29, 78, 102, 0));
  border: 1px solid rgba(24, 32, 42, 0.08);
  box-shadow: 0 14px 32px rgba(24, 32, 42, 0.05);
}

.access-alt-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

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

.access-highlight {
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(29, 78, 102, 0.92), rgba(41, 96, 120, 0.88));
  color: #f7fbfd;
}

.access-highlight strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.access-highlight p {
  margin: 0;
  color: rgba(247, 251, 253, 0.88);
}

.access-photo-placeholder {
  display: grid;
  place-items: center;
  min-height: 380px;
  padding: 20px;
  border-radius: 22px;
  border: 2px dashed rgba(29, 78, 102, 0.22);
  background:
    linear-gradient(135deg, rgba(29, 78, 102, 0.08), rgba(29, 78, 102, 0.02)),
    repeating-linear-gradient(45deg, rgba(29, 78, 102, 0.04), rgba(29, 78, 102, 0.04) 12px, rgba(255, 255, 255, 0.35) 12px, rgba(255, 255, 255, 0.35) 24px);
  text-align: center;
  color: var(--brand-deep);
  font-weight: 700;
}

.access-photo-placeholder.compact {
  min-height: 180px;
  margin-bottom: 18px;
}

.access-alt-road-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.access-road-card {
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(24, 32, 42, 0.08);
  box-shadow: 0 12px 30px rgba(24, 32, 42, 0.05);
}

.access-road-card h3 {
  margin: 0;
  color: var(--brand-deep);
  font-size: 1.08rem;
  line-height: 1.6;
}

.access-road-section {
  --road-ink: #1f2f3d;
  --road-muted: #627181;
  --road-line: rgba(31, 47, 61, 0.14);
  --road-line-strong: rgba(31, 47, 61, 0.24);
  --road-surface: rgba(255, 253, 248, 0.92);
  --road-surface-soft: #f7f9fb;
  --road-node: #2a5a73;
}

.access-train-section {
  --train-ink: #1f2f3d;
  --train-muted: #627181;
  --train-line: rgba(31, 47, 61, 0.14);
  --train-line-strong: rgba(35, 71, 91, 0.24);
  --train-surface: rgba(248, 252, 249, 0.94);
  --train-surface-soft: #f2f7f3;
  --train-brand: #23475b;
  --train-brand-soft: rgba(35, 71, 91, 0.08);
}

.train-map-shell {
  display: grid;
  gap: 22px;
}

.train-nearest-card {
  position: relative;
  padding: 28px 24px 26px;
  border: 1px solid rgba(201, 176, 138, 0.28);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(248, 252, 249, 0.96), rgba(237, 245, 239, 0.92));
  box-shadow: 0 16px 36px rgba(24, 32, 42, 0.06);
  overflow: hidden;
}

.train-nearest-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, rgba(35, 71, 91, 0.86), rgba(181, 106, 67, 0.7));
}

.train-chip {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--train-brand-soft);
  color: var(--train-brand);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.train-nearest-card h3 {
  margin: 0 0 10px;
  color: var(--train-ink);
  font-size: 1.18rem;
  line-height: 1.6;
}

.train-nearest-card p {
  margin: 0;
  color: var(--train-muted);
  font-size: 0.96rem;
  line-height: 1.8;
}

.train-map-board {
  position: relative;
  min-height: 760px;
  padding: 32px 28px;
  border: 1px solid var(--train-line);
  border-radius: 22px;
  background: var(--train-surface);
  box-shadow: 0 10px 24px rgba(20, 31, 41, 0.04);
  overflow: hidden;
}

.train-map-mobile {
  display: none;
}

.train-note {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  padding: 9px 14px;
  border: 1px solid var(--train-line);
  border-radius: 14px;
  background: var(--train-surface-soft);
  color: var(--train-muted);
  font-size: 0.84rem;
  line-height: 1.5;
  text-align: center;
}

.train-note-shinkansen {
  top: 28px;
}

.train-note-local {
  top: 78px;
}

.train-label {
  position: absolute;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--train-brand-soft);
  color: var(--train-brand);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  z-index: 2;
}

.train-label-saikyo {
  top: 292px;
  left: 158px;
}

.train-label-jr {
  top: 428px;
  right: 162px;
}

.train-label-monorail {
  top: 290px;
  right: 86px;
}

.train-line {
  position: absolute;
  background: var(--train-line-strong);
  z-index: 0;
}

.train-line-main {
  top: 192px;
  left: 50%;
  width: 2px;
  height: 454px;
  transform: translateX(-50%);
}

.train-line-left {
  top: 466px;
  left: 200px;
  width: calc(50% - 200px);
  height: 2px;
}

.train-line-right-top {
  top: 466px;
  left: 50%;
  width: 250px;
  height: 2px;
}

.train-line-right-bottom {
  top: 330px;
  right: 126px;
  width: 2px;
  height: 138px;
}

.train-line-top-link {
  top: 122px;
  left: 50%;
  width: 2px;
  height: 70px;
  transform: translateX(-50%);
}

.train-line-top-link-second {
  top: 150px;
  left: 50%;
  width: 2px;
  height: 42px;
  transform: translateX(-50%);
}

.train-station {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  min-width: 152px;
  padding: 14px 16px;
  border: 1px solid var(--train-line);
  border-radius: 18px;
  background: var(--train-surface-soft);
  color: var(--train-ink);
  box-shadow: 0 8px 20px rgba(20, 31, 41, 0.03);
}

.train-station strong {
  font-size: 1rem;
  line-height: 1.5;
}

.train-station span {
  color: var(--train-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.train-station-main {
  background: rgba(35, 71, 91, 0.05);
}

.train-station-hub {
  background: rgba(35, 71, 91, 0.08);
  border-color: rgba(35, 71, 91, 0.16);
}

.train-station-destination {
  background: rgba(35, 71, 91, 0.12);
  border-color: rgba(35, 71, 91, 0.22);
  box-shadow: 0 10px 24px rgba(20, 31, 41, 0.06);
}

.train-station-destination strong {
  font-size: 1.08rem;
}

.train-station-omiya {
  top: 192px;
  left: 50%;
  transform: translateX(-50%);
}

.train-station-akabane {
  top: 438px;
  left: 50%;
  transform: translateX(-50%);
}

.train-station-nakaurawa {
  top: 584px;
  left: 50%;
  transform: translateX(-50%);
}

.train-station-shinkiba {
  top: 246px;
  left: 44px;
}

.train-station-shinjuku {
  top: 384px;
  left: 44px;
}

.train-station-ikebukuro {
  top: 522px;
  left: 44px;
}

.train-station-haneda {
  top: 246px;
  right: 44px;
}

.train-station-hamamatsucho {
  top: 384px;
  right: 44px;
}

.train-station-tokyo {
  top: 522px;
  right: 44px;
}

.train-tabs-shell {
  display: grid;
  gap: 22px;
}

.train-tabs-board {
  padding: 28px 24px;
  border: 1px solid var(--train-line);
  border-radius: 22px;
  background: var(--train-surface);
  box-shadow: 0 10px 24px rgba(20, 31, 41, 0.04);
}

.train-tab-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.train-tab-list.is-active-left {
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
}

.train-tab-list.is-active-center {
  grid-template-columns: 0.94fr 1.12fr 0.94fr;
}

.train-tab-list.is-active-right {
  grid-template-columns: 0.94fr 0.94fr 1.12fr;
}

.train-tab-slot {
  display: flex;
  justify-content: stretch;
  align-items: center;
}

.train-tab-button {
  height: 48px;
  padding: 0 24px;
  width: 100%;
  border: 1px solid var(--train-line);
  border-radius: 16px;
  background: var(--train-surface-soft);
  color: var(--train-muted);
  font-size: 1.03rem;
  font-weight: 500;
  opacity: 0.8;
  cursor: pointer;
  box-shadow: inset 0 -2px 0 rgba(31, 47, 61, 0.04);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  transform: translateY(0);
}

.train-tab-button:hover {
  background: rgba(35, 71, 91, 0.05);
  border-color: rgba(35, 71, 91, 0.18);
  color: var(--train-ink);
  opacity: 0.9;
}

.train-tab-button.is-active,
.train-tab-button[aria-selected="true"] {
  background: rgba(35, 71, 91, 0.12);
  border-color: rgba(35, 71, 91, 0.26);
  color: var(--train-brand);
  opacity: 1;
  font-weight: 600;
  transform: translateY(-2px);
  z-index: 2;
  box-shadow:
    inset 0 -3px 0 var(--train-brand),
    0 6px 0 rgba(35, 71, 91, 0.18),
    0 10px 22px rgba(20, 31, 41, 0.1);
}

.train-tab-button:focus-visible {
  outline: 2px solid rgba(35, 71, 91, 0.34);
  outline-offset: 2px;
}

.train-tab-panel[hidden] {
  display: none;
}

.train-panel-grid {
  display: grid;
  gap: 20px;
  align-items: start;
}

.train-panel-grid-saikyo {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.train-panel-grid-long {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.train-panel-grid-fixed {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.train-panel-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.train-route-spacer {
  min-height: 1px;
}

.train-route-card,
.train-support-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--train-line);
  border-radius: 22px;
  background: var(--train-surface-soft);
}

.train-route-card {
  display: flex;
  flex-direction: column;
}

.train-route-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--train-line);
}

.train-route-head h3,
.train-support-card h3 {
  margin: 0;
  color: var(--train-ink);
  font-size: 1.16rem;
  line-height: 1.6;
}

.train-route-head strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(35, 71, 91, 0.1);
  color: var(--train-brand);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.train-route-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(31, 47, 61, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--train-ink);
  font-size: 0.98rem;
}

.train-route-chip-destination {
  background: rgba(35, 71, 91, 0.12);
  border-color: rgba(35, 71, 91, 0.22);
  color: var(--train-brand);
  font-weight: 700;
}

.train-route-chip-line {
  background: rgba(35, 71, 91, 0.06);
  border-color: rgba(35, 71, 91, 0.14);
  color: var(--train-brand);
}

.train-route-arrow {
  color: var(--train-brand);
  font-size: 1.08rem;
  font-weight: 700;
}

.train-support-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.train-support-list li {
  padding: 13px 15px;
  border: 1px solid rgba(31, 47, 61, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--train-ink);
  font-size: 0.98rem;
  line-height: 1.7;
}

.train-support-card p {
  margin: 16px 0 0;
  color: var(--train-muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.train-support-card {
  position: relative;
  background: linear-gradient(180deg, rgba(232, 239, 244, 0.96), rgba(243, 247, 250, 0.98));
  border-color: rgba(35, 71, 91, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.train-support-card::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: rgba(35, 71, 91, 0.72);
}

.train-support-card h3 {
  color: var(--train-brand);
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.train-support-lead {
  margin: 0;
  color: #333;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.9;
}

.train-support-meta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(35, 71, 91, 0.12);
}

.train-support-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(35, 71, 91, 0.08);
  color: var(--train-brand);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.train-support-list {
  margin-top: 14px;
}

.train-support-list li {
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(35, 71, 91, 0.08);
  color: var(--train-ink);
  font-size: 0.9rem;
  line-height: 1.65;
}

.train-step-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  padding-left: 2px;
}

.train-step-list-short {
  min-height: 122px;
}

.train-step-list::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 8px;
  width: 1px;
  background: var(--train-line-strong);
}

.train-step-list li {
  position: relative;
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  align-items: start;
}

.train-step-node {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  border: 4px solid #edf3f6;
  border-radius: 50%;
  background: var(--train-brand);
  box-shadow: 0 0 0 1px rgba(35, 71, 91, 0.12);
}

.train-step-list li span:last-child {
  color: var(--train-ink);
  font-size: 1rem;
  line-height: 1.8;
}

.train-step-item-line span:last-child {
  color: var(--train-brand);
  font-weight: 700;
}

.train-step-item-line .train-step-node {
  background: rgba(35, 71, 91, 0.9);
}

.train-step-item-destination span:last-child {
  color: var(--train-brand);
  font-weight: 700;
}

.train-step-item-destination .train-step-node {
  background: #fff;
  border-color: rgba(35, 71, 91, 0.85);
  box-shadow: 0 0 0 1px rgba(35, 71, 91, 0.18);
}

.train-step-item-destination {
  padding: 8px 12px 8px 0;
  border-radius: 14px;
  background: rgba(77, 113, 93, 0.09);
  margin-top: auto;
}

.train-step-item-line {
  padding-right: 8px;
}

.road-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.road-route-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 24px 26px;
  border: 1px solid var(--road-line);
  border-radius: 22px;
  background: var(--road-surface);
  box-shadow: 0 10px 24px rgba(20, 31, 41, 0.04);
}

.road-route-head {
  min-height: 104px;
  padding-bottom: 18px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--road-line);
}

.road-route-head h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--road-ink);
}

.road-route-head p {
  margin: 0;
  color: var(--road-muted);
  font-size: 0.96rem;
  line-height: 1.8;
}

.road-timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 4px 0 0;
}

.road-timeline-fixed {
  display: grid;
  grid-template-rows: repeat(5, minmax(74px, auto));
  row-gap: 14px;
}

.road-timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 28px;
  left: 12px;
  width: 1px;
  background: var(--road-line-strong);
}

.road-step {
  position: relative;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  min-height: 74px;
  padding-bottom: 0;
}

.road-step:last-child {
  min-height: 96px;
}

.road-step-row-1 { grid-row: 1; }
.road-step-row-2 { grid-row: 2; }
.road-step-row-3 { grid-row: 3; }
.road-step-row-4 { grid-row: 4; }
.road-step-row-5 { grid-row: 5; }

.road-node {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  border: 6px solid #edf3f6;
  border-radius: 50%;
  background: var(--road-node);
  box-shadow: 0 0 0 1px rgba(35, 71, 91, 0.12);
}

.road-step-body {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--road-surface-soft);
  border: 1px solid rgba(31, 47, 61, 0.08);
}

.road-step-body strong {
  display: block;
  color: var(--road-ink);
  font-size: 1rem;
  line-height: 1.7;
}

.road-step-body span {
  display: block;
  margin-top: 4px;
  color: var(--road-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.road-step-arrive .road-node {
  background: #fff;
  border-color: var(--road-node);
  box-shadow: 0 0 0 1px rgba(35, 71, 91, 0.18);
}

.road-step-arrive .road-step-body {
  background: rgba(35, 71, 91, 0.05);
  border-color: rgba(35, 71, 91, 0.12);
}

@media (max-width: 1080px) {
  .meeting-room-header,
  .meeting-plan-grid,
  .meeting-support {
    grid-template-columns: 1fr;
  }

  .meeting-intro .section-title {
    gap: 18px;
    padding: 24px 24px 24px 28px;
  }

  .meeting-intro .section-title h2 {
    max-width: none;
  }

  .meeting-intro .section-title > p {
    padding: 16px 0 0 0;
    border-left: 0;
    border-top: 1px solid rgba(150, 126, 91, 0.22);
    max-width: none;
  }

  .meeting-preview-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .meeting-preview-detail {
    position: static;
    width: 100%;
  }

  .meeting-preview-card,
  .meeting-preview-detail {
    width: 100%;
    max-width: 100%;
  }

  .meeting-preview-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .meeting-preview-table {
    min-width: 840px;
    font-size: 0.95rem;
  }

  .meeting-preview-table th,
  .meeting-preview-table td {
    padding: 12px 10px;
  }

  .meeting-preview-table th {
    padding: 5px 7px;
    font-size: 0.82rem;
    line-height: 1.05;
  }

  .meeting-preview-count-head {
    min-width: 80px;
    padding-top: 7px !important;
    padding-bottom: 7px !important;
  }

  .meeting-preview-count-label {
    margin-bottom: 4px;
    font-size: 0.7rem;
  }

  .meeting-preview-count-subheads {
    padding-top: 4px;
  }

  .meeting-preview-count-subheads span {
    font-size: 0.72rem;
  }

  .meeting-preview-count-subheads span + span {
    margin-top: 3px;
    padding-top: 3px;
  }

  .meeting-preview-count-cell {
    min-width: 68px;
    padding-top: 9px !important;
    padding-bottom: 9px !important;
  }

  .meeting-preview-count-cell span + span {
    margin-top: 4px;
    padding-top: 4px;
  }

  .meeting-preview-visual {
    width: auto;
    margin: -24px -24px 22px;
  }

  .meeting-preview-visual,
  .meeting-preview-visual img {
    width: 100%;
  }

  .meeting-equipment-grid {
    grid-template-columns: 1fr;
  }

  .facility-section {
    grid-template-columns: 1fr;
  }

  .access-alt-grid {
    grid-template-columns: 1fr;
  }

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

  .access-alt-road-grid {
    grid-template-columns: 1fr;
  }

  .road-route-grid {
    gap: 18px;
  }

  .train-panel-grid-saikyo,
  .train-panel-grid-long,
  .train-panel-grid-fixed,
  .train-panel-feature {
    grid-template-columns: 1fr;
  }

  .train-tab-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .train-map-board {
    min-height: 820px;
    padding: 28px 20px;
  }

  .train-station {
    min-width: 124px;
    padding: 12px 14px;
  }

  .train-station-shinkiba,
  .train-station-shinjuku,
  .train-station-ikebukuro {
    left: 20px;
  }

  .train-station-haneda,
  .train-station-hamamatsucho,
  .train-station-tokyo {
    right: 20px;
  }

  .train-label-saikyo {
    left: 154px;
  }

  .train-label-jr {
    right: 164px;
  }

  .train-label-monorail {
    right: 52px;
  }

  .train-line-left {
    left: 174px;
    width: calc(50% - 174px);
  }

  .train-line-right-top {
    width: 214px;
  }

  .train-line-right-bottom {
    right: 102px;
  }

  .road-route-card {
    padding: 24px 20px 22px;
  }

  .road-route-head {
    min-height: 112px;
  }

  .facility-anchor-nav-rich {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .meeting-hero-panel,
  .meeting-preview-card,
  .meeting-preview-detail,
  .meeting-room-copy,
  .meeting-note,
  .meeting-support {
    padding: 24px 20px;
  }

  .meeting-hero-panel {
    min-height: 420px;
  }

  .meeting-intro .section-title {
    padding: 22px 20px 22px 24px;
    border-radius: 20px;
  }

  .meeting-intro .section-title::before {
    width: 5px;
  }

  .meeting-intro .section-title > p {
    font-size: 0.95rem;
    line-height: 1.9;
  }

  .meeting-room-visual img {
    height: 240px;
  }

  .meeting-plan-grid {
    gap: 16px;
  }

  .meeting-preview-visual {
    margin: -24px -20px 18px;
  }

  .meeting-preview-table {
    min-width: 760px;
    font-size: 0.9rem;
  }

  .meeting-preview-detail h2 {
    font-size: 1.65rem;
  }

  .meeting-preview-table th,
  .meeting-preview-table td {
    padding: 12px 10px;
  }

  .meeting-preview-table th {
    padding: 5px 6px;
    font-size: 0.78rem;
    line-height: 1.02;
  }

  .meeting-preview-table button {
    padding: 8px 12px;
  }

  .meeting-preview-count-label {
    margin-bottom: 3px;
    font-size: 0.66rem;
  }

  .meeting-preview-count-subheads span {
    font-size: 0.68rem;
  }

  .meeting-preview-count-subheads span + span {
    margin-top: 2px;
    padding-top: 2px;
  }

  .meeting-preview-count-cell {
    min-width: 62px;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .meeting-preview-count-cell span {
    font-size: 0.88rem;
  }

  .meeting-preview-count-cell span + span {
    margin-top: 3px;
    padding-top: 3px;
  }

  .meeting-equipment-card {
    padding: 22px 20px;
    border-radius: 18px;
  }

  .facility-section,
  .access-alt-grid,
  .room-type-grid-stylish {
    grid-template-columns: 1fr;
  }

  .facility-anchor-nav-rich {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .facility-anchor-nav-rich a {
    min-height: 0;
    padding: 16px;
  }

  .facility-section,
  .access-alt-panel,
  .contact-intro,
  .contact-form {
    padding: 20px;
  }

  .error-summary,
  .confirm-card,
  .status-card {
    padding: 22px 20px;
  }

  .confirm-row {
    grid-template-columns: 1fr;
  }

  .confirm-row dt {
    padding-bottom: 10px;
  }

  .confirm-row dd {
    padding-top: 0;
  }

  .facility-visual {
    min-height: 220px;
  }

  .access-photo-placeholder {
    min-height: 240px;
  }

  .road-route-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .train-tabs-board,
  .train-nearest-card {
    padding: 22px 18px 20px;
    border-radius: 18px;
  }

  .train-nearest-card::before {
    width: 5px;
  }

  .train-nearest-card h3 {
    font-size: 1.08rem;
  }

  .train-tab-list {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
  }

  .train-tab-list.is-active-left,
  .train-tab-list.is-active-center,
  .train-tab-list.is-active-right {
    grid-template-columns: 1fr;
  }

  .train-tab-slot {
    justify-content: stretch;
  }

  .train-tab-button {
    min-height: 48px;
    font-size: 0.98rem;
    width: 100%;
    transform: none;
  }

  .train-route-card,
  .train-support-card {
    padding: 18px;
    border-radius: 18px;
  }

  .train-route-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .train-route-head strong {
    min-width: 0;
  }

  .train-route-flow {
    gap: 8px;
  }

  .train-route-chip {
    min-height: 38px;
    font-size: 0.92rem;
  }

  .train-step-list li span:last-child,
  .train-support-list li,
  .train-support-card p,
  .train-support-lead {
    font-size: 0.94rem;
  }

  .train-support-label {
    font-size: 0.8rem;
  }

  .road-route-card {
    padding: 22px 18px 20px;
    border-radius: 18px;
  }

  .road-route-head {
    min-height: 0;
    padding-bottom: 16px;
    margin-bottom: 4px;
  }

  .road-route-head h3 {
    font-size: 1.08rem;
  }

  .road-route-head p {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .road-timeline-fixed {
    grid-template-rows: repeat(5, minmax(68px, auto));
    row-gap: 12px;
  }

  .road-step {
    grid-template-columns: 22px 1fr;
    gap: 12px;
    min-height: 68px;
  }

  .road-step:last-child {
    min-height: 86px;
  }

  .road-timeline::before {
    left: 10px;
    top: 18px;
    bottom: 24px;
  }

  .road-node {
    width: 22px;
    height: 22px;
    border-width: 5px;
  }

  .road-step-body {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .road-step-body strong {
    font-size: 0.96rem;
  }

  .road-step-body span {
    font-size: 0.84rem;
  }

}
