:root {
  --ink: #16192a;
  --ink-soft: #4b5168;
  --white: #fff;
  --bg: #fff;
  --bg-soft: #f6f7f4;
  --bg-warm: #fbf8f2;
  --bg-green: #e9f3e9;
  --bg-sky: #e8f5fa;
  --bg-blush: #fef5f1;
  --bar-yellow: #ffffab;
  --line: #e6e7ec;
  --sh-red: #e60012;
  --accent: #f5d400;
  --green: #2f9e57;
  --navy: #1c2450;
  --spring: #fef9cf;
  --summer: #d4eefb;
  --autumn: #fde4d2;
  --winter: #d0d8ed;
  --header-h: 72px;
  --radius: 28px;
  --radius-sm: 16px;
  --shadow: 0 18px 50px rgb(22 25 42 / 8%);
  --max: 1120px;
  --pad: clamp(20px, 4vw, 48px);
  --font: "Noto Sans JP", "Hiragino Sans", "Yu Gothic UI", sans-serif;
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-marion: "Marion", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --hero-radius: clamp(32px, 2.92vw, 56px);
  --heading-underline: #d7e200;
  --heading-mid-size: clamp(1.25rem, 2.5vw, 1.9rem);
  --heading-mid-size-md: clamp(1.15rem, 1.667vw, 2rem);
  --heading-mid-size-sm: clamp(1.05rem, 1.3542vw, 1.625rem);
  --slider-interval: 3s;
  --sales-dock-space: 72px;
}

@font-face {
  font-family: "Marion";
  src: local("Marion"), local("Marion Regular");
  font-weight: 400;
  font-style: normal;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.8;
  background: var(--bg);
  text-rendering: optimizeLegibility;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body.is-nav-open { overflow: hidden; }

#main {
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.inline-block{
  display: inline-block;
}

br.sp {
  display: none;
}

.is-image {
  position: relative;
  display: block;
  overflow: hidden;
}

.is-image::after {
  content: "image";
  position: absolute;
  right: 8px;
  bottom: 6px;
  z-index: 1;
  color: #0d0d0d;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  line-height: 1;
  /* text-shadow: 0 1px 2px rgb(0 0 0 / 55%); */
  pointer-events: none;
  background-color: #FFF;
  padding: 5px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus { top: 12px; }

.container {
  width: min(100% - var(--pad) * 2, var(--max));
  margin-inline: auto;
}

.container--wide {
  width: min(100% - var(--pad) * 2, 1240px);
  margin-inline: auto;
}

.section {
  padding-block: clamp(40px, 10vw, 90px);
}

.section--soft { background: var(--bg-soft); }
.section--warm { background: var(--bg-warm); }
.section--green { background: var(--bg-green); }
.section--sky { background: var(--bg-sky); }
.section--blush { background: var(--bg-blush); }
.section--ivory { background: #f5f5eb; }

.pill-kicker {
  display: inline-block;
  margin: 0 auto 16px;
  padding: 0.38em 1.5em;
  background: #00004f;
  color: #fff;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.354vw, 1.625rem);
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.pill-kicker--flat {
  border-radius: 0;
  font-size: clamp(1.05rem, 1.3542vw, 1.625rem);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 72px);
}

.section-head__icon {
  width: min(180px, 42vw);
  margin: 0 auto 20px;
}

.planting-head {
  position: relative;
}

.planting-head__trees {
  position: absolute;
  left: clamp(-260px, -12.63vw, -72px);
  top: -4px;
  width: clamp(120px, 10.1vw, 194px);
  height: auto;
  margin: 0;
  pointer-events: none;
}

#planting .section-kicker {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.25vw, 1.5rem);
  letter-spacing: 0.04em;
}

.section-kicker {
  margin: 0 0 10px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}

.section-title {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 3.4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.heading-mid {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: var(--heading-mid-size);
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #333;
}

.heading-mid--md {
  font-size: var(--heading-mid-size-md);
}

.heading-mid--sm {
  font-size: var(--heading-mid-size-sm);
}

p.heading-mid {
  margin: 0 0 16px;
}

.section-title--underline {
  display: inline-block;
  padding-bottom: 0.18em;
  border-bottom: clamp(6px, 0.52vw, 10px) solid var(--heading-underline);
}

.section-lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(0.92rem, 1.5vw, 1rem);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

html.js-ready [data-reveal],
html.js-ready .reveal-up,
html.js-ready .reveal-from-right,
html.js-ready .reveal-from-left {
  opacity: 0;
  transition: opacity 0.9s ease 0.35s, transform 0.9s ease 0.35s;
}

html.js-ready [data-reveal],
html.js-ready .reveal-up {
  transform: translateY(24px);
}

html.js-ready .reveal-from-right {
  transform: translateX(40px);
}

html.js-ready .reveal-from-left {
  transform: translateX(-40px);
}

html.js-ready [data-reveal].is-visible,
html.js-ready .reveal-up.is-visible,
html.js-ready .reveal-from-right.is-visible,
html.js-ready .reveal-from-left.is-visible {
  opacity: 1;
  transform: none;
}

html.js-ready .season-grid .season-card:nth-child(1) { transition-delay: 0.2s; }
html.js-ready .season-grid .season-card:nth-child(2) { transition-delay: 0.4s; }
html.js-ready .season-grid .season-card:nth-child(3) { transition-delay: 0.6s; }
html.js-ready .season-grid .season-card:nth-child(4) { transition-delay: 0.8s; }

html.js-ready .guide-grid .guide-card:nth-child(1) { transition-delay: 0.2s; }
html.js-ready .guide-grid .guide-card:nth-child(2) { transition-delay: 0.45s; }
html.js-ready .guide-grid .guide-card:nth-child(3) { transition-delay: 0.7s; }

html.js-ready .arco-strip .reveal-up:nth-child(1) { transition-delay: 0.2s; }
html.js-ready .arco-strip .reveal-up:nth-child(2) { transition-delay: 0.35s; }
html.js-ready .arco-strip .reveal-up:nth-child(3) { transition-delay: 0.5s; }
html.js-ready .arco-strip .reveal-up:nth-child(4) { transition-delay: 0.65s; }
html.js-ready .arco-strip .reveal-up:nth-child(5) { transition-delay: 0.8s; }

html.js-ready .spot-grid .spot-card:nth-child(1) { transition-delay: 0.2s; }
html.js-ready .spot-grid .spot-card:nth-child(2) { transition-delay: 0.35s; }
html.js-ready .spot-grid .spot-card:nth-child(3) { transition-delay: 0.5s; }
html.js-ready .spot-grid .spot-card:nth-child(4) { transition-delay: 0.65s; }
html.js-ready .spot-grid .spot-card:nth-child(5) { transition-delay: 0.8s; }
html.js-ready .spot-grid .spot-card:nth-child(6) { transition-delay: 0.95s; }

html.js-ready .access-photos .reveal-up:nth-child(1) { transition-delay: 0.2s; }
html.js-ready .access-photos .reveal-up:nth-child(2) { transition-delay: 0.4s; }
html.js-ready .access-photos .reveal-up:nth-child(3) { transition-delay: 0.6s; }

html.js-ready #sales .sales-grid .sales-card:nth-child(1) { transition-delay: 0.2s; }
html.js-ready #sales .sales-grid .sales-card:nth-child(2) { transition-delay: 0.4s; }
html.js-ready #sales .sales-grid .sales-card:nth-child(3) { transition-delay: 0.6s; }

html.js-ready .about-grid .about-card:nth-child(1) { transition-delay: 0.2s; }
html.js-ready .about-grid .about-card:nth-child(2) { transition-delay: 0.35s; }
html.js-ready .about-grid .about-card:nth-child(3) { transition-delay: 0.5s; }
html.js-ready .about-grid .about-card:nth-child(4) { transition-delay: 0.65s; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgb(22 25 42 / 4%);
}

.site-header__inner {
  position: relative;
  z-index: 120;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 var(--pad);
}

.site-logo img {
  width: min(400px, 58vw);
  height: auto;
}

.nav-toggle {
  display: grid;
  place-items: center;
  margin-left: auto;
  flex-shrink: 0;
  min-width: 56px;
  height: 56px;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 6px 0 0;
  cursor: pointer;
  z-index: 121;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  line-height: 1.2;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto 8px;
  background: var(--ink);
  position: relative;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before { top: -7px; }
.nav-toggle__bars::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { top: 0; transform: rotate(-45deg); }

.nav-toggle__word {
  display: block;
  margin-top: 2px;
  font-family: var(--font);
  font-weight: 500;
  text-transform: lowercase;
}

.site-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: calc(var(--header-h) + 24px) var(--pad) 48px;
  overflow: auto;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  width: min(640px, 100%);
  counter-reset: nav-item;
}

.site-nav li {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.site-nav.is-open li {
  opacity: 1;
  transform: none;
}

.site-nav.is-open li:nth-child(1) { transition-delay: 0.08s; }
.site-nav.is-open li:nth-child(2) { transition-delay: 0.14s; }
.site-nav.is-open li:nth-child(3) { transition-delay: 0.2s; }
.site-nav.is-open li:nth-child(4) { transition-delay: 0.26s; }
.site-nav.is-open li:nth-child(5) { transition-delay: 0.32s; }
.site-nav.is-open li:nth-child(6) { transition-delay: 0.38s; }

.site-nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.1vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.45;
  color: var(--ink);
}

.site-nav a::before {
  counter-increment: nav-item;
  content: counter(nav-item, decimal-leading-zero);
  flex: 0 0 auto;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #9aa06a;
}

.site-nav a:hover {
  color: var(--sh-red);
}

@media (prefers-reduced-motion: reduce) {
  .site-nav,
  .site-nav li {
    transition: none;
  }

  .site-nav li {
    opacity: 1;
    transform: none;
  }
}

/* Hero */
.hero {
  padding: 12px var(--pad) 0;
}

.hero__visual {
  position: relative;
  min-height: min(72vh, 720px);
  background: transparent;
}

.hero__visual > img,
.hero__visual > video {
  width: 100%;
  height: min(72vh, 720px);
  object-fit: cover;
  object-position: center 40%;
  display: block;
  border-radius: var(--hero-radius);
}

.hero__logo {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
}

.hero__logo img {
  width: clamp(260px, 49.3vw, 946px);
  height: auto;
}

.hero__caption {
  --hero-caption-pad-t: 20px;
  --hero-caption-pad-r: 40px;
  --hero-caption-pad-b: 28px;
  --hero-caption-pad-l: clamp(16px, 2.2vw, 28px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  max-width: min(580px, 83%);
  margin: 0;
  padding:
    var(--hero-caption-pad-t)
    var(--hero-caption-pad-r)
    var(--hero-caption-pad-b)
    var(--hero-caption-pad-l);
  background: #fff;
  border-bottom-right-radius: var(--hero-radius);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.hero__caption.is-shown {
  opacity: 1;
}

.hero__caption-sizer,
.hero__caption-text {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.85;
  letter-spacing: 0.04em;
}

.hero__caption-sizer {
  display: block;
  visibility: hidden;
  pointer-events: none;
  user-select: none;
}

.hero__caption-text {
  position: absolute;
  top: var(--hero-caption-pad-t);
  right: var(--hero-caption-pad-r);
  bottom: var(--hero-caption-pad-b);
  left: var(--hero-caption-pad-l);
  color: var(--ink);
  opacity: 1;
  transition: opacity 0.55s ease;
}

.hero__caption-text.is-fading {
  opacity: 0;
}

.hero__catch {
  position: relative;
  text-align: center;
  margin-top: clamp(48px, 7vw, 88px);
}

.walk-scene__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__catch .walk-scene__art {
  left: calc(-1 * var(--pad));
  right: calc(-1 * var(--pad));
  width: auto;
}

.walk-deco {
  position: absolute;
  height: auto;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

/* 1920デザイン座標。左右は本文カラム（760px）の外側に退避 */
.walk-deco--tree-l {
  left: min(3.65vw, 70px);
  top: 0;
  width: min(11.46vw, 220px);
}

.walk-deco--trees-r {
  left: max(82.29vw, calc(50% + 380px + 16px));
  top: clamp(8px, 2.4vw, 46px);
  width: min(17.29vw, 332px);
}

.walk-deco--family-l {
  left: min(7.5vw, 144px);
  top: clamp(168px, 15.2vw, 214px);
  width: min(9.06vw, 174px);
}

.walk-deco--walk-r {
  left: max(77.81vw, calc(50% + 380px + 24px));
  top: clamp(188px, 16.6vw, 230px);
  width: min(3.85vw, 74px);
}

#concept {
  position: relative;
  overflow: visible;
}

.walk-deco--walker-l {
  left: min(21.46vw, calc(50% - 380px - 72px));
  top: clamp(16px, 3.2vw, 64px);
  width: min(2.08vw, 40px);
}

.walk-deco--biz-l {
  left: min(12.81vw, 246px);
  top: clamp(160px, 18vw, 280px);
  width: min(4.38vw, 84px);
}

.walk-deco--elderly-r {
  left: max(88.65vw, calc(50% + 380px + 48px));
  top: clamp(8px, 2vw, 40px);
  width: min(4.9vw, 94px);
}

.walk-deco--dog-r {
  left: max(81vw, calc(50% + 380px + 32px));
  top: clamp(88px, 10vw, 168px);
  width: min(3.54vw, 68px);
}

#townscape {
  position: relative;
  overflow: visible;
}

#townscape.section--soft {
  background: none;
}

#townscape::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -2vw;
  bottom: -4vw;
  z-index: 0;
  background: #fcfae6;
  pointer-events: none;
  clip-path: polygon(
    0 12vw,
    100% 0,
    100% 100%,
    0 calc(100% - 10vw)
  );
}

#planting {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  padding-bottom: 0;
}

.walk-deco--stroller-r {
  left: max(81.67vw, calc(50% + 380px + 24px));
  top: -12px;
  width: min(5.42vw, 104px);
}

.walk-deco--runners-l {
  left: min(17.4vw, calc(50% - 380px - 140px));
  top: clamp(72px, 6.7vw, 128px);
  width: min(6.35vw, 122px);
}

.walk-deco--mom-r {
  left: max(76.98vw, calc(50% + 380px + 32px));
  top: clamp(132px, 11.2vw, 216px);
  width: min(3.02vw, 58px);
}

.hero__catch h1,
.hero__main-logo,
#concept .container,
#townscape .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {
  .walk-scene__art { display: none; }
}

.hero__catch h1 {
  margin: 0 0 28px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 3.125rem);
  letter-spacing: 0.06em;
  line-height: 1.35;
  color: #00004c;
}

.hero__catch h1 span {
  display: inline-block;
  padding-bottom: 13px;
  border-bottom: clamp(7px, 0.73vw, 14px) solid var(--heading-underline);
  box-shadow: none;
}

.hero__main-logo {
  width: clamp(280px, 48.44vw, 930px);
  margin: 0 auto;
}

#concept.section {
  padding-top: clamp(48px, 4.84vw, 93px);
}

#concept .section-head {
  margin-bottom: clamp(32px, 2.81vw, 54px);
}

#concept .section-kicker {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(0.95rem, 1.15vw, 1.375rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #333;
}

/* Intro */
.intro-copy {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink-soft);
}

.intro-copy p + p { margin-top: 1.2em; }

.copy {
  color: var(--ink-soft);
}

.copy p { margin: 0 0 1em; }
.copy p:last-child { margin-bottom: 0; }
.copy h4 {
  margin: 1.4em 0 0.6em;
  color: var(--ink);
  font-size: 1.05rem;
}

.tenant-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 16px;
  align-items: start;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #d0d0d0;
}

.tenant-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  font-size: 0.82rem;
  color: var(--ink);
}

.tenant-list li {
  position: relative;
  padding-left: 1em;
}

.tenant-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #222;
}

.tenant-label {
  display: inline-block;
  margin: 0;
  padding: 0.15em 0.7em;
  background: #3a3a3a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.plot-figure {
  margin: clamp(40px, 6vw, 72px) auto 0;
  max-width: 1080px;
}

.plot-figure img {
  width: 100%;
  border-radius: var(--radius-sm);
  /* background: #fafafa; */
}

.plot-figure figcaption {
  margin-top: 10px;
  text-align: right;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

/* Seasons */
.season-grid {
  --season-step: clamp(5px, 2vw, 10px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  padding-bottom: calc(var(--season-step) * 3);
}

.season-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.season-card:nth-child(2) { margin-top: calc(var(--season-step) + 20px); }
.season-card:nth-child(3) { margin-top: calc(var(--season-step) + 40px); }
.season-card:nth-child(4) { margin-top: calc(var(--season-step) + 60px); }

.season-card--spring { background: var(--spring); }
.season-card--summer { background: var(--summer); }
.season-card--autumn { background: var(--autumn); }
.season-card--winter { background: var(--winter); }

.season-card__head {
  display: grid;
  place-items: center;
  min-height: clamp(120px, 16vw, 130px);
  padding: 20px 16px 16px;
}

.season-card__letter {
  width: min(42%, 60px);
  height: auto;
}

.season-card__photo {
  aspect-ratio: 310 / 206;
  overflow: hidden;
}

.season-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.season-card__body {
  padding: 18px 16px 28px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
  min-height: 8.5em;
}

.season-card__body p { margin: 0 0 0.6em; }
.season-card__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.season-card__body li::before {
  content: "・";
}

.bar-heading {
  display: inline-block;
  margin: 0 auto 28px;
  padding: 0.12em 1.1em 0.18em;
  background: var(--bar-yellow);
  font-size: clamp(0.95rem, 1.146vw, 1.375rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #333;
  text-align: center;
}

.bar-heading--sm {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 16px;
  font-size: clamp(0.82rem, 1.042vw, 1.25rem);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

#street.section {
  position: relative;
  z-index: 0;
  overflow: visible;
  padding-bottom: clamp(72px, 8vw, 128px);
}

#street.section--green {
  background: none;
}

#street::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #e9f3e9;
  pointer-events: none;
  clip-path: polygon(
    0 0,
    100% 5.7vw,
    100% calc(100% - 4vw),
    0 100%
  );
}

#street .container--wide {
  position: relative;
  z-index: 1;
}

.street-panel {
  position: relative;
  padding: clamp(28px, 3vw, 48px) clamp(20px, 3vw, 48px) clamp(32px, 3.4vw, 56px);
  background: #fff;
  border-radius: clamp(24px, 2.5vw, 48px);
  text-align: center;
}

.street-panel__illust {
  position: absolute;
  top: clamp(8px, 1vw, 20px);
  right: clamp(20px, 3.2vw, 48px);
  width: clamp(56px, 5.2vw, 100px);
  height: auto;
  pointer-events: none;
}

.street-panel__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.85fr;
  gap: clamp(20px, 2.4vw, 36px);
  align-items: center;
  text-align: left;
}

.street-panel__diagram img,
.green-diagrams img,
.south-block__diagram img,
.guide-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.street-panel__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.street-panel__photo figcaption {
  margin-top: 8px;
  text-align: center;
  font-size: 0.82rem;
  color: #333;
}

.street-panel__copy {
  color: var(--ink-soft);
  font-size: clamp(0.88rem, 0.83vw, 1rem);
  line-height: 1.9;
}

.street-panel__copy p { margin: 0; }

#green.section {
  position: relative;
  z-index: 1;
  isolation: isolate;
  padding-top: clamp(24px, 3vw, 48px);
  padding-bottom: 0;
  background: #fff;
}

#green.section--green {
  background: #fff;
}

.green-intro {
  display: grid;
  grid-template-columns: 1fr 600px;
  gap: clamp(16px, 1.25vw, 24px);
  align-items: start;
}

.green-intro__copy .section-title {
  text-align: left;
}

.green-intro__photo img {
  width: 100%;
  aspect-ratio: 600 / 360;
  object-fit: cover;
  border-radius: clamp(24px, 2.2vw, 42px);
}

.green-diagrams {
  margin: clamp(40px, 5vw, 72px) 0 0;
}

.south-wrap {
  position: relative;
  background: none;
  padding: clamp(48px, 5vw, 80px) 0 clamp(24px, 3vw, 40px);
}

.south-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #e8f5fa;
  pointer-events: none;
  clip-path: polygon(
    0 0,
    100% 6vw,
    100% 100%,
    0 100%
  );
}

.south-wrap > * {
  position: relative;
  z-index: 1;
}

.south-block {
  display: grid;
  grid-template-columns: minmax(240px, 590px) 1fr;
  gap: clamp(32px, 5.7vw, 110px);
  align-items: center;
}

.south-block__diagram {
  margin: 0;
  padding: clamp(24px, 3vw, 40px);
  background: #fff;
  border-radius: clamp(24px, 2.5vw, 48px);
}

.south-block__copy .heading-mid {
  margin: 0 0 16px;
}

#guideline.section {
  padding-top: clamp(24px, 3vw, 48px);
}

.guide-card {
  padding: clamp(20px, 2vw, 28px) clamp(16px, 1.6vw, 24px) clamp(24px, 2.4vw, 36px);
  background: #fff;
  border-radius: clamp(20px, 2vw, 32px);
}

.guide-card p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.8;
  text-align: left;
}

/* Split / cards */
.split {
  display: grid;
  gap: 40px;
  align-items: center;
}

.split--2 { grid-template-columns: 1fr 1fr; }

.media-frame {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.media-frame:has(p) {
  overflow: visible;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-grid,
.feature-grid,
.place-grid,
.facility-grid,
.sales-grid,
.about-grid {
  display: grid;
  gap: 24px;
}

.guide-grid { grid-template-columns: repeat(3, 1fr); }
.feature-grid { grid-template-columns: repeat(2, 1fr); }
.place-grid { grid-template-columns: repeat(2, 1fr); }
.facility-grid { grid-template-columns: repeat(2, 1fr); }
.facility-grid--3 { grid-template-columns: repeat(3, 1fr); }
.sales-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.about-grid { grid-template-columns: repeat(4, 1fr); }

.about-grid .card {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 12px;
}

.about-grid img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.card {
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card--flat {
  box-shadow: none;
  border: 1px solid var(--line);
}

.card__body { padding: 22px 22px 28px; }
.card__body h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.card__body p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; }

.card__media img,
.card__media {
  aspect-ratio: 16 / 10;
}

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

.card__meta {
  margin: 8px 0 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.feature-grid {
  gap: clamp(8px, 0.625vw, 12px);
  background: none;
  overflow: visible;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(36px, 3.75vw, 56px) clamp(20px, 2.5vw, 40px) clamp(32px, 3.3vw, 48px);
  background: #fff;
  text-align: center;
}

.feature-card--quality { border-top-left-radius: clamp(40px, 3.75vw, 72px); }
.feature-card--design { border-top-right-radius: clamp(40px, 3.75vw, 72px); }
.feature-card--maintenance { border-bottom-left-radius: clamp(40px, 3.75vw, 72px); }
.feature-card--quick { border-bottom-right-radius: clamp(40px, 3.75vw, 72px); }

.feature-card--quality { color: #b9122e; }
.feature-card--design { color: #e69528; }
.feature-card--maintenance { color: #699243; }
.feature-card--quick { color: #5089bf; }

.feature-card h3 {
  margin: 0 0 16px;
  font-family: var(--font-marion);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.1875vw, 2.625rem);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.feature-card p {
  margin: 10px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.0417vw, 1.25rem);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.feature-card p.feature-card__detail {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(0.875rem, 0.9375vw, 1.0625rem);
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: justify;
  text-justify: inter-ideograph;
  color: #333;
}

.feature-card.is-expanded > p:not(.feature-card__detail) {
  margin-bottom: 20px;
}

.feature-card.is-expanded .more-link {
  display: none;
}

.more-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  margin-top: auto;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.0417vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.more-link::after {
  content: "→";
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0;
  animation: more-link-arrow 1.1s ease-in-out infinite;
}

@keyframes more-link-arrow {
  0%,
  100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

@media (prefers-reduced-motion: reduce) {
  .more-link::after {
    animation: none;
  }
}

/* .more-link::before {
  content: "";
  width: clamp(52px, 4.27vw, 82px);
  height: clamp(52px, 4.27vw, 82px);
  border-radius: 50%;
  border: clamp(3px, 0.26vw, 5px) solid currentColor;
  background:
    linear-gradient(currentColor, currentColor) center / 56% clamp(8px, 0.625vw, 12px) no-repeat,
    linear-gradient(currentColor, currentColor) center / clamp(8px, 0.625vw, 12px) 56% no-repeat;
} */

.arco-maps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.2vw, 36px);
  align-items: start;
}

.arco-maps img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.arco-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: clamp(28px, 3vw, 48px);
}

.arco-strip img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.hanyu-block__title {
  text-align: center;
  margin: clamp(48px, 5vw, 80px) 0 28px;
  font-size: clamp(1.25rem, 1.771vw, 2.125rem);
}

#hanyu.section {
  position: relative;
  overflow: visible;
}

#hanyu.section--blush {
  background: none;
  padding-bottom: 0;
}

#hanyu::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #fef5f1;
  pointer-events: none;
  clip-path: polygon(
    0 6vw,
    100% 0,
    100% 100%,
    0 100%
  );
}

#hanyu .container--wide {
  position: relative;
  z-index: 1;
}

#outing-heading.heading-mid {
  font-size: clamp(1.25rem, 1.771vw, 2.125rem);
}

#outing.section {
  position: relative;
  overflow: visible;
}

#outing.section--blush {
  background: none;
}

#outing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #fef5f1;
  pointer-events: none;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    0 calc(100% - 0vw)
  );
}

#outing .container--wide {
  position: relative;
  z-index: 1;
}

.hanyu-stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3vw, 48px);
  align-items: center;
}

.hanyu-stat__chart {
  margin: 0;
  padding: clamp(16px, 2vw, 28px);
  background: #fff;
  /* border-radius: clamp(20px, 2vw, 32px); */
}

.hanyu-stat__chart img,
.hanyu-pies img {
  width: 100%;
  height: auto;
}

.hanyu-pies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 40px);
  margin-top: clamp(28px, 3vw, 48px);
}

.hanyu-access__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3vw, 48px);
  align-items: start;
}

.hanyu-access__row img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: clamp(20px, 2.2vw, 36px);
}

.outing-panel {
  position: relative;
  margin-top: clamp(28px, 3vw, 40px);
  padding: clamp(28px, 3.2vw, 48px);
  background: #fff;
  border-radius: clamp(24px, 2.5vw, 48px);
}

.outing-panel:not(.outing-panel--michi) {
  padding-right: clamp(168px, 13vw, 228px);
}

.outing-panel__deco {
  position: absolute;
  pointer-events: none;
}

.outing-panel__deco--family {
  top: 20px;
  right: 24px;
  width: clamp(88px, 9.06vw, 174px);
  height: auto;
}

.outing-panel__deco--picnic {
  right: 20px;
  bottom: 16px;
  width: clamp(120px, 10.3vw, 198px);
  height: auto;
}

.outing-row {
  display: grid;
  grid-template-columns: minmax(240px, 467px) minmax(0, 620px);
  gap: clamp(24px, 2.8vw, 40px);
  align-items: start;
  justify-content: start;
}

.outing-row + .outing-row {
  margin-top: clamp(28px, 3vw, 40px);
}

.outing-row img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

.outing-row h3 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.25vw, 1.5rem);
  color: #00004b;
}

.outing-row p {
  max-width: 620px;
  margin: 0 0 0.8em;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.8;
}

.outing-row p:last-child { margin-bottom: 0; }

.outing-label {
  margin: 0 0 8px !important;
  font-weight: 700;
  color: var(--ink) !important;
}

/* Slider */
.slider {
  position: relative;
}

.slider__frame {
  position: relative;
}

.slider__viewport {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
  touch-action: pan-y;
  cursor: grab;
}

.slider__viewport:active {
  cursor: grabbing;
}

.slider--hero .slider__viewport,
.slider--hero {
  border-radius: clamp(24px, 4vw, 48px);
}

.slider__track {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.slider__track.is-instant,
.slider__track.is-dragging {
  transition: none;
}

.slider__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.slider__slide img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 6px 20px rgb(0 0 0 / 12%);
  cursor: pointer;
}

.slider__arrow--prev { left: 12px; }
.slider__arrow--next { right: 12px; }

.slider__arrow::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.slider__arrow--prev::before { transform: rotate(45deg); margin-left: 6px; }
.slider__arrow--next::before { transform: rotate(-135deg); margin-right: 6px; }

.slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c8cad3;
  cursor: pointer;
}

.slider__dot.is-active { background: var(--ink); transform: scale(1.2); }

.slider__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-top: 12px;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.slider__thumb {
  flex: 0 0 88px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  background: none;
  cursor: pointer;
}

.slider__thumb.is-active { border-color: var(--sh-red); }

.slider__thumb img {
  width: 88px;
  height: 60px;
  object-fit: cover;
}

#sh-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.604vw, 3.125rem);
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: #00004c;
}

#sweden-house {
  background: none;
  padding-block: 0;
}

#sweden-house .sh-band {
  width: 100%;
  background: #f5f5eb;
}

#sweden-house .sh-band--head {
  padding: clamp(72px, 10vw, 128px) 0 clamp(36px, 4vw, 64px);
}

#sweden-house .sh-band--features {
  padding: clamp(64px, 6vw, 96px) 0 clamp(72px, 10vw, 128px);
}

#sweden-house .sh-head {
  max-width: 920px;
  margin-bottom: 0;
}

#sweden-house .section-head__icon {
  width: clamp(88px, 6.61vw, 127px);
  height: auto;
  margin: 0 auto clamp(20px, 1.8vw, 28px);
}

#sweden-house .slider--sh {
  --sh-slide-max-h: calc(80vh - var(--header-h));
  --sh-slide-max-h: calc(80svh - var(--header-h));
  overflow: visible;
  width: min(100%, calc(var(--sh-slide-max-h) * 3 / 2));
  margin: clamp(40px, 5vw, 72px) auto;
}

#sweden-house .slider__slide img {
  width: 100%;
  height: auto;
  max-height: var(--sh-slide-max-h);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

#sweden-house .slider__frame {
  overflow: visible;
}

#sweden-house .slider__caption {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  max-width: min(70%, 28em);
  margin: 0;
  padding: 6px 10px;
  border-radius: 4px;
  background: #fff;
  color: #0d0d0d;
  font-family: var(--font-serif);
  font-size: clamp(0.7rem, 0.833vw, 0.875rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: right;
  pointer-events: none;
}

#sweden-house .slider__caption[hidden] {
  display: none;
}

#sweden-house .slider__arrow {
  width: 28px;
  height: 56px;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

#sweden-house .slider__arrow--prev { left: -40px; }
#sweden-house .slider__arrow--next { right: -40px; }

#sweden-house .slider__arrow::before { content: none; }

#sweden-house .slider__arrow svg {
  display: block;
  width: 18px;
  height: 44px;
  margin: 0 auto;
  fill: none;
  stroke: #111;
  stroke-width: 1.4;
  stroke-linejoin: miter;
  stroke-linecap: butt;
}

#sweden-house .slider__dots { display: none; }

#sweden-house .slider__thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 13px;
  overflow: visible;
  margin-top: 24px;
  padding-bottom: 0;
}

#sweden-house .slider__thumb {
  position: relative;
  flex: none;
  width: 100%;
  border: 0;
  border-radius: clamp(16px, 1.25vw, 24px);
  overflow: hidden;
}

#sweden-house .slider__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  transition: opacity 0.25s ease;
}

#sweden-house .slider__thumb.is-active {
  outline: 2px solid #00004c;
  outline-offset: 2px;
}

#sweden-house .slider__thumb.is-active::after {
  opacity: 0;
}

#sweden-house .slider__thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.sales-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgb(22 25 42 / 8%);
}

.sales-card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
}

.sales-card__visual {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.sales-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sales-card__body {
  padding: 22px 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.sales-card__body h3 {
  margin: 0;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 400;
  color: #333;
}

.sales-card__body strong {
  display: block;
  margin-top: 4px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #333;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 10px;
}

.btn:hover { background: #2a3050; }

.btn--block { width: 100%; }

.btn--arrow {
  position: relative;
  justify-content: center;
  border-radius: 8px;
  min-height: 52px;
  background: #111;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.btn--arrow::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
}

.btn--arrow::before {
  content: "";
  position: absolute;
  right: 19px;
  top: 50%;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-top: 1.6px solid #111;
  border-right: 1.6px solid #111;
  transform: translateY(-50%) rotate(45deg);
}

section#map {
  padding: 0;
  overflow-x: clip;
}

.google_map {
  width: 100%;
  max-width: 100%;
  text-align: center;
  overflow: hidden;
}

.google_map iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 400px;
  border: 0;
}

.google_map .btn a{
  text-decoration: none;
}

.sales-card--land .sales-card__visual {
  aspect-ratio: 3 / 2;
  display: grid;
  place-items: center;
  background: #e4f3e8;
  padding: 24px;
}

.sales-card--land .sales-card__visual img {
  width: min(72%, 254px);
  height: auto;
  object-fit: contain;
}

/* Tables / times */
.time-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.time-list li {
  display: grid;
  grid-template-columns: max-content max-content 1fr;
  gap: 8px 12px;
  align-items: center;
  padding: 14px 22px;
  background: #fff;
  border-radius: 999px;
  font-size: 0.88rem;
}

.time-list li span:last-child {
  font-size: 0.78rem;
  color: #333;
}

.time-list strong {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #e36b00;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.note {
  margin: 16px 0 0;
  font-size: 0.65rem;
  color: var(--ink-soft);
}

.sim-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.sim-table caption {
  caption-side: top;
  padding-bottom: 20px;
}

.sim-table caption span {
  display: inline-block;
  padding: 0.38em 1.6em;
  background: #00004c;
  color: #fff;
  border-radius: 0;
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.sim-table th,
.sim-table td {
  padding: 16px 14px;
  text-align: center;
  border: 1px solid #bcbcbc;
}

.sim-table thead th { background: #f3f4f6; font-weight: 500; }
.sim-table thead th:nth-child(2),
.sim-table td:nth-child(2) { background: #f3f7ee; }
.sim-table thead th:nth-child(3),
.sim-table td:nth-child(3) { background: #eef4f8; }
.sim-table tbody th { background: #fff; font-weight: 400; }
.sim-table tr:last-child th,
.sim-table tr:last-child td {
  font-weight: 700;
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  padding-block: 22px;
}

.map-figure {
  margin: 24px auto 0;
}

.map-figure img {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
}

.map-figure--train {
  max-width: 900px;
}

.map-figure--highway {
  max-width: 900px;
}

.category-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 28px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.08em;
}

.category-title::before,
.category-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 80px;
}

.category-title.heading-mid {
  font-size: var(--heading-mid-size);
}

.facility-block + .facility-block { margin-top: clamp(56px, 8vw, 96px); }

.facility-block { position: relative; }

.facility-block > .heading-mid {
  text-align: center;
  margin: 0 0 28px;
}

#technology .container--wide { text-align: center; }

#facilities-heading,
#access-heading,
#sales-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.604vw, 3.125rem);
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: #00004c;
}

#technology .section-head { max-width: 1100px; }

#facilities.section {
  position: relative;
  overflow: hidden;
}

#facilities.section--ivory {
  background: none;
}

#facilities::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #f5f5eb;
  pointer-events: none;
  clip-path: polygon(
    0 6vw,
    100% 0,
    100% 100%,
    0 calc(100% - 6vw)
  );
}

#facilities .container--wide {
  position: relative;
  z-index: 1;
}

#facilities .section-head,
#access .section-head,
#sales .section-head {
  max-width: 920px;
}

#access .section-head__icon {
  width: clamp(52px, 3.6vw, 68px);
  height: auto;
  margin: 16px auto 20px;
}

#access .tech-block__icon {
  width: clamp(72px, 5.2vw, 96px);
  height: auto;
  margin: 16px auto 20px;
}

#technology .heading-mid,
#facilities .heading-mid,
#access .heading-mid,
#simulation .heading-mid,
#about .heading-mid {
  color: #00004c;
}
section#technology,
section#sales,
section#simulation {
  padding-bottom: 0;
}
section#access {
  padding-top: 30px;
}
.tech-block {
  text-align: center;
  margin: clamp(40px, 5vw, 72px) auto 24px;
}

.tech-block__icon {
  width: auto;
  height: clamp(72px, 5.8vw, 100px);
  margin: 0 auto 16px;
}

.tech-copy {
  max-width: 920px;
  margin: 0 auto 32px;
  text-align: justify;
}

.tech-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 0 0 32px;
  text-align: left;
}

.tech-card {
  margin: 0;
  padding: clamp(20px, 2vw, 32px);
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: clamp(24px, 2.4vw, 40px);
  text-align: center;
}

.tech-card img { width: 100%; height: auto; }
.tech-card figcaption,
.tech-card h4 {
  margin: 16px 0 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  color: #333;
}

.tech-card--photo {
  padding: clamp(16px, 1.6vw, 24px) clamp(16px, 1.6vw, 24px) 28px;
  text-align: center;
}

.tech-card--photo img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: clamp(20px, 2vw, 32px);
}

.tech-card--photo h4,
.tech-card--photo p { padding: 0; }

.tech-card--photo p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.8;
  text-align: justify;
}

.quake-wrap {
  max-width: 100%;
  margin: 0 auto clamp(48px, 5vw, 80px);
  padding: clamp(28px, 3vw, 48px) clamp(20px, 2.4vw, 40px);
  background: #f7f7f7;
  border-radius: clamp(28px, 2.8vw, 48px);
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
}

.quake-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 20px;
  margin: 24px 0 36px;
}

.quake-num {
  width: min(260px, 100%);
  padding: 24px 20px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
}

.quake-num--circle {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  background: #fff;
}

.quake-num p { margin: 0 0 8px; font-size: 0.85rem; }
.quake-num span { font-size: 0.75rem; font-weight: 400; }
.quake-num strong {
  display: block;
  font-size: clamp(2rem, 3.3vw, 2.75rem);
  font-weight: 700;
  color: #00004c;
  line-height: 1.1;
}
.quake-num small {
  display: block;
  margin-top: 8px;
  font-size: 0.7rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.quake-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #00004c;
}

.quake-eq {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00004c;
}

.tech-em {
  margin: 0 0 0.8em;
  color: #00004c;
  font-weight: 700;
}

.tech-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
  margin: 0 0 clamp(40px, 4vw, 64px);
  text-align: left;
  width: 100%;
  min-width: 0;
}

.tech-split > * { min-width: 0; }

.tech-split img { width: 100%; height: auto; display: block; }

.quake-wrap .tech-split {
  margin: clamp(28px, 3vw, 48px) 0 0;
}

.quake-wrap .tech-split:last-child {
  margin-bottom: 0;
}

.tech-monobox {
  text-align: center;
  padding: clamp(28px, 3vw, 48px);
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: clamp(28px, 2.8vw, 48px);
}

.tech-monobox img { width: 100%; height: auto; margin-top: 16px; }

.fac-head { position: relative; max-width: 860px; }

.fac-head__person {
  position: absolute;
  height: auto;
  pointer-events: none;
}

.fac-head__person--backpack {
  left: clamp(-150px, -10vw, -48px);
  top: 0;
  width: clamp(44px, 3.6vw, 70px);
}

.fac-head__person--family {
  left: clamp(-120px, -7vw, -20px);
  top: 58%;
  width: clamp(64px, 5.2vw, 96px);
}

.fac-head__person--stroller {
  right: clamp(-160px, -11vw, -56px);
  top: -8px;
  width: clamp(64px, 5.4vw, 100px);
}

.fac-head__person--woman {
  right: clamp(-90px, -5.2vw, -16px);
  top: 36%;
  width: clamp(40px, 3.2vw, 62px);
}

.fac-head__person--elderly {
  right: clamp(-200px, -14vw, -80px);
  top: 48%;
  width: clamp(32px, 2.6vw, 50px);
}

.fac-deco {
  position: absolute;
  pointer-events: none;
  height: auto;
}

.fac-deco--biz {
  right: clamp(0px, 4vw, 80px);
  top: -8px;
  width: clamp(64px, 5.2vw, 96px);
}

.cat-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto 28px;
  padding: 0.4em 1.5em;
  background: #00004c;
  color: #fff;
  border-radius: 0;
  font-family: var(--font-marion);
  font-size: clamp(1.15rem, 1.56vw, 1.75rem);
  letter-spacing: 0.06em;
}

.cat-pill img {
  width: auto;
  height: 0.95em;
}

.fac-row {
  display: grid;
  grid-template-columns: minmax(240px, 467px) minmax(0, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
  align-items: start;
  margin: 0 0 clamp(28px, 3vw, 40px);
  padding: 0;
  background: transparent;
}

.fac-row--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 467px);
}

.fac-row--reverse > img:not(.park-deco),
.fac-row--reverse > .is-image { order: 2; }

.fac-row > img:not(.park-deco),
.fac-row > .is-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: clamp(28px, 2.6vw, 44px);
  position: relative;
  z-index: 1;
}

.fac-row > .is-image {
  width: 100%;
  border-radius: clamp(28px, 2.6vw, 44px);
  z-index: 1;
}

.fac-row__body {
  background: #fff;
  border-radius: clamp(28px, 2.8vw, 48px);
  padding: clamp(28px, 3vw, 44px);
}

.fac-row--park {
  grid-template-columns: minmax(240px, 467px) minmax(240px, 420px) auto;
  align-items: center;
}

.park-deco {
  width: clamp(110px, 9vw, 168px);
  height: auto;
  align-self: end;
  margin-bottom: 8px;
}

.fac-row h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.15rem, 1.35vw, 1.5rem);
  color: #00004b;
}

.fac-row p {
  margin: 0 0 0.8em;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.8;
}

.fac-row p.tenant-label {
  color: #fff;
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.4;
  font-weight: 700;
}

.fac-row .card__meta {
  color: #333;
  font-family: var(--font);
}

.kyori {
  font-size: 0.8em;
}

.spot-grid {
  display: grid;
  gap: 28px 20px;
}

.spot-grid--3 { grid-template-columns: repeat(3, 1fr); }
.spot-grid--4 { grid-template-columns: repeat(4, 1fr); margin-top: 20px; }

.spot-card {
  text-align: center;
}

.spot-card img,
.spot-card .is-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: clamp(10px, 1.0vw, 20px);
}

.spot-card .is-image {
  border-radius: clamp(10px, 1.0vw, 20px);
}

.spot-card__cap {
  margin: 14px 0 0;
  padding: 14px 12px 16px;
  background: #fff;
  border-radius: 20px;
}

.spot-card h3,
.spot-card p {
  margin: 0;
  font-family: var(--font-serif);
}

.spot-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #00004b;
}

.spot-card p {
  margin-top: 4px;
  font-family: var(--font);
  font-size: 0.78rem;
  color: #333;
}

.access-block {
  margin-top: clamp(72px, 8vw, 120px);
  text-align: center;
}

.access-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
  margin-top: 32px;
  padding: clamp(28px, 3vw, 48px);
  background: #eef3f7;
  border-radius: clamp(28px, 2.8vw, 48px);
  text-align: left;
}

.access-panel__title {
  grid-column: 1 / -1;
  text-align: center;
  margin: 0 0 8px;
}

.access-photos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.access-photos img {
  width: 86%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: clamp(16px, 1.6vw, 28px);
}

.access-photos img:nth-child(2) {
  width: 78%;
  align-self: flex-start;
  margin-top: -8px;
}

.access-photos--3 img:nth-child(1) { width: 72%; align-self: flex-end; }
.access-photos--3 img:nth-child(2) { width: 64%; align-self: flex-start; margin-top: -20px; }
.access-photos--3 img:nth-child(3) { width: 72%; align-self: flex-end; }

.access-photos--compose {
  align-items: stretch;
}

.access-photos--compose img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  align-self: stretch;
}

.ic-list {
  list-style: none;
  margin: 8px 0 16px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.ic-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 16px 22px;
  background: #fff;
  border-radius: 999px;
}

.ic-dots {
  flex: 1;
  border-bottom: 1px dotted #c5c5c5;
  min-width: 40px;
}

.ic-list strong {
  color: #e36b00;
  font-weight: 700;
  white-space: nowrap;
}

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

.about-card {
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.about-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.about-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  /* object-fit: cover; */
}

.parking-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.parking-list li {
  display: grid;
  grid-template-columns: 4.5em 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 22px;
  background: #fff;
  border-radius: 999px;
}

.parking-list strong {
  color: #e36b00;
  font-weight: 700;
  white-space: nowrap;
}

.parking-list b { color: #333; font-weight: 700; }

/* Footer */
.site-footer {
  background: #fff;
  border-top: 1px solid #e6e6e6;
  padding: 56px 0 40px;
  padding-bottom: calc(40px + var(--sales-dock-space));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-tel-line {
  display: flex;
  align-items: baseline;
  gap: 0.15em;
  margin: 8px 0 12px;
  line-height: 1;
}

.footer-tel-label {
  margin: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 700;
  color: #00004c;
}

.footer-tel {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.646vw, 4.375rem);
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  color: #00004c;
}

.footer-tel:hover { color: var(--sh-red); }

.footer-logo { width: min(420px, 100%); margin-bottom: 16px; }

.footer-company {
  text-align: right;
}

.footer-company .footer-logo {
  margin-left: auto;
  margin-right: 0;
  display: block;
}

.site-footer small {
  display: block;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  grid-column: 1;
}

.sales-dock {
  --sales-dock-inset: clamp(8px, 1.4vw, 20px);
  position: fixed;
  right: var(--sales-dock-inset);
  bottom: var(--sales-dock-inset);
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  width: min(620px, calc(100% - var(--sales-dock-inset) * 2));
  transform: translateX(calc(100% + var(--sales-dock-inset) + 24px));
  transition: transform 0.35s ease;
  pointer-events: none;
}

.sales-dock.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.sales-dock-toggle {
  position: fixed;
  right: clamp(8px, 1.4vw, 20px);
  bottom: clamp(8px, 1.4vw, 20px);
  z-index: 81;
  max-width: calc(100vw - 24px);
  min-height: 48px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: #00004c;
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 10px 28px rgb(22 25 42 / 18%);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.sales-dock-toggle:hover { background: #1c2450; }

.sales-dock__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #00004c;
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 8px 20px rgb(22 25 42 / 16%);
}

.sales-dock__close:hover { background: #1c2450; }

.sales-dock .sales-grid {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.sales-dock .sales-card {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgb(22 25 42 / 12%);
}

.sales-dock .sales-card__body {
  padding: 10px 8px 12px;
  gap: 8px;
}

.sales-dock .sales-card__body h3 {
  font-size: 0.46rem;
}

.sales-dock .sales-card__body strong {
  margin-top: 2px;
  font-size: 0.55rem;
}

.sales-dock .btn--arrow {
  min-height: 26px;
  padding: 0 16px 0 6px;
  border-radius: 4px;
  font-size: 0.5rem;
  letter-spacing: 0.04em;
}

.sales-dock .btn--arrow::after {
  right: 5px;
  width: 11px;
  height: 11px;
}

.sales-dock .btn--arrow::before {
  right: 8.5px;
  width: 3.5px;
  height: 3.5px;
}

.sales-dock .sales-card--land .sales-card__visual {
  padding: 8px;
}

body.is-nav-open .sales-dock,
body.is-nav-open .sales-dock-toggle,
body.is-nav-open .page-top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-top {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 79;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  appearance: none;
  cursor: pointer;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.page-top:focus,
.page-top:focus-visible,
.page-top:active {
  outline: none;
}

.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-top img {
  width: auto;
  max-width: none;
  height: clamp(120px, 22vh, 120px);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .guide-grid,
  .about-grid { grid-template-columns: 1fr 1fr; }

  .about-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1100px) {
  .street-panel__grid,
  .green-intro,
  .south-block,
  .arco-maps,
  .hanyu-stat,
  .hanyu-access__row,
  .outing-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  :root { --header-h: 64px; }

  .hero {
    padding: 0 var(--pad) 0;
  }

  .hero__caption {
    top: 0;
  }

  html.js-ready .reveal-from-right,
  html.js-ready .reveal-from-left {
    transform: translateY(24px);
  }

  .site-logo img { width: min(220px, 64vw); }

  .hero__logo img { width: clamp(220px, 72vw, 420px); }

  .split--2,
  .arco-maps,
  .hanyu-stat,
  .hanyu-pies,
  .hanyu-access__row,
  .outing-row,
  .feature-grid,
  .place-grid,
  .facility-grid,
  .facility-grid--3,
  .footer-grid,
  .tech-pair,
  .tech-split,
  .fac-row,
  .fac-row--reverse,
  .fac-row--park,
  .access-panel,
  .spot-grid--3,
  .spot-grid--4 {
    grid-template-columns: 1fr;
  }

  .access-panel__title { grid-column: auto; }

  .footer-company { text-align: left; }

  .footer-company .footer-logo { margin-left: 0; }

  .fac-head__person,
  .fac-deco,
  .park-deco { display: none; }

  .fac-row--reverse > img:not(.park-deco),
  .fac-row--reverse > .is-image { order: 0; }

  .access-photos,
  .access-photos img,
  .access-photos img:nth-child(2),
  .access-photos--3 img:nth-child(1),
  .access-photos--3 img:nth-child(2),
  .access-photos--3 img:nth-child(3) {
    width: 100%;
    align-self: stretch;
    margin-top: 0;
  }

  .feature-card--quality,
  .feature-card--design,
  .feature-card--maintenance,
  .feature-card--quick {
    border-radius: clamp(28px, 8vw, 40px);
  }

  .arco-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .outing-panel__deco {
    position: static;
    display: block;
    margin: 0 0 16px auto;
  }

  .outing-panel:not(.outing-panel--michi) {
    padding-right: clamp(28px, 3.2vw, 48px);
  }

  .planting-head__trees {
    position: static;
    display: block;
    width: min(140px, 36vw);
    margin: 0 auto 16px;
  }

  .street-panel__grid,
  .green-intro,
  .south-block {
    grid-template-columns: 1fr;
  }

  .street-panel__illust {
    position: static;
    display: block;
    margin: 0 auto 16px;
    width: 88px;
  }

  .green-intro__photo img {
    aspect-ratio: 16 / 10;
  }

  .bar-heading--sm {
    white-space: normal;
  }

  .season-grid {
    grid-template-columns: 1fr 1fr;
    padding-bottom: var(--season-step);
  }

  .season-card:nth-child(1),
  .season-card:nth-child(3) { margin-top: 0; }

  .season-card:nth-child(2),
  .season-card:nth-child(4) { margin-top: var(--season-step); }

  html.js-ready .season-grid .season-card:nth-child(1),
  html.js-ready .season-grid .season-card:nth-child(3) { transition-delay: 0.2s; }

  html.js-ready .season-grid .season-card:nth-child(2),
  html.js-ready .season-grid .season-card:nth-child(4) { transition-delay: 0.45s; }

  #sweden-house .slider__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  #sweden-house .slider__arrow--prev { left: 8px; }
  #sweden-house .slider__arrow--next { right: 8px; }

  .hero__caption {
    --hero-caption-pad-t: 16px;
    --hero-caption-pad-r: 24px;
    --hero-caption-pad-b: 20px;
    --hero-caption-pad-l: 12px;
    max-width: 86%;
    padding:
      var(--hero-caption-pad-t)
      var(--hero-caption-pad-r)
      var(--hero-caption-pad-b)
      var(--hero-caption-pad-l);
  }

  .time-list li {
    grid-template-columns: auto 1fr;
    border-radius: 16px;
    gap: 4px 12px;
  }

  .time-list li span:last-child {
    grid-column: 1 / -1;
  }

  .parking-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .tenant-list { grid-template-columns: 1fr; }

  .tenant-block { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  br.sp {
    display: inline;
  }

  .pc {
    display: none;
  }

  .guide-grid,
  .sales-grid,
  .about-grid { grid-template-columns: 1fr; }

  html.js-ready .guide-grid .guide-card:nth-child(1) { transition-delay: 0.2s; }
  html.js-ready .guide-grid .guide-card:nth-child(2) { transition-delay: 0.4s; }
  html.js-ready .guide-grid .guide-card:nth-child(3) { transition-delay: 0.6s; }

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

  .sales-dock-toggle {
    min-height: 44px;
    padding: 8px 14px;
    font-size: 0.75rem;
    max-width: calc(100vw - 16px);
    white-space: nowrap;
  }

  .sales-dock__close {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.72rem;
  }

  .page-top {
    right: 6px;
  }

  .page-top img {
    height: clamp(100px, 20vh, 100px);
  }

  .season-card__body { min-height: 0; }

  .slider__arrow { width: 36px; height: 36px; }

  #sweden-house .slider__arrow {
    width: 24px;
    height: 48px;
  }

  #sweden-house .slider__thumbs {
    gap: 8px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .footer-company {
    font-size: 0.7rem;
  }
  .hero__caption {
    max-width: 100%;
    top: 0;
  }
  .hero {
    padding: 0 var(--pad) 0;
  }
  .hero__caption-sizer,
  .hero__caption-text {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal],
  .reveal-up,
  .reveal-from-right,
  .reveal-from-left {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .slider__track { transition: none; }
  .sales-dock { transition: none; }
  .hero__caption,
  .hero__caption-text { transition: none; }
}
