@charset "UTF-8";
@import url("https://use.typekit.net/qym2oin.css");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard-dynamic-font@v1.3.9/dist/web/variable/pretendardvariable.min.css");
:root {
  --ink: #191a1c;
  --paper: #faf9f6;
  --sky: #8b9ec4;
  --white: #ffffff;
  --line: #dadada;
  --frame: 1920px;
  --max: 1500px;
  --color-black: #000000;
  --gutter: clamp(22px, 3.65vw, 70px);
  --section-y-xl: clamp(108px, 15.6vw, 300px);
  --section-y-lg: clamp(84px, 6.7vw, 128px);
  --section-y-md: clamp(72px, 5.65vw, 108px);
  --section-gap-xl: clamp(120px, 15.6vw, 300px);
  --section-gap-lg: clamp(64px, 6.7vw, 128px);
  --grid-gap-lg: clamp(48px, 5vw, 96px);
  --grid-gap-sm: clamp(14px, .84vw, 16px);
  --card-gap: clamp(24px, 3.65vw, 70px);
  --title-xl: clamp(64px, 7.3vw, 140px);
  --title-lg: clamp(52px, 5.85vw, 112px);
  --title-md: clamp(34px, 3.75vw, 72px);
  --copy-strong: clamp(22px, 1.67vw, 32px);
  --copy-body: clamp(15px, 1.04vw, 20px);
  --card-pad-y: clamp(36px, 3.65vw, 70px);
  --card-pad-x: clamp(34px, 4.95vw, 95px);
  --font-body: "Pretendard Variable", "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-footer: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "obvia-condensed", "Obvia Condensed", Impact, sans-serif;
}

@media (max-width: 768px) {
  .site-modal-root[data-active-modal=faq] {
    padding: 18px;
  }
  .site-modal--faq {
    max-height: calc(100dvh - 36px);
  }
  .site-modal__panel--faq {
    min-height: auto;
    max-height: inherit;
  }
  .site-modal__header--faq {
    padding: 42px var(--gutter) 22px;
  }
  .site-modal__header--faq h2 {
    font-size: 30px;
  }
  .site-modal__body--faq {
    padding: 0 var(--gutter) 42px;
  }
  .site-modal-faq-search {
    margin-bottom: 32px;
  }
  .site-modal-faq-search input {
    height: 46px;
    font-size: 14px;
  }
  .site-modal-tabs--faq {
    gap: 18px;
    padding: 0;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .site-modal-tabs--faq button {
    flex: 0 0 auto;
    font-size: 14px;
    white-space: nowrap;
  }
  .site-modal-faq__item summary {
    grid-template-columns: minmax(0, 1fr) 24px;
    min-height: 82px;
    padding: 17px 0;
  }
  .site-modal-faq__category {
    grid-column: 1;
    font-size: 11px;
  }
  .site-modal-faq__item strong {
    grid-column: 1;
    font-size: 15px;
    line-height: 1.45;
  }
  .site-modal-faq__item summary::after {
    grid-column: 2;
    grid-row: 1/span 2;
    width: 10px;
    height: 10px;
  }
  .site-modal-faq__answer {
    padding: 0 0 26px;
    font-size: 13px;
    line-height: 1.6;
  }
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

html.lenis,
html.lenis body {
  height: auto;
}

html.lenis.lenis-smooth {
  scroll-behavior: auto;
}

html.lenis.lenis-stopped {
  overflow: clip;
}

html.lenis [data-lenis-prevent],
html.lenis [data-lenis-prevent-wheel],
html.lenis [data-lenis-prevent-touch],
html.lenis [data-lenis-prevent-vertical],
html.lenis [data-lenis-prevent-horizontal] {
  overscroll-behavior: contain;
}

html.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
}

main {
  position: relative;
}

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

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

button {
  border: 0;
  padding: 0;
  color: inherit;
  background: none;
  font: inherit;
  cursor: pointer;
}

p {
  word-break: normal;
}

@supports (word-break: auto-phrase) {
  p {
    word-break: auto-phrase;
  }
}
.container {
  width: min(var(--max), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.snap-section {
  min-height: 100svh;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  display: grid;
  place-items: center;
  gap: 12px;
  align-content: center;
  background: var(--sky);
  color: #fff;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.intro.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro__symbol {
  width: 97px;
  height: 165px;
  object-fit: contain;
  opacity: 0;
  animation: introFadeIn 3s ease forwards;
}

.intro p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.23em;
  opacity: 0;
  animation: introFadeIn 3s ease forwards;
}

@keyframes introFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.container {
  max-width: var(--frame);
  width: 100%;
  height: 100%;
  margin-inline: auto;
  padding-inline: clamp(7px, 5vw, 70px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  height: 90px;
  background: rgba(255, 255, 255, 0.6);
  color: #000;
  transition: height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header > .container {
  max-width: var(--frame);
  width: 100%;
  height: 100%;
  margin-inline: auto;
  padding-inline: clamp(37px, 5vw, 37px) clamp(17px, 5vw, 17px);
  display: flex;
  align-items: center;
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.site-header__logo img {
  width: 144px;
  height: 36px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 38px;
  margin-left: auto;
  align-items: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 60px;
}

.language-menu {
  position: relative;
  font-family: var(--font-display);
}

.language {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}

.language span {
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid currentColor;
}

.language-menu__list {
  position: absolute;
  top: calc(100% + 13px);
  left: 0;
  z-index: 4;
  display: grid;
  gap: 6px;
  min-width: 72px;
  padding: 12px 14px;
  background: #fff;
  color: #191a1c;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.language-menu__list[hidden] {
  display: none;
}

.language-menu__list a {
  color: inherit;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}

.language-menu__list a:not([aria-current=true]) {
  color: #c7c7c7;
}

.ticket-link {
  display: inline-grid;
  place-items: center;
  width: 80px;
  height: 30px;
  border: 1px solid #000;
  font-size: 14px;
  font-weight: 500;
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
}

.menu-button span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: currentColor;
  transition: top 0.24s ease, transform 0.24s ease, opacity 0.18s ease;
}

.menu-button span:nth-child(1) {
  top: 12px;
}

.menu-button span:nth-child(2) {
  top: 19px;
}

.menu-button span:nth-child(3) {
  top: 26px;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  height: 1080px;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-weather {
  position: absolute;
  top: 130px;
  right: max(70px, (100vw - var(--frame)) / 2 + 70px);
  z-index: 3;
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 12px;
  align-items: center;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-weather__temp {
  font-size: 34px;
  line-height: 1;
}

.hero-weather__meta {
  font-size: 13px;
  line-height: 1.35;
}

.hero-weather__icon {
  width: 34px;
  height: 34px;
  border: 3px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.hero-weather__icon::before,
.hero-weather__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.hero-weather__icon::before {
  width: 3px;
  height: 9px;
  left: 50%;
  top: -13px;
  transform: translateX(-50%);
}

.hero-weather__icon::after {
  width: 9px;
  height: 3px;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
}

.experience {
  background: var(--sky);
  color: #fff;
  padding: var(--section-y-xl) 0 clamp(96px, 8.2vw, 156px);
}

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

.section-symbol {
  width: 97px;
  height: 165px;
  margin: 0 auto 34px;
}

.section-copy h2,
.space h2,
.news-column h2,
.visitor h2,
.who h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--title-xl);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}

.localized-heading {
  margin: 0 0 clamp(48px, 3.65vw, 70px);
}

.localized-heading--center {
  margin-bottom: 0;
}

.localized-heading .local-title {
  margin: 0 0 6px;
  font-size: clamp(28px, 1.88vw, 36px);
  font-weight: 700;
  line-height: 1.18;
}

.localized-heading .en-title {
  margin-bottom: 0;
}

.localized-heading--center .local-title {
  margin: clamp(10px, 0.84vw, 16px) 0 0;
}

.visitor .localized-heading {
  display: flex;
  align-items: flex-end;
  gap: clamp(14px, 1.15vw, 22px);
}
.visitor .localized-heading .local-title {
  font-size: clamp(32px, 3.33vw, 64px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(4px, 0.26vw, 5px);
  white-space: nowrap;
}

.en-title {
  text-transform: none;
}

.section-copy strong {
  display: block;
  margin: clamp(22px, 1.67vw, 32px) 20px clamp(16px, 1.15vw, 22px);
  font-size: var(--copy-strong);
  line-height: 1.25;
}

.section-copy p {
  margin: clamp(16px, 1.15vw, 22px);
  font-size: var(--copy-body);
  line-height: 1.4;
  font-weight: 300;
}

.experience-gallery {
  position: relative;
  margin-top: var(--section-gap-xl);
  overflow: hidden;
}

.experience-gallery--panorama {
  width: 100vw;
  margin-left: calc((100vw - 100%) / -2);
}

.experience-gallery__viewport {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(1500px, 100vw - var(--gutter) * 2);
  gap: var(--card-gap);
  width: 100%;
  max-width: var(--frame);
  margin-inline: auto;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: calc((100vw - min(1500px, 100vw - var(--gutter) * 2)) / 2);
  padding-inline: calc((100vw - min(1500px, 100vw - var(--gutter) * 2)) / 2);
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.experience-gallery__viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.experience-gallery__viewport img {
  -webkit-user-drag: none;
  user-select: none;
}

.experience-gallery--panorama .experience-gallery__viewport {
  display: block;
  max-width: none;
  padding-inline: 0;
  scroll-padding-inline: 0;
  scroll-snap-type: none;
  touch-action: pan-x;
}

.experience-gallery__viewport::-webkit-scrollbar {
  display: none;
}

.experience-gallery__slide {
  display: block;
  max-width: 1500px;
  width: 100%;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  opacity: 0.62;
  transform: scale(0.92);
  transform-origin: center;
  transition: opacity 0.42s ease, transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.experience-gallery__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.experience-gallery__slide:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -6px;
}

.experience-gallery__slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: scale(0.985);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), filter 0.62s ease;
  will-change: transform;
}

.experience-gallery__slide.is-active img {
  transform: scale(1);
}

.experience-gallery__slide:not(.is-active) img {
  filter: saturate(0.75) brightness(0.82);
}

.experience-gallery__slide--panorama {
  max-width: none;
  width: clamp(2309px, 281.8vw, 5410px);
  opacity: 1;
  transform: none;
  scroll-snap-align: none;
}

.experience-gallery__slide--panorama img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: none;
}

.experience-gallery__side {
  display: none;
  position: absolute;
  top: calc(50% - 12px);
  z-index: 2;
  margin: 0;
  max-width: 260px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  word-break: keep-all;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.experience-gallery__side--left {
  left: 20px;
}

.experience-gallery__side--right {
  right: 20px;
  text-align: right;
}

.space {
  --space-title-y: 0px;
  --space-title-opacity: 1;
  --space-plan-y: 0px;
  --space-plan-scale: 1;
  --space-plan-opacity: 1;
  --space-plan-clip: 0%;
  position: relative;
  padding: var(--section-y-lg) 0 clamp(108px, 11vw, 212px);
  background: var(--ink);
  color: #d9d9d9;
  overflow: clip;
}

.space.is-space-animated {
  --space-title-y: 44px;
  --space-title-opacity: .2;
  --space-plan-y: 0px;
  --space-plan-scale: 1;
  --space-plan-opacity: 1;
  --space-plan-clip: 0%;
}

.space::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 249, 246, 0.06) 1px, transparent 1px), linear-gradient(180deg, rgba(250, 249, 246, 0.045) 1px, transparent 1px);
  background-size: 9vw 9vw;
  opacity: calc(0.08 + var(--space-progress, 0) * 0.18);
  transform: translate3d(0, calc(var(--space-progress, 0) * -40px), 0);
  pointer-events: none;
}

.space > .container {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100% - var(--gutter) * 2);
  height: auto;
  padding-inline: 0;
}

.space-heading {
  margin-bottom: clamp(180px, 14.32vw, 275px);
  color: var(--paper);
  opacity: var(--space-title-opacity);
  transform: translate3d(0, var(--space-title-y), 0);
  will-change: opacity, transform;
}

.space-heading p {
  margin: 0 0 6px;
  color: var(--paper);
  font-size: clamp(42px, 3.34vw, 64px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.space h2 {
  color: var(--paper);
  font-size: clamp(80px, 6.67vw, 128px);
  line-height: 1;
  letter-spacing: 0;
}

.floor-atlas {
  display: block;
  width: 100%;
  margin: 0;
  padding-bottom: clamp(72px, 4.95vw, 95px);
  border-bottom: 1px solid rgba(250, 249, 246, 0.38);
}

.floor-atlas img {
  display: block;
  width: 100%;
  height: auto;
}

.floor-plan {
  width: 100%;
  margin: 0;
  mix-blend-mode: color-dodge;
  overflow: hidden;
  opacity: var(--space-plan-opacity);
  transform: translate3d(0, var(--space-plan-y), 0) scale(var(--space-plan-scale));
  transform-origin: center;
  will-change: opacity, transform;
}

.floor-plan figcaption {
  display: none;
}

.floor-plan img {
  display: block;
  width: 100%;
  margin-inline: auto;
}

.space-card figure img {
  --parallax-scale: 1;
  transform: scale(var(--parallax-scale));
  transform-origin: center;
  transition: transform 0.18s linear;
  will-change: transform;
}

.space-desktop-groups {
  display: block;
}

.space-floor-section {
  padding-top: clamp(36px, 2.35vw, 45px);
}

.space-floor-section + .space-floor-section {
  margin-top: clamp(82px, 5vw, 96px);
  border-top: 1px solid rgba(250, 249, 246, 0.38);
}

.space-floor-title {
  margin: 0 0 clamp(36px, 2.35vw, 45px);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(42px, 3.02vw, 58px);
  font-weight: 700;
  line-height: 1;
}

.space-floor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 24.2%));
  row-gap: clamp(70px, 4.17vw, 80px);
  justify-content: space-between;
  align-items: start;
}

.space-floor-grid--gf {
  grid-template-columns: repeat(2, minmax(0, 24.2%));
  column-gap: 13.73%;
  justify-content: start;
}

.space-desktop-groups .space-card {
  display: block;
  width: 100%;
  min-height: clamp(260px, 18vw, 360px);
}

.space-desktop-groups .space-card--text-only {
  padding: clamp(28px, 2.5vw, 48px);
  border: 1px solid rgba(250, 249, 246, 0.28);
  min-height: 220px;
}

.space-desktop-groups .space-card figure {
  width: 100%;
  margin-bottom: clamp(28px, 1.78vw, 34px);
}

.space-desktop-groups .space-card__text span {
  top: 0;
  right: 0;
  font-size: clamp(24px, 1.67vw, 32px);
  line-height: 1;
}

.space-desktop-groups .space-card h3 {
  margin: 0 0 clamp(7px, 0.47vw, 9px);
  padding-right: 46px;
  font-size: clamp(26px, 1.88vw, 36px);
  font-weight: 600;
  line-height: 1;
}

.space-desktop-groups .space-card__en {
  margin: 0 0 clamp(16px, 1vw, 19px);
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.75;
}

.space-desktop-groups .space-card p:last-child {
  width: min(100%, 371px);
  font-size: clamp(12px, 0.73vw, 14px);
  line-height: 1.58;
}

.space-grid {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(100px, 7.82vw, 150px) var(--grid-gap-sm);
}

.space-group-title {
  display: none;
}

.space-card {
  --space-card-opacity: 1;
  --space-card-y: 0px;
  --space-card-clip: 0%;
  display: grid;
  grid-template-columns: minmax(260px, clamp(260px, 18.9vw, 363px)) minmax(0, 1fr);
  gap: var(--grid-gap-sm);
  align-items: start;
  padding-top: 0;
  border-top: 0;
  opacity: var(--space-card-opacity);
  transform: translate3d(0, var(--space-card-y), 0);
  will-change: opacity, transform;
}

.space.is-space-animated .space-card {
  --space-card-opacity: .28;
  --space-card-y: 0px;
  --space-card-clip: 18%;
}

.space-card figure {
  margin: 0;
  aspect-ratio: 363/220;
  overflow: hidden;
  background: #333;
  clip-path: inset(var(--space-card-clip) 0 0 0);
  will-change: clip-path;
}

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

.space-card__text {
  position: relative;
}

.space-card__text span {
  position: absolute;
  right: 0;
  top: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(24px, 1.67vw, 32px);
}

.space-card__floor {
  display: none;
  margin: 0;
  font-family: var(--font-display);
  color: var(--paper);
}

.space-card h3 {
  margin: 0 0 10px;
  font-size: clamp(28px, 1.88vw, 36px);
  line-height: 1;
  color: #d9d9d9;
}

.space-card--2 h3,
.space-card--7 h3 {
  white-space: nowrap;
}

.space-card__en {
  margin: 0 0 clamp(26px, 2.2vw, 42px);
  font-family: var(--font-display);
  font-size: clamp(20px, 1.25vw, 24px);
  line-height: 1.1;
}

.space-card__en-title {
  margin-bottom: clamp(26px, 2.2vw, 42px) !important;
  font-family: var(--font-display);
}

.space-card p:last-child {
  margin: 0;
  width: min(100%, 371px);
  font-size: clamp(12px, 0.73vw, 14px);
  line-height: 1.58;
  word-break: keep-all;
  word-break: auto-phrase;
  text-align: justify;
}

.news {
  padding: clamp(72px, 4.6vw, 88px) 0 150px;
  background: #fff;
}

.home-banner-slider {
  position: relative;
  height: clamp(180px, 11.5vw, 220px);
  margin-bottom: clamp(56px, 4.6vw, 88px);
  overflow: hidden;
  background: var(--sky);
}

.home-banner-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  color: var(--paper);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.home-banner-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.home-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner-slide span {
  display: grid;
  align-content: center;
  gap: clamp(8px, 0.52vw, 10px);
  padding: clamp(28px, 1.67vw, 32px) clamp(32px, 2.5vw, 48px);
}

.home-banner-slide small {
  font-size: 14px;
}

.home-banner-slide strong {
  font-size: clamp(24px, 1.67vw, 32px);
  line-height: 1.25;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap-sm);
}

.kicker {
  margin: 0 0 4px;
  font-size: clamp(28px, 1.88vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.news-column h2 {
  color: var(--ink);
  font-size: clamp(64px, 7.2vw, 140px);
}
.news-column__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.news-column__head .kicker {
  margin: 0;
  font-size: clamp(36px, 3.33vw, 64px);
  letter-spacing: -0.02em;
}
.news-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  font-size: 20px;
  font-weight: 400;
  color: #191a1c;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.news-more img {
  display: block;
  width: 34.5px;
  height: auto;
}
.news-more::after {
  content: none;
}
.news-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  height: 32px;
  background: #fff;
  border-radius: 0;
  font-size: 20px;
  color: #8b9ec4;
  text-decoration: none;
  font-weight: 400;
  margin-top: 20px;
}
.news-detail-link > span::after {
  content: '›';
  font-size: 20px;
  line-height: 1;
}


.feature-news {
  position: relative;
  min-height: clamp(280px, 16.7vw, 320px);
  margin-top: clamp(20px, 1.2vw, 23px);
  padding: clamp(58px, 4.15vw, 80px) clamp(48px, 3.1vw, 60px) clamp(52px, 3.35vw, 64px);
  background: var(--sky);
  color: var(--paper);
  overflow: hidden;
}

.feature-news::before {
  display: none;
}

.feature-news.is-transitioning::before {
  animation: featureBackgroundZoom 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes featureBackgroundZoom {
  from {
    opacity: 0.78;
    transform: scale(0.975);
  }
  to {
    opacity: 1;
    transform: scale(1.035);
  }
}
.feature-news__slide {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.46s ease, transform 0.56s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-news__slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.feature-news__slide h3,
.feature-news__slide .feature-news__summary,
.feature-news__slide time {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity 0.42s ease, transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-news__slide.is-active h3 {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.04s;
}

.feature-news__slide.is-active .feature-news__summary {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.08s;
}

.feature-news__slide.is-active time {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.12s;
}

.feature-news h3 {
  display: -webkit-box;
  min-height: calc(clamp(34px, 2.71vw, 52px) * 1.22 * 2);
  margin: 0;
  padding-bottom: clamp(20px, 1.77vw, 34px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.56);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: clamp(34px, 2.71vw, 52px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.feature-news__summary {
  display: -webkit-box;
  margin-top: clamp(16px, 1.25vw, 24px);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.feature-news time {
  display: none;
  margin-top: clamp(24px, 1.77vw, 34px);
  padding-top: clamp(18px, 1.04vw, 20px);
  border-top: 1px solid rgba(255, 255, 255, 0.56);
  font-family: var(--font-display);
  font-size: clamp(24px, 1.46vw, 28px);
  font-weight: 700;
  letter-spacing: 0;
}

.feature-news__pager {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 5px;
  transform: translateX(-50%);
}

.feature-news__pager button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  background: #fff;
  cursor: pointer;
}

.feature-news__pager button.is-active {
  background: #536dd4;
}

.news-list {
  margin-top: clamp(34px, 2.1vw, 40px);
}

.news-detail {
  position: relative;
  margin-top: 10px;
}

.news-detail__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(32px, 2.2vw, 42px);
  gap: clamp(16px, 1.2vw, 23px);
  align-items: center;
  min-height: clamp(96px, 7.05vw, 135px);
  padding: clamp(24px, 2.2vw, 42px) clamp(34px, 2.65vw, 50px);
  background: var(--sky);
  color: #fff;
}

.feature-news__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  text-indent: -9999px;
  white-space: nowrap;
}

.news-detail__thumb {
  width: clamp(32px, 2.25vw, 43px);
  height: clamp(32px, 2.25vw, 43px);
  position: relative;
  grid-column: 2;
  padding: 0;
  border: 0;
  background: #fff;
  cursor: pointer;
}

.news-detail__thumb::before {
  content: "";
  position: absolute;
  top: 25%;
  left: 52%;
  width: 58%;
  height: 2px;
  background: var(--sky);
  transform: rotate(90deg);
  transform-origin: 0 0;
}

.news-detail__thumb::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 21%;
  width: 58%;
  height: 2px;
  background: var(--sky);
}

.news-detail__text {
  min-width: 0;
}

.news-detail__head h3 {
  margin: 0;
  font-size: clamp(28px, 1.67vw, 32px);
  line-height: 1.33;
  letter-spacing: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
  font-weight: 700;
}

.news-detail__date {
  display: none;
}

.news-detail__body {
  display: none;
  grid-template-columns: clamp(130px, 9.9vw, 190px) minmax(0, 1fr);
  gap: clamp(28px, 2.2vw, 42px);
  min-height: clamp(230px, 18.95vw, 364px);
  padding: clamp(30px, 2.6vw, 50px) clamp(10px, 0.52vw, 10px) clamp(44px, 3.35vw, 64px) 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.news-detail__label {
  display: block;
  padding-left: clamp(34px, 2.35vw, 45px);
  border-right: 1px solid var(--line);
  color: var(--sky);
  font-size: clamp(18px, 1.2vw, 23px);
  font-weight: 500;
  line-height: 1.25;
}

.news-detail__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  line-height: 1.85;
}

.news-detail__body li::before {
  content: "・";
}

.news-detail__summary {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  word-break: auto-phrase;
}

.news-detail__more {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.news-detail.is-open .news-detail__thumb::before {
  display: none;
}
.news-detail.is-open .news-detail__head h3 {
  white-space: normal;
}
.news-detail.is-open .news-detail__body {
  display: grid;
}

.news-detail__notice {
  color: #1d1e21;
  font-size: 15px;
  line-height: 1.85;
  margin: 0;
  display: block;
  padding-right: clamp(24px, 3vw, 58px);
}

.visitor {
  padding: 0 0 clamp(96px, 7.9vw, 152px);
  background: #fff;
}

.visitor h2 {
  margin-bottom: clamp(48px, 3.65vw, 70px);
  color: var(--ink);
}

.visitor__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--sky);
  color: #fff;
}

.visitor__panel figure {
  margin: 0;
  min-height: clamp(360px, 28.65vw, 550px);
  overflow: hidden;
}

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

.visitor__panel > div {
  padding: clamp(40px, 3.23vw, 62px) clamp(36px, 3.08vw, 59px);
}

.visitor__panel h3 {
  margin: 0 0 14px;
  font-size: clamp(30px, 1.88vw, 36px);
}

.visitor__panel p {
  font-size: clamp(17px, 1.04vw, 20px);
  line-height: 1.5;
}

.visitor__panel dl {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  column-gap: clamp(28px, 3vw, 58px);
  align-items: start;
  margin-top: clamp(26px, 1.77vw, 34px);
  padding-top: clamp(26px, 1.77vw, 34px);
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.visitor__panel dt {
  font-size: clamp(23px, 1.46vw, 28px);
  font-weight: 700;
}

.visitor__panel dd {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  align-items: baseline;
  margin: 0;
  font-size: clamp(17px, 1.04vw, 20px);
  line-height: 1.4;
}

.visitor__panel strong {
  font-weight: 400;
}

.visitor__panel small {
  grid-column: 1;
  font-size: 13px;
  line-height: 1.45;
}

.visitor__note,
.visitor__note-list {
  margin: 30px 0 0;
  font-size: 15px;
  line-height: 26px;
}

.visitor__note-list {
  padding: 0;
  list-style: none;
}

.visitor__note-list li {
  position: relative;
  padding-left: 14px;
}

.visitor__note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.price-table {
  margin-top: clamp(72px, 5vw, 96px);
}

.price-table h3,
.visitor-info-row h3 {
  margin: 0 0 25px 0;
  font-size: clamp(32px, 2.08vw, 40px);
  line-height: 1.2;
}

.table-scroll {
  overflow-x: visible;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: clamp(18px, 1.25vw, 24px);
}

.price-table__col--type {
  width: 12%;
}

.price-table__col--ticket {
  width: 38%;
}

.price-table__col--price {
  width: 50%;
}

th, td {
  border-bottom: 1px solid var(--line);
  padding: clamp(14px, 0.94vw, 18px);
  text-align: center;
  font-weight: 400;
}

thead th {
  background: var(--sky);
  color: #fff;
}

thead th + th {
  border-left: 16px solid #fff;
}

tbody th {
  width: 180px;
  vertical-align: middle;
}

.price-table__ticket {
  text-align: left;
}

.price-table td:last-child {
  font-size: 1em;
}

.price-table__notice {
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  line-height: 26px;
}

.price-table__notice li {
  position: relative;
  padding-left: 14px;
}

.notice-list li.is-warning {
  color: #d42b2b;
  font-weight: 500;
}

.price-table__notice li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.visitor-info-row {
  display: grid;
  grid-template-columns: clamp(200px, 15.6vw, 300px) minmax(0, 1fr);
  gap: clamp(40px, 4.2vw, 80px);
  margin-top: clamp(72px, 5vw, 96px);
  padding-top: clamp(64px, 4.8vw, 92px);
  border-top: 1px solid var(--line);
}

.visitor-info-row__body > p {
  margin: 0;
  font-size: 15px;
  line-height: 26px;
}

.guide-row__address {
  display: inline-flex;
  gap: 18px;
  align-items: center;
}

.guide-row__address-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  color: var(--ink);
}

.guide-row__address-icon svg {
  width: 100%;
  height: 100%;
}

.notice-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  counter-reset: notice;
  font-size: 15px;
  line-height: 26px;
}

.visitor-cautions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 2.5vw, 48px);
  margin-bottom: clamp(60px, 4.15vw, 80px);
  text-align: center;
  font-weight: 700;
}

.visitor-cautions article {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 26px;
}

.visitor-cautions__icon {
  position: relative;
  display: block;
  width: clamp(92px, 6vw, 115px);
  height: clamp(92px, 6vw, 115px);
}

.visitor-cautions__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.visitor-cautions__icon-mark {
  position: absolute;
  inset: 22%;
  width: 56% !important;
  height: 56% !important;
}

.visitor-cautions__icon--stack img {
  position: absolute;
  inset: 0;
}
.visitor-cautions__icon--stack img:nth-child(2) {
  inset: 19%;
  width: 62%;
  height: 62%;
}

.visitor-cautions p {
  margin: 0;
  max-width: 260px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
}

.guide-row__address {
  margin-bottom: 44px !important;
  font-size: 18px !important;
  font-weight: 500;
}

.map {
  height: clamp(360px, 28.65vw, 550px);
  background: #e6e8ee;
  overflow: hidden;
}

.map__canvas {
  width: 100%;
  height: 100%;
}

.custom-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.custom-list li {
  position: relative;
  display: flex;
  gap: 8px;
  align-items: baseline;
  padding-left: 0;
  font-size: 15px;
  line-height: 25px;
}

.custom-list--bullets li {
  display: block;
  padding-left: 14px;
}

.custom-list--bullets li::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
}

.line-badge {
  display: inline-grid;
  place-items: center;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.line-badge--1 {
  background: #0052a4;
}

.line-badge--5 {
  background: #8b50d8;
}

.line-badge--9 {
  background: #c5a13a;
}

.line-name {
  flex: 0 0 auto;
  font-weight: inherit;
}

.faq-section {
  padding: 110px 0;
  background: #fff;
  color: var(--ink);
}
.faq-section h2 {
  margin: 0 0 46px;
  font-family: var(--font-display);
  font-size: clamp(72px, 7vw, 120px);
  line-height: 1;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item__q {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
}

.faq-item__q::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 32px;
}

.faq-item__q[aria-expanded=true]::after {
  content: "-";
}

.faq-item__category {
  display: inline-flex;
  margin-right: 14px;
  color: var(--sky);
  font-size: 14px;
  font-weight: 800;
}

.faq-item__a {
  padding: 0 0 28px;
  font-size: 16px;
  line-height: 1.75;
  color: #555;
}

.site-modal-root {
  position: fixed;
  inset: 0;
  z-index: 999998;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 48px);
}

.site-modal-root[hidden] {
  display: none;
}

.site-modal-root__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 15, 22, 0.58);
  backdrop-filter: blur(8px);
}

.site-modal-root[data-active-modal=faq] .site-modal-root__backdrop {
  background: #d9d9d9;
  backdrop-filter: none;
}

.site-modal-root[data-active-modal=recruit] .site-modal-root__backdrop {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
}

.site-modal {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(840px, 100dvh - clamp(36px, 6vw, 96px));
}

.site-modal--faq {
  width: min(1319px, 100%);
  max-height: min(1065px, 100dvh - clamp(36px, 6vw, 96px));
}

.site-modal--partnership {
  --partnership-blue: #536dd4;
  width: min(900px, 100%);
  max-height: min(1632px, 100dvh - clamp(24px, 4vw, 72px));
}

.site-modal--recruit {
  width: min(1040px, 100%);
  max-height: min(900px, 100dvh - clamp(36px, 6vw, 96px));
}

.site-modal[hidden] {
  display: none;
}

.site-modal__panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  max-height: inherit;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
}

.site-modal__panel--form {
  width: min(1120px, 100%);
}

.site-modal__panel--faq {
  box-shadow: none;
}

.site-modal__panel--partnership {
  box-shadow: none;
}

.site-modal__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: clamp(28px, 4vw, 54px) clamp(26px, 4vw, 60px) clamp(20px, 2.6vw, 36px);
  border-bottom: 1px solid var(--line);
}

.site-modal__header p {
  grid-column: 1/-1;
  margin: 0 0 6px;
  color: var(--sky);
  font-family: var(--font-footer);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-modal__header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(54px, 6vw, 92px);
  line-height: 0.92;
}

.site-modal__header--faq {
  position: relative;
  display: block;
  padding: clamp(58px, 7vw, 86px) clamp(38px, 6vw, 78px) 28px;
  border-bottom: 0;
  text-align: center;
}

.site-modal__header--faq h2 {
  color: var(--sky);
  font-family: var(--font-body);
  font-size: clamp(30px, 3vw, 37px);
  font-weight: 800;
  line-height: 1;
}

.site-modal__header--faq .site-modal__close {
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  right: clamp(28px, 4vw, 56px);
}

.site-modal__header--partnership {
  position: relative;
  display: block;
  padding: clamp(58px, 7vw, 66px) clamp(36px, 6vw, 72px) 24px;
  border-bottom: 0;
  text-align: center;
}

.site-modal__header--partnership h2 {
  color: var(--partnership-blue);
  font-family: var(--font-body);
  font-size: clamp(25px, 2.55vw, 37px);
  font-weight: 800;
  line-height: 1.15;
  word-break: keep-all;
}

.site-modal__header--partnership p {
  display: block;
  margin: 15px 0 0;
  color: var(--partnership-blue);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.site-modal__leaflet {
  display: inline-block;
  margin-top: 22px;
  color: var(--partnership-blue);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.site-modal__header--partnership .site-modal__close {
  position: absolute;
  top: 28px;
  right: 28px;
}

.site-modal__close {
  align-self: start;
  min-width: 72px;
  height: 40px;
  border: 1px solid var(--ink);
  font-family: var(--font-footer);
  font-size: 13px;
}

.site-modal__body {
  overflow: auto;
  padding: clamp(26px, 3vw, 48px) clamp(26px, 4vw, 60px) clamp(34px, 4vw, 64px);
}

.site-modal__body--faq {
  padding: 0 clamp(42px, 7vw, 78px) clamp(52px, 6vw, 82px);
}

.site-modal__body--partnership {
  padding: 0 clamp(34px, 6vw, 74px) clamp(50px, 6vw, 82px);
}

.site-modal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.site-modal-tabs button,
.site-modal-guide__link {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  font-family: var(--font-footer);
  font-weight: 800;
}

.site-modal-tabs button.is-active,
.site-modal-guide__link {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.site-modal-faq-search {
  position: relative;
  display: block;
  width: min(526px, 100%);
  margin: 0 auto clamp(52px, 6vw, 74px);
}

.site-modal-faq-search input {
  width: 100%;
  height: 50px;
  padding: 0 58px 0 22px;
  border: 1px solid var(--sky);
  border-radius: 2px;
  background: #f6f6f6;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
}

.site-modal-faq-search input::placeholder {
  color: #111;
  opacity: 1;
}

.site-modal-faq-search span:last-child {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  border: 3px solid var(--sky);
  border-radius: 50%;
  pointer-events: none;
}

.site-modal-faq-search span:last-child::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -5px;
  width: 10px;
  height: 3px;
  background: var(--sky);
  transform: rotate(45deg);
  transform-origin: left center;
}

.site-modal-tabs--faq {
  gap: clamp(22px, 3vw, 36px);
  margin: 0 0 30px;
  padding: 0 20px;
}

.site-modal-tabs--faq button {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}

.site-modal-tabs--faq button.is-active {
  background: transparent;
  color: #111;
  border-color: transparent;
}

.site-modal-empty {
  margin: 0;
  padding: 60px 0;
  text-align: center;
  color: #777;
}

.site-modal-faq {
  border-top: 2px solid var(--sky);
}

.site-modal-faq__item {
  border-bottom: 1px solid #c9d4ff;
}

.site-modal-faq__item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 12px 22px;
  align-items: center;
  min-height: 96px;
  padding: 21px 22px;
  cursor: pointer;
  list-style: none;
}

.site-modal-faq__item summary::-webkit-details-marker {
  display: none;
}

.site-modal-faq__item summary::after {
  content: "";
  justify-self: end;
  grid-column: 2;
  grid-row: 1/span 2;
  width: 12px;
  height: 12px;
  border-right: 3px solid #6b6b6b;
  border-bottom: 3px solid #6b6b6b;
  transform: rotate(45deg);
}

.site-modal-faq__item[open] {
  background: rgba(83, 109, 212, 0.07);
}

.site-modal-faq__item[open] summary::after {
  transform: translateY(4px) rotate(225deg);
}

.site-modal-faq__category {
  grid-column: 1;
  color: #6b6b6b;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.site-modal-faq__item strong {
  grid-column: 1;
  min-width: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.site-modal-faq__item[open] strong {
  color: var(--sky);
  font-weight: 800;
}

.site-modal-faq__answer {
  max-width: 720px;
  padding: 0 22px 44px;
  color: #111;
  font-size: 14px;
  line-height: 1.6;
}

.site-modal-guide,
.site-modal-policy {
  max-width: 820px;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.75;
}

.site-modal-guide > strong,
.site-modal-guide__headline {
  display: block;
  margin-bottom: 28px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.35;
}

.site-modal-guide ul,
.site-modal-policy ul {
  display: grid;
  gap: 10px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.site-modal-guide li,
.site-modal-policy li {
  position: relative;
  padding-left: 18px;
}

.site-modal-guide li::before,
.site-modal-policy li::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
}

.site-modal-policy h3 {
  margin: 34px 0 14px;
  font-size: clamp(20px, 2vw, 28px);
}

.site-modal-policy p {
  margin: 0 0 18px;
}

.site-modal-policy__intro {
  margin-bottom: clamp(24px, 3vw, 38px);
  font-weight: 700;
}

.site-modal-policy__toc {
  margin: 0 0 clamp(28px, 3vw, 42px);
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(25, 26, 28, 0.14);
}

.site-modal-policy__toc ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.35em;
}

.site-modal-policy__toc a {
  text-decoration: none;
}

.site-modal-policy__article {
  padding-top: clamp(20px, 2.5vw, 34px);
  border-top: 1px solid rgba(25, 26, 28, 0.14);
  scroll-margin-top: 100px;
}

.site-modal-policy__article + .site-modal-policy__article {
  margin-top: clamp(24px, 3vw, 42px);
}

.site-modal-policy__date {
  margin-top: 18px;
  font-weight: 700;
}

.site-modal-guide__link {
  display: inline-grid;
  place-items: center;
  margin-top: 6px;
}

.site-modal-recruit {
  max-width: none;
}

.site-modal-recruit > strong {
  max-width: 760px;
}

.site-modal-recruit__list {
  border-top: 2px solid var(--sky);
}

.site-modal-recruit .site-modal-faq__answer {
  max-width: 760px;
}

.site-modal-recruit .site-modal-faq__answer ul {
  margin-bottom: 0;
}

.site-modal-tabs--guide {
  margin-bottom: clamp(26px, 3vw, 42px);
}

.site-modal-guide__panels {
  display: grid;
}

.site-modal-guide__panel {
  min-width: 0;
}

.site-modal-guide__panel[hidden] {
  display: none;
}

.site-modal-guide__headline {
  margin: 0 0 clamp(24px, 3vw, 38px);
  color: var(--sky);
  text-align: center;
  word-break: keep-all;
}

.site-modal-guide__layout {
  display: grid;
  gap: clamp(26px, 3vw, 42px);
}

.site-modal-guide__block {
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: start;
}
.site-modal-guide__block h4 {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.5;
  font-weight: 800;
  word-break: keep-all;
}
.site-modal-guide__block > ul {
  margin: 0;
}
.site-modal-guide__block em {
  display: inline-block;
  margin-top: 4px;
  color: var(--sky);
  font-style: normal;
  font-size: 0.92em;
}

.site-modal-guide__main-info {
  gap: 6px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.site-modal-guide__main-info li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 0;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.45;
}
.site-modal-guide__main-info li::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sky);
  font-weight: 800;
}

.site-modal-guide__section {
  margin: 38px 0 0;
}
.site-modal-guide__section h3 {
  margin: 0 0 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--sky);
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
}
.site-modal-guide__section ul {
  margin: 0 0 20px;
}

.site-modal-guide__table {
  margin: 0 0 24px;
  overflow-x: auto;
}
.site-modal-guide__table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
.site-modal-guide__table table th, .site-modal-guide__table table td {
  border: 1px solid var(--line);
  padding: 12px 16px;
  text-align: center;
  vertical-align: middle;
}
.site-modal-guide__table table th {
  background: var(--sky);
  color: #fff;
  font-weight: 800;
}
.site-modal-guide__table table td {
  background: #fff;
  white-space: nowrap;
}

.site-modal-guide__sub-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.site-modal-guide__sub-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #666;
}
.site-modal-guide__sub-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sky);
}

.inquiry-section--modal {
  padding: 0;
}

.inquiry-section--modal .inquiry-section__inner {
  width: 100%;
}

.inquiry-section--modal .inquiry-section__guide {
  margin: 0 0 22px;
  color: #555;
  font-size: 16px;
  line-height: 1.65;
}

.inquiry-section--modal .inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.inquiry-section--modal .inquiry-form__field,
.inquiry-section--modal .inquiry-form__privacy,
.inquiry-section--modal .inquiry-form__actions {
  min-width: 0;
}

.inquiry-section--modal .inquiry-form__field--full,
.inquiry-section--modal .inquiry-form__privacy,
.inquiry-section--modal .inquiry-form__actions {
  grid-column: 1/-1;
}

.inquiry-section--modal .inquiry-form__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.inquiry-section--modal input[type=text],
.inquiry-section--modal input[type=tel],
.inquiry-section--modal input[type=email],
.inquiry-section--modal textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  padding: 13px 15px;
  font: inherit;
}

.inquiry-section--modal textarea {
  min-height: 150px;
  resize: vertical;
}

.inquiry-section--modal .inquiry-form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inquiry-section--modal .inquiry-form__radio {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--line);
}

.inquiry-section--modal .inquiry-form__privacy {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.inquiry-section--modal .inquiry-form__privacy-toggle summary {
  cursor: pointer;
  font-weight: 800;
}

.inquiry-section--modal .inquiry-form__privacy-body {
  margin: 12px 0;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.inquiry-section--modal .inquiry-form__privacy-body p {
  margin: 0;
}

.inquiry-section--modal .inquiry-form__agree {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}

.inquiry-section--modal .inquiry-form__actions .btn {
  min-width: 180px;
  height: 54px;
  background: var(--sky);
  color: #fff;
  font-weight: 800;
}

.site-modal__body--partnership .inquiry-section--modal .inquiry-section__guide {
  display: none;
}

.site-modal__body--partnership .inquiry-section--modal .inquiry-form--modal-design {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  color: #111;
  font-family: var(--font-body);
}

.site-modal__body--partnership .inquiry-flash {
  margin-bottom: 22px;
}

.inquiry-form__consent {
  margin: 0 0 31px;
  padding: 34px clamp(22px, 5vw, 76px) 28px;
  border: 1px solid var(--partnership-blue, var(--sky));
  text-align: center;
}

.inquiry-form__consent legend {
  float: none;
  width: auto;
  margin: 0 auto 24px;
  padding: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.inquiry-form__consent-body {
  color: #606060;
  font-size: 14px;
  line-height: 1.76;
}

.inquiry-form__consent-body p,
.inquiry-form__consent-body strong {
  display: block;
  margin: 0;
}

.inquiry-form__consent-body strong {
  color: #4c4c4c;
  font-weight: 800;
}

.inquiry-form__consent-radios {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 5vw, 56px);
  margin-top: 26px;
}

.inquiry-form__consent-radios label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111;
  font-size: 20px;
  font-weight: 800;
}

.inquiry-form__consent-radios input,
.inquiry-form--modal-design .inquiry-form__radio input {
  width: 20px;
  height: 20px;
  accent-color: #777;
}

.inquiry-form--modal-design .inquiry-form__group {
  display: grid;
  grid-template-columns: 150px minmax(0, 526px);
  gap: 0;
  align-items: start;
  width: min(676px, 100%);
  margin-inline: auto;
}

.inquiry-form--modal-design .inquiry-form__group--customer {
  margin-bottom: 42px;
}

.inquiry-form--modal-design .inquiry-form__group h3 {
  grid-column: 1;
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
}

.inquiry-form--modal-design .inquiry-form__group > p {
  grid-column: 2;
  margin: 2px 0 29px;
  font-size: 14px;
  line-height: 1.55;
  word-break: auto-phrase;
}

.inquiry-form--modal-design .inquiry-form__row {
  display: grid;
  grid-column: 1/-1;
  grid-template-columns: 150px minmax(0, 526px);
  align-items: center;
  min-height: 64px;
}

.inquiry-form--modal-design .inquiry-form__row--type {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
}

.inquiry-form--modal-design .inquiry-form__row--type .inquiry-form__radios {
  flex-wrap: nowrap;
}

.inquiry-form--modal-design .inquiry-form__row--textarea {
  align-items: start;
  margin-top: 14px;
}

.inquiry-form--modal-design .inquiry-form__row--textarea .inquiry-form__label {
  padding-top: 18px;
}

.inquiry-form--modal-design .inquiry-form__label {
  margin: 0;
  color: #111;
  font-size: 16px;
  font-weight: 500;
}

.inquiry-form--modal-design .req {
  color: #ff2d20;
}

.inquiry-form--modal-design .inquiry-form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 2vw, 29px);
  align-items: center;
  min-height: 40px;
}

.inquiry-form--modal-design .inquiry-form__radio {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  gap: 8px;
  padding: 0;
  border: 0;
  color: #111;
  font-size: 16px;
  font-weight: 500;
}

.inquiry-form--modal-design input[type=text],
.inquiry-form--modal-design input[type=tel],
.inquiry-form--modal-design input[type=email],
.inquiry-form--modal-design textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--partnership-blue, var(--sky));
  border-radius: 2px;
  background: #f6f6f6;
  padding: 14px 22px;
  color: #111;
  font: 16px/1.45 var(--font-body);
}

.inquiry-form--modal-design input::placeholder,
.inquiry-form--modal-design textarea::placeholder {
  color: #777;
  opacity: 1;
}

.inquiry-form--modal-design textarea {
  min-height: 295px;
  resize: vertical;
}

.inquiry-form__modal-note {
  width: min(526px, 100%);
  margin: 16px auto 24px;
  transform: translateX(75px);
  color: #111;
  font-size: 14px;
  line-height: 1.55;
}

.inquiry-form--modal-design .inquiry-form__actions {
  display: flex;
  justify-content: center;
}

.inquiry-form--modal-design .inquiry-form__actions .btn {
  width: min(384px, 100%);
  height: 88px;
  border: 0;
  border-radius: 999px;
  background: var(--partnership-blue, var(--sky));
  color: #fff;
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 800;
}

.company-page {
  background: #fff;
}

.who {
  padding: 108px 0;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.who h2 {
  font-size: clamp(78px, 7vw, 128px);
}

.who__brand {
  margin: 78px 0 42px;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: clamp(28px, 7vw, 44px);
}

.who strong {
  display: block;
  font-size: 32px;
  line-height: 1.3;
}

.who p:last-child {
  margin: 28px auto 0;
  max-width: 900px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
}

.footer {
  padding: 50px 0 40px;
  background: #fff;
  font-size: 14px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 380px 110px 1fr;
  gap: 68px;
  align-items: start;
}

.footer__brand {
  min-width: 0;
}

.footer strong {
  display: block;
  margin-bottom: 28px;
  font-size: 30px;
  line-height: 1;
}

.footer p {
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.footer__legal {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  font-size: 14px;
}

.footer__social {
  display: flex;
  gap: 15px;
  margin-top: 98px;
}

.footer__social a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
}

.footer__social img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.footer__social a[aria-label=YouTube] img {
  width: 29px;
  height: 20px;
}

.footer__company {
  margin-top: 18px !important;
  width: 541px;
  max-width: calc(100vw - var(--gutter) * 2);
  font-size: 12px;
  line-height: 1.75;
}

.footer__company span:not(:last-child)::after {
  content: " | ";
}

.footer__nav {
  display: grid;
  gap: 24px;
  font-family: var(--font-footer);
  letter-spacing: -0.04em;
}

.footer__actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.footer__mobile-meta {
  display: none;
}

.family-site,
.top-link {
  display: inline-grid;
  place-items: center;
  height: 30px;
  border: 1px solid var(--ink);
  font-size: 12px;
}

.family-site {
  grid-template-columns: 1fr auto;
  gap: 18px;
  width: 119px;
  padding-inline: 10px;
  text-align: left;
}

.top-link {
  width: 60px;
  height: 30px;
  background: var(--ink);
  color: #fff;
}

.copyright {
  font-size: 12px;
  letter-spacing: -0.02em;
}

.site-popups {
  position: fixed;
  top: clamp(104px, 7vw, 132px);
  right: max(24px, (100vw - var(--frame)) / 2 + 70px);
  z-index: 100000;
  display: grid;
  width: min(360px, 100vw - 32px);
  background: #fff;
  box-shadow: 0 18px 42px rgba(25, 26, 28, 0.12);
  pointer-events: none;
}

.site-popups.is-empty {
  display: none;
}

.site-popups__stage {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  width: 100%;
  pointer-events: auto;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.site-popups__stage.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.site-popups__stage::-webkit-scrollbar {
  display: none;
}

.site-popup {
  display: block;
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
}

.site-popup[hidden] {
  display: none;
}

.site-popup__panel {
  height: min(380px, 100dvh - 210px);
  overflow: auto;
  overscroll-behavior: contain;
  background: #fff;
  color: var(--ink);
  scrollbar-width: thin;
  scrollbar-color: var(--sky) transparent;
}

.site-popup__panel::-webkit-scrollbar {
  width: 4px;
}

.site-popup__panel::-webkit-scrollbar-thumb {
  background: var(--sky);
}

.site-popup__image {
  margin: 0 0 24px;
  aspect-ratio: 16/9;
  max-height: 170px;
  background: #e6e8ee;
  overflow: hidden;
}

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

.site-popup__body {
  padding: 30px 28px 28px;
}

.site-popup__brand {
  display: block;
  width: 72px;
  height: 18px;
  margin: 0 0 14px;
  object-fit: contain;
}

.site-popup__title {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.site-popup__text {
  color: #1d1e21;
  font-size: 13px;
  line-height: 1.72;
  word-break: keep-all;
}

.site-popup__text p {
  margin: 0 0 12px;
}

.site-popup__text p:last-child {
  margin-bottom: 0;
}

.site-popup__link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--sky);
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.site-popups__pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  pointer-events: auto;
}

.site-popups__pager button {
  width: 6px;
  height: 6px;
  background: #c7cdd8;
}

.site-popups__pager button.is-active {
  background: var(--sky);
}

.site-popup__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 40px;
  padding: 0 12px;
  background: var(--sky);
  color: #fff;
  pointer-events: auto;
}

.site-popup__muted,
.site-popup__close {
  min-height: 40px;
  color: inherit;
  font-size: 12px;
}

.site-popup__muted {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.site-popup__muted::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
}

.site-popup__close {
  position: relative;
  width: 20px;
  overflow: hidden;
  text-indent: -999px;
}

.site-popup__close::before,
.site-popup__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  width: 12px;
  height: 1px;
  background: currentColor;
}

.site-popup__close::before {
  transform: rotate(45deg);
}

.site-popup__close::after {
  transform: rotate(-45deg);
}

@media (max-width: 1180px) {
  .site-header > .container {
    padding-inline: 28px;
  }
  .site-nav {
    gap: 22px;
    font-size: 22px;
  }
  .site-actions {
    margin-left: 28px;
  }
  .space-card {
    grid-template-columns: 1fr;
  }
  table {
    font-size: 18px;
    line-height: 1.35;
  }
  th,
  td {
    padding: 15px 8px;
    word-break: keep-all;
  }
  thead th + th {
    border-left-width: 10px;
  }
  tbody th {
    width: auto;
  }
  .visitor-info-row {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 40px;
    padding-top: 40px;
  }
}
@media (max-width: 820px) {
  html {
    scroll-snap-type: y proximity;
    scroll-padding-top: 64px;
  }
  .snap-section {
    min-height: calc(100svh - 64px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  body.is-mobile-nav-open {
    overflow: hidden;
  }
  .site-header {
    z-index: 99999;
    height: 64px;
  }
  .site-header > .container {
    padding-inline: 20px;
  }
  .site-header__logo img {
    width: 128px;
  }
  .site-nav, .site-actions > .language-menu, .ticket-link {
    display: none;
  }
  .site-actions {
    margin-left: auto;
  }
  .menu-button {
    display: inline-block;
  }
  .menu-button span {
    transition: transform 0.3s ease-in-out, height 0.3s ease-in-out, background-color 0.25s ease, top 0.3s ease-in-out, opacity 0.2s ease;
  }
  .menu-button[aria-expanded=true] span:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
  }
  .menu-button[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
  }
  .menu-button[aria-expanded=true] span:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
  }
  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: block;
    overflow: hidden;
    background: transparent;
    pointer-events: none;
  }
  .mobile-nav::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 100vw;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out, height 0.3s ease-in-out, background-color 0.25s ease;
  }
  body.is-mobile-nav-open .mobile-nav {
    pointer-events: auto;
  }
  body.is-mobile-nav-open .mobile-nav::after {
    transform: translateX(0);
  }
  .mobile-nav[hidden] {
    display: none;
  }
  .mobile-nav__close {
    position: absolute;
    top: 12px;
    right: 22px;
    z-index: 2;
    width: 17px;
    height: 17px;
    transform: translateX(100vw);
    transition: transform 0.3s ease-in-out, height 0.3s ease-in-out, background-color 0.25s ease;
  }
  .mobile-nav__close span {
    position: absolute;
    top: 8px;
    left: 0;
    width: 17px;
    height: 1px;
    background: #191a1c;
    transform-origin: center;
  }
  .mobile-nav__close span:nth-child(1) {
    transform: rotate(45deg);
  }
  .mobile-nav__close span:nth-child(2) {
    transform: rotate(-45deg);
  }
  .mobile-nav__links {
    position: relative;
    z-index: 1;
    width: 100vw;
    margin-left: auto;
    padding: 49px 16px 0;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out, height 0.3s ease-in-out, background-color 0.25s ease;
  }
  .mobile-nav__links a {
    display: block;
    width: max-content;
    margin: 0;
    padding: 0;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.57;
    color: #191a1c;
  }
  .mobile-nav__language {
    position: relative;
    z-index: 1;
    display: block;
    width: 100vw;
    min-height: 79px;
    margin-left: auto;
    margin-top: 13px;
    padding: 25px 16px 0;
    border-top: 1px solid rgba(25, 26, 28, 0.05);
    color: #191a1c;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out, height 0.3s ease-in-out, background-color 0.25s ease;
  }
  .mobile-nav__language .language {
    display: inline-flex;
    gap: 17px;
    font-size: 28px;
    font-weight: 300;
  }
  .mobile-nav__language .language span {
    border-left-width: 6px;
    border-right-width: 6px;
    border-top: 9px solid #e0e0e0;
  }
  .mobile-nav__language .language-menu__list {
    position: static;
    gap: 1px;
    min-width: 0;
    margin: -28px 0 0 66px;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
  .mobile-nav__language .language-menu__list a {
    font-size: 28px;
    line-height: 1.05;
  }
  .mobile-nav__ticket {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 50px;
    background: #191a1c;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out, height 0.3s ease-in-out, background-color 0.25s ease;
  }
  body.is-mobile-nav-open .mobile-nav__close,
  body.is-mobile-nav-open .mobile-nav__links,
  body.is-mobile-nav-open .mobile-nav__language,
  body.is-mobile-nav-open .mobile-nav__ticket {
    transform: translateX(0);
  }
  body.is-mobile-nav-open .mobile-nav__links {
    transition-delay: 0.03s;
  }
  body.is-mobile-nav-open .mobile-nav__language {
    transition-delay: 0.06s;
  }
  body.is-mobile-nav-open .mobile-nav__ticket {
    transition-delay: 0.09s;
  }
  .mobile-nav.is-closing .mobile-nav__close,
  .mobile-nav.is-closing .mobile-nav__links,
  .mobile-nav.is-closing .mobile-nav__language,
  .mobile-nav.is-closing .mobile-nav__ticket {
    transition-delay: 0s;
  }
  .site-popups {
    top: 76px;
    right: 16px;
    width: min(328px, 100vw - 32px);
  }
  .site-popup__panel {
    height: min(345px, 100dvh - 148px);
  }
  .site-popup__body {
    padding: 24px 22px;
  }
  .site-popup__title {
    margin-bottom: 18px;
    font-size: 16px;
  }
  .site-popup__text {
    font-size: 12px;
  }
  .site-popup__image {
    max-height: 150px;
  }
  .hero {
    height: 100svh;
    min-height: 100svh;
  }
  .hero-weather {
    top: 88px;
    right: 22px;
    transform: scale(0.82);
    transform-origin: top right;
  }
  .space-card figure {
    max-height: 400px;
  }
  .experience {
    padding: clamp(34px, 5vh, 52px) 0 clamp(28px, 4vh, 40px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: auto;
    background: linear-gradient(to bottom, var(--white) 0%, var(--sky) 50%, var(--sky) 100%);
    min-height: calc(100svh - 64px);
  }
  .section-symbol {
    width: 66px;
    height: 112px;
    margin-bottom: 20px;
  }
  .section-copy h2,
  .space h2,
  .news-column h2,
  .visitor h2,
  .who h2 {
    font-size: clamp(44px, 12vw, 64px);
  }
  .section-copy strong {
    margin-block: 14px 12px;
    font-size: 22px;
    line-height: 1.25;
  }
  .section-copy p {
    margin-block: 10px;
    font-size: 14px;
    line-height: 1.45;
  }
  .experience-gallery {
    margin-top: clamp(36px, 6vh, 56px);
  }
  .experience-gallery__viewport {
    gap: 24px;
  }
  .experience-gallery__slide {
    height: auto;
    transform: scale(0.96);
  }
  .experience-gallery__slide img {
    transform: scale(0.985);
  }
  .experience-gallery__slide.is-active {
    transform: scale(1);
  }
  .experience-gallery__slide.is-active img {
    transform: scale(1);
  }
  .experience-gallery--panorama .experience-gallery__viewport {
    display: block;
    padding-inline: 0;
    scroll-padding-inline: 0;
  }
  .experience-gallery__slide--panorama {
    width: clamp(1430px, 302.4vw, 2860px);
    transform: none;
  }
  .experience-gallery__slide--panorama img {
    height: auto;
    transform: none;
  }
  .experience-gallery__side {
    display: none;
  }
  .space {
    padding: 48px 0 88px;
  }
  .space-grid, .news__grid, .visitor__panel, .footer__grid {
    grid-template-columns: 1fr;
  }
  .news-column + .news-column {
    margin-top: 104px;
  }
  .space > .container {
    display: flex;
    flex-direction: column;
    width: min(100% - 32px, 520px);
  }
  .space-heading {
    order: 2;
    margin-bottom: 46px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(250, 249, 246, 0.55);
  }
  .space-heading p {
    display: none;
  }
  .space-heading p {
    font-size: 28px;
  }
  .space h2 {
    font-size: 32px;
  }
  .floor-atlas {
    order: 1;
    width: 100%;
    margin-bottom: 44px;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .floor-plan {
    mix-blend-mode: normal;
  }
  .floor-plan figcaption {
    display: none;
  }
  .floor-plan img {
    width: 100%;
    margin-inline: auto;
  }
  .space-desktop-groups {
    display: none;
  }
  .space-grid {
    order: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4px;
    row-gap: 16px;
  }
  .space-group-title {
    display: block;
    grid-column: 1 / -1;
    margin: 0 0 12px;
    padding-top: 12px;
    color: var(--paper);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    border-top: 1px solid rgba(250, 249, 246, 0.38);
  }
  .space-group-title.is-first {
    border-top: none;
    padding-top: 0;
  }
  .space-group-title:not(.is-first) {
    margin-top: 16px;
  }
  .space-card {
    display: block;
    padding: 0;
    border-top: 0;
  }
  .space-card + .space-card {
    margin-top: 0;
  }
  .space-card figure {
    display: block;
    width: 100%;
    aspect-ratio: 162/98;
    clip-path: none;
  }
  .space.is-space-animated .space-card {
    --space-card-opacity: 1;
    --space-card-clip: 0%;
  }
  .space-card__text {
    display: block;
    margin-top: 6px;
  }
  .space-card__text span {
    display: none;
  }
  .space-card__floor {
    display: none;
  }
  .space-card h3 {
    margin-bottom: 2px;
    font-size: 10px;
    line-height: 1.2;
    word-break: keep-all;
  }
  .space-card__en {
    display: block;
    margin: 4px 0 0;
    font-size: 8px;
    line-height: 1.1;
  }
  .space-card__text > p:last-child {
    margin-top: 8px;
    font-size: 6px;
    line-height: 10px;
    word-break: auto-phrase;
  }
  .home-banner-slider {
    height: 180px;
    margin-bottom: 56px;
  }
  .home-banner-slide {
    grid-template-columns: 1fr;
  }
  .home-banner-slide img {
    position: absolute;
    inset: 0;
    opacity: 0.32;
  }
  .home-banner-slide span {
    position: relative;
    z-index: 1;
  }
  .kicker {
    font-size: 28px;
  }
  .feature-news {
    display: none;
  }
  .news {
    overflow: hidden;
  }
  .news__grid,
  .news-column,
  .news-list,
  .news-detail {
    min-width: 0;
    max-width: 100%;
  }
  .news-list {
    width: 100%;
    max-width: 100%;
    margin-top: 24px;
    margin-left: 0;
    overflow: hidden;
  }
  .news-detail {
    margin-top: 10px;
    overflow: hidden;
  }
  .news-detail__head {
    width: 100%;
    box-sizing: border-box;
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 10px;
    min-height: 40px;
    padding: 0 16px;
    border-top: 0;
    background: var(--sky);
    color: #fff;
  }
  .news-detail + .news-detail {
    margin-top: 10px;
  }
  .news-detail__thumb {
    grid-column: 2;
    grid-row: 1;
    width: 17px;
    height: 17px;
    justify-self: end;
  }
  .news-detail__thumb::before {
    top: 4px;
    left: 9px;
    width: 11px;
    height: 1px;
  }
  .news-detail__thumb::after {
    left: 3px;
    top: 8px;
    width: 11px;
    height: 1px;
  }
  .news-detail__text {
    grid-column: 1;
    grid-row: 1;
  }
  .news-detail__head h3 {
    font-size: 17px;
    line-height: 1.18;
    color: #fff;
    white-space: nowrap;
  }
  .news-detail__date {
    display: block;
    margin-top: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .news-detail__body {
    grid-template-columns: 0px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 24px 0 28px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
  }
  .news-detail__label {
    padding-left: 16px;
    font-size: 14px;
    visibility: hidden;
  }
  .news-detail__notice {
    padding-right: 16px;
  }
  .news-detail__summary,
  .news-detail__notice {
    font-size: 13px;
    line-height: 1.65;
  }
  .visitor__panel figure {
    min-height: 300px;
  }
  .visitor__panel > div {
    padding: 32px 26px;
  }
  .visitor__panel dd {
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 20px;
  }
  .visitor__panel small {
    grid-column: auto;
  }
  .price-table {
    margin-top: 76px;
  }
  .table-scroll {
    overflow-x: visible;
  }
  table {
    min-width: 0;
    font-size: clamp(12px, 3vw, 15px);
    line-height: 1.35;
  }
  .price-table__col--type {
    width: 16%;
  }
  .price-table__col--ticket {
    width: 42%;
  }
  .price-table__col--price {
    width: 42%;
  }
  th,
  td {
    padding: 13px 4px;
    word-break: keep-all;
  }
  thead th + th {
    border-left-width: 8px;
  }
  tbody th {
    width: auto;
  }
  .price-table__ticket {
    text-align: center;
  }
  .site-modal-root {
    align-items: stretch;
    padding: 0;
  }
  .site-modal {
    width: 100%;
    max-height: 100dvh;
  }
  .site-modal__panel {
    min-height: 100dvh;
    box-shadow: none;
  }
  .site-modal__header {
    padding: 28px var(--gutter) 20px;
  }
  .site-modal__header h2 {
    font-size: clamp(42px, 13vw, 68px);
  }
  .site-modal__close {
    min-width: 64px;
    height: 38px;
  }
  .site-modal__body {
    padding: 24px var(--gutter) 42px;
  }
  .site-modal--partnership {
    max-height: 100dvh;
  }
  .site-modal__panel--partnership {
    min-height: 100dvh;
  }
  .site-modal__header--partnership {
    padding: 46px var(--gutter) 22px;
  }
  .site-modal__header--partnership h2 {
    font-size: clamp(24px, 6.7vw, 34px);
  }
  .site-modal__header--partnership p,
  .site-modal__leaflet {
    font-size: 13px;
  }
  .site-modal__header--partnership .site-modal__close {
    top: 18px;
    right: var(--gutter);
  }
  .site-modal__body--partnership {
    padding: 0 var(--gutter) 44px;
  }
  .inquiry-form__consent {
    padding: 26px 18px 24px;
  }
  .inquiry-form__consent legend {
    margin-bottom: 18px;
    font-size: 18px;
  }
  .inquiry-form__consent-body {
    font-size: 13px;
    line-height: 1.65;
  }
  .inquiry-form__consent-radios {
    gap: 18px;
  }
  .inquiry-form__consent-radios label {
    font-size: 16px;
  }
  .inquiry-form--modal-design .inquiry-form__group,
  .inquiry-form--modal-design .inquiry-form__row {
    grid-template-columns: 1fr;
  }
  .inquiry-form--modal-design .inquiry-form__group {
    width: 100%;
  }
  .inquiry-form--modal-design .inquiry-form__group h3,
  .inquiry-form--modal-design .inquiry-form__group > p {
    grid-column: 1;
  }
  .inquiry-form--modal-design .inquiry-form__group > p {
    margin: 6px 0 18px;
    font-size: 13px;
  }
  .inquiry-form--modal-design .inquiry-form__row {
    gap: 8px;
    min-height: auto;
    margin-bottom: 16px;
  }
  .inquiry-form--modal-design .inquiry-form__row--type {
    margin-bottom: 18px;
  }
  .inquiry-form--modal-design .inquiry-form__row--textarea .inquiry-form__label {
    padding-top: 0;
  }
  .inquiry-form--modal-design .inquiry-form__radios {
    gap: 12px 18px;
  }
  .inquiry-form--modal-design .inquiry-form__row--type .inquiry-form__radios {
    flex-wrap: wrap;
  }
  .inquiry-form--modal-design input[type=text],
  .inquiry-form--modal-design input[type=tel],
  .inquiry-form--modal-design input[type=email],
  .inquiry-form--modal-design textarea {
    min-height: 48px;
    padding: 12px 14px;
    font-size: 14px;
  }
  .inquiry-form--modal-design textarea {
    min-height: 220px;
  }
  .inquiry-form__modal-note {
    width: 100%;
    margin-top: 0;
    transform: none;
    font-size: 13px;
  }
  .inquiry-form--modal-design .inquiry-form__actions .btn {
    height: 64px;
    font-size: 22px;
  }
  .site-modal-tabs {
    gap: 6px;
    margin-bottom: 20px;
  }
  .site-modal-tabs button,
  .site-modal-guide__link {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 13px;
  }
  .site-modal-faq__item summary {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 14px;
    min-height: 70px;
    padding: 14px 0;
  }
  .site-modal-faq__category {
    grid-column: 1/-1;
    font-size: 12px;
  }
  .site-modal-faq__item strong {
    font-size: 18px;
  }
  .site-modal-faq__item summary::after {
    grid-column: 2;
    grid-row: 2;
    font-size: 30px;
  }
  .site-modal-faq__answer {
    padding: 0 0 22px;
    font-size: 14px;
    line-height: 1.65;
  }
  .site-modal-guide,
  .site-modal-policy {
    font-size: 15px;
  }
  .site-modal-guide > strong,
  .site-modal-guide__headline {
    margin-bottom: 22px;
    font-size: 22px;
  }
  .site-modal-guide__block {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .inquiry-section--modal .inquiry-form {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .inquiry-section--modal .inquiry-form__radios {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .inquiry-form--modal-design .inquiry-form__radios {
    display: flex;
  }
  .inquiry-section--modal .inquiry-form__radio {
    justify-content: center;
  }
  .inquiry-form--modal-design .inquiry-form__radio {
    justify-content: flex-start;
  }
  .visitor-info-row {
    grid-template-columns: clamp(92px, 24vw, 160px) minmax(0, 1fr);
    gap: clamp(18px, 5.8vw, 48px);
    margin-top: 70px;
    padding-top: 58px;
  }
  .visitor-info-row h3 {
    margin: 0;
    font-size: clamp(22px, 4.8vw, 32px);
    line-height: 1.25;
  }
  .visitor-info-row__body > p,
  .visitor-info-row__body ol,
  .price-table__notice li,
  .custom-list li {
    font-size: clamp(11px, 2.45vw, 15px);
    line-height: 1.72;
  }
  .visitor-cautions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(42px, 7.8vw, 70px) clamp(20px, 6.4vw, 58px);
    margin-top: clamp(52px, 8.4vw, 76px);
    text-align: center;
  }
  .visitor-cautions article {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: start;
    gap: 14px;
  }
  .visitor-cautions__icon {
    width: clamp(68px, 15vw, 116px);
    height: clamp(68px, 15vw, 116px);
    font-size: 24px;
  }
  .visitor-cautions p {
    max-width: 170px;
    font-size: clamp(10px, 2.35vw, 13px);
    font-weight: 500;
    line-height: 1.55;
  }
  .guide-row__address {
    gap: 8px;
    align-items: flex-start;
    margin-bottom: clamp(22px, 4.7vw, 44px) !important;
    font-size: clamp(11px, 2.45vw, 14px) !important;
    line-height: 1.55;
  }
  .guide-row__address-icon {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 2px;
  }
  .map {
    height: auto;
    aspect-ratio: 2/1;
  }
  .who {
    padding: clamp(66px, 12vw, 92px) 0 clamp(64px, 11vw, 86px);
  }
  .who h2 {
    font-size: clamp(38px, 10vw, 48px);
    line-height: 1;
  }
  .who__brand {
    margin: clamp(46px, 9vw, 70px) 0 clamp(22px, 4.8vw, 34px);
    font-size: clamp(24px, 5.8vw, 32px);
    line-height: 1;
  }
  .who strong {
    max-width: 330px;
    margin-inline: auto;
    font-size: clamp(17px, 3.9vw, 21px);
    line-height: 1.32;
    word-break: keep-all;
  }
  .who p:last-child {
    max-width: 430px;
    margin-top: clamp(16px, 3.8vw, 28px);
    font-size: clamp(12px, 2.8vw, 15px);
    line-height: 1.58;
    word-break: auto-phrase;
  }
  .footer {
    padding: clamp(58px, 9vw, 74px) 0 clamp(54px, 8vw, 66px);
    border-top: 1px solid var(--line);
    font-size: 16px;
  }
  .footer__grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .footer__actions {
    order: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(84px, 22vw, 124px);
    gap: 12px;
    margin-bottom: clamp(58px, 10vw, 78px);
  }
  .family-site,
  .top-link {
    width: 100%;
    height: clamp(48px, 10vw, 58px);
    padding-inline: clamp(16px, 4vw, 22px);
    font-size: clamp(16px, 3.9vw, 20px);
  }
  .family-site span {
    font-size: 28px;
    line-height: 1;
  }
  .top-link {
    font-size: clamp(17px, 4.2vw, 22px);
    font-weight: 700;
    white-space: nowrap;
  }
  .footer__nav {
    order: 2;
    gap: clamp(15px, 3.8vw, 24px);
    margin-bottom: clamp(42px, 8.4vw, 64px);
    font-size: clamp(18px, 4.2vw, 24px);
    font-weight: 700;
  }
  .footer__mobile-meta {
    order: 3;
    display: block;
    padding-bottom: clamp(42px, 8.2vw, 60px);
    border-bottom: 1px solid rgba(25, 26, 28, 0.08);
  }
  .footer__mobile-meta .footer__legal {
    margin-top: 0;
    font-size: clamp(15px, 3.7vw, 20px);
    font-weight: 700;
  }
  .footer__mobile-meta .footer__social {
    margin-top: 24px;
  }
  .footer__brand {
    order: 4;
    width: 100%;
    max-width: 100%;
    padding-top: clamp(38px, 7.8vw, 56px);
  }
  .footer__brand .footer__legal,
  .footer__brand .footer__social {
    display: none;
  }
  .footer strong {
    margin-bottom: clamp(14px, 3vw, 20px);
    font-size: clamp(36px, 10vw, 54px);
    line-height: 1.1;
  }
  .footer p {
    margin-bottom: 7px;
    max-width: 100%;
    font-size: clamp(13px, 3.1vw, 16px);
    line-height: 1.55;
    overflow-wrap: anywhere;
  }
  .footer__company {
    max-width: 360px;
    margin-top: clamp(36px, 7.8vw, 56px) !important;
    line-height: 1.8 !important;
  }
  .footer__company span {
    display: block;
  }
  .footer__company span:not(:last-child)::after {
    content: "";
  }
  .copyright {
    margin-top: 12px !important;
    font-size: 12px !important;
    font-weight: 700;
    line-height: 1.5 !important;
  }
}
@media (max-width: 359px) {
  :root {
    --gutter: 14px;
  }
  .container {
    padding-inline: 14px;
  }
  .site-header > .container {
    padding-inline: 14px;
  }
  .site-header__logo img {
    max-width: 116px;
    height: auto;
    max-height: 36px;
  }
  .menu-button {
    width: 34px;
    height: 34px;
  }
  .menu-button span {
    left: 7px;
    right: 7px;
  }
  .menu-button span:nth-child(1) {
    top: 10px;
  }
  .menu-button span:nth-child(2) {
    top: 16px;
  }
  .menu-button span:nth-child(3) {
    top: 22px;
  }
  .menu-button[aria-expanded=true] span:nth-child(1),
  .menu-button[aria-expanded=true] span:nth-child(3) {
    top: 16px;
  }
  .mobile-nav__close {
    right: 16px;
  }
  .mobile-nav__links {
    padding-inline: 14px;
  }
  .mobile-nav__links a {
    font-size: 26px;
  }
  .mobile-nav__language {
    padding-inline: 14px;
  }
  .mobile-nav__language .language,
  .mobile-nav__language .language-menu__list a {
    font-size: 26px;
  }
  .hero {
    height: 100svh;
    min-height: 100svh;
  }
  .hero-weather {
    top: 78px;
    right: 14px;
    transform: scale(0.72);
  }
  .experience {
    padding: 36px 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    min-height: calc(100svh - 64px);
  }
  .section-symbol {
    width: 54px;
    height: 92px;
    margin-bottom: 16px;
  }
  .section-copy h2,
  .space h2,
  .news-column h2,
  .visitor h2,
  .who h2 {
    font-size: clamp(36px, 12vw, 46px);
  }
  .section-copy strong {
    font-size: 21px;
    margin-block: 12px 10px;
  }
  .section-copy p {
    font-size: 14px;
    margin-block: 8px;
  }
  .experience-gallery {
    margin-top: 36px;
  }
  .experience-gallery__viewport {
    grid-auto-columns: calc(100vw - 28px);
    gap: 14px;
    scroll-padding-inline: 14px;
    padding-inline: 14px;
  }
  .experience-gallery--panorama .experience-gallery__viewport {
    padding-inline: 0;
    scroll-padding-inline: 0;
  }
  .experience-gallery__slide {
    height: auto;
  }
  .experience-gallery__slide--panorama {
    width: max(100vw, 1518px);
  }
  .experience-gallery__slide--panorama img {
    height: auto;
  }
  .space {
    padding-block: 64px;
  }
  .space-heading {
    margin-bottom: 34px;
  }
  .space-heading p {
    font-size: 22px;
  }
  .floor-plan figcaption {
    margin-bottom: 22px;
    font-size: 24px;
  }
  .news-column + .news-column {
    margin-top: 88px;
  }
  .space-card__text > p:last-child {
    font-size: 6px;
    line-height: 10px;
  }
  .news-detail__head {
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 8px;
    min-height: 40px;
    padding: 0 12px;
  }
  .news-detail__thumb {
    width: 17px;
    height: 17px;
  }
  .news-detail__thumb::before {
    top: 4px;
    left: 9px;
    width: 11px;
  }
  .news-detail__thumb::after {
    left: 3px;
    top: 8px;
    width: 11px;
  }
  .news-detail__head h3 {
    font-size: 17px;
  }
  .news-detail__date {
    font-size: 12px;
  }
  .news-detail__body {
    grid-template-columns: 0px minmax(0, 1fr);
    padding-left: 0;
  }
  .visitor {
    padding-block: 72px 110px;
  }
  .visitor__panel figure {
    min-height: 240px;
  }
  .visitor__panel > div {
    padding: 28px 20px;
  }
  .visitor__panel h3 {
    font-size: 28px;
  }
  .visitor__panel p {
    font-size: 15px;
  }
  .visitor__panel dt {
    font-size: 22px;
  }
  .visitor__panel dd {
    font-size: 17px;
  }
  .price-table {
    margin-top: 60px;
  }
  table {
    width: 100%;
    font-size: clamp(8px, 2.6vw, 10px);
    line-height: 1.32;
  }
  .price-table__col--type {
    width: 13%;
  }
  .price-table__col--ticket {
    width: 43%;
  }
  .price-table__col--price {
    width: 44%;
  }
  th,
  td {
    padding: 10px 2px;
  }
  thead th + th {
    border-left-width: 4px;
  }
  .price-table__ticket {
    font-size: clamp(8px, 2.55vw, 10px);
    letter-spacing: -0.05em;
  }
  .price-table__notice {
    margin-top: 30px;
    font-size: 11px;
    line-height: 1.65;
  }
  .site-modal__header {
    padding-top: 22px;
  }
  .site-modal__header h2 {
    font-size: clamp(34px, 12vw, 44px);
  }
  .site-modal__header--partnership h2 {
    font-size: clamp(22px, 7vw, 28px);
  }
  .site-modal__body {
    padding-bottom: 34px;
  }
  .site-modal-tabs button,
  .site-modal-guide__link {
    min-height: 36px;
    padding-inline: 11px;
    font-size: 12px;
  }
  .site-modal-faq__item strong {
    font-size: 16px;
  }
  .site-modal-guide,
  .site-modal-policy {
    font-size: 13px;
  }
  .site-modal-guide > strong,
  .site-modal-guide__headline {
    font-size: 19px;
  }
  .inquiry-section--modal .inquiry-form__radios {
    grid-template-columns: 1fr;
  }
  .inquiry-form--modal-design .inquiry-form__radios {
    display: flex;
  }
  .visitor-info-row {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    margin-top: 56px;
    padding-top: 46px;
  }
  .visitor-info-row__body > p,
  .visitor-info-row__body ol {
    font-size: 12px;
    line-height: 1.65;
  }
  .visitor-cautions article {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .visitor-cautions__icon {
    width: 58px;
    height: 58px;
  }
  .visitor-cautions p {
    font-size: 12px;
    line-height: 1.55;
  }
  .map {
    height: auto;
    aspect-ratio: 2/1;
  }
  .who {
    padding-block: 58px 62px;
  }
  .who h2 {
    font-size: 38px;
  }
  .who__brand {
    margin: 42px 0 22px;
    font-size: 24px;
  }
  .who strong {
    max-width: 280px;
    font-size: 17px;
  }
  .who p:last-child {
    max-width: 300px;
    font-size: 12px;
    line-height: 1.55;
  }
  .footer {
    padding-block: 48px 44px;
  }
  .footer__actions {
    grid-template-columns: minmax(0, 1fr) 76px;
    gap: 10px;
    margin-bottom: 54px;
  }
  .family-site,
  .top-link {
    height: 46px;
    padding-inline: 14px;
    font-size: 14px;
  }
  .top-link {
    font-size: 15px;
  }
  .footer__nav {
    gap: 13px;
    margin-bottom: 32px;
    font-size: 16px;
  }
  .footer__mobile-meta {
    padding-bottom: 34px;
  }
  .footer strong {
    font-size: 32px;
  }
  .footer p {
    font-size: 11px;
    line-height: 1.6;
  }
  .footer__company {
    margin-top: 30px !important;
  }
  .copyright {
    font-size: 10px !important;
  }
}
/* Family Site Dropdown */
.family-site-dropdown {
  position: relative;
}

.family-site-dropdown__menu {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 8px;
  margin-left: -160px;
  z-index: 100;
  max-height: 300px;
  overflow-y: auto;
}

.family-site-dropdown__menu[hidden] {
  display: none;
}

.family-site-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(25, 26, 28, 0.08);
  transition: background-color 0.2s ease;
}

.family-site-dropdown__item:last-child {
  border-bottom: none;
}

.family-site-dropdown__item:hover {
  background-color: var(--paper);
}

.family-site-dropdown__logo {
  width: 32px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.family-site-dropdown__content {
  flex: 1;
  min-width: 0;
}

.family-site-dropdown__name {
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  color: var(--ink);
}

.family-site-dropdown__desc {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  color: #666;
  margin-top: 2px;
}

.family-site-dropdown__external {
  font-size: 14px;
  color: var(--sky);
  opacity: 0.7;
  flex-shrink: 0;
}

.family-site-dropdown__item:hover .family-site-dropdown__external {
  opacity: 1;
}

/* Family site button active state */
.family-site[data-active=true] [data-family-site-icon] {
  transform: rotate(45deg);
}

.family-site:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Global External Link Handling */
a[target=_blank] {
  position: relative;
}

a.inline-text[target=_blank]::after {
  content: "↗";
  font-size: 0.8em;
  margin-left: 4px;
  color: var(--sky);
  opacity: 0.7;
  transition: opacity 0.2s ease;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  right: -1em;
}

a[target=_blank]:hover::after {
  opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .family-site-dropdown__menu {
    left: 0;
    right: auto;
    min-width: 250px;
    margin-left: 0;
  }
  .family-site-dropdown__item {
    padding: 10px 14px;
    gap: 10px;
  }
  .family-site-dropdown__logo {
    width: 28px;
    height: 20px;
  }
  .family-site-dropdown__name {
    font-size: 13px;
  }
  .family-site-dropdown__desc {
    font-size: 11px;
  }
}
@media (max-width: 359px) {
  .family-site-dropdown__menu {
    min-width: 220px;
  }
  .family-site-dropdown__item {
    padding: 8px 12px;
    gap: 8px;
  }
  .family-site-dropdown__logo {
    width: 24px;
    height: 18px;
  }
  .family-site-dropdown__name {
    font-size: 12px;
  }
  .family-site-dropdown__desc {
    font-size: 10px;
  }
}
