:root {
  --ink: #211a17;
  --ink-soft: #3f3430;
  --muted: #736862;
  --paper: #ffffff;
  --paper-soft: #f7f5f1;
  --line: #d7d0c9;
  --brown: #9d8b81;
  --brown-dark: #77665f;
  --yellow: #fff43a;
  --orange: #e85f35;
  --blue: #006db8;
  --shadow: 0 18px 48px rgba(45, 35, 30, .10);
  --max: 1180px;
  --header-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", "Times New Roman", serif;
  font-feature-settings: "palt" 1;
  letter-spacing: .055em;
  line-height: 1.9;
}
body.is-modal-open { overflow: hidden; }
img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
figure, p, h1, h2, h3 { margin: 0; }
.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;
}
.container { width: min(calc(100% - 56px), var(--max)); margin: 0 auto; }
.section { padding: 112px 0; }
.section-head { margin-bottom: 54px; }
.section-head--center { text-align: center; }
.section-label {
  color: var(--brown-dark);
  font-size: 13px;
  letter-spacing: .24em;
  line-height: 1;
  margin-bottom: 18px;
}
.section-head h2,
.concept__copy h2 {
  font-weight: 500;
  font-size: clamp(28px, 3vw, 43px);
  line-height: 1.75;
  letter-spacing: .1em;
}
.section-lead {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 2.05;
}
.section-lead--narrow { max-width: 740px; margin-left: auto; margin-right: auto; }
.note { color: var(--muted); font-size: 13px; line-height: 1.8; margin-top: 18px; }
.photo-caption {
  position: absolute;
  right: 12px;
  bottom: 8px;
  z-index: 2;
  color: #5c554f;
  font-size: 10px;
  letter-spacing: .06em;
  line-height: 1;
}
.image-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eee9e4 0%, #fbfaf7 100%);
}
.image-box__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.land-plan__hero > .image-box__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}


/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(215,208,201,.7);
  backdrop-filter: blur(12px);
}
.site-header__inner {
  width: min(calc(100% - 44px), 1360px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-logo { flex: 0 0 auto; display: inline-flex; align-items: center; }
.site-logo img { width: 280px; max-width: 34vw; }
.global-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  letter-spacing: .11em;
  color: var(--ink-soft);
}
.global-nav a { white-space: nowrap; }
.global-nav a:hover { color: var(--blue); }
.header-actions { display: flex; gap: 8px; }
.header-link {
  display: inline-grid;
  place-items: center;
  min-width: 100px;
  min-height: 38px;
  padding: 6px 14px;
  border: 1px solid var(--brown);
  color: var(--brown-dark);
  font-size: 13px;
  letter-spacing: .08em;
}
.header-link--primary { background: var(--brown); color: #fff; }
.menu-toggle { display: none; }

/* FV */
.fv { background: #fff; }
.fv__stage {
  position: relative;
  overflow: hidden;
  background: #f6f9fd;
}
.fv__image-frame {
  position: relative;
  z-index: 0;
  width: 100%;
  overflow: hidden;
}
.fv__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}
.fv__copy {
  position: absolute;
  z-index: 2;
  left: 50.4%;
  top: 49.2%;
  transform: translateY(-50%);
  width: min(680px, 43vw);
  padding: 0;
  color: var(--ink);
}
.fv__logo {
  display: block;
  width: clamp(320px, 26.5vw, 470px);
  max-width: 100%;
  height: auto;
  margin: 0 0 40px 0;
}
.fv__catch {
  font-weight: 500;
  font-size: clamp(30px, 2.2vw, 40px);
  line-height: 1.62;
  letter-spacing: .12em;
  margin: 0 0 26px;
}
.fv__lead {
  font-size: clamp(14px, 1.06vw, 17px);
  line-height: 2.05;
  letter-spacing: .06em;
  color: var(--ink-soft);
}
.fv__caption { right: 18px; bottom: 10px; }

/* FV information band: label/body/number/unit are structured to share a single vertical center. */
.fv-band {
  width: 100%;
  min-height: 96px;
  background: var(--brown);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
}
.fv-band__inner {
  width: min(100%, 840px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  margin: 0 auto;
}
.fv-band__item {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex: 0 0 auto;
}
.fv-band__item--land { width: 274px; }
.fv-band__item--train { width: 244px; }
.fv-band__item--store { width: 224px; }
.fv-band__label {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255,255,255,.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 0 0 60px;
  color: #fff;
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: .07em;
  text-align: center;
}
.fv-band__body {
  min-height: 66px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.fv-band__main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
.fv-band__text {
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: .06em;
  text-align: center;
}
.fv-band__text--stack { font-size: 18px; line-height: 1.18; }
.fv-band__num {
  color: var(--yellow);
  font-size: 55px;
  line-height: .86;
  letter-spacing: .02em;
  font-weight: 400;
}
.fv-band__unit {
  color: #fff;
  font-size: 18px;
  line-height: 1;
  letter-spacing: .05em;
}
.fv-band__sub {
  min-height: 15px;
  margin: 6px 0 0;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .03em;
  text-align: center;
  opacity: .95;
}
.fv-band__divider {
  width: 1px;
  height: 56px;
  flex: 0 0 1px;
  background: rgba(255,255,255,.62);
}

/* Concept */
.concept {
  padding: clamp(190px, 11vw, 214px) 0 clamp(130px, 7.4vw, 150px);
  overflow: visible;
}
.concept__layout {
  --concept-left-w: clamp(500px, 26.5vw, 543px);
  --concept-gap: clamp(126px, 7.9vw, 162px);
  --concept-main-w: clamp(458px, 24.2vw, 496px);
  width: calc(var(--concept-left-w) + var(--concept-gap) + var(--concept-main-w));
  margin: 0 auto;
  display: grid;
  grid-template-columns: var(--concept-left-w) var(--concept-main-w);
  column-gap: var(--concept-gap);
  align-items: start;
  justify-content: center;
}
.concept__content {
  width: var(--concept-left-w);
}
.concept__copy {
  width: var(--concept-left-w);
  padding-left: 0;
}
.concept .section-label {
  display: none;
}
.concept__copy h2 {
  margin: 0 0 36px;
  font-size: clamp(28px, 1.5vw, 30px);
  line-height: 1.72;
  letter-spacing: .078em;
  font-weight: 500;
  white-space: nowrap;
}
.concept__copy h2 span {
  display: block;
}
.concept__body,
.concept__copy p:not(.section-label) {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(14.5px, .75vw, 15.3px);
  line-height: 1.85;
  letter-spacing: .048em;
  white-space: nowrap;
}
.concept__nowrap {
  white-space: nowrap;
}
.concept__thumbs {
  width: var(--concept-left-w);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 35px;
  justify-items: stretch;
  justify-content: start;
  transform: none;
}
.concept__main,
.concept__sub {
  background: transparent;
}
.concept .image-box {
  overflow: visible;
}
.concept .image-box__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.concept__main {
  width: var(--concept-main-w);
  justify-self: start;
}
.concept__sub {
  width: 100%;
}
.concept .photo-caption {
  right: 0;
  bottom: -18px;
}

/* Location */
.location { background: var(--paper-soft); }
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card { background: #fff; box-shadow: var(--shadow); }
.value-card__image { aspect-ratio: 4 / 3; }
.value-card__body { padding: 26px 26px 32px; }
.value-card__num { color: var(--brown); font-size: 14px; letter-spacing: .18em; }
.value-card h3 {
  margin-top: 8px;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
}
.value-card p { color: var(--muted); font-size: 15px; line-height: 1.9; }

.location-title {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}
.location-title img {
  display: block;
  width: clamp(210px, 17vw, 300px);
  height: auto;
}
.location-title span {
  display: inline-block;
}
.value-card__num { display: none; }

/* Land plan */
.land-plan { background: #fff; }
.land-plan__hero {
  width: 100%;
  aspect-ratio: 1920 / 500;
  min-height: 430px;
  display: grid;
  place-items: center;
}
.land-plan__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,.08);
}
.land-plan__hero h2 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: clamp(58px, 5vw, 86px);
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1;
  text-shadow: 0 3px 12px rgba(0,0,0,.36);
}
.land-plan__body { padding: 90px 0 112px; }
.land-plan .section-lead--narrow { max-width: 1120px; }
.land-plan__lead-nowrap { white-space: nowrap; }
.land-plan__catch {
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.8;
  letter-spacing: .1em;
}
.land-plan__map-area {
  position: relative;
  margin: 84px auto 42px;
  width: min(860px, 100%);
}
.land-plan__map { text-align: center; }
.land-plan__map img {
  display: block;
  width: min(100%, 640px);
  margin: 0 auto;
}
.land-plan__note { margin-top: 10px; font-size: 12px; text-align: center; color: var(--muted); }
.land-plan__badge {
  position: absolute;
  top: -16px;
  right: clamp(0px, 4vw, 74px);
  width: 142px;
  height: 142px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  outline: 3px solid rgba(232,95,53,.24);
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.86);
  line-height: 1.1;
}
.land-plan__badge-top { font-size: 18px; line-height: 1.2; }
.land-plan__badge-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin-top: 2px;
}
.land-plan__badge-main strong { font-size: 52px; font-weight: 400; color: #fff; line-height: .92; }
.land-plan__badge-main span { font-size: 18px; line-height: 1; }
.site-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  width: min(860px, 100%);
  margin: 0 auto;
}
.site-photo-grid figure { min-width: 0; }
.site-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.site-photo-grid figcaption { margin-top: 8px; font-size: 14px; color: var(--ink-soft); }
.land-plan__message {
  width: min(860px, 100%);
  margin: 42px auto 0;
  padding: 22px 28px;
  border: 1px solid var(--line);
  text-align: center;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 2;
}

.land-plan__hiraya-block {
  width: min(860px, 100%);
  margin: 72px auto 0;
  padding: 66px 68px 70px;
  border: 1px solid var(--line);
  background: #fff;
}
.land-plan__message--in-block {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 15px;
  line-height: 2;
  text-align: center;
}
.land-plan__hiraya-divider {
  width: min(100%, 560px);
  height: 1px;
  margin: 44px auto 58px;
  border-top: 1px dashed #8d8179;
}
.land-plan__hiraya-content {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 66px;
  align-items: center;
}
.land-plan__hiraya-copy h3 {
  font-size: clamp(28px, 2.3vw, 38px);
  line-height: 1.82;
  letter-spacing: .08em;
  font-weight: 500;
  margin-bottom: 28px;
}
.land-plan__hiraya-copy p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: .04em;
}
.land-plan__hiraya-link {
  display: inline-grid;
  place-items: center;
  min-width: 252px;
  min-height: 58px;
  margin-top: 42px;
  padding: 12px 22px;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  letter-spacing: .08em;
  line-height: 1.3;
  text-align: center;
}
.land-plan__hiraya-image {
  background: transparent;
}
.land-plan__hiraya-image .image-box__img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.land-plan__hiraya-image .photo-caption {
  right: 0;
  bottom: -18px;
}

/* Quality */
.quality { background: #f7f5f1; }
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 58px;
  margin-bottom: 58px;
}
.quality-card {
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.quality-card__image {
  background: #fff;
  padding: 54px 26px 0;
  box-sizing: border-box;
}
.quality-card__image .image-box__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
}
.quality-card__text { padding: 24px 22px 28px; }
.quality-card__text span { display: none; }
.quality-card h3 { font-size: 20px; line-height: 1.55; font-weight: 500; margin-bottom: 12px; }
.quality-card p { font-size: 14px; color: var(--muted); line-height: 1.85; }

/* Works */
.works { overflow: hidden; }
.works-slider { width: 100%; overflow: hidden; }
.works-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: worksSlide 72s linear infinite;
}
.works-item {
  width: clamp(260px, 23vw, 390px);
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  background: #eee;
}
.works-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.works-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 18px 16px;
  color: #fff;
  font-size: 15px;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.56));
  text-shadow: 0 1px 6px rgba(0,0,0,.36);
}
.works-slider:hover .works-track { animation-play-state: running !important; }
@keyframes worksSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Voice */
.voice { background: #fff; }
.voice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; }
.voice-card { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.voice-card__image img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.voice-card__body { padding: 30px 32px 34px; }
.voice-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.voice-card__tags span { color: var(--brown-dark); font-size: 13px; background: #f5f1ed; padding: 4px 9px; }
.voice-card h3 { font-size: 22px; font-weight: 500; line-height: 1.6; margin-bottom: 16px; }
.voice-card p { color: var(--muted); font-size: 15px; line-height: 1.95; }
.text-link { display: inline-block; margin-top: 18px; color: var(--brown-dark); border-bottom: 1px solid currentColor; font-size: 15px; }

/* QA */
.qa-section { background: #f7f5f1; }
.qa-list { width: min(920px, 100%); margin: 0 auto; display: grid; gap: 12px; }
details { background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 36px rgba(45,35,30,.06); }
summary { cursor: pointer; list-style: none; padding: 22px 28px; font-size: 18px; line-height: 1.6; }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--brown-dark); margin-right: 10px; }
details p { padding: 0 28px 24px 66px; color: var(--muted); font-size: 15px; line-height: 1.95; }

/* Footer / modal */
.site-footer { background: #1E2235; color: rgba(255,255,255,.82); }
.footer__inner { padding: 62px 0; display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 42px; align-items: start; }
.footer__brand img { width: 280px; background: #fff; padding: 14px; margin-bottom: 22px; }
.footer__brand p, .footer__info p { font-size: 14px; line-height: 1.9; margin-bottom: 12px; }
.footer__cta { display: grid; gap: 12px; }
.footer__cta a, .footer__cta button {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.66);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  letter-spacing: .08em;
}
.footer__cta a:first-child { background: var(--brown); border-color: var(--brown); }
.footer__tel { font-size: 32px !important; line-height: 1.2 !important; color: #fff; letter-spacing: .06em; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.16); padding: 20px 0; }
.footer__bottom .container { display: flex; justify-content: space-between; gap: 20px; }
.fixed-cta { display: none; }
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.is-open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.58); }
.modal__panel {
  position: relative;
  width: min(calc(100% - 40px), 920px);
  max-height: calc(100svh - 64px);
  overflow: auto;
  margin: 32px auto;
  background: #fff;
  padding: 44px;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}
.modal__close {
  position: sticky;
  top: 0;
  float: right;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}
.modal h2 { font-size: 28px; font-weight: 500; margin-bottom: 26px; }
.outline-table { overflow-x: auto; }
.outline-table table { width: 100%; border-collapse: collapse; min-width: 680px; }
.outline-table th, .outline-table td { border: 1px solid var(--line); padding: 13px 16px; text-align: left; vertical-align: top; font-size: 14px; line-height: 1.75; }
.outline-table th { width: 210px; background: #f7f5f1; color: var(--ink-soft); font-weight: 500; }
.modal__note { margin-top: 24px; padding: 20px; background: #f7f5f1; color: var(--muted); font-size: 13px; line-height: 1.8; }
.modal__note p + p { margin-top: 10px; }

@media (max-width: 1180px) {
  .global-nav { display: none; }
  .menu-toggle {
    margin-left: auto;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 1px; background: var(--ink); margin: 3px 0; }
  .site-header.is-open { height: auto; }
  .site-header.is-open .site-header__inner { flex-wrap: wrap; padding: 16px 0; }
  .site-header.is-open .global-nav { display: grid; width: 100%; order: 5; grid-template-columns: repeat(2, 1fr); gap: 10px; padding-top: 14px; }
  .fv-band__inner { width: min(100%, 900px); gap: 16px; }
  .fv-band__item--land { width: 258px; }
  .fv-band__item--train { width: 232px; }
  .fv-band__item--store { width: 214px; }
}

@media (max-width: 920px) {
  :root { --header-h: 72px; }
  .container { width: min(calc(100% - 36px), var(--max)); }
  .section { padding: 82px 0; }
  .site-logo img { width: 230px; max-width: 56vw; }
  .header-actions { display: none; }
  .fv__image { width: 100%; min-height: 620px; object-fit: cover; object-position: 35% center; opacity: .74; }
  .fv__copy { left: 7%; right: 7%; top: 54%; width: auto; transform: translateY(-50%); }
  .fv__logo { width: 340px; margin-bottom: 34px; }
  .fv-band { padding: 18px; }
  .fv-band__inner { width: min(100%, 420px); flex-direction: column; gap: 16px; }
  .fv-band__divider { width: 100%; height: 1px; }
  .fv-band__item, .fv-band__item--land, .fv-band__item--train, .fv-band__item--store { width: 100%; justify-content: flex-start; }
  .concept { padding: 86px 0; }
  .concept__layout { width: min(calc(100% - 36px), var(--max)); margin: 0 auto; display: flex; flex-direction: column; gap: 32px; }
  .concept__content { width: 100%; }
  .concept__copy { padding-left: 0; }
  .concept__copy h2 { font-size: clamp(25px, 7vw, 32px); line-height: 1.75; white-space: normal; }
  .concept__body, .concept__copy p:not(.section-label) { font-size: 14px; line-height: 1.95; white-space: normal; }
  .concept__nowrap { white-space: normal; }
  .concept__thumbs { gap: 18px; margin-top: 28px; transform: none; }
  .concept__main, .concept__sub, .concept__sub--01, .concept__sub--02 { width: 100%; }
  .value-grid, .quality-grid, .voice-grid, .footer__inner { grid-template-columns: 1fr; }
  .land-plan__hero { min-height: 260px; aspect-ratio: 16 / 6.1; }
  .land-plan__hero h2 { font-size: clamp(42px, 12vw, 62px); }
  .land-plan__lead-nowrap { white-space: normal; }
  .land-plan__map-area { width: min(calc(100% - 36px), var(--max)); }
  .land-plan__badge { position: static; margin: 24px auto 0; }
}

@media (max-width: 680px) {
  body { letter-spacing: .035em; }
  .fv__image { min-height: 650px; object-position: 36% center; }
  .fv__copy { top: 56%; }
  .fv__catch { font-size: 29px; line-height: 1.6; }
  .fv__lead { font-size: 13px; }
  .fv-band__label { width: 56px; height: 56px; flex-basis: 56px; font-size: 16px; }
  .fv-band__num { font-size: 48px; }
  .fv-band__text { font-size: 17px; }
  .fv-band__unit { font-size: 16px; }
  .concept__thumbs { grid-template-columns: 1fr; }
  .site-photo-grid { grid-template-columns: 1fr; }
  .works-item { width: 72vw; }
  details p { padding-left: 28px; }
  .footer__bottom .container { flex-direction: column; }
  .fixed-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: grid; grid-template-columns: 1fr 1fr; }
  .fixed-cta a { min-height: 58px; display: grid; place-items: center; color: #fff; background: var(--brown-dark); border-top: 1px solid rgba(255,255,255,.28); }
  .fixed-cta a:last-child { background: var(--brown); }
  body { padding-bottom: 58px; }
  .modal__panel { width: min(calc(100% - 24px), 920px); padding: 28px 18px; margin: 20px auto; max-height: calc(100svh - 40px); }
}


/* LOCATION - PC rebuild */
.location-full {
  background: #fff;
  overflow: hidden;
}
.location-full__hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ede7dc;
}
.location-full__hero .image-box__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.location-full__hero h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  font-size: clamp(44px, 5.3vw, 78px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .16em;
  text-shadow: 0 3px 12px rgba(0,0,0,.38);
}
.location-full__hero .photo-caption {
  right: 14px;
  bottom: 10px;
}
.location-full__lead-wrap {
  padding: 86px 24px 74px;
  text-align: center;
}
.location-full__lead {
  color: var(--ink);
  font-size: clamp(18px, 1.65vw, 26px);
  line-height: 1.9;
  letter-spacing: .12em;
}
.location-full__scene {
  background: transparent;
  padding: 0;
  overflow: hidden;
}
.location-full__scene-inner {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  display: block;
}
.location-full__scene-copy {
  position: absolute;
  z-index: 2;
  left: 28.3%;
  top: 21.5%;
  padding: 0;
}
.location-full__scene-copy h3 {
  font-size: clamp(24px, 1.95vw, 32px);
  font-weight: 500;
  line-height: 1.74;
  letter-spacing: .12em;
}
.location-full__scene-copy p {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 2.1;
  letter-spacing: .1em;
}
.location-full__scene-image {
  width: 100%;
  background: transparent !important;
  overflow: visible;
}

.location-full__scene-image.image-box {
  background: transparent !important;
}
.location-full__scene-inner {
  background: transparent;
}
.location-full__scene-image .image-box__img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
}
.location-full__scene-image .photo-caption {
  display: none;
}
.location-full__school {
  width: min(calc(100% - 80px), 860px);
  margin: 0 auto;
  padding: 118px 0 132px;
}
.location-full__intro {
  margin-bottom: 46px;
  text-align: center;
}
.location-full__intro p {
  color: var(--ink);
  font-size: 20px;
  line-height: 2.1;
  letter-spacing: .12em;
}
.location-school-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  width: min(100%, 740px);
  margin: 0 auto 72px;
}
.location-school-card {
  text-align: center;
}
.location-school-card figure {
  margin: 0 0 18px;
  background: #f7f4ef;
}
.location-school-card img {
  display: block;
  width: 100%;
  height: auto;
}
.location-school-card h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: .08em;
}
.location-school-card p {
  margin-top: 2px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .08em;
}
.location-school-card strong {
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}
.location-facility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 36px;
  width: min(100%, 780px);
  margin: 0 auto;
}
.location-facility-grid article {
  min-width: 0;
}
.location-facility-grid figure {
  margin: 0 0 12px;
  background: #f7f4ef;
}
.location-facility-grid img {
  display: block;
  width: 100%;
  height: auto;
}
.location-facility-grid h3 {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .04em;
}
.location-facility-grid p {
  margin-top: 1px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: .04em;
}


/* SP refinements - PC rules above remain unchanged */
.sp-only,
.site-header__sp-sayama,
.site-header__sp-brand,
.fv-band__label-sp { display: none; }

@media (max-width: 920px) {
  body { padding-bottom: 64px; }
  .fixed-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .fixed-cta a {
    min-height: 64px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--brown-dark);
    border-top: 1px solid rgba(255,255,255,.28);
    font-size: 15px;
    letter-spacing: .12em;
  }
  .fixed-cta a:last-child { background: var(--brown); }
  .footer__cta a { display: none; }
}

@media (max-width: 680px) {
  :root { --header-h: 114px; }
  .sp-only { display: block; }

  /* SP header */
  .site-header {
    height: var(--header-h);
    background: #fff;
    border-bottom: none;
    backdrop-filter: none;
  }
  .site-header__inner {
    width: 100%;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 82px 1fr 82px;
    align-items: center;
    gap: 0;
  }
  .site-logo { display: none; }
  .site-header__sp-sayama,
  .site-header__sp-brand { display: flex; align-items: center; justify-content: center; }
  .site-header__sp-sayama img { width: 70px; height: auto; }
  .site-header__sp-brand img { width: min(245px, 52vw); height: auto; }
  .menu-toggle {
    display: grid;
    justify-self: end;
    width: 62px;
    height: 62px;
    border: 0;
    background: transparent;
    padding: 0;
  }
  .menu-toggle span:not(.sr-only) {
    width: 49px;
    height: 5px;
    background: var(--brown-dark);
    margin: 5px auto;
  }
  .menu-toggle::after {
    content: "MENU";
    display: block;
    margin-top: -2px;
    color: var(--brown-dark);
    font-size: 14px;
    line-height: 1;
    letter-spacing: .04em;
  }
  .site-header.is-open .site-header__inner { display: grid; padding: 0 24px; }
  .site-header.is-open .global-nav {
    grid-column: 1 / -1;
    order: 10;
    margin-top: 0;
    background: #fff;
  }

  /* SP FV */
  .fv__stage {
    height: clamp(650px, 126vw, 790px);
    background: #eef4fb;
  }
  .fv__image-frame {
    position: absolute;
    inset: 0;
    height: 100%;
  }
  .fv__image {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: 37% bottom;
    opacity: .93;
  }
  .fv__copy {
    top: 72px;
    left: 24px;
    right: 24px;
    width: auto;
    transform: none;
    text-align: center;
  }
  .fv__logo { display: none; }
  .fv__catch {
    margin: 0 0 24px;
    font-size: clamp(29px, 8.6vw, 42px);
    line-height: 1.55;
    letter-spacing: .09em;
  }
  .fv__lead {
    font-size: clamp(15px, 4vw, 22px);
    line-height: 1.78;
    letter-spacing: .05em;
    color: var(--ink);
  }
  .fv__caption { right: 18px; bottom: 18px; font-size: 12px; }

  .fv-band {
    min-height: 0;
    padding: 42px 24px 54px;
  }
  .fv-band__inner {
    width: min(100%, 360px);
    display: grid;
    gap: 26px;
  }
  .fv-band__divider { display: none; }
  .fv-band__item,
  .fv-band__item--land,
  .fv-band__item--train,
  .fv-band__item--store {
    width: 100%;
    min-height: 0;
    display: grid;
    justify-items: center;
    gap: 12px;
  }
  .fv-band__label { display: none; }
  .fv-band__label-sp {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 40px;
    border: 1px solid rgba(255,255,255,.9);
    color: #fff;
    font-size: 18px;
    letter-spacing: .13em;
    line-height: 1.2;
  }
  .fv-band__body { width: 100%; display: grid; justify-items: center; }
  .fv-band__main { gap: 8px; align-items: baseline; }
  .fv-band__text { font-size: 27px; line-height: 1.25; }
  .fv-band__text--stack { font-size: 24px; line-height: 1.15; }
  .fv-band__num { font-size: 78px; line-height: .88; }
  .fv-band__unit { font-size: 22px; }
  .fv-band__sub { margin-top: 4px; font-size: 13px; }

  /* SP Concept */
  .concept { padding: 78px 0 68px; }
  .concept__layout {
    width: 100%;
    padding: 0 25px;
    display: grid;
    grid-template-columns: minmax(0, 68%) minmax(0, 28%);
    column-gap: 4%;
    row-gap: 34px;
    align-items: start;
  }
  .concept__content { display: contents; }
  .concept__copy { grid-column: 1 / -1; width: 100%; }
  .concept__copy h2 {
    margin-bottom: 30px;
    font-size: clamp(25px, 7.2vw, 34px);
    line-height: 1.8;
    letter-spacing: .07em;
    white-space: normal;
  }
  .concept__body,
  .concept__copy p:not(.section-label) {
    font-size: clamp(15px, 4.1vw, 20px);
    line-height: 1.82;
    letter-spacing: .05em;
    white-space: normal;
  }
  .concept__nowrap { white-space: normal; }
  .concept__main {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    align-self: start;
  }
  .concept__thumbs {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 0;
  }
  .concept__sub { width: 100%; }
  .concept .photo-caption { bottom: -16px; font-size: 10px; }

  /* SP Location */
  .location-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .location-title img { width: min(76vw, 310px); }
  .location-title span { font-size: clamp(28px, 7.2vw, 38px); line-height: 1.3; }

  /* SP Land plan */
  .land-plan__hero {
    min-height: 0;
    height: clamp(280px, 67vw, 420px);
    aspect-ratio: auto;
  }
  .land-plan__hero > .image-box__img {
    height: 100%;
    object-fit: cover;
    object-position: 43% center;
  }
  .land-plan__hero h2 {
    font-size: clamp(45px, 12vw, 74px);
    letter-spacing: .08em;
  }
  .land-plan__body.container {
    width: 100%;
    padding: 70px 0 86px;
  }
  .land-plan__body .section-head { padding: 0 25px; }
  .land-plan__catch {
    font-size: clamp(27px, 7vw, 40px);
    line-height: 1.78;
    letter-spacing: .15em;
  }
  .land-plan .section-lead--narrow {
    max-width: none;
    font-size: clamp(15px, 4vw, 20px);
    line-height: 1.82;
    letter-spacing: .05em;
  }
  .land-plan__map-area {
    width: 100%;
    margin: 62px auto 44px;
    padding: 0;
  }
  .land-plan__map img {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .land-plan__note { font-size: 11px; }
  .land-plan__badge {
    position: static;
    width: min(82vw, 480px);
    height: 72px;
    margin: 42px auto 0;
    border-radius: 0;
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.82);
    display: flex;
    flex-direction: row;
    gap: 12px;
  }
  .land-plan__badge-top { font-size: 23px; line-height: 1; }
  .land-plan__badge-main { margin-top: 0; gap: 4px; }
  .land-plan__badge-main strong { font-size: 58px; line-height: .85; }
  .land-plan__badge-main span { font-size: 23px; }
  .site-photo-grid {
    display: flex;
    gap: 14px;
    width: 100%;
    margin: 0;
    padding: 0 0 8px 18px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .site-photo-grid figure {
    flex: 0 0 min(72vw, 430px);
    scroll-snap-align: start;
  }
  .site-photo-grid img { aspect-ratio: 4 / 3; object-fit: cover; }
  .land-plan__message { width: calc(100% - 36px); }

  /* SP Footer */
  .footer__cta a { display: none; }
}


@media (max-width: 920px) {
  .location-full__hero { height: clamp(230px, 56vw, 380px); }
  .location-full__hero h2 { font-size: clamp(42px, 10vw, 62px); }
  .location-full__lead-wrap { padding: 58px 24px 52px; }
  .location-full__lead { font-size: clamp(18px, 4.4vw, 24px); }
  .location-full__scene { padding: 0; }
  .location-full__scene-inner {
    width: 100%;
    display: block;
  }
  .location-full__scene-copy {
    left: 8%;
    top: 18%;
    text-align: left;
  }
  .location-full__scene-copy h3 { font-size: clamp(20px, 5vw, 28px); }
  .location-full__scene-copy p { font-size: 12px; margin-top: 14px; }
  .location-full__school {
    width: min(calc(100% - 36px), 560px);
    padding: 70px 0 92px;
  }
  .location-school-grid,
  .location-facility-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 30px;
  }
}


/* SP追加調整 2026-06-13: PC版を触らずSPのみ上書き */
.pc-only { display: inline; }

@media (max-width: 680px) {
  .pc-only { display: none !important; }

  /* FV: copy / lead / band */
  .fv__catch {
    font-size: clamp(31px, 8.4vw, 39px);
    line-height: 1.52;
    letter-spacing: .075em;
  }
  .fv__lead {
    font-size: clamp(15.5px, 3.72vw, 19px);
    line-height: 1.82;
    letter-spacing: .035em;
    white-space: nowrap;
  }
  .fv-band {
    padding: 58px 24px 50px;
  }
  .fv-band__inner {
    width: min(calc(100% - 40px), 420px) !important;
    justify-items: stretch;
    gap: 30px;
    margin-inline: auto;
  }
  .fv-band__item,
  .fv-band__item--land,
  .fv-band__item--train,
  .fv-band__item--store {
    width: 100% !important;
    justify-items: stretch !important;
    justify-content: stretch !important;
    gap: 14px;
  }
  .fv-band__label-sp {
    width: 100% !important;
    max-width: none !important;
    min-height: 58px;
    padding: 0 24px;
    box-sizing: border-box;
    white-space: nowrap;
    letter-spacing: .06em;
    font-size: clamp(18px, 4.8vw, 22px);
  }
  .fv-band__body {
    width: 100%;
    justify-items: center;
    text-align: center;
  }
  .fv-band__main {
    width: 100%;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
  }
  .fv-band__text--stack {
    transform: translateY(-.15em);
  }
  .fv-band__sub {
    width: 100%;
    text-align: center;
  }

  /* CONCEPT */
  .concept {
    padding: 72px 0 74px;
  }
  .concept__layout {
    width: 100%;
    padding: 0;
    grid-template-columns: minmax(0, 68%) minmax(0, 28%);
    column-gap: 4%;
    row-gap: 42px;
  }
  .concept__copy {
    padding: 0 26px;
    box-sizing: border-box;
  }
  .concept__copy h2 {
    font-size: clamp(22px, 5.9vw, 29px);
    line-height: 1.72;
    letter-spacing: .055em;
    margin-bottom: 26px;
  }
  .concept__body,
  .concept__copy p:not(.section-label) {
    font-size: clamp(14px, 3.65vw, 18px);
    line-height: 1.82;
    letter-spacing: .035em;
    text-align: justify;
    text-align-last: left;
  }
  .concept__main {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
  }
  .concept__thumbs {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    gap: 30px;
  }
  .concept__sub--02 {
    margin-top: 8px;
  }

  /* LOCATION VALUE */
  .location-title span {
    display: none;
  }
  .location .section-lead {
    line-height: 1.9;
  }

  /* LAND PLAN */
  .land-plan .section-lead--narrow,
  .land-plan__message {
    text-align: justify;
    text-align-last: left;
  }
  .land-plan__map img {
    width: min(92vw, 520px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .land-plan__badge {
    width: min(82vw, 480px);
    height: 76px;
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
  }
  .land-plan__badge-main {
    display: contents;
  }
  .land-plan__badge-top,
  .land-plan__badge-main span {
    align-self: center;
    line-height: 1;
  }
  .land-plan__badge-main strong {
    align-self: center;
  }

  /* LOCATION */
  .location-full__hero {
    height: clamp(270px, 59vw, 390px);
  }
  .location-full__hero .image-box__img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .location-full__lead-wrap {
    padding: 64px 24px 58px;
  }
  .location-full__lead {
    font-size: clamp(24px, 6.2vw, 32px);
    line-height: 1.95;
  }
  .location-full__scene {
    background: #f1eadf;
  }
  .location-full__scene-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .location-full__scene-copy {
    position: static;
    order: 1;
    width: 100%;
    padding: 62px 24px 34px;
    text-align: center;
  }
  .location-full__scene-copy h3 {
    font-size: clamp(24px, 6.4vw, 34px);
    line-height: 1.8;
  }
  .location-full__scene-copy p {
    margin-top: 16px;
    font-size: clamp(15px, 4.1vw, 20px);
    line-height: 1.85;
  }
  .location-full__scene-image {
    order: 2;
    width: 100%;
    background: transparent !important;
  }
  .location-full__scene-image .image-box__img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .location-full__intro p {
    font-size: clamp(17px, 4.45vw, 22px);
    line-height: 2;
    letter-spacing: .06em;
  }
  .location-facility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 22px;
    width: 100%;
  }
  .location-facility-grid figure {
    margin-bottom: 10px;
  }
  .location-facility-grid h3 {
    font-size: 12px;
    line-height: 1.55;
  }
  .location-facility-grid p {
    font-size: 11px;
    line-height: 1.55;
  }

  /* OWNER'S VOICE */
  .voice .container {
    width: 100%;
  }
  .voice .section-head {
    padding: 0 24px;
  }
  .voice-grid {
    display: flex;
    grid-template-columns: none;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 22px 18px;
  }
  .voice-card {
    flex: 0 0 calc(100vw - 58px);
    scroll-snap-align: center;
  }
}


/* SP FINAL CORRECTION - keep PC unchanged */
@media (max-width: 680px) {
  :root { --header-h: 76px; }

  /* Header: reduce height / logos / menu */
  .site-header {
    height: var(--header-h) !important;
  }
  .site-header__inner {
    grid-template-columns: 58px 1fr 58px !important;
    padding: 0 14px !important;
  }
  .site-header__sp-sayama img {
    width: 48px !important;
  }
  .site-header__sp-brand img {
    width: min(180px, 48vw) !important;
  }
  .menu-toggle {
    width: 44px !important;
    height: 44px !important;
  }
  .menu-toggle span:not(.sr-only) {
    width: 34px !important;
    height: 3px !important;
    margin: 4px auto !important;
  }
  .menu-toggle::after {
    font-size: 10px !important;
    margin-top: -1px !important;
  }

  /* FV: use SP image without extra crop and keep copy above faces */
  .fv__stage {
    height: auto !important;
    min-height: 0 !important;
    background: #fff !important;
  }
  .fv__image-frame {
    position: relative !important;
    inset: auto !important;
    height: auto !important;
  }
  .fv__image-frame picture,
  .fv__image-frame img {
    display: block !important;
  }
  .fv__image {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    object-fit: contain !important;
    object-position: center top !important;
    opacity: 1 !important;
  }
  .fv__copy {
    top: clamp(36px, 8.6vw, 56px) !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    transform: none !important;
    text-align: center !important;
  }
  .fv__catch {
    font-size: clamp(23px, 6.1vw, 31px) !important;
    line-height: 1.55 !important;
    letter-spacing: .045em !important;
    margin: 0 0 12px !important;
    white-space: nowrap !important;
  }
  .fv__lead {
    font-size: clamp(12px, 3.05vw, 15px) !important;
    line-height: 1.72 !important;
    letter-spacing: .018em !important;
    white-space: nowrap !important;
  }

  /* FV band: one centered block, unified label widths, stack text raised */
  .fv-band {
    padding: 54px 24px 58px !important;
  }
  .fv-band__inner {
    width: min(calc(100% - 44px), 420px) !important;
    margin: 0 auto !important;
    display: grid !important;
    justify-items: stretch !important;
    gap: 28px !important;
    transform: translateY(8px);
  }
  .fv-band__item,
  .fv-band__item--land,
  .fv-band__item--train,
  .fv-band__item--store {
    width: 100% !important;
    display: grid !important;
    justify-items: stretch !important;
    justify-content: stretch !important;
    gap: 12px !important;
  }
  .fv-band__label-sp {
    width: 100% !important;
    max-width: none !important;
    min-height: 48px !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    letter-spacing: .055em !important;
    font-size: clamp(16px, 4.35vw, 21px) !important;
  }
  .fv-band__body,
  .fv-band__main,
  .fv-band__sub {
    width: 100% !important;
    text-align: center !important;
  }
  .fv-band__main {
    justify-content: center !important;
    align-items: baseline !important;
    gap: 8px !important;
  }
  .fv-band__text {
    font-size: clamp(25px, 6.8vw, 33px) !important;
    line-height: 1.18 !important;
  }
  .fv-band__text--stack {
    font-size: clamp(23px, 6.1vw, 30px) !important;
    line-height: 1.05 !important;
    transform: translateY(-.34em) !important;
  }
  .fv-band__num {
    font-size: clamp(70px, 18vw, 88px) !important;
    line-height: .86 !important;
  }
  .fv-band__unit {
    font-size: clamp(19px, 5vw, 24px) !important;
  }
  .fv-band__sub {
    font-size: clamp(12px, 3.2vw, 15px) !important;
    margin-top: 4px !important;
  }

  /* Concept: restore two-line headline and full-bleed image block */
  .concept {
    padding: 68px 0 74px !important;
  }
  .concept__layout {
    width: 100% !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 68%) minmax(0, 28%) !important;
    column-gap: 4% !important;
    row-gap: 42px !important;
  }
  .concept__copy {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    padding: 0 24px !important;
  }
  .concept__copy h2 {
    font-size: clamp(19px, 5vw, 27px) !important;
    line-height: 1.78 !important;
    letter-spacing: .018em !important;
    margin-bottom: 24px !important;
    white-space: normal !important;
  }
  .concept__copy h2 span {
    display: block !important;
    white-space: nowrap !important;
  }
  .concept__body br,
  .concept__copy p:not(.section-label) br {
    display: none !important;
  }
  .concept__body,
  .concept__copy p:not(.section-label) {
    font-size: clamp(14px, 3.7vw, 18px) !important;
    line-height: 1.86 !important;
    letter-spacing: .025em !important;
    text-align: justify !important;
    text-align-last: left !important;
    white-space: normal !important;
  }
  .concept__main {
    grid-column: 1 !important;
    grid-row: 2 !important;
    width: 100% !important;
  }
  .concept__thumbs {
    grid-column: 2 !important;
    grid-row: 2 !important;
    width: 100% !important;
    gap: 34px !important;
    margin-top: 0 !important;
  }
  .concept__sub--02 {
    margin-top: 16px !important;
  }

  /* Location value */
  .location-title span { display: none !important; }
  .location .section-lead {
    font-size: clamp(14px, 3.65vw, 18px) !important;
    line-height: 1.9 !important;
  }

  /* Land plan text / map / badge */
  .land-plan .section-lead--narrow br,
  .land-plan__message br {
    display: none !important;
  }
  .land-plan .section-lead--narrow,
  .land-plan__message {
    text-align: justify !important;
    text-align-last: left !important;
    line-height: 1.9 !important;
  }
  .land-plan__map img {
    width: min(88vw, 500px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .land-plan__badge {
    width: min(82vw, 480px) !important;
    height: 76px !important;
    display: grid !important;
    grid-template-columns: auto auto auto !important;
    align-items: center !important;
    justify-content: center !important;
    column-gap: 8px !important;
  }
  .land-plan__badge-main { display: contents !important; }
  .land-plan__badge-top,
  .land-plan__badge-main span {
    align-self: center !important;
    line-height: 1 !important;
    transform: translateY(0) !important;
  }

  /* Location SP */
  .location-full__hero {
    height: clamp(185px, 47vw, 290px) !important;
  }
  .location-full__hero .image-box__img {
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
  .location-full__lead-wrap {
    padding: 58px 24px 52px !important;
  }
  .location-full__lead {
    max-width: 92% !important;
    margin: 0 auto !important;
    font-size: clamp(22px, 5.75vw, 30px) !important;
    line-height: 1.95 !important;
  }
  .location-full__scene {
    background: #f1eadf !important;
  }
  .location-full__scene-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .location-full__scene-copy {
    position: static !important;
    order: 1 !important;
    width: 100% !important;
    padding: 60px 24px 34px !important;
    text-align: center !important;
  }
  .location-full__scene-copy h3 {
    font-size: clamp(24px, 6.25vw, 34px) !important;
    line-height: 1.82 !important;
  }
  .location-full__scene-copy p {
    margin-top: 16px !important;
    font-size: clamp(15px, 4.1vw, 20px) !important;
    line-height: 1.86 !important;
  }
  .location-full__scene-image {
    order: 2 !important;
    width: 100% !important;
    background: transparent !important;
  }
  .location-full__scene-image .image-box__img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
  .location-full__intro p {
    font-size: clamp(16px, 4.2vw, 21px) !important;
    line-height: 1.95 !important;
    letter-spacing: .045em !important;
  }
  .location-facility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 30px 22px !important;
    width: 100% !important;
  }
  .location-facility-grid article:nth-child(1) { order: 1; }
  .location-facility-grid article:nth-child(2) { order: 2; }
  .location-facility-grid article:nth-child(3) { order: 3; }
  .location-facility-grid article:nth-child(6) { order: 4; }
  .location-facility-grid article:nth-child(4) { order: 5; }
  .location-facility-grid article:nth-child(5) { order: 6; }
  .location-facility-grid article:nth-child(7) { order: 7; }
  .location-facility-grid article:nth-child(8) { order: 8; }
  .location-facility-grid h3 {
    font-size: 12px !important;
    line-height: 1.55 !important;
  }
  .location-facility-grid p {
    font-size: 11px !important;
    line-height: 1.55 !important;
  }

  /* Owner's voice horizontal card slider */
  .voice .container { width: 100% !important; }
  .voice .section-head { padding: 0 24px !important; }
  .voice-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 18px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 0 22px 20px !important;
  }
  .voice-card {
    flex: 0 0 calc(100vw - 58px) !important;
    scroll-snap-align: center !important;
  }

  /* Q&A: keep each question line compact */
  summary {
    padding: 14px 14px !important;
    font-size: clamp(12px, 3.25vw, 15px) !important;
    line-height: 1.45 !important;
    letter-spacing: .01em !important;
    white-space: nowrap !important;
  }
  summary span {
    margin-right: 4px !important;
  }
  details p {
    padding: 0 16px 18px 16px !important;
    font-size: clamp(12px, 3.25vw, 14px) !important;
    line-height: 1.8 !important;
  }
}


/* Studio section / SP location adjustment - added 2026-06-14 */
.studio {
  background: #fff;
  overflow: hidden;
}
.studio__hero {
  width: 100%;
  aspect-ratio: 1920 / 500;
  min-height: 430px;
  display: grid;
  place-items: center;
}
.studio__hero > .image-box__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.studio__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,.10);
}
.studio__hero h2 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: clamp(58px, 5vw, 86px);
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1;
  text-shadow: 0 3px 12px rgba(0,0,0,.36);
}
.studio__hero .photo-caption {
  z-index: 3;
  color: rgba(255,255,255,.86);
}
.studio__body {
  padding: 92px 0 86px;
}
.studio .section-head h2 {
  white-space: nowrap;
  font-size: clamp(24px, 2.45vw, 36px);
  line-height: 1.7;
  letter-spacing: .09em;
}
.studio__lead {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.studio__movie {
  width: min(920px, 100%);
  margin: 0 auto;
}
.studio__movie-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #eee;
  box-shadow: var(--shadow);
}
.studio__movie-link img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.studio__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78px;
  height: 78px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 34px rgba(0,0,0,.22);
}
.studio__play::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 23px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid var(--brown-dark);
}
.studio__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}
.studio__button {
  display: grid;
  place-items: center;
  min-width: 300px;
  min-height: 56px;
  padding: 12px 22px;
  border: 1px solid var(--brown);
  color: var(--brown-dark);
  font-size: 15px;
  letter-spacing: .08em;
}
.studio__button--primary {
  background: var(--brown);
  color: #fff;
}
.studio__bottom {
  display: block;
  width: 100%;
  line-height: 0;
}
.studio__bottom img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 680px) {
  /* Make location_image01 SP hero height match LAND PLAN SP hero height */
  .location-full__hero {
    height: clamp(280px, 67vw, 420px) !important;
  }

  .studio__hero {
    min-height: 0;
    height: clamp(280px, 67vw, 420px);
    aspect-ratio: auto;
  }
  .studio__hero h2 {
    font-size: clamp(45px, 12vw, 74px);
    letter-spacing: .08em;
  }
  .studio__body {
    width: 100%;
    padding: 70px 24px 76px;
  }
  .studio .section-head {
    margin-bottom: 36px;
  }
  .studio .section-head h2 {
    white-space: nowrap;
    font-size: clamp(20px, 5.1vw, 27px);
    line-height: 1.65;
    letter-spacing: .035em;
  }
  .studio__lead {
    max-width: none;
    font-size: clamp(14px, 3.65vw, 18px) !important;
    line-height: 1.9 !important;
    letter-spacing: .025em !important;
    text-align: justify;
    text-align-last: left;
  }
  .studio__movie {
    width: 100%;
  }
  .studio__play {
    width: 62px;
    height: 62px;
  }
  .studio__play::after {
    left: 25px;
    top: 18px;
    border-top-width: 13px;
    border-bottom-width: 13px;
    border-left-width: 20px;
  }
  .studio__cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
  }
  .studio__button {
    min-width: 0;
    min-height: 54px;
    font-size: 14px;
  }
}


/* STUDIO video/embed cleanup - added 2026-06-14 */
.studio__hero::before,
.studio__hero h2,
.studio__hero .photo-caption {
  display: none !important;
}
.studio__movie-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eee;
  box-shadow: var(--shadow);
}
.studio__movie-frame iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Outline source link */
.outline-source {
  margin: 18px 0 0;
  text-align: right;
  font-size: 13px;
  line-height: 1.6;
}
.outline-source a {
  color: var(--brown-dark);
  border-bottom: 1px solid currentColor;
}
@media (max-width: 680px) {
  .outline-source {
    text-align: left;
  }
}

/* LAND PLAN hiraya block */
@media (max-width: 680px) {
  .land-plan__hiraya-block {
    width: calc(100% - 36px);
    margin: 46px auto 0;
    padding: 34px 20px 38px;
  }
  .land-plan__message--in-block {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    font-size: clamp(12px, 3.35vw, 15px) !important;
    line-height: 1.85 !important;
    text-align: justify !important;
    text-align-last: left !important;
  }
  .land-plan__hiraya-divider {
    width: 100%;
    margin: 30px auto 34px;
  }
  .land-plan__hiraya-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .land-plan__hiraya-copy {
    order: 1;
  }
  .land-plan__hiraya-copy h3 {
    font-size: clamp(22px, 5.8vw, 30px);
    line-height: 1.78;
    letter-spacing: .055em;
    margin-bottom: 18px;
  }
  .land-plan__hiraya-copy p {
    font-size: clamp(12px, 3.35vw, 15px);
    line-height: 1.85;
    letter-spacing: .025em;
    text-align: justify;
    text-align-last: left;
  }
  .land-plan__hiraya-link {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    margin-top: 26px;
    font-size: clamp(13px, 3.6vw, 16px);
  }
  .land-plan__hiraya-image {
    order: 2;
  }
}


/* LAND PLAN hiraya block - width and vertical alignment correction */
.land-plan__hiraya-block {
  width: 100%;
  max-width: var(--max);
  margin: 72px auto 0;
  padding: 72px 72px 76px;
  border: 1px solid var(--line);
  background: #fff;
}
.land-plan__message--in-block {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 0;
  border: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 2;
  text-align: center;
}
.land-plan__hiraya-divider {
  width: min(100%, 560px);
  height: 1px;
  margin: 44px auto 58px;
  border-top: 1px dashed #8d8179;
}
.land-plan__hiraya-content {
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: clamp(64px, 7vw, 104px);
  align-items: stretch;
}
.land-plan__hiraya-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}
.land-plan__hiraya-copy h3 {
  margin: 0 0 28px;
  font-size: clamp(30px, 2.35vw, 40px);
  line-height: 1.82;
  letter-spacing: .08em;
  font-weight: 500;
}
.land-plan__hiraya-copy h3 span {
  display: block;
}
.land-plan__hiraya-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: .04em;
}
.land-plan__hiraya-link {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  justify-self: start;
  display: inline-grid;
  place-items: center;
  min-width: 252px;
  min-height: 58px;
  margin-top: 42px;
  padding: 12px 22px;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  letter-spacing: .08em;
  line-height: 1.3;
  text-align: center;
}
.land-plan__hiraya-image {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  align-self: stretch;
  min-height: 0;
  background: transparent;
  overflow: hidden;
}
.land-plan__hiraya-image .image-box__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.land-plan__hiraya-image .photo-caption {
  right: 8px;
  bottom: 8px;
}

@media (max-width: 680px) {
  .land-plan__hiraya-block {
    width: calc(100% - 36px) !important;
    max-width: none !important;
    margin: 46px auto 0 !important;
    padding: 34px 20px 38px !important;
  }
  .land-plan__message--in-block {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    font-size: clamp(12px, 3.35vw, 15px) !important;
    line-height: 1.85 !important;
    text-align: justify !important;
    text-align-last: left !important;
  }
  .land-plan__hiraya-divider {
    width: 100% !important;
    margin: 30px auto 34px !important;
  }
  .land-plan__hiraya-content {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    gap: 26px !important;
  }
  .land-plan__hiraya-copy {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }
  .land-plan__hiraya-copy h3 {
    margin: 0 0 18px !important;
    font-size: clamp(22px, 5.8vw, 30px) !important;
    line-height: 1.78 !important;
    letter-spacing: .055em !important;
  }
  .land-plan__hiraya-copy p {
    font-size: clamp(12px, 3.35vw, 15px) !important;
    line-height: 1.85 !important;
    letter-spacing: .025em !important;
    text-align: justify !important;
    text-align-last: left !important;
  }
  .land-plan__hiraya-image {
    grid-column: 1 !important;
    grid-row: 2 !important;
    aspect-ratio: 16 / 10 !important;
    width: 100% !important;
  }
  .land-plan__hiraya-link {
    grid-column: 1 !important;
    grid-row: 3 !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 54px !important;
    margin-top: 0 !important;
    font-size: clamp(13px, 3.6vw, 16px) !important;
  }
}

/* LAND PLAN hiraya final adjustment: black outer border + SP centered headline */
.land-plan__hiraya-block {
  border-color: #000 !important;
}

@media (max-width: 680px) {
  .land-plan__hiraya-copy h3 {
    text-align: center !important;
  }
}


/* SP requested fixes 2026-06-18: FV band stack alignment and outline modal compacting */
@media (max-width: 680px) {
  .fv-band__item--train .fv-band__main,
  .fv-band__item--store .fv-band__main {
    align-items: flex-start !important;
  }

  .fv-band__item--train .fv-band__text--stack,
  .fv-band__item--store .fv-band__text--stack {
    transform: translateY(-0.02em) !important;
  }

  .fv-band__item--train .fv-band__unit,
  .fv-band__item--store .fv-band__unit {
    transform: translateY(0.48em) !important;
  }

  .modal__panel {
    width: min(calc(100% - 20px), 920px) !important;
    max-height: calc(100svh - 24px) !important;
    margin: 12px auto !important;
    padding: 18px 12px 20px !important;
  }

  .modal h2 {
    font-size: 19px !important;
    line-height: 1.45 !important;
    margin-bottom: 14px !important;
    letter-spacing: .04em !important;
  }

  .outline-table {
    overflow-x: visible !important;
  }

  .outline-table table {
    width: 100% !important;
    min-width: 0 !important;
    table-layout: fixed !important;
  }

  .outline-table th,
  .outline-table td {
    padding: 7px 7px !important;
    font-size: 10.8px !important;
    line-height: 1.48 !important;
    letter-spacing: .015em !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  .outline-table th {
    width: 32% !important;
  }

  .modal__note {
    margin-top: 12px !important;
    padding: 10px !important;
    font-size: 10.5px !important;
    line-height: 1.55 !important;
    letter-spacing: .01em !important;
  }

  .outline-source {
    display: none !important;
  }
}


/* SP MENU: one item per line, CTA included */
.global-nav__sp-cta {
  display: none;
}

@media (max-width: 680px) {
  .site-header.is-open .global-nav {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 0 !important;
    padding: 14px 0 18px !important;
    margin: 0 !important;
    border-top: 1px solid rgba(215, 208, 201, .7);
  }

  .site-header.is-open .global-nav a {
    display: block !important;
    width: 100% !important;
    padding: 13px 10px !important;
    text-align: center !important;
    border-bottom: 1px solid rgba(215, 208, 201, .55);
    font-size: 14px !important;
    line-height: 1.3 !important;
    letter-spacing: .12em !important;
    white-space: nowrap !important;
  }

  .site-header.is-open .global-nav .global-nav__sp-cta {
    display: block !important;
    color: var(--brown-dark);
  }
}

/* SP MENU OVERLAY FIX: keep header fixed, open menu below header */
@media (max-width: 680px) {
  .site-header.is-open {
    height: var(--header-h) !important;
    overflow: visible !important;
  }

  .site-header.is-open .site-header__inner {
    height: var(--header-h) !important;
    display: grid !important;
    grid-template-columns: 58px 1fr 58px !important;
    align-items: center !important;
    padding: 0 14px !important;
    position: relative !important;
    overflow: visible !important;
  }

  .site-header.is-open .global-nav {
    position: fixed !important;
    top: var(--header-h) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 49 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100vw !important;
    max-height: calc(100svh - var(--header-h) - 64px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    margin: 0 !important;
    padding: 0 20px 24px !important;
    background: rgba(255, 255, 255, .97) !important;
    border-top: 1px solid rgba(215, 208, 201, .8) !important;
    box-shadow: 0 18px 34px rgba(45, 35, 30, .10) !important;
  }

  .site-header.is-open .global-nav a {
    display: block !important;
    width: 100% !important;
    padding: 16px 10px !important;
    text-align: center !important;
    border-bottom: 1px solid rgba(215, 208, 201, .65) !important;
    color: var(--ink) !important;
    background: transparent !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    letter-spacing: .18em !important;
    white-space: nowrap !important;
  }

  .site-header.is-open .global-nav .global-nav__sp-cta {
    display: block !important;
    color: var(--brown-dark) !important;
  }

  body:has(.site-header.is-open) {
    overflow-x: hidden;
  }
}
