:root {
  --ink: #172033;
  --muted: #6e7068;
  --line: #dfd7c7;
  --paper: #fffdf7;
  --soft: #f5f0e5;
  --teal: #8f6b32;
  --teal-dark: #6f5326;
  --blue: #182947;
  --coral: #9b4f35;
  --gold: #a37b34;
  --ivory: #fbf4e6;
  --shadow: 0 22px 60px rgba(23, 32, 38, 0.12);
  --radius: 8px;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  letter-spacing: 0;
  max-width: 100%;
  overflow-x: clip;
}

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

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

button {
  font: inherit;
}

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

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  clip: auto;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid rgba(223, 215, 199, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #263858, #172033);
  border: 1px solid rgba(163, 123, 52, 0.75);
  border-radius: var(--radius);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

.brand-name,
.brand-sub {
  display: block;
}

.brand-name {
  font-size: 16px;
  font-weight: 800;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
}

.brand-sub {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #384050;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  white-space: nowrap;
}

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue);
  border-radius: var(--radius);
}

.nav-call svg,
.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  padding: 10px;
}

.menu-toggle span:not(.visually-hidden) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(251, 244, 230, 0.96), rgba(255, 253, 247, 0.78)),
    linear-gradient(180deg, #fffdf7, #f5f0e5);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg span {
  position: absolute;
  display: block;
  border: 1px solid rgba(163, 123, 52, 0.18);
  transform: rotate(45deg);
}

.hero-bg span:nth-child(1) {
  width: 540px;
  height: 540px;
  right: -110px;
  top: 80px;
  background: rgba(24, 41, 71, 0.06);
}

.hero-bg span:nth-child(2) {
  width: 260px;
  height: 260px;
  left: -80px;
  bottom: 90px;
  background: rgba(155, 79, 53, 0.07);
}

.hero-bg span:nth-child(3) {
  width: 120px;
  height: 120px;
  right: 38%;
  bottom: 12%;
  background: rgba(181, 139, 50, 0.08);
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.eyebrow::before {
  content: "";
  flex: 0 0 26px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3,
p,
dt,
dd,
a,
button {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
.quick-inner h2,
.brand-name,
.hero-card h2,
.station-node,
.property-card h3,
.step-grid h3,
.flow-step h3,
.info-list dd,
.cta-section h2 {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
}

.header-inner > *,
.hero-copy,
.hero-panel,
.quick-inner > *,
.area-pills,
.section-heading,
.feature-item,
.property-card {
  min-width: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 50px;
  line-height: 1.14;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.no-break {
  white-space: nowrap;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: #3e443f;
  font-size: 17px;
}

.hero-actions,
.access-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--blue);
}

.button.primary:hover {
  background: #263858;
  box-shadow: 0 10px 22px rgba(23, 32, 51, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: #fffdf7;
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 18px rgba(23, 32, 38, 0.1);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
}

.hero-facts div {
  padding: 16px;
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid rgba(223, 215, 199, 0.95);
  border-radius: var(--radius);
  min-width: 0;
}

.hero-facts dt {
  font-size: 18px;
  font-weight: 900;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-facts dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-panel {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: stretch;
}

.feature-photo {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #e8dfcf;
}

.hero-seal {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  padding: 10px;
  color: #fffdf7;
  background: rgba(23, 32, 51, 0.82);
  border: 1px solid rgba(217, 189, 122, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(23, 32, 51, 0.82), 0 12px 26px rgba(23, 32, 38, 0.3);
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.18em;
  text-align: center;
}

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

.hero-card {
  position: absolute;
  left: -34px;
  bottom: 34px;
  width: min(330px, calc(100% - 24px));
  padding: 22px;
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(23, 32, 38, 0.14);
}

.card-kicker,
.property-area {
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-bottom: 8px;
  font-size: 22px;
}

.hero-card p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.hero-card a {
  color: var(--teal-dark);
  font-weight: 900;
}

.quick-search {
  background: var(--blue);
  color: #fff;
}

.quick-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.quick-inner h2 {
  margin: 0;
  font-size: 24px;
}

.quick-inner .eyebrow {
  color: #d9bd7a;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.area-pills a,
.filter-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 253, 247, 0.28);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.section-heading h2,
.area-copy h2,
.access-copy h2,
.cta-section h2 {
  margin-bottom: 14px;
  font-size: 39px;
  line-height: 1.2;
}

.section-heading p,
.area-copy p,
.access-copy p,
.cta-section p {
  color: var(--muted);
}

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

.feature-item {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf7;
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--gold);
  background: #f3ead8;
  border-radius: var(--radius);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.feature-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.message-section {
  width: auto;
  max-width: none;
  padding: 92px max(20px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(24, 41, 71, 0.07), transparent 34%),
    linear-gradient(315deg, rgba(163, 123, 52, 0.1), transparent 38%),
    var(--soft);
}

.message-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.message-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
}

.message-card {
  padding: 28px;
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(23, 32, 38, 0.07);
}

.message-card p {
  margin-bottom: 0;
  color: #3e443f;
  font-size: 16px;
}

.message-card p + p {
  margin-top: 16px;
}

.message-label {
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.main-message {
  border-top: 4px solid var(--gold);
}

.message-emphasis {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.president-message {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 28px;
  align-items: center;
  background: #fbf4e6;
}

.president-message h3 {
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 1.35;
}

.president-message img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.signature {
  text-align: right;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
}

.dark-section {
  width: auto;
  max-width: none;
  padding: 92px max(20px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: #172033;
}

.dark-section .section-heading p {
  color: #d7d0c4;
}

.dark-section .eyebrow {
  color: #d9bd7a;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-button {
  cursor: pointer;
}

.filter-button.active {
  color: var(--ink);
  background: #fffdf7;
}

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

.property-card {
  display: grid;
  grid-template-rows: 230px 1fr;
  overflow: hidden;
  background: #fffdf7;
  color: var(--ink);
  border-radius: var(--radius);
  min-height: 520px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.property-card.is-hidden {
  display: none;
}

.property-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #e8dfcf;
}

.property-card div {
  padding: 18px;
}

.property-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.property-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.featured-card {
  grid-column: span 1;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 48px;
  align-items: center;
}

.route-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.route-list span {
  padding: 8px 12px;
  color: var(--blue);
  background: #f5eddd;
  border: 1px solid #e5d6ba;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 13px;
}

.area-board {
  position: relative;
  min-height: 390px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background:
    linear-gradient(90deg, rgba(163, 123, 52, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(163, 123, 52, 0.1) 1px, transparent 1px),
    var(--soft);
  background-size: 38px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.station-node {
  min-height: 130px;
  display: grid;
  align-content: center;
  padding: 18px;
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(23, 32, 38, 0.08);
}

.station-node small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.station-node.main {
  grid-row: span 2;
  color: #fff;
  background: linear-gradient(135deg, #6f5326, var(--blue));
}

.station-node.main small {
  color: #f4e4bd;
}

.process-section {
  background: var(--soft);
  width: auto;
  max-width: none;
  padding: 82px max(20px, calc((100vw - 1180px) / 2));
}

.flow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.flow-track::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(163, 123, 52, 0), rgba(163, 123, 52, 0.62), rgba(163, 123, 52, 0));
}

.flow-step {
  position: relative;
  z-index: 1;
  min-height: 250px;
  padding: 24px;
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(23, 32, 38, 0.08);
}

.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 38px;
  right: -20px;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-top: 2px solid rgba(163, 123, 52, 0.7);
  border-right: 2px solid rgba(163, 123, 52, 0.7);
  transform: rotate(45deg);
  background: transparent;
}

.flow-step-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.flow-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #fffdf7;
  background: linear-gradient(135deg, var(--blue), #263858);
  border: 1px solid rgba(163, 123, 52, 0.74);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(23, 32, 51, 0.18);
}

.flow-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-count {
  min-width: 46px;
  padding: 4px 10px;
  color: var(--teal-dark);
  background: rgba(251, 244, 230, 0.9);
  border: 1px solid rgba(163, 123, 52, 0.34);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}

.step-grid article {
  padding: 24px;
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step-grid span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.step-grid h3 {
  margin: 8px 0 8px;
  font-size: 20px;
}

.flow-step h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.step-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.flow-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.flow-note {
  margin-top: 18px !important;
  padding-top: 14px;
  color: var(--ink) !important;
  border-top: 1px solid rgba(223, 215, 199, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.access-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.access-photos {
  display: block;
}

.office-photo,
.president-photo {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.office-photo {
  aspect-ratio: 4 / 5;
}

.president-photo {
  aspect-ratio: 1 / 1;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.info-list dt {
  color: var(--muted);
  font-weight: 800;
}

.info-list dd {
  margin: 0;
  font-weight: 700;
}

.cta-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 80px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  color: #fff;
  background: linear-gradient(135deg, #172033, #263858);
  border-radius: var(--radius);
}

.cta-section p,
.cta-section .eyebrow {
  color: #f4e4bd;
}

.cta-section h2 {
  max-width: 720px;
}

.cta-section h2 span {
  display: inline-block;
}

.cta-section .button.secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 17px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
}

.footer-company p {
  margin: 4px 0 0;
  line-height: 1.8;
}

.footer-company a {
  color: var(--ink);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: flex-end;
  max-width: 360px;
  font-weight: 700;
}

.footer-links a {
  color: var(--ink);
  white-space: nowrap;
}

.footer-links a:hover {
  color: var(--teal-dark);
}

.footer-notes {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(223, 215, 199, 0.7);
}

.demo-note {
  margin: 4px 0 0;
  max-width: none;
  text-align: left;
}

@media (max-width: 1040px) {
  .hero-inner,
  .split-section,
  .access-section {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 460px;
  }

  .hero-card {
    left: 22px;
  }

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

  .message-grid,
  .president-message {
    grid-template-columns: 1fr;
  }

  .president-message {
    grid-column: auto;
  }

  .president-message img {
    max-width: 260px;
  }

  .quick-inner,
  .cta-section {
    grid-template-columns: 1fr;
    display: grid;
  }

  .area-pills {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .header-inner {
    width: min(100% - 28px, 1180px);
    min-height: 66px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 42px;
    position: relative;
    z-index: 2;
  }

  .site-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-call {
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
    padding: 34px 0 28px;
    gap: 24px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: 32px;
  }

  .hero-lead {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .feature-grid,
  .step-grid,
  .flow-track {
    grid-template-columns: 1fr;
  }

  .flow-track {
    gap: 28px;
  }

  .flow-track::before {
    top: 34px;
    bottom: 34px;
    left: 32px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(163, 123, 52, 0), rgba(163, 123, 52, 0.62), rgba(163, 123, 52, 0));
  }

  .flow-step {
    min-height: auto;
    padding: 22px;
  }

  .flow-step:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -23px;
    left: 24px;
    transform: rotate(135deg);
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .hero-facts div {
    padding: 12px 10px;
    overflow: hidden;
  }

  .hero-facts dt {
    font-size: 16px;
    line-height: 1.3;
  }

  .hero-facts dd {
    font-size: 11px;
  }

  .hero-panel {
    min-height: 300px;
    display: block;
  }

  .feature-photo {
    height: 300px;
  }

  .hero-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    padding: 18px;
    margin: 0;
  }

  .section,
  .quick-inner,
  .cta-section,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .section,
  .dark-section,
  .process-section,
  .message-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .section-heading h2,
  .area-copy h2,
  .access-copy h2,
  .cta-section h2 {
    font-size: 29px;
  }

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

  .message-card {
    padding: 22px;
  }

  .message-card p {
    font-size: 15px;
  }

  .message-emphasis {
    font-size: 17px;
  }

  .president-message h3 {
    font-size: 22px;
  }

  .featured-card {
    grid-column: auto;
  }

  .property-card {
    grid-template-rows: 220px auto;
    min-height: auto;
  }

  .area-board {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .station-node.main {
    grid-row: auto;
  }

  .access-photos {
    max-width: 520px;
  }

  .office-photo {
    aspect-ratio: 4 / 5;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cta-section {
    margin-bottom: 48px;
    padding: 28px;
  }

  .cta-section h2 span {
    display: inline;
  }

  .site-footer {
    flex-direction: column;
  }

  .demo-note {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 460px) {
  .brand-name {
    font-size: 14px;
  }

  .brand {
    max-width: calc(100% - 56px);
  }

  .brand-sub {
    font-size: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-actions,
  .access-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: flex;
    flex-wrap: nowrap;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button {
    width: auto;
    flex: 1 1 0;
    padding-inline: 12px;
  }

  .hero-panel {
    min-height: 260px;
  }

  .feature-photo {
    height: 260px;
  }

  .hero-facts dt {
    font-size: 14px;
    white-space: nowrap;
  }

  .hero-facts dd {
    font-size: 10.5px;
  }

  .hero-facts div {
    padding-right: 8px;
    padding-left: 8px;
  }
}

/* ---- 追加コンポーネント ---- */

.footnote-ref {
  font-size: 9px;
}

.fee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  padding: 9px 14px;
  color: #f4e4bd;
  background: rgba(217, 189, 122, 0.12);
  border: 1px solid rgba(217, 189, 122, 0.5);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.fee-badge svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #d9bd7a;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.parking-strip {
  background: linear-gradient(120deg, #4a3a1c, #6f5326 55%, #8f6b32);
  color: #fffdf7;
}

.parking-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 38px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.parking-inner .eyebrow {
  color: #f4e4bd;
}

.parking-inner .eyebrow::before {
  background: #f4e4bd;
}

.parking-inner h2 {
  margin: 0 0 8px;
  font-size: 27px;
}

.parking-inner p:last-child {
  margin: 0;
  color: rgba(255, 253, 247, 0.95);
  font-size: 15px;
}

.parking-inner .button.primary {
  background: #172033;
  font-size: 17px;
  padding: 14px 26px;
}

.parking-inner .button.primary:hover {
  background: #263858;
}

.faq-section {
  max-width: 880px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(23, 32, 38, 0.05);
}

.faq-item summary {
  position: relative;
  padding: 18px 52px 18px 20px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 800;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "Q";
  margin-right: 12px;
  color: var(--gold);
  font-weight: 900;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--teal-dark);
  border-bottom: 2px solid var(--teal-dark);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px 20px;
  color: #3e443f;
  font-size: 15px;
}

.access-photos {
  display: grid;
  gap: 14px;
  align-self: start;
}

.access-map {
  width: 100%;
  height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: block;
}

.cta-hours {
  margin: 14px 0 0;
  font-size: 13.5px;
}

.cta-section .cta-hours {
  color: rgba(244, 228, 189, 0.85);
}

.mobile-cta {
  display: none;
}

/* ---- ふわっと表示 ---- */

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .property-card {
    transition: none;
  }

  .button:hover,
  .property-card:hover {
    transform: none;
  }
}

@media (max-width: 1040px) {
  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .footer-main {
    flex-direction: column;
    gap: 20px;
  }

  .parking-inner {
    width: min(100% - 28px, 1180px);
    padding: 32px 0;
  }

  .parking-inner h2 {
    font-size: 23px;
  }

  .parking-inner .button.primary {
    width: 100%;
  }

  .faq-item summary {
    font-size: 15px;
    padding: 16px 48px 16px 16px;
  }

  .faq-item p {
    padding: 0 16px 16px 16px;
  }

  .access-map {
    height: 220px;
  }

  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 1px;
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(23, 32, 51, 0.96);
    box-shadow: 0 -8px 24px rgba(23, 32, 38, 0.2);
  }

  .mobile-cta a {
    min-height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fffdf7;
    font-weight: 800;
    font-size: 15px;
    line-height: 1.25;
  }

  .mobile-cta svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-cta-tel {
    background: var(--blue);
  }

  .mobile-cta-tel small {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #d9bd7a;
    letter-spacing: 0.04em;
  }

  .mobile-cta-mail {
    background: #6f5326;
  }
}

@media (max-width: 460px) {
  .hero-seal {
    display: none;
  }
}

/* ---- フィードバック反映: CV重視セクション ---- */

.vacancy-section {
  width: auto;
  max-width: none;
  padding: 72px max(20px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(24, 41, 71, 0.06), transparent 34%),
    #fffdf7;
  border-top: 1px solid rgba(223, 215, 199, 0.8);
  border-bottom: 1px solid rgba(223, 215, 199, 0.8);
}

.vacancy-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 36px;
  align-items: start;
}

.vacancy-copy h2,
.availability-section h2,
.instagram-section h2 {
  margin-bottom: 16px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-size: 36px;
  line-height: 1.25;
}

.vacancy-copy p {
  color: var(--muted);
}

.vacancy-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.vacancy-points li {
  padding: 11px 12px;
  color: var(--blue);
  background: #f5eddd;
  border: 1px solid #e5d6ba;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.vacancy-form {
  padding: 26px;
  background: var(--blue);
  border: 1px solid rgba(217, 189, 122, 0.35);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(23, 32, 51, 0.18);
}

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

.vacancy-form label,
.form-message {
  display: grid;
  gap: 7px;
  color: #fffdf7;
  font-size: 13px;
  font-weight: 800;
}

.vacancy-form input,
.vacancy-form select,
.vacancy-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fffdf7;
  border: 1px solid rgba(223, 215, 199, 0.9);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 500;
}

.vacancy-form textarea {
  resize: vertical;
}

.form-message {
  margin-top: 14px;
}

.form-submit {
  width: 100%;
  margin-top: 16px;
  color: var(--ink) !important;
  background: #d9bd7a !important;
  border-color: #d9bd7a !important;
}

.form-note,
.form-result {
  margin: 12px 0 0;
  color: rgba(255, 253, 247, 0.92);
  font-size: 13px;
}

.form-note a {
  color: #f4e4bd;
  font-weight: 900;
}

.form-result.is-active {
  padding: 10px 12px;
  color: #fffdf7;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(217, 189, 122, 0.36);
  border-radius: var(--radius);
}

.availability-section {
  padding-top: 74px;
}

.availability-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.availability-list article {
  padding: 22px;
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(23, 32, 38, 0.07);
}

.availability-list span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 9px;
  color: #fffdf7;
  background: var(--teal-dark);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.availability-list h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.availability-list p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.availability-list a,
.property-actions a:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 13px;
  color: var(--ink);
  background: #d9bd7a;
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.25;
}

.property-meta {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
}

.property-meta div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 8px;
  align-items: baseline;
}

.property-meta dt {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.property-meta dd {
  margin: 0;
  color: #3e443f;
  font-size: 13px;
  font-weight: 700;
}

.property-status {
  margin: 16px 0 0 !important;
  padding: 10px 12px;
  color: var(--ink) !important;
  background: #f5eddd;
  border: 1px solid #e5d6ba;
  border-radius: var(--radius);
  font-size: 13px !important;
  font-weight: 800;
}

.property-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 14px;
}

.property-actions a:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
  white-space: nowrap;
}

.instagram-section {
  width: auto;
  max-width: none;
  padding: 70px max(20px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(24, 41, 71, 0.94), rgba(38, 56, 88, 0.94)),
    var(--blue);
  color: #fffdf7;
}

.instagram-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr) auto;
  gap: 30px;
  align-items: center;
}

.instagram-inner .eyebrow,
.instagram-inner p {
  color: #f4e4bd;
}

.instagram-topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.instagram-topics li {
  padding: 9px 11px;
  background: rgba(255, 253, 247, 0.08);
  border: 1px solid rgba(255, 253, 247, 0.22);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
}

.instagram-inner .button.secondary,
.parking-actions .button.secondary {
  color: #fffdf7;
  background: rgba(23, 32, 51, 0.24);
  border-color: rgba(255, 253, 247, 0.45);
}

.parking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1040px) {
  .vacancy-inner,
  .instagram-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  h1 {
    font-size: 31px;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-bg span {
    display: none;
  }

  .vacancy-section,
  .instagram-section {
    padding: 58px 14px;
  }

  .vacancy-copy h2,
  .availability-section h2,
  .instagram-section h2 {
    font-size: 28px;
  }

  .vacancy-form {
    padding: 20px;
  }

  .form-grid,
  .vacancy-points,
  .instagram-topics {
    grid-template-columns: 1fr;
  }

  .property-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .property-card {
    display: block;
    min-height: auto;
    overflow: hidden;
    background: #fffdf7;
    color: var(--ink);
    border: 1px solid rgba(217, 189, 122, 0.28);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
    transform: none;
  }

  .property-card:hover {
    transform: none;
  }

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

  .property-card > div {
    padding: 20px 18px 22px;
    background: #fffdf7;
  }

  .property-area {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 10px;
    padding: 5px 10px;
    color: #fffdf7;
    background: #8b4a33;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.3;
  }

  .property-card h3 {
    margin-bottom: 9px;
    color: #101827;
    font-size: 24px;
    line-height: 1.25;
  }

  .property-card > div > p:not(.property-area):not(.property-status) {
    margin-bottom: 0;
    color: #263044;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.65;
  }

  .property-meta {
    margin-top: 18px;
    gap: 10px;
  }

  .property-meta div {
    grid-template-columns: 48px 1fr;
  }

  .property-meta dt {
    color: #76511c;
    font-size: 13px;
  }

  .property-meta dd {
    color: #273246;
    font-size: 14px;
    font-weight: 800;
  }

  .property-status {
    margin-top: 18px !important;
    padding: 14px 16px;
    color: #101827 !important;
    background: #fff8e6;
    border-color: #d5bd82;
    font-size: 15px !important;
    line-height: 1.55;
    box-shadow: 0 8px 20px rgba(23, 32, 51, 0.08);
  }

  .property-actions {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }

  .property-actions a:first-child {
    min-height: 54px;
    color: #111827;
    background: linear-gradient(180deg, #e3cb83, #d5b765);
    border-color: #cda84f;
    font-size: 16px;
    box-shadow: 0 10px 20px rgba(111, 83, 38, 0.16);
  }

  .property-actions a:last-child {
    min-height: 48px;
    color: #172033;
    background: #fffdf7;
    border-color: #d8c9aa;
  }

  .parking-actions {
    width: 100%;
  }

  .parking-actions .button {
    width: 100%;
  }

  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .mobile-cta {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .mobile-cta a {
    min-height: 70px;
    flex-direction: column;
    gap: 4px;
    padding: 7px 6px;
    font-size: 12px;
    text-align: center;
  }

  .mobile-cta svg {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .mobile-cta-vacancy {
    background: #8f6b32;
  }

  .mobile-cta a small {
    display: block;
    margin-top: 1px;
    color: #fffdf7;
    opacity: 0.92;
    font-size: 10px;
    font-weight: 700;
  }
}

@media (max-width: 460px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts dt {
    white-space: normal;
  }
}
