:root {
  --ink: #1f262b;
  --muted: #6f746f;
  --line: #e5e0d8;
  --base: #f7f4ee;
  --paper: #fffefd;
  --wood: #9a6a3f;
  --olive: #66755b;
  --charcoal: #2b302d;
  --font-sans: "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", sans-serif;
  --font-serif: "Shippori Mincho", serif;
  --font-hero: "Zen Old Mincho", serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  line-height: 1.9;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  color: #fffdf8;
  background: linear-gradient(180deg, rgba(31, 38, 43, 0.4), rgba(31, 38, 43, 0));
  border-bottom: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 40px;
  width: min(1500px, calc(100% - 72px));
  min-height: 78px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: #fffefd;
  border-radius: 11px;
  padding: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.global-nav {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-toggle {
  display: none;
}

.has-js body.is-opening {
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: visible;
}

.hero-opening {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: none;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(31, 38, 43, 0.88) 0 50%, rgba(31, 38, 43, 0.88) 50% 100%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.12), rgba(255, 253, 248, 0));
  transform-origin: center;
}

.has-js .hero-opening {
  display: block;
}

.hero-image {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.has-js .hero-image {
  filter: brightness(0.72);
  transform: scale(1.035);
  transition: filter 1.7s ease, transform 1.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-image::after {
  position: absolute;
  inset: 0;
  display: block;
  content: "";
  background:
    linear-gradient(180deg, rgba(31, 38, 43, 0.18) 0%, rgba(31, 38, 43, 0.04) 34%, rgba(31, 38, 43, 0.36) 100%),
    radial-gradient(circle at center, rgba(31, 38, 43, 0), rgba(31, 38, 43, 0.2));
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.9s ease, transform 5.2s linear;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.has-js .site-header,
.has-js .hero-content,
.has-js .hero-links,
.has-js .scroll-guide {
  opacity: 0;
}

.has-js .site-header {
  transform: translateY(-18px);
}

.has-js .hero-content {
  transform: translate(-50%, calc(-50% + 24px));
}

.has-js .hero-links {
  transform: translateY(18px);
}

.has-js .scroll-guide {
  transform: translate(-50%, 18px);
}

body.is-loaded .hero-image {
  filter: brightness(1);
  transform: scale(1);
}

body.is-loaded .hero-opening {
  animation: hero-opening 1.45s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

body.is-loaded .site-header {
  animation: opening-fade-down 0.85s ease 0.35s forwards;
}

body.is-loaded .hero-content {
  animation: hero-copy-in 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.58s forwards;
}

body.is-loaded .hero-links {
  animation: opening-fade-up 0.9s ease 0.98s forwards;
}

body.is-loaded .scroll-guide {
  animation: scroll-guide-in 0.9s ease 1.2s forwards;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(980px, calc(100% - 48px));
  padding-top: 52px;
  color: #fffdf8;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--olive);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.hero .section-kicker {
  color: rgba(255, 253, 248, 0.82);
  font-family: var(--font-hero);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.26em;
}

.hero h1,
.section h2,
.perf-band h2,
.assurance-band h2 {
  margin: 0;
  font-family: var(--font-hero);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.45;
}

.hero h1 {
  max-width: none;
  font-size: clamp(40px, 4.8vw, 72px);
  letter-spacing: 0.075em;
  white-space: nowrap;
}

.hero p:not(.section-kicker) {
  max-width: none;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.9);
  font-family: var(--font-hero);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.hero-lead {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 0.35em;
  row-gap: 0.2em;
  max-width: min(920px, 100%);
  white-space: normal !important;
}

.hero-lead span {
  display: inline-block;
}

.hero-links {
  position: absolute;
  right: 48px;
  bottom: 48px;
  left: 48px;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 64px;
  margin-top: 0;
}

.hero-links a:first-child {
  margin-right: 58px;
}

.hero-links a:last-child {
  margin-left: 58px;
}

.hero-links a {
  color: #fffdf8;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}

.hero-links a,
.text-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-links a {
  font-family: var(--font-hero);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.text-cta {
  color: var(--charcoal);
}

.hero-links a::after,
.text-cta::after {
  width: 46px;
  height: 1px;
  margin-left: 14px;
  content: "";
  background: currentColor;
}

.scroll-guide {
  position: absolute;
  bottom: -48px;
  left: 50%;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 13px;
  color: #fffdf8;
  text-align: center;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
  transform: translateX(-50%);
}

.scroll-guide span {
  font-family: var(--font-hero);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.22em;
  line-height: 1;
}

.scroll-guide i {
  position: relative;
  display: block;
  width: 2px;
  height: 96px;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdf8 0 50%, var(--charcoal) 50% 100%);
}

.scroll-guide i::after {
  position: absolute;
  top: -42px;
  left: 0;
  width: 100%;
  height: 42px;
  content: "";
  background: var(--charcoal);
  animation: scroll-guide-line 1.8s ease-in-out infinite;
}

@keyframes scroll-guide-line {
  0% {
    transform: translateY(0);
  }

  70%,
  100% {
    transform: translateY(154px);
  }
}

@keyframes hero-opening {
  0% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }

  72% {
    opacity: 1;
  }

  100% {
    clip-path: inset(0 50% 0 50%);
    opacity: 0;
  }
}

@keyframes opening-fade-down {
  0% {
    opacity: 0;
    transform: translateY(-18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes opening-fade-up {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-copy-in {
  0% {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 24px));
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes scroll-guide-in {
  0% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-js .hero-opening {
    display: none;
  }

  .has-js .hero-image,
  .has-js .site-header,
  .has-js .hero-content,
  .has-js .hero-links,
  .has-js .scroll-guide {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .has-js .hero-content {
    transform: translate(-50%, -50%);
  }

  .has-js .scroll-guide {
    transform: translateX(-50%);
  }

.scroll-guide i::after,
.works-track {
  animation: none;
}
}

.breadcrumb {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb li + li::before {
  color: rgba(111, 116, 111, 0.55);
  content: "/";
}

.breadcrumb a {
  color: var(--charcoal);
  font-weight: 700;
}

.breadcrumb [aria-current="page"] {
  color: var(--muted);
}

.section {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-head {
  max-width: 740px;
  margin: 0 auto 54px;
  text-align: center;
}

.section[class$="-intro"] {
  padding-bottom: 0;
}

.section[class$="-intro"] .section-head {
  margin-bottom: 0;
}

.section[class$="-intro"] .section-head p:last-child {
  margin-bottom: 0;
}

[class$="-intro"] + .section {
  padding-top: 64px;
}

.section-head.left {
  max-width: 900px;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section h2,
.perf-band h2,
.assurance-band h2 {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: 0.07em;
}

.section-head p:not(.section-kicker),
.concept-card p,
.feature-list p {
  color: var(--muted);
}

.works-lead span,
.features-lead span {
  display: inline-block;
}

#features .section-head {
  max-width: min(920px, 100%);
}

#features .section-head h2 {
  font-size: clamp(21px, 4.6vw, 32px);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.properties {
  width: 100%;
  max-width: none;
  background: var(--paper);
}

.properties .section-head {
  max-width: 820px;
}

.properties .section-head p:not(.section-kicker) {
  white-space: nowrap;
}

.property-list {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.property-card {
  display: grid;
  grid-template-rows: 250px 1fr;
  background: #fff;
  border: 1px solid rgba(229, 224, 216, 0.9);
}

.property-card img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.property-body {
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  align-content: start;
  gap: 14px;
  padding: 28px;
}

.property-status {
  width: fit-content;
  color: var(--wood);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.property-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.5;
}

.property-location {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.property-location::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 50% 50% 50% 0;
  opacity: 0.7;
  transform: rotate(-45deg);
}

.property-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.property-specs div {
  padding: 12px 14px;
  background: var(--paper);
}

.property-specs dt,
.property-specs dd {
  margin: 0;
}

.property-specs dt {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.property-specs dd {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 700;
}

.property-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
}

.property-tags span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.property-tags span::before {
  content: "#";
}

.property-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  margin-top: 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.property-link::after {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.works {
  width: 100%;
  max-width: none;
  overflow: hidden;
  background: var(--paper);
}

.features {
  width: 100%;
  max-width: none;
  background: var(--paper);
}

.works-head h2 {
  display: block;
}

.works-carousel {
  position: relative;
  width: 100%;
  margin-top: 58px;
}

.works-viewport {
  width: 100%;
  overflow: hidden;
  padding: 0 0 18px;
}

.works-track {
  display: flex;
  align-items: flex-start;
  width: max-content;
  animation: works-marquee 82s linear infinite;
  will-change: transform;
}

.works-set {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  padding-right: 36px;
}

.work-card {
  flex: 0 0 min(470px, 68vw);
  width: min(470px, 68vw);
  display: grid;
  grid-template-rows: 350px 156px;
  gap: 18px;
}

.work-card img {
  display: block;
  width: 100%;
  height: 350px;
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
}

.work-card > div {
  display: grid;
  grid-template-rows: auto auto auto auto;
  row-gap: 12px;
  align-content: start;
}

.feature-card > span,
.flow-list span {
  color: var(--wood);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.feature-card h3 {
  margin: 6px 0 8px;
  font-size: 22px;
  line-height: 1.55;
  text-wrap: balance;
  word-break: keep-all;
}

.flow-list h3 {
  margin: 6px 0 8px;
  font-size: 22px;
  line-height: 1.55;
  text-wrap: balance;
}

.feature-card p,
.flow-list p {
  margin: 0;
  font-size: 14px;
}

.work-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.55;
}

.work-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  column-gap: 20px;
  row-gap: 10px;
  margin-top: 0;
}

.work-tags span {
  padding: 0;
  color: var(--muted);
  background: transparent;
  border-bottom: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.work-tags span::before {
  content: "#";
}

.work-location {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.work-location::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 50% 50% 50% 0;
  opacity: 0.7;
  transform: rotate(-45deg);
}

.work-location::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  width: 2px;
  height: 2px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.7;
  transform: translateY(-50%);
}

@keyframes works-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.concept {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  padding: 86px 0 126px;
  background: var(--base);
}

.concept::before,
.concept::after {
  position: absolute;
  inset: 0 clamp(32px, 8vw, 120px) auto 0;
  height: 430px;
  content: "";
}

.concept::before {
  background: url("../images/hero-wide-rooms/01_wide_timber_living.webp") center / cover no-repeat;
  transform: scale(1.02);
}

.concept::after {
  background: rgba(0, 0, 0, 0.22);
}

.concept-message {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 54px;
  color: #fffdf8;
  font-family: var(--font-hero);
  font-size: clamp(23px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.concept-layout {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  min-height: 510px;
  margin: 0 auto;
}

.concept-sub-image {
  margin: 0;
}

.concept-main-image {
  display: none;
}

.concept-sub-image img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.concept-card {
  position: absolute;
  left: -18px;
  top: 188px;
  width: min(640px, 52vw);
  padding: clamp(34px, 3.6vw, 50px) clamp(34px, 3.6vw, 48px);
  background:
    radial-gradient(circle at 12% 18%, rgba(154, 106, 63, 0.055), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(102, 117, 91, 0.045), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 253, 248, 0.96) 42%, rgba(247, 244, 238, 0.94)),
    repeating-linear-gradient(0deg, rgba(31, 38, 43, 0.025) 0 1px, transparent 1px 4px);
  box-shadow: 0 18px 42px rgba(31, 38, 43, 0.12);
  z-index: 2;
}

.concept-card p {
  margin: 20px 0 0;
  max-width: 460px;
}

.concept-card h2 {
  margin-bottom: 26px;
  font-size: clamp(25px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.concept-sub-image {
  position: absolute;
  right: min(0px, calc((1200px - 100vw) / 2));
  top: 300px;
  width: min(720px, 50vw);
  z-index: 3;
}

.concept-sub-image img {
  height: 320px;
}

.feature-list {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.feature-card {
  position: relative;
  display: grid;
  min-height: 420px;
  overflow: hidden;
  color: #fffdf8;
  text-decoration: none;
  background: var(--charcoal);
}

.feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.feature-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(22, 30, 34, 0.08) 0%, rgba(22, 30, 34, 0.2) 42%, rgba(22, 30, 34, 0.78) 100%),
    linear-gradient(90deg, rgba(22, 30, 34, 0.26), rgba(22, 30, 34, 0.04));
}

.feature-card > span {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
}

.feature-card > div {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 28px 24px 26px;
}

.feature-card p {
  color: #fffdf8;
}

.feature-card:hover img {
  transform: scale(1.04);
}

.feature-card small {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: rgba(255, 253, 248, 0.86);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.feature-card small::after {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.flow {
  width: 100%;
  max-width: none;
  background: var(--charcoal);
}

.flow .section-head {
  color: #f5f0e8;
}

.flow-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(48px, 6vw, 86px);
  align-items: center;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto 58px;
}

.flow-intro .section-head {
  max-width: 620px;
  margin: 0;
  text-align: left;
}

.flow-intro .section-head h2 {
  text-wrap: balance;
  word-break: keep-all;
}

.flow-visual {
  position: relative;
  margin: 0;
}

.flow-visual::before {
  position: absolute;
  inset: 16px -16px -16px 16px;
  content: "";
  background: rgba(245, 240, 232, 0.11);
  clip-path: polygon(50% 0, 100% 34%, 100% 100%, 0 100%, 0 34%);
}

.flow-visual img {
  position: relative;
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  clip-path: polygon(50% 0, 100% 34%, 100% 100%, 0 100%, 0 34%);
}

.flow .section-kicker {
  color: rgba(245, 240, 232, 0.68);
}

.flow .section-head p:not(.section-kicker) {
  color: rgba(245, 240, 232, 0.68);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  background: rgba(245, 240, 232, 0.18);
  border-top: 1px solid rgba(245, 240, 232, 0.18);
  border-bottom: 1px solid rgba(245, 240, 232, 0.18);
}

.flow-list article {
  min-height: 260px;
  padding: 34px 28px;
  color: #f5f0e8;
  background: var(--charcoal);
}

.flow-list span {
  color: rgba(245, 240, 232, 0.64);
}

.flow-list p {
  color: rgba(245, 240, 232, 0.68);
}

.staff {
  width: 100%;
  max-width: none;
  overflow: hidden;
  background: #fffefd;
}

.staff-stage {
  position: relative;
  width: min(1460px, calc(100% - 48px));
  min-height: 760px;
  margin: 0 auto;
}

.staff-center {
  position: absolute;
  top: 47%;
  left: 50%;
  z-index: 2;
  width: min(640px, 88vw);
  text-align: center;
  transform: translate(-50%, -50%);
}

.staff-script {
  margin: 0 0 22px;
  color: rgba(31, 38, 43, 0.9);
  font-family: var(--font-sans);
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.staff-label {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 82px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.staff-label::before,
.staff-label::after {
  width: 1px;
  height: 22px;
  content: "";
  background: currentColor;
  opacity: 0.55;
}

.staff-center h2 {
  margin: 0 0 42px;
  font-family: var(--font-hero);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.5;
  white-space: nowrap;
}

.staff-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 17px 36px;
  color: #fffdf8;
  background: #ad967f;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.staff-cta-mobile {
  display: none;
}

.staff-people {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.staff-person {
  position: absolute;
  width: clamp(190px, 17vw, 280px);
  margin: 0;
  text-align: center;
}

.staff-person figure {
  width: 100%;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  background: #ebecea;
  border-radius: 50%;
}

.staff-person img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.staff-person p {
  margin: 10px 0 0;
  color: rgba(31, 38, 43, 0.88);
  font-family: "Bradley Hand", "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.staff-person-kawamura {
  top: 2%;
  left: 27%;
  transform: translateX(-50%);
}

.staff-person-nagase {
  top: 35%;
  left: 8%;
  transform: translateX(-50%);
}

.staff-person-miyata {
  top: 61%;
  left: 30%;
  transform: translateX(-50%);
}

.staff-person-fujisawa {
  top: 2%;
  left: 73%;
  transform: translateX(-50%);
}

.staff-person-tachibana {
  top: 35%;
  left: 92%;
  transform: translateX(-50%);
}

.staff-person-sakurai {
  top: 61%;
  left: 70%;
  transform: translateX(-50%);
}

.visit {
  width: 100%;
  max-width: none;
  padding: 120px 0 0;
  background: #fffefd;
}

.visit-shell {
  position: relative;
  display: flex;
  justify-content: flex-start;
  width: min(1280px, calc(100% - 48px));
  margin: -120px auto 0;
  padding-bottom: 140px;
}

.visit-photo {
  width: 100%;
  height: clamp(260px, 28vw, 380px);
  overflow: hidden;
}

.visit-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.visit-panel {
  position: relative;
  z-index: 1;
  width: 720px;
  padding: 56px 60px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(229, 224, 216, 0.95);
  box-shadow: 0 28px 60px rgba(31, 38, 43, 0.12);
}

.visit-panel h2 {
  margin: 0;
  font-family: var(--font-hero);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.45;
}

.visit-panel p:not(.section-kicker) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.visit-phone-label {
  margin: 28px 0 0 !important;
  color: var(--muted) !important;
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: "Noto Sans JP", sans-serif;
}

.visit-phone {
  display: inline-block;
  margin-top: 10px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(34px, 4.3vw, 58px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.visit-hours {
  margin-top: 12px !important;
  color: var(--charcoal) !important;
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.visit-float {
  position: absolute;
  right: calc((100vw - min(1280px, 100vw - 48px)) / -2);
  top: 120px;
  z-index: 2;
  width: clamp(380px, 48vw, 700px);
}

.visit-float img {
  display: block;
  width: 100%;
  height: clamp(240px, 24vw, 340px);
  object-fit: cover;
  border: 6px solid #fffefd;
  box-shadow: 0 32px 60px rgba(31, 38, 43, 0.22);
}

.visit-float-overlay {
  position: absolute;
  inset: 6px;
  background: linear-gradient(180deg, rgba(20, 22, 20, 0.3) 0%, rgba(12, 14, 12, 0.72) 100%);
  pointer-events: none;
}

.visit-float-ctas {
  position: absolute;
  inset: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 28px;
}

.visit-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  background: transparent;
  border: 1px solid #fffdf8;
  color: #fffdf8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}

.news {
  width: 100%;
  max-width: none;
  overflow: hidden;
  padding-right: 0;
  padding-left: 0;
  background: rgba(200, 202, 198, 0.6);
}

.pickup-head {
  margin: 0 auto 34px;
  text-align: center;
}

.pickup-head h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.pickup-carousel {
  position: relative;
  width: 100%;
}

.pickup-viewport {
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: calc((100vw - min(1040px, calc(100vw - 96px))) / 2);
  scrollbar-width: none;
}

.pickup-viewport::-webkit-scrollbar {
  display: none;
}

.pickup-track {
  display: flex;
  gap: 40px;
  width: max-content;
  padding: 0 max(48px, calc((100vw - 1040px) / 2)) 42px;
}

.pickup-card {
  position: relative;
  flex: 0 0 min(520px, calc((100vw - 144px) / 2));
  display: block;
  aspect-ratio: 1.86 / 1;
  overflow: hidden;
  background: var(--charcoal);
}

.pickup-card::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  width: 13px;
  height: 13px;
  content: "";
  border-right: 3px solid rgba(255, 253, 248, 0.88);
  border-bottom: 3px solid rgba(255, 253, 248, 0.88);
  box-shadow: 6px 6px 0 -2px rgba(255, 253, 248, 0.88);
}

.pickup-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.pickup-card:hover img {
  transform: scale(1.04);
}

.pickup-arrow {
  position: absolute;
  top: calc(50% - 22px);
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #fff;
  background: rgba(31, 38, 43, 0.86);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.pickup-arrow::before {
  width: 11px;
  height: 11px;
  content: "";
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.pickup-arrow-prev {
  left: max(20px, calc(50vw - 540px));
}

.pickup-arrow-prev::before {
  transform: translateX(2px) rotate(-135deg);
}

.pickup-arrow-next {
  right: max(20px, calc(50vw - 540px));
}

.pickup-arrow-next::before {
  transform: translateX(-2px) rotate(45deg);
}

.pickup-dots {
  display: flex;
  justify-content: center;
  gap: 16px;
  min-height: 10px;
}

.pickup-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: #d7d7d7;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.pickup-dots button.is-active {
  background: var(--ink);
}

.site-footer {
  padding: 84px 0 36px;
  color: #f3f1ea;
  background: #242926;
}

.footer-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 2fr);
  align-items: start;
  gap: 64px;
  padding-bottom: 56px;
}

.footer-brand {
  display: grid;
  gap: 16px;
  align-content: start;
}

.footer-mark {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  background: #fffefd;
  border-radius: 15px;
  padding: 9px;
}

.footer-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.site-footer strong {
  font-size: 19px;
  letter-spacing: 0.08em;
  font-family: var(--font-hero);
  font-weight: 400;
}

.footer-tagline {
  margin: 0;
  color: rgba(243, 241, 234, 0.62);
  font-size: 13px;
  line-height: 1.9;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #f3f1ea;
  border: 1px solid rgba(243, 241, 234, 0.28);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  background: rgba(243, 241, 234, 0.12);
  border-color: rgba(243, 241, 234, 0.5);
}

.footer-social img {
  display: block;
  width: 17px;
  height: 17px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-col-head {
  margin: 0 0 6px;
  padding-top: 14px;
  border-top: 2px solid var(--olive);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer-col a {
  color: rgba(243, 241, 234, 0.78);
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(243, 241, 234, 0.14);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 28px;
  margin: 0;
}

.footer-meta > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.footer-meta dt {
  color: var(--olive);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.footer-meta dd {
  margin: 0;
  color: rgba(243, 241, 234, 0.82);
  font-size: 13px;
  letter-spacing: 0.03em;
}

.footer-meta dd a {
  color: inherit;
}

.footer-copy {
  margin: 0;
  color: rgba(243, 241, 234, 0.45);
  font-size: 12px;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .properties .section-head p:not(.section-kicker) {
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .header-inner {
    grid-template-columns: auto auto;
  }

  .global-nav {
    display: none;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
    gap: 6px;
    width: 42px;
    height: 42px;
    padding: 11px;
    border: 1px solid rgba(255, 253, 248, 0.55);
    background: rgba(31, 38, 43, 0.12);
  }

  .nav-toggle span {
    height: 1px;
    background: #fffdf8;
  }

  .global-nav.is-open {
    position: absolute;
    top: 78px;
    right: 24px;
    left: 24px;
    display: grid;
    gap: 0;
    color: var(--ink);
    padding: 14px 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    text-shadow: none;
  }

  .global-nav.is-open a {
    padding: 12px 0;
  }

  .hero {
    min-height: 100svh;
    padding-top: 0;
  }

  .hero-links {
    right: 36px;
    bottom: 42px;
    left: 36px;
    justify-content: space-between;
    gap: 24px;
  }

  .hero-links a:first-child,
  .hero-links a:last-child {
    margin-right: 0;
    margin-left: 0;
  }

  .scroll-guide {
    bottom: -44px;
  }

  .hero-image::after {
    display: block;
  }

  .hero-content {
    width: min(720px, calc(100% - 40px));
    min-height: 0;
    margin: 0;
    padding: 72px 0 0;
    background: transparent;
    border-right: 0;
  }

  .feature-list,
  .property-list,
  .flow-intro,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .visit {
    padding-top: 88px;
  }

  .visit-shell {
    display: block;
    width: min(720px, calc(100% - 48px));
    margin-top: 0;
  }

  .flow-intro {
    width: min(720px, calc(100% - 48px));
    gap: 34px;
    margin-bottom: 42px;
  }

  .flow-intro .section-head {
    max-width: 100%;
    text-align: center;
  }

  .flow-visual {
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .flow-visual img {
    height: 330px;
  }

  .work-card img {
    height: 330px;
  }

  .pickup-track {
    gap: 24px;
    padding: 0 24px 38px;
  }

  .pickup-card {
    flex-basis: min(680px, calc(100vw - 48px));
    aspect-ratio: 1.86 / 1;
  }

  .pickup-arrow-prev {
    left: 18px;
  }

  .pickup-arrow-next {
    right: 18px;
  }

  .visit-photo {
    height: 320px;
  }

  .visit-panel {
    margin: -84px 0 0;
    width: min(620px, calc(100% - 40px));
    padding: 42px 38px 130px;
  }

  .visit-float {
    left: auto;
    top: auto;
    right: 0;
    bottom: -34px;
    width: min(320px, calc(100% - 80px));
    transform: none;
  }

  .visit-float img {
    height: 300px;
  }

  .visit-float-overlay,
  .visit-float-ctas {
    inset: 6px;
    height: auto;
  }

  .visit-float-ctas {
    gap: 6px;
    padding: 10px;
  }

  .visit-cta {
    font-size: 12.5px;
    padding: 8px 14px;
  }

  .concept-layout {
    display: grid;
    gap: 24px;
    width: min(720px, calc(100% - 48px));
    min-height: 0;
  }

  .concept-sub-image,
  .concept-card {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    top: auto;
    width: 100%;
  }

  .concept {
    padding: 96px 0 112px;
  }

  .concept::before,
  .concept::after {
    inset: 0 0 auto;
    height: 360px;
  }

  .concept-message {
    margin-bottom: 44px;
    font-size: clamp(23px, 4vw, 34px);
  }

  .concept-card {
    width: calc(100% - 56px);
    margin: 0 auto;
    padding: 34px 28px;
  }

  .concept-card h2 {
    white-space: normal;
  }

  .concept-sub-image {
    width: min(460px, 80%);
    margin: 0 0 0 auto;
  }

  .concept-sub-image img {
    height: 260px;
  }

  .feature-card {
    min-height: 360px;
  }

  .flow-list article {
    min-height: 0;
  }

  .staff-stage {
    display: grid;
    gap: 42px;
    width: min(720px, calc(100% - 48px));
    min-height: 0;
  }

  .staff-center,
  .staff-people,
  .staff-person {
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    transform: none;
  }

  .staff-center {
    justify-self: center;
  }

  .staff-center .staff-cta {
    display: none;
  }

  .staff-cta-mobile {
    display: inline-flex;
    justify-self: center;
  }

  .staff-label {
    margin-bottom: 36px;
  }

  .staff-people {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
  }

  .staff-person {
    width: min(260px, 100%);
    justify-self: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-bottom: 48px;
  }

  .footer-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 32px;
  }
}

/* PROPERTIESリード文：読点ではなく句点で改行させる。
   ただし狭いスマホ幅では後半がそのまま画面外に溢れるため、ある程度幅がある範囲だけに限定する */
@media (min-width: 600px) and (max-width: 900px) {
  .properties-lead-tail {
    white-space: nowrap;
  }
}

/* CONCEPT本文が右の写真と重なる狭い幅だけ、本文の折り返し幅を狭める */
@media (min-width: 901px) and (max-width: 1100px) {
  .concept-card p {
    max-width: 370px;
  }
}

/* STAFF: ボタンが写真に重ならないよう、幅レンジごとに.staff-labelの余白を調整 */
@media (min-width: 901px) and (max-width: 1000px) {
  .staff-center {
    top: 40%;
  }

  .staff-label {
    margin-bottom: 84px;
  }
}

@media (min-width: 1001px) and (max-width: 1150px) {
  .staff-center {
    top: 41%;
  }

  .staff-label {
    margin-bottom: 58px;
  }
}

@media (min-width: 1151px) and (max-width: 1300px) {
  .staff-center {
    top: 41%;
  }

  .staff-label {
    margin-bottom: 46px;
  }
}

@media (min-width: 1301px) {
  .staff-center {
    top: 40%;
  }

  .staff-label {
    margin-bottom: 41px;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .section,
  .properties,
  .concept-layout,
  .staff-stage,
  .visit-shell,
  .flow-intro,
  .flow-list,
  .footer-inner {
    width: calc(100% - 32px);
  }

  .properties,
  .concept,
  .works,
  .features,
  .staff,
  .visit,
  .news,
  .flow {
    width: 100%;
    max-width: none;
  }

  .brand-name {
    font-size: 16px;
  }

  .hero h1 {
    font-size: clamp(29px, 7.5vw, 38px);
  }

  .properties .section-head p:not(.section-kicker) {
    white-space: normal;
  }

  .hero p:not(.section-kicker) {
    font-size: clamp(10px, 2.6vw, 15px);
    letter-spacing: 0;
  }

  .hero-links {
    right: 24px;
    bottom: 38px;
    left: 24px;
    display: grid;
    gap: 18px;
    justify-items: start;
  }

  .hero-links a:first-child,
  .hero-links a:last-child {
    margin-right: 0;
    margin-left: 0;
  }

  .hero-links a {
    justify-content: flex-start;
  }

  .scroll-guide {
    right: 24px;
    bottom: -70px;
    left: auto;
    display: grid;
    transform: none;
  }

  .scroll-guide span {
    font-size: 11px;
  }

  .scroll-guide i {
    height: 64px;
  }

  .section {
    padding: 76px 0;
  }

  .home .section-head p:not(.section-kicker),
  .home .works-lead,
  .home .features-lead,
  .home .concept-card p,
  .home .visit-panel p:not(.section-kicker) {
    box-sizing: border-box;
    padding-inline: 8px;
  }

  .pickup-head {
    margin-bottom: 26px;
  }

  .pickup-head h2 {
    font-size: 22px;
  }

  .pickup-track {
    gap: 20px;
    padding: 0 24px 34px;
  }

  .pickup-card {
    flex-basis: calc(100vw - 48px);
    aspect-ratio: 1.86 / 1;
  }

  .pickup-arrow {
    width: 38px;
    height: 38px;
  }

  .pickup-arrow-prev {
    left: 14px;
  }

  .pickup-arrow-next {
    right: 14px;
  }

  .pickup-dots {
    gap: 12px;
  }

  #features .section-head h2 {
    font-size: clamp(20px, 4.6vw, 24px);
  }

  .works-carousel {
    margin-top: 42px;
  }

  .works-track {
    animation-duration: 68s;
  }

  .works-set {
    gap: 24px;
    padding-right: 24px;
  }

  .work-card {
    flex-basis: min(320px, 84vw);
    width: min(320px, 84vw);
    grid-template-rows: 260px 156px;
  }

  .concept,
  .visit {
    padding: 84px 0;
  }

  .concept {
    padding: 80px 0 90px;
  }

  .concept::before,
  .concept::after {
    height: 330px;
  }

  .work-card img,
  .property-card img {
    height: 260px;
  }

  .visit {
    padding: 72px 0 0;
  }

  .visit-photo {
    height: 240px;
  }

  .visit-panel {
    width: calc(100% - 24px);
    margin-top: -58px;
    padding: 34px 24px 110px;
  }

  .visit-panel h2 {
    font-size: clamp(24px, 7.2vw, 30px);
  }

  .visit-phone {
    font-size: clamp(28px, 8vw, 36px);
    letter-spacing: 0;
  }

  .visit-cta {
    font-size: 11.5px;
    padding: 7px 12px;
  }

  .visit-float {
    bottom: -40px;
    width: min(390px, calc(100vw - 48px));
  }

  .visit-float img {
    height: 240px;
  }

  .visit-float-overlay,
  .visit-float-ctas {
    inset: 6px;
    height: auto;
  }

  .visit-float-ctas {
    gap: 5px;
    padding: 8px;
  }

  .site-footer {
    padding: 60px 0 30px;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-meta {
    flex-direction: column;
    gap: 8px;
  }

  .property-card {
    grid-template-rows: 260px 1fr;
  }

  .property-body {
    padding: 24px 22px;
  }

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

  .concept-message {
    width: calc(100% - 36px);
    margin-bottom: 32px;
    font-size: clamp(21px, 5.8vw, 26px);
    line-height: 1.75;
    letter-spacing: 0.05em;
  }

  .concept-card {
    width: calc(100% - 34px);
    padding: 28px 22px;
  }

  .concept-card h2 {
    margin-bottom: 22px;
    font-size: clamp(23px, 6.2vw, 28px);
    letter-spacing: 0.03em;
  }

  .concept-card p {
    margin-top: 18px;
  }

  .concept-sub-image {
    width: 82%;
  }

  .concept-sub-image img {
    height: 190px;
  }

  .flow-intro {
    gap: 30px;
    margin-bottom: 36px;
  }

  .flow-visual {
    width: min(300px, 88vw);
  }

  .flow-visual::before {
    inset: 10px -10px -10px 10px;
  }

  .flow-visual img {
    height: 250px;
  }

  .staff {
    width: 100%;
    max-width: none;
    padding: 76px 0 82px;
  }

  .staff-stage {
    gap: 34px;
  }

  .staff-script {
    margin-bottom: 16px;
    font-size: clamp(36px, 12vw, 54px);
    letter-spacing: 0.14em;
  }

  .staff-label {
    gap: 14px;
    margin-bottom: 28px;
    font-size: 14px;
    letter-spacing: 0.14em;
  }

  .staff-center h2 {
    font-size: clamp(18px, 4.6vw, 24px);
    letter-spacing: 0.04em;
  }

  .staff-cta-mobile {
    min-width: 0;
    width: min(280px, 100%);
    padding: 16px 24px;
  }

  .staff-people {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .staff-person {
    width: min(250px, 78vw);
  }

  .feature-card > div {
    padding-right: 0;
    padding-left: 0;
  }

  .feature-card > span {
    left: 20px;
  }

  .feature-card > div {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.staff-directory-intro {
  padding-bottom: 0;
}

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

@media (max-width: 900px) {
  .staff-directory-grid {
    grid-template-columns: 1fr;
  }
}

.staff-directory-card {
  padding: 36px 28px;
  background: #fff;
  border: 1px solid rgba(229, 224, 216, 0.9);
  text-align: center;
}

.staff-directory-card figure {
  width: 140px;
  aspect-ratio: 1;
  margin: 0 auto 20px;
  overflow: hidden;
  background: #ebecea;
  border-radius: 50%;
}

.staff-directory-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.staff-directory-role {
  margin: 0 0 6px;
  color: var(--wood);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.staff-directory-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: 0.05em;
}

.staff-directory-card p:not(.staff-directory-role) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 560px) {
  .staff-directory-card {
    padding: 28px 22px;
  }

  .staff-directory-card figure {
    width: 120px;
  }
}

.works-archive-intro {
  padding-bottom: 0;
}

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

.works-archive-card {
  display: grid;
  grid-template-rows: 220px auto;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(229, 224, 216, 0.9);
}

.works-archive-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.works-archive-body {
  display: grid;
  row-gap: 12px;
  align-content: start;
  padding: 24px;
}

.works-archive-body h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.55;
}

.works-archive-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.works-archive-cta {
  margin-top: 48px;
  text-align: center;
}

@media (max-width: 900px) {
  .works-archive-grid {
    grid-template-columns: 1fr;
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(280px, 32%);
  gap: 56px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 13px 16px;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  border: 1px solid var(--line);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: 2px solid var(--wood);
  outline-offset: 1px;
}

.contact-field textarea {
  resize: vertical;
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.contact-submit {
  width: fit-content;
  padding: 16px 40px;
  color: #fffdf8;
  background: var(--charcoal);
  border: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.contact-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-side {
  padding: 32px 28px;
  background: var(--base);
  border: 1px solid var(--line);
  text-align: center;
}

.contact-side .visit-phone {
  font-size: clamp(24px, 2vw, 30px);
}

.contact-side-link {
  margin-top: 18px !important;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-side {
    order: -1;
  }
}

/* 詳細ページ（物件・施工事例）共通レイアウト */

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: start;
}

.detail-layout img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.detail-body {
  display: grid;
  gap: 18px;
}

.detail-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.detail-body .staff-cta {
  width: fit-content;
  margin-top: 8px;
}

.detail-back {
  margin-top: 56px;
  text-align: center;
}

.detail-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.detail-pager a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .detail-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .detail-layout img {
    height: 280px;
  }

  .detail-pager {
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    text-align: center;
  }
}

/* アクセスページ */

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.access-map-placeholder {
  display: grid;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 360px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  background: var(--base);
  border: 1px solid var(--line);
}

.access-map-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.access-info {
  margin: 0;
}

.access-info dt {
  color: var(--wood);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.access-info dd {
  margin: 4px 0 22px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.8;
}

.access-info dd a {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 900px) {
  .access-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ショールームページ */

.modelhouse-cta-section .detail-back {
  display: grid;
  gap: 14px;
  justify-items: center;
}

/* FAQページ */

.faq-list {
  display: grid;
  gap: 32px;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item dt {
  display: flex;
  gap: 12px;
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

.faq-item dd {
  display: flex;
  gap: 12px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.faq-mark {
  flex: 0 0 auto;
  color: var(--wood);
  font-family: var(--font-serif);
  font-weight: 700;
}

/* 料金ページ */

.pricing-table {
  width: 100%;
  margin: 0 0 28px;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 14px;
}

.pricing-table th {
  color: var(--wood);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.pricing-note {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 560px) {
  .pricing-table th,
  .pricing-table td {
    padding: 12px 10px;
    font-size: 13px;
  }
}

/* スタッフブログ */

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

.blog-card {
  display: grid;
  grid-template-rows: 200px auto;
  background: #fff;
  border: 1px solid rgba(229, 224, 216, 0.9);
}

.blog-card img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  display: grid;
  row-gap: 10px;
  align-content: start;
  padding: 24px;
}

.blog-date {
  margin: 0;
  color: var(--wood);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.blog-card-body h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.5;
}

.blog-card-body p:not(.blog-date) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.blog-note {
  margin-top: 32px;
  text-align: center;
}

@media (max-width: 900px) {
  .blog-list {
    grid-template-columns: 1fr;
  }
}

/* 法務ページ（プライバシーポリシー） */

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h3 {
  margin: 36px 0 12px;
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.5;
}

.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.legal-content p a {
  color: var(--ink);
  font-weight: 700;
}

.legal-date {
  margin-top: 40px;
  color: var(--muted);
  font-size: 12px;
}

/* 会社概要：dl の余白を一覧用に調整 */

.company-info {
  margin-top: 56px;
}

/* お知らせ・イベント一覧 */

.news-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.news-item {
  display: grid;
  grid-template-columns: 110px 96px minmax(0, 1fr);
  gap: 8px 24px;
  align-items: baseline;
  padding: 24px 4px;
  border-bottom: 1px solid var(--line);
}

.news-item time {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.news-cat {
  justify-self: start;
  padding: 3px 12px;
  color: var(--wood);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: 1px solid rgba(154, 106, 63, 0.4);
}

.news-item h3 {
  grid-column: 3;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.6;
}

.news-item h3 a {
  color: var(--ink);
}

.news-item p {
  grid-column: 3;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

@media (max-width: 640px) {
  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .news-item h3,
  .news-item p {
    grid-column: 1;
  }
}

/* ブログ個別記事 */

.article {
  max-width: 820px;
  margin: 0 auto;
}

.article-title {
  margin: 10px 0 0;
  font-family: var(--font-hero);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.article-meta time {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.article-hero {
  display: block;
  width: 100%;
  height: 420px;
  margin: 28px 0 36px;
  object-fit: cover;
}

.article-body p {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.95;
}

@media (max-width: 560px) {
  .article-hero {
    height: 240px;
  }
}

/* サイトマップ */

.sitemap-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.sitemap-group h3 {
  margin: 0 0 12px;
  color: var(--wood);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.sitemap-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sitemap-group li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.sitemap-group a {
  color: var(--ink);
  font-size: 14px;
}

@media (max-width: 900px) {
  .sitemap-groups {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* お問い合わせ完了・404 */

.thanks-box {
  max-width: 640px;
  margin: 0 auto;
  padding: 28px;
  background: var(--base);
  border: 1px solid var(--line);
  text-align: center;
}

.thanks-box p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

/* ブログカードをリンク化した際の見た目調整 */

.blog-card {
  color: inherit;
  text-decoration: none;
}

/* お問い合わせ送信ボタンをリンク化した際の見た目調整 */

a.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* トップページ：性能・技術／保証バンド（全幅・不透明背景で固定FV画像の透けを防ぐ） */

.perf-band,
.assurance-band {
  width: 100%;
  padding: 110px 0;
  background: var(--base);
}

.perf-inner,
.assurance-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.band-cta {
  margin-top: 44px;
  text-align: center;
}

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

.assurance-point {
  padding: 36px 28px;
  background: #fff;
  border: 1px solid rgba(229, 224, 216, 0.9);
  text-align: center;
}

.assurance-num {
  margin: 0 0 12px;
  color: var(--wood);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.assurance-point h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.5;
}

.assurance-point p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .perf-band,
  .assurance-band {
    padding: 84px 0;
  }

  .assurance-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .perf-band,
  .assurance-band {
    padding: 76px 0;
  }
}
