/* greenleaf-ume / 梅 BASE / 2026-05-04
   --- 4-tier green palette + cream canvas (starbucks-derived) ---
   --- 編集物として組む（カード過剰回避・区切り線・余白で構造化）--- */

:root {
  --green-deep: #163b2a;
  --green-brand: #1f5f3a;
  --green-accent: #007a4d;
  --green-soft: #d8e8de;
  --cream: #f5f1e8;
  --paper: #fbfaf6;
  --ink: #1a1a18;
  --ink-mute: #5e5e58;
  --ink-soft: #8a8a82;
  --line: #d8d4cb;
  --line-soft: #ebe7dc;

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius-pill: 999px;

  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", system-ui, sans-serif;
  --font-en: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Caveat", cursive;

  --container: 1180px;
  --container-narrow: 880px;

  --shadow-soft: 0 1px 2px rgba(20, 30, 25, 0.06);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-jp);
  font-feature-settings: "palt" 1;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--green-accent); text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease; }
a:hover { color: var(--green-deep); }
h1, h2, h3 {
  line-break: strict;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}
p, li, dd, blockquote {
  word-break: auto-phrase;
  overflow-wrap: break-word;
}

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand__mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-deep);
  color: #fff;
}
.brand__name {
  font-family: var(--font-jp);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 17px;
}
.brand__name span {
  display: block;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-top: 1px;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 26px;
}
.nav__list a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding: 6px 0;
}
.nav__list a:hover,
.nav__list a[aria-current="page"] {
  color: var(--green-deep);
}
.nav__list a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--green-brand);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn--primary {
  background: var(--green-deep);
  color: #fff;
}
.btn--primary:hover {
  background: var(--green-brand);
  color: #fff;
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green-deep);
}
.btn--ghost:hover {
  background: var(--green-deep);
  color: #fff;
}
.btn--cream {
  background: var(--cream);
  color: var(--green-deep);
  border-color: var(--cream);
}
.btn--cream:hover {
  background: #fff;
  border-color: #fff;
}
.nav__cta { white-space: nowrap; }

/* mobile burger */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.burger span + span { margin-top: 6px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* === Hero (off-center, full-bleed) === */
.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green-deep);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(22, 59, 42, 0.15) 0%,
    rgba(22, 59, 42, 0.05) 35%,
    rgba(22, 59, 42, 0.65) 95%
  );
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 120px 28px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 32px 48px;
  align-items: end;
}
.hero__overline {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 18px;
}
.hero__title {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.18;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px;
}
.hero__title em {
  font-style: normal;
  display: inline-block;
  background: linear-gradient(transparent 60%, rgba(0, 122, 77, 0.55) 60%);
  padding: 0 4px;
}
.hero__lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  max-width: min(100%, 38ch);
  margin: 0 0 32px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 24px;
  padding-left: 0;
  margin: 0;
  list-style: none;
  align-self: end;
}
.metric { color: #fff; }
.metric__num {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-en);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.metric__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 6px;
}
.text-nowrap { white-space: nowrap; }
.phrase {
  display: inline-block;
  max-width: 100%;
}
.meaning-unit {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
}
.info-line { display: block; }
.info-line + .info-line { margin-top: 3px; }
.hero__badge {
  position: absolute;
  right: 36px;
  top: 96px;
  z-index: 2;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green-deep);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transform: rotate(-6deg);
}
.hero__badge strong {
  display: block;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  color: var(--green-brand);
}

/* === Section system === */
.section { padding: 96px 0; }
.section--cream { background: var(--cream); }
.section--deep { background: var(--green-deep); color: #fff; }
.section--soft { background: var(--green-soft); }
.section__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.section__inner--narrow { max-width: var(--container-narrow); }
.section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 48px;
  margin-bottom: 56px;
  align-items: end;
}
.section__head--center {
  grid-template-columns: 1fr;
  text-align: center;
  margin-bottom: 48px;
}
.eyebrow {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green-accent);
  display: block;
  margin-bottom: 12px;
}
.section--deep .eyebrow { color: var(--green-soft); }
.section__title {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.32;
  letter-spacing: 0.01em;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}
.section--deep .section__title { color: #fff; }
.section__lead {
  margin: 0;
  color: var(--ink-mute);
  font-size: 15px;
  max-width: min(100%, 56ch);
}
.section--deep .section__lead { color: rgba(255, 255, 255, 0.84); }
.script {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--green-accent);
  letter-spacing: 0.01em;
  display: inline-block;
  transform: rotate(-2deg);
}

/* === Concept band (deep green) === */
.concept__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.concept__copy { color: #fff; }
.concept__copy h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.45;
  font-weight: 700;
  margin: 16px 0 24px;
}
.concept__copy p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  margin: 0 0 16px;
}
.concept__sign {
  display: block;
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--green-soft);
  margin-top: 28px;
  transform: rotate(-3deg);
}
.concept__photo img {
  width: 100%;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* === Services === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px 48px;
}
.svc { display: grid; grid-template-rows: auto auto; gap: 20px; }
.svc__photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
}
.svc__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.svc:hover .svc__photo img { transform: scale(1.04); }
.svc__index {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--green-accent);
}
.svc__title {
  font-size: 21px;
  font-weight: 700;
  margin: 6px 0 10px;
  letter-spacing: 0.01em;
}
.svc__lead {
  color: var(--ink-mute);
  font-size: 14.5px;
  margin: 0 0 12px;
}
.svc__price {
  display: inline-block;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--green-deep);
  font-weight: 600;
}
.svc__price small {
  font-size: 11px;
  color: var(--ink-mute);
  font-weight: 500;
  margin-left: 4px;
  letter-spacing: 0.06em;
}

/* === Works === */
.works {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 32px;
}
.work { display: block; text-decoration: none; color: inherit; }
.work__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.work__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.work:hover .work__photo img { transform: scale(1.05); }
.work__meta {
  display: flex;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-family: var(--font-en);
  margin-top: 16px;
}
.work__meta::before { content: "—"; color: var(--green-accent); }
.work__title {
  font-size: 17px;
  font-weight: 700;
  margin: 6px 0 0;
  letter-spacing: 0.01em;
}

/* === About preview === */
.about-preview__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.about-preview__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.about-preview__photo img { width: 100%; height: 100%; object-fit: cover; }
.about-preview__photo::before {
  content: "";
  position: absolute;
  inset: -16px -16px auto auto;
  width: 92px;
  height: 92px;
  background: var(--green-soft);
  border-radius: 50%;
  z-index: 0;
}
.about-preview__copy h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.45;
  font-weight: 700;
  margin: 12px 0 18px;
}
.about-preview__copy blockquote {
  font-family: var(--font-script);
  font-size: 26px;
  color: var(--green-accent);
  margin: 0 0 24px;
  line-height: 1.4;
}
.about-preview__copy p {
  color: var(--ink-mute);
  font-size: 15px;
  margin: 0 0 14px;
}
.about-preview__sig {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--green-deep);
  margin-top: 18px;
}

/* === Atmosphere === */
.atmo {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.atmo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: opacity 0.3s ease;
}
.atmo a:hover img { opacity: 0.78; }

/* === News === */
.news {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news li {
  display: grid;
  grid-template-columns: 130px 130px 1fr auto;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.news li:last-child { border-bottom: 1px solid var(--line); }
.news__date {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
}
.news__cat {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  border: 1px solid var(--green-deep);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  justify-self: start;
  font-family: var(--font-en);
}
.news__title {
  font-size: 15.5px;
  margin: 0;
  font-weight: 500;
  color: var(--ink);
}
.news__more {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--green-accent);
}

/* === Final CTA === */
.cta-final {
  position: relative;
  background: var(--green-deep);
  color: #fff;
  padding: 96px 0;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--green-accent) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.cta-final__inner {
  position: relative;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}
.cta-final h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.4;
  margin: 18px 0 22px;
  font-weight: 700;
}
.cta-final p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  margin: 0 auto 32px;
  max-width: 56ch;
}
.cta-final__row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Footer === */
.site-footer {
  background: var(--ink);
  color: #c8c8c0;
  padding: 72px 0 28px;
  font-size: 14px;
}
.site-footer a { color: #e8e6dd; }
.site-footer a:hover { color: #fff; }
.footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand .brand__mark { background: var(--green-soft); color: var(--green-deep); }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__name span { color: #8a8a82; }
.footer__brand p {
  margin: 18px 0 0;
  color: #989890;
  font-size: 13.5px;
  line-height: 1.85;
}
.footer__col h4 {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-en);
  font-weight: 600;
  margin: 0 0 18px;
}
.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer__col li { font-size: 13.5px; color: #c8c8c0; }
.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 28px 0;
  border-top: 1px solid #2c2c28;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #767670;
  font-family: var(--font-en);
  letter-spacing: 0.06em;
}

/* === Page hero === */
.page-hero {
  background: var(--cream);
  padding: 112px 0 72px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  background: var(--green-soft);
  border-radius: 50%;
  opacity: 0.6;
  z-index: 0;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.breadcrumb {
  display: flex;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.breadcrumb li::after { content: "/"; margin-left: 10px; color: var(--ink-soft); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--green-deep); }
.page-hero__title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.32;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}
.page-hero__title small {
  display: block;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green-accent);
  font-weight: 500;
  margin-bottom: 14px;
}
.page-hero__lead {
  margin: 0;
  color: var(--ink-mute);
  font-size: 15px;
  max-width: min(100%, 56ch);
}

/* === Service detail === */
.svc-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--line);
}
.svc-block:nth-child(even) { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr); }
.svc-block:nth-child(even) .svc-block__photo { order: 2; }
.svc-block__photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.svc-block__photo img { width: 100%; height: 100%; object-fit: cover; }
.svc-block__index {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--green-accent);
  margin-bottom: 12px;
  display: block;
}
.svc-block__title {
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.36;
  font-weight: 700;
  margin: 0 0 18px;
}
.svc-block__lead {
  color: var(--ink-mute);
  margin: 0 0 22px;
  font-size: 15px;
}
.svc-block__list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.svc-block__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--ink);
  text-wrap: pretty;
}
.svc-block__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 12px;
  height: 1px;
  background: var(--green-accent);
}
.svc-block__price {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 600;
  color: var(--green-deep);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.svc-block__price small {
  font-family: var(--font-jp);
  font-size: 12px;
  color: var(--ink-mute);
  font-weight: 500;
  margin-left: 8px;
}

/* === Works detail === */
.work-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 56px;
  padding: 64px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.work-detail:nth-child(even) .work-detail__photo { order: 2; }
.work-detail__photo {
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.work-detail__photo img { width: 100%; height: 100%; object-fit: cover; }
.work-detail__meta {
  display: flex;
  gap: 14px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.work-detail__meta span { color: var(--green-accent); }
.work-detail h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 18px;
}
.work-detail dl {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 8px 16px;
  margin: 0 0 22px;
  font-size: 14px;
}
.work-detail dt {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  padding-top: 4px;
}
.work-detail dd { margin: 0; color: var(--ink); }
.work-detail p { color: var(--ink-mute); margin: 0; font-size: 14.5px; }

/* === About === */
.about-rep {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
  margin-bottom: 96px;
}
.about-rep__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.about-rep__photo img { width: 100%; height: 100%; object-fit: cover; }
.about-rep__copy h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.45;
  margin: 12px 0 24px;
  font-weight: 700;
}
.about-rep__copy p {
  color: var(--ink-mute);
  font-size: 15px;
  margin: 0 0 16px;
}
.about-rep__quote {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--green-accent);
  margin: 0 0 24px;
  line-height: 1.4;
}
.about-info {
  display: grid;
  grid-template-columns: 200px 1fr;
}
.about-info dt,
.about-info dd {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  margin: 0;
}
.about-info dt {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.about-info dd { color: var(--ink); font-size: 15px; }
.about-info > :nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }

/* === Access === */
.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  margin-bottom: 64px;
}
.access-photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.access-photo img { width: 100%; height: 100%; object-fit: cover; }
.access-info dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0 24px;
  margin: 0;
}
.access-info dt,
.access-info dd {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  margin: 0;
  font-size: 14.5px;
}
.access-info dt {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.access-info > :nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
.map {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--green-soft);
  display: grid;
  place-items: center;
  color: var(--green-deep);
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.18em;
}

/* === Contact form === */
.form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 64px;
}
.form-aside h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
}
.form-aside p {
  color: var(--ink-mute);
  font-size: 14.5px;
  margin: 0 0 14px;
}
.form-aside dl {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 10px 16px;
  margin: 24px 0 0;
  font-size: 14px;
}
.form-aside dt {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
}
.form-aside dd { margin: 0; }
.form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.field label small {
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--green-accent);
  letter-spacing: 0.12em;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-jp);
  font-size: 14.5px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  color: var(--ink);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--green-accent);
  outline-offset: 1px;
  border-color: var(--green-accent);
}
.field textarea { min-height: 160px; resize: vertical; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-mute);
}
.consent input { margin-top: 4px; }
.faq { margin: 96px 0 0; }
.faq__item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: baseline;
}
.faq__q::before {
  content: "Q.";
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--green-accent);
  letter-spacing: 0.18em;
}
.faq__a {
  margin: 0;
  color: var(--ink-mute);
  font-size: 14.5px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
}
.faq__a::before {
  content: "A.";
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.18em;
}

/* === Reveal === */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* === 2026-06-02 改行・視覚調整: heading/paragraph wrapping polish === */
/* 見出しは text-wrap:balance で行を均等化し、1〜2文字の孤立行を防ぐ */
.hero__title,
.section__title,
.concept__copy h2,
.about-preview__copy h2,
.about-rep__copy h2,
.svc__title,
.svc-block__title,
.work__title,
.work-detail h3,
.page-hero__title,
.cta-final h2 { text-wrap: balance; }
/* 本文は text-wrap:pretty で末尾の短い孤立行（「い。」「た」等）を回避 */
.hero__lead,
.section__lead,
.page-hero__lead,
.concept__copy p,
.about-preview__copy p,
.about-rep__copy p,
.form-aside p,
.faq__a,
.work-detail p,
.access-info dd,
.about-info dd,
.svc__lead,
.svc-block__lead,
.news__title,
.cta-final p { text-wrap: pretty; }
@media (max-width: 640px) {
  .concept__copy h2 .phrase,
  .page-hero__title .phrase,
  .cta-final h2 .phrase,
  .work__title .phrase,
  .work-detail h3 .phrase {
    display: block;
  }
}
/* 見出し・CTA の強制改行はレスポンシブ時に崩れるため、表示上は自然折り返しに任せる */
.hero__title br,
.section__title br,
.page-hero__title br,
.cta-final h2 br,
.cta-final p br { display: none; }
/* フッターの長いメールアドレス等が画面端に張り付かないよう安全に折り返す */
.footer__brand p { overflow-wrap: anywhere; }
/* モバイルでも改行位置を固定しない */
.br-sp { display: none; }

/* === Mobile === */
@media (max-width: 880px) {
  .section { padding: 64px 0; }
  .site-header__inner { padding: 14px 20px; gap: 12px; }
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 22px 24px 28px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }
  .nav.is-open .nav__list {
    flex-direction: column;
    gap: 14px;
  }
  .burger { display: block; }
  .nav__cta { width: 100%; }

  .hero { min-height: 78vh; }
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 96px 22px 56px;
    gap: 28px;
  }
  .hero__metrics { padding-top: 18px; gap: 14px; }
  .hero__badge { width: 88px; height: 88px; right: 18px; top: 76px; font-size: 10px; }

  .section__head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }
  .concept__inner,
  .about-preview__inner,
  .form-wrap,
  .access-grid,
  .about-rep,
  .work-detail,
  .svc-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .svc-block:nth-child(even) .svc-block__photo,
  .work-detail:nth-child(even) .work-detail__photo { order: 0; }

  .services-grid { grid-template-columns: 1fr; gap: 40px; }
  .works { grid-template-columns: 1fr; gap: 32px; }
  .atmo { grid-template-columns: repeat(3, 1fr); }
  .atmo li:nth-child(n+4) { display: none; }
  .news li {
    grid-template-columns: 100px 1fr;
    gap: 8px 16px;
  }
  .news__cat { grid-row: 1 / 2; grid-column: 2 / 3; justify-self: end; }
  .news__title { grid-column: 1 / -1; font-size: 14px; }
  .news__more { grid-column: 1 / -1; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  .form__row { grid-template-columns: 1fr; }

  .about-info { grid-template-columns: 1fr; }
  .about-info dt { padding-bottom: 0; }
  .about-info dd { padding-top: 4px; padding-bottom: 18px; }

  .access-info dl { grid-template-columns: 1fr; }
  /* access の定義リストも about と同様に dt/dd を詰めてグルーピング */
  .access-info dt { padding-bottom: 0; }
  .access-info dd { padding-top: 4px; padding-bottom: 16px; }

  /* page-hero の上下余白をモバイル向けに圧縮（過剰な空白バンド対策） */
  .page-hero { padding: 72px 0 48px; }
  /* page-hero 見出しはモバイルで少し縮め、改行位置は自然折り返しに任せる */
  .page-hero__title { font-size: 25px; line-height: 1.4; }
  .br-sp { display: none; }

  /* services: 偶数ブロックが desktop の 2カラム指定（高 specificity）を引きずって
     縦積みにならない不具合を修正 */
  .svc-block:nth-child(even) { grid-template-columns: 1fr; }

  /* CTA 見出しが 28px だと第2フレーズが折り返して「い。」等が孤立するため縮小 */
  .cta-final h2 { font-size: 24px; line-height: 1.5; }

  /* contact: 問い合わせ前情報の dl を他ページの dl と同様に1カラム化 */
  .form-aside dl { grid-template-columns: 1fr; gap: 2px 0; }
  .form-aside dt { margin-top: 12px; }
  .form-aside dt:first-of-type { margin-top: 0; }

  /* contact: フォームと FAQ の間の余白を詰める */
  .faq { margin-top: 56px; }
}

/* === Reduced motion === */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
