/* ═══════════════════════════════════════════════════════
   YOUBI DESIGN — main.css
   ═══════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --cream:        #F7F4EF;
  --charcoal:     #1C1C1A;
  --ash:          #6B6760;
  --warm:         #C8B89A;
  --pale:         #EAE6DF;
  --forest:       #2A3D2E;
  --forest-mid:   #3D5C42;
  --forest-light: #5C7A5E;
  --forest-pale:  #D4DDD4;
  --forest-mist:  #EAF0EA;
  --serif:        'Cormorant Garamond', serif;
  --sans:         'Jost', sans-serif;
  --radius:       4px;
  --transition:   0.3s ease;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { background: var(--cream); color: var(--charcoal); font-family: var(--sans); font-weight: 300; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ────────────────────────────────────────── */
html { font-size: 18px; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 300; line-height: 1.2; }
p { font-size: 18px; line-height: 2; }
li { font-size: 18px; line-height: 2; }

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(247,244,239,0.93);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid rgba(140,137,131,0.2);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 48px; gap: 32px;
}
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-logo a { display: flex; align-items: center; }
.logo-text { font-family: var(--sans); font-weight: 200; font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; }
.logo-dot { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--forest-mid); margin-left: 6px; }
/* カスタムロゴのサイズと縦位置 */
.header-logo .custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
}
.header-logo .custom-logo-link img,
.header-logo .custom-logo {
  height: 48px !important;
  width: auto !important;
  max-width: none;
  display: block;
  vertical-align: middle;
}

.nav-list { display: flex; gap: 36px; }
.nav-list a { font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ash); transition: color var(--transition); }
.nav-list a:hover, .nav-list a.active { color: var(--charcoal); }

.header-cta {
  font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--forest); border: 0.5px solid var(--forest);
  padding: 10px 20px; transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.header-cta:hover { background: var(--forest); color: var(--cream); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--charcoal); transition: var(--transition); }

/* ══════════════════════════════════════════════════════════
   SHARED UTILS
══════════════════════════════════════════════════════════ */
.section-divider {
  display: flex; align-items: center; gap: 24px;
  padding: 0 48px;
  border-top: 0.5px solid rgba(140,137,131,0.3);
}
.section-divider--light {
  border-top-color: rgba(140,137,131,0.4);
}
.divider-num { font-size: 12px; letter-spacing: 0.2em; color: var(--ash); padding: 18px 0; }
.divider-line { flex: 1; height: 0.5px; background: rgba(140,137,131,0.3); }
.divider-label { font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash); font-weight: 500; }
.divider-link { font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--forest-mid); font-weight: 500; border-bottom: 0.5px solid var(--forest-mid); padding-bottom: 2px; white-space: nowrap; transition: color var(--transition), border-color var(--transition); }
.divider-link:hover { color: var(--forest); border-color: var(--forest); }

.section-eyebrow { font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--forest-mid); margin-bottom: 14px; }
.section-headline { font-family: var(--serif); font-weight: 300; font-size: clamp(30px, 3vw, 46px); color: var(--charcoal); line-height: 1.25; }
.section-headline em { font-style: italic; color: var(--forest-mid); }

.text-link { font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; color: var(--forest-mid); border-bottom: 0.5px solid var(--forest-mid); padding-bottom: 2px; transition: color var(--transition), border-color var(--transition); }
.text-link:hover { color: var(--forest); border-color: var(--forest); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--forest); border: 0.5px solid var(--forest);
  padding: 12px 24px; transition: background var(--transition), color var(--transition);
}
.btn-primary:hover { background: var(--forest); color: var(--cream); }
.btn-primary--light {
  color: var(--cream); border-color: rgba(247,244,239,0.6);
}
.btn-primary--light:hover { background: var(--cream); color: var(--forest); }
.services-cta-wrap {
  padding: 40px 0 8px;
  display: flex; justify-content: center;
}

.image-placeholder { background: var(--forest-pale); width: 100%; height: 100%; min-height: 360px; }
.image-placeholder--portrait { min-height: 480px; }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 72px;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 64px 48px;
}
.hero-eyebrow { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--forest-mid); margin-bottom: 24px; }
.hero-headline { font-family: var(--serif); font-weight: 300; font-size: clamp(42px,4.5vw,62px); line-height: 1.2; color: var(--charcoal); margin-bottom: 20px; }
.hero-headline em { font-style: italic; color: var(--forest-mid); }
.hero-sub { font-size: 20px; font-weight: 300; line-height: 1.9; color: var(--ash); max-width: 340px; margin-bottom: 44px; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--forest); border-bottom: 0.5px solid var(--forest);
  padding-bottom: 4px; width: fit-content; transition: gap var(--transition);
}
.hero-cta:hover { gap: 22px; }

.hero-right { position: relative; overflow: hidden; }
.hero-single-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo-placeholder { width: 100%; height: 100%; background: linear-gradient(160deg, var(--forest) 0%, var(--forest-mid) 60%, var(--forest-light) 100%); min-height: 600px; }
.hero-badge {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  width: 72px; height: 72px; border-radius: 50%;
  border: 0.5px solid rgba(255,255,255,0.4);
  background: rgba(42,61,46,0.6); backdrop-filter: blur(4px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 8px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(234,240,234,0.9); line-height: 1.6; text-align: center;
}

/* ══════════════════════════════════════════════════════════
   BANNER
══════════════════════════════════════════════════════════ */
.banner { overflow: hidden; padding: 18px 0; border-top: 0.5px solid rgba(140,137,131,0.3); border-bottom: 0.5px solid rgba(140,137,131,0.3); }
.banner-inner { display: flex; gap: 56px; width: max-content; animation: banner-scroll 24s linear infinite; }
.banner-text { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--ash); white-space: nowrap; }
.banner-sep { color: var(--forest-light); font-size: 10px; }
@keyframes banner-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-33.333%); } }

/* ══════════════════════════════════════════════════════════
   BADGES
══════════════════════════════════════════════════════════ */
.badges-section { background: var(--forest); padding: 0; }
.badges-list { display: flex; }
.badge-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 32px 24px; gap: 10px; text-align: center;
  border-right: 0.5px solid rgba(234,240,234,0.1);
}
.badge-item:last-child { border-right: none; }
.badge-icon { font-size: 18px; color: var(--forest-light); }
.badge-label { font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(234,240,234,0.8); line-height: 1.6; }
.badge-label small { display: block; font-size: 13px; color: rgba(234,240,234,0.72); letter-spacing: 0.08em; }

/* ══════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════ */
.services-section {
  position: relative;
  background: var(--forest);
  padding: 0;
}
.services-section--has-bg {
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.services-section-overlay-bg {
  position: absolute; inset: 0;
  background: rgba(70,38,24,0.80);
}
.services-section-overlay {
  position: relative; z-index: 1;
  padding: 0 48px 48px;
}
.services-section .section-divider--light { border-top-color: rgba(234,240,234,0.2); }
.services-section .divider-num { color: rgba(234,240,234,0.5); }
.services-section .divider-line { background: rgba(234,240,234,0.2); }
.divider-link--light {
  color: rgba(234,240,234,0.85) !important;
  border-bottom-color: rgba(234,240,234,0.5) !important;
}
.services-intro-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  padding: 32px 0 28px; align-items: center;
}
.services-eyebrow { color: rgba(200,225,205,0.85) !important; }
.services-section .how-headline { color: white; }
.services-section .how-headline em { color: rgba(180,210,185,0.9); }
.services-intro-body {
  font-size: 18px; font-weight: 300; line-height: 1.9;
  color: rgba(234,240,234,0.85);
  border-left: 2px solid rgba(180,210,185,0.4); padding-left: 20px;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card { background: white; padding: 36px; transition: background var(--transition); }
.service-card:hover { background: var(--forest-pale); }
.service-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--forest-mid);
  background: var(--forest-mid);
  color: var(--cream);
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-family: var(--sans);
}
.service-bar { width: 28px; height: 2px; background: var(--forest-mid); margin-bottom: 20px; }
.service-name { font-family: var(--serif); font-weight: 300; font-size: 24px; color: var(--charcoal); margin-bottom: 14px; line-height: 1.3; }
.service-name em { font-style: italic; }
.service-desc { font-size: 20px; font-weight: 300; line-height: 1.9; color: var(--ash); margin-bottom: 16px; }
.service-bullets { margin-bottom: 24px; display: flex; flex-direction: column; gap: 6px; }
.service-bullets li { font-size: 18px; letter-spacing: 0.03em; color: var(--ash); padding-left: 16px; position: relative; }
.service-bullets li::before { content: '—'; position: absolute; left: 0; color: var(--forest-light); }
.service-link { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--forest-mid); border-bottom: 0.5px solid var(--forest-mid); padding-bottom: 2px; }

/* ══════════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════════ */
.stats-sub {
  display: flex;
  gap: 0;
  padding: 40px 0;
  align-items: stretch;
}
.stat-sub {
  display: flex; align-items: flex-start; gap: 10px;
  flex: 1;
  padding-right: 32px;
  border-right: 0.5px solid rgba(234,240,234,0.12);
}
.stat-sub:last-child { border-right: none; padding-right: 0; padding-left: 32px; }
.stat-sub:nth-child(2) { padding-left: 32px; }
.stat-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 0.5px solid rgba(180,210,185,0.45);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.stat-dot::after {
  content: ''; width: 3px; height: 5px;
  border-right: 0.8px solid rgba(180,210,185,0.8);
  border-bottom: 0.8px solid rgba(180,210,185,0.8);
  transform: rotate(45deg) translate(-0.5px,-0.5px); display: block;
}
.stat-content { display: flex; flex-direction: column; gap: 4px; }
.stat-label {
  font-size: 18px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(234,240,234,0.85); font-weight: 500;
}
.stat-desc {
  font-size: 14px; font-weight: 300; line-height: 1.7;
  color: rgba(234,240,234,0.55);
}

/* ══════════════════════════════════════════════════════════
   TOP PAGE — ABOUT US SECTION
══════════════════════════════════════════════════════════ */
.top-about { padding-bottom: 0; }
.top-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  position: relative;
}
/* divider: 背景なし・全幅にabsoluteで重ねる */
.top-about-divider {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex; align-items: center; gap: 24px;
  padding: 0 48px;
  background: transparent;
  border-top: 0.5px solid rgba(140,137,131,0.3);
}
.top-about-text {
  display: flex; flex-direction: column;
  background: #ede8de;
}
.top-about-text-inner {
  padding: 36px 48px 56px;
  padding-top: 64px;
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
  flex: 1;
}
.top-about-photo {
  overflow: hidden;
  position: relative;
}
.top-about-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.top-about-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(30, 26, 20, 0.30);
  pointer-events: none;
  z-index: 1;
}
.top-about-photo .image-placeholder {
  width: 100%; height: 100%; min-height: 560px;
  background: linear-gradient(150deg, var(--forest-pale), var(--forest-mist));
}
.top-about-body {
  font-size: 18px; font-weight: 300; line-height: 2;
  color: var(--ash);
}

/* スマホ：写真を背景に、グラデーションオーバーレイ */
@media (max-width: 1024px) {
  .top-about-inner {
    grid-template-columns: 1fr;
    position: relative;
    min-height: 520px;
  }
  .top-about-photo {
    position: absolute; inset: 0; z-index: 0;
  }
  .top-about-photo img { width: 100%; height: 100%; object-fit: cover; }
  .top-about-photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(20,32,22,0.20) 0%,
      rgba(20,32,22,0.72) 55%,
      rgba(20,32,22,0.88) 100%
    );
  }
  .top-about-text {
    position: relative; z-index: 1;
    padding: 64px 28px 56px;
    justify-content: flex-end;
    background: transparent;
    min-height: 520px;
  }
  .top-about-text .section-eyebrow { color: rgba(200,225,205,0.85); }
  .top-about-text .section-headline { color: white; }
  .top-about-text .section-headline em { color: rgba(200,225,205,1); }
  .top-about-body { color: rgba(234,240,234,0.88); }
  .top-about-text .btn-primary {
    color: white; border-color: rgba(255,255,255,0.7);
  }
}

/* ══════════════════════════════════════════════════════════
   HOW WE WORK
══════════════════════════════════════════════════════════ */
.how-section {
  position: relative;
  background: var(--forest);
  padding: 0;
}
.how-section--has-bg {
  background-size: cover; background-position: center; background-repeat: no-repeat;
  min-height: 480px;
  display: flex; align-items: center;
}
.how-section--has-bg::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(18,28,20,0.82);
}
.how-section-overlay {
  position: relative; z-index: 1;
  width: 100%; padding: 0 48px 64px;
}
.how-section--has-bg .how-headline { color: var(--cream); }
.how-section--has-bg .how-headline em { color: rgba(180,210,185,0.9); }
.how-section--has-bg .divider-num,
.how-section--has-bg .divider-label { color: rgba(234,240,234,0.6); }
.how-section--has-bg .divider-line { background: rgba(234,240,234,0.25); }
.how-section--has-bg .section-divider { border-top-color: rgba(234,240,234,0.2); }
.how-section--has-bg .step-item { background: rgba(255,255,255,0.92); }
.how-section .section-divider { border-top-color: rgba(234,240,234,0.2); padding: 0 48px; }
.how-headline { margin: 32px 0 40px; color: var(--cream); }
.how-headline em { color: rgba(180,210,185,0.9); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.step-item { background: rgba(255,255,255,0.92); padding: 36px 28px; }
.step-num { font-family: var(--serif); font-size: 40px; color: var(--forest-light); display: block; margin-bottom: 12px; line-height: 1; }
.step-title { font-family: var(--sans); font-size: 14px; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 12px; }
.step-body { font-size: 20px; font-weight: 300; line-height: 1.9; color: var(--ash); }
.how-section--page { background: var(--forest-mist); }
.how-section--page .step-item { background: white; }

/* ── Services page: How We Work (clean, no band) ── */
.how-section--services {
  background: var(--cream) !important;
  padding: 80px 48px;
}
.steps-grid--services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.step-item--services {
  padding: 0 36px 0 0;
  border-right: 0.5px solid rgba(160,155,142,0.35);
}
.step-item--services:last-child { border-right: none; padding-right: 0; }
.step-item--services + .step-item--services { padding-left: 36px; }
.step-num--large {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: rgba(160,155,142,0.4);
  display: block;
  line-height: 1;
  margin-bottom: 20px;
}

/* ── Services page: CTA bottom ── */
.services-cta-bottom {
  background: var(--forest);
  padding: 80px 48px;
  text-align: center;
}
.services-cta-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(140,180,148,0.75);
  margin-bottom: 18px;
  font-family: var(--sans);
}
.services-cta-headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--cream);
  margin-bottom: 36px;
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════
   WORKS PREVIEW / GRID
══════════════════════════════════════════════════════════ */
.works-preview { padding: 0 0 80px; }
.works-preview-header { display: flex; justify-content: space-between; align-items: baseline; padding: 48px 48px 32px; }
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; padding: 0 48px; }
.works-grid--preview {}

.work-card { position: relative; overflow: hidden; background: var(--pale); }
.work-card-link { display: block; }
.work-card-img { overflow: hidden; aspect-ratio: 4/3; }
.work-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.work-card:hover .work-card-img img { transform: scale(1.04); }
.work-card-img--empty { aspect-ratio: 4/3; background: var(--forest-pale); }
.work-card-body { padding: 24px; }
.work-card-tag { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--forest-mid); display: block; margin-bottom: 8px; }
.work-card-title { font-family: var(--serif); font-weight: 300; font-size: 22px; color: var(--charcoal); margin-bottom: 6px; }
.work-card-location { font-size: 13px; color: var(--ash); margin-bottom: 8px; }
.work-card-excerpt { font-size: 18px; color: var(--ash); line-height: 1.8; }
.works-empty { padding: 48px; color: var(--ash); font-size: 13px; }

/* Works filter */
.works-filter { display: flex; gap: 2px; padding: 32px 48px; border-bottom: 0.5px solid rgba(140,137,131,0.3); }
.filter-btn { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ash); padding: 10px 22px; border: 0.5px solid rgba(140,137,131,0.3); transition: all var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--forest); color: var(--cream); border-color: var(--forest); }

/* Before / After on work card */
.work-before-after { position: relative; aspect-ratio: 4/3; overflow: hidden; cursor: ew-resize; }
.ba-pane { position: absolute; top: 0; bottom: 0; overflow: hidden; }
.ba-before { left: 0; width: 50%; }
.ba-after  { right: 0; width: 50%; }
.ba-pane img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before img { object-position: left; }
.ba-after  img { object-position: right; }
.ba-label { position: absolute; bottom: 10px; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: white; background: rgba(28,28,26,0.5); padding: 3px 8px; }
.ba-before .ba-label { left: 10px; }
.ba-after  .ba-label { right: 10px; }
.ba-slider { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: white; transform: translateX(-50%); }
.ba-slider span { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 32px; height: 32px; border-radius: 50%; background: white; border: 0.5px solid rgba(28,28,26,0.2); }

/* Single Work */
.work-hero { position: relative; height: 60vh; overflow: hidden; margin-top: 72px; }
.work-hero-img { width: 100%; height: 100%; object-fit: cover; }
.work-hero-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 48px; background: linear-gradient(transparent, rgba(28,28,26,0.7)); }
.work-hero-tag { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.work-hero-title { font-family: var(--serif); font-size: clamp(32px,4vw,52px); color: white; font-weight: 300; margin-bottom: 8px; }
.work-hero-location { font-size: 13px; color: rgba(255,255,255,0.7); }
.work-content { max-width: 900px; margin: 0 auto; padding: 64px 48px; }
.ba-section { margin-bottom: 64px; }
.ba-section-title { font-family: var(--serif); font-size: 24px; font-weight: 300; color: var(--charcoal); margin-bottom: 24px; }
.ba-full { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.ba-full-col { position: relative; }
.ba-full-col img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ba-full-col .ba-label { position: absolute; bottom: 12px; left: 12px; background: rgba(28,28,26,0.6); color: white; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 10px; }
.work-body { margin-bottom: 48px; }
.work-body-text { font-size: 18px; line-height: 2; color: var(--charcoal); }
.work-cta { display: flex; align-items: center; gap: 24px; border-top: 0.5px solid rgba(140,137,131,0.3); padding-top: 40px; margin-bottom: 24px; }
.work-cta p { font-size: 13px; color: var(--ash); }
.work-nav { padding-bottom: 40px; }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials-section { padding: 0 48px 64px; background: var(--forest); }
.testimonials-section .section-divider { border-top-color: rgba(234,240,234,0.2); padding: 0; }
.testimonials-section .divider-num { color: rgba(234,240,234,0.5); }
.testimonials-section .divider-line { background: rgba(234,240,234,0.2); }
.testimonials-section .divider-label { color: rgba(234,240,234,0.5); }
.testimonials-headline { color: var(--cream); margin: 32px 0 40px; }
.testimonials-headline em { color: rgba(234,240,234,0.65); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.testimonial-card { background: rgba(255,255,255,0.08); padding: 36px 28px; border: 0.5px solid rgba(234,240,234,0.15); }
.testimonial-quote { font-family: var(--serif); font-style: italic; font-size: 18px; line-height: 1.85; color: rgba(234,240,234,0.95); margin-bottom: 24px; }
.testimonial-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.testimonial-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 1.5px solid rgba(234,240,234,0.3);
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testimonial-avatar-placeholder {
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 20px; font-weight: 300;
  color: rgba(234,240,234,0.8);
}
.testimonial-meta-text { display: flex; flex-direction: column; gap: 3px; }
.testimonial-name { display: block; font-size: 18px; font-weight: 400; color: var(--cream); margin-bottom: 4px; }
.testimonial-origin { font-size: 18px; letter-spacing: 0.08em; color: rgba(234,240,234,0.72); }
.testimonial-result { font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--forest-light); border-top: 0.5px solid rgba(234,240,234,0.15); padding-top: 12px; }
.testimonials-section--page { background: var(--pale); }
.testimonials-section--page .testimonials-headline { color: var(--charcoal); }
.testimonials-section--page .testimonial-card { background: white; border-color: rgba(140,137,131,0.2); }
.testimonials-section--page .testimonial-quote { color: var(--charcoal); }
.testimonials-section--page .testimonial-name { color: var(--charcoal); }
.testimonials-section--page .testimonial-origin { color: var(--ash); }

/* ══════════════════════════════════════════════════════════
   BLOG
══════════════════════════════════════════════════════════ */
.blog-preview { padding: 0 0 64px; }
.blog-preview-header { display: flex; justify-content: space-between; align-items: baseline; padding: 48px 48px 32px; }
.blog-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2px; padding: 0 48px; }
.blog-grid--archive { grid-template-columns: repeat(3, 1fr); padding: 0 48px 80px; }

/* ── カテゴリーナビ ─────────────────────────────────────── */
.blog-cat-nav {
  padding: 32px 48px;
  border-bottom: 0.5px solid rgba(140,137,131,0.2);
  background: var(--cream);
}
.blog-cat-list {
  display: flex; flex-wrap: wrap; gap: 8px; list-style: none;
}
.blog-cat-btn {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 18px;
  border: 0.5px solid rgba(140,137,131,0.35);
  color: var(--ash);
  background: transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.blog-cat-btn:hover,
.blog-cat-btn.is-active { color: var(--cream); border-color: transparent; }

/* カテゴリーごとのアクティブ色 */
.blog-cat-btn--works.is-active,      .blog-cat-btn--works:hover      { background: #2A3D2E; }
.blog-cat-btn--renovation.is-active, .blog-cat-btn--renovation:hover { background: #7A4A3A; }
.blog-cat-btn--interior.is-active,   .blog-cat-btn--interior:hover   { background: #8C6E3A; }
.blog-cat-btn--area.is-active,       .blog-cat-btn--area:hover       { background: #3A5A6B; }
.blog-cat-btn--property.is-active,   .blog-cat-btn--property:hover   { background: #5A4A6B; }
.blog-cat-btn--other.is-active,      .blog-cat-btn--other:hover      { background: #5C5850; }
/* Allボタン（スラッグなし） */
.blog-cat-list li:first-child .blog-cat-btn.is-active,
.blog-cat-list li:first-child .blog-cat-btn:hover { background: var(--charcoal); }

/* ── カードのカテゴリーカラー ──────────────────────────── */
.blog-card {
  cursor: pointer;
  transition: filter var(--transition), transform var(--transition);
  overflow: hidden;
  background: var(--pale);
}
.blog-card:hover { filter: brightness(0.96); transform: translateY(-2px); }

/* カテゴリー別背景色 */
.blog-card.cat-works      { background: #CDD8CD; }  /* 深緑系 */
.blog-card.cat-renovation { background: #E8D5CC; }  /* テラコッタ系 */
.blog-card.cat-interior   { background: #EDE0C4; }  /* ゴールド系 */
.blog-card.cat-area       { background: #C8D8E2; }  /* ブルーグレー系 */
.blog-card.cat-property   { background: #D8D0E4; }  /* パープル系 */
.blog-card.cat-other      { background: var(--pale); }

.blog-card--featured .blog-card-title { font-size: 28px; }
.blog-card-link { display: block; }
.blog-card-img { overflow: hidden; aspect-ratio: 16/9; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.03); }
.blog-card-body { padding: 28px 32px 32px; }

/* メタ（日付＋カテゴリーバッジ） */
.blog-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.blog-card-date { font-size: 12px; letter-spacing: 0.12em; color: var(--ash); }
.blog-card-cat {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 2px; color: white;
}
/* カテゴリーバッジカラー */
.blog-cat-badge--works      { background: #2A3D2E; }
.blog-cat-badge--renovation { background: #7A4A3A; }
.blog-cat-badge--interior   { background: #8C6E3A; }
.blog-cat-badge--area       { background: #3A5A6B; }
.blog-cat-badge--property   { background: #5A4A6B; }
.blog-cat-badge--other      { background: #5C5850; }

.blog-card-title { font-family: var(--serif); font-weight: 300; font-size: 22px; color: var(--charcoal); line-height: 1.4; margin-bottom: 12px; }
.blog-card-excerpt { font-size: 18px; font-weight: 300; line-height: 1.8; color: var(--ash); }
.blog-empty { padding: 48px; color: var(--ash); font-size: 18px; }

/* ページネーション */
.nav-links { display: flex; gap: 8px; padding: 48px 48px 0; justify-content: center; }
.page-numbers {
  font-size: 13px; color: var(--ash);
  padding: 8px 14px; border: 0.5px solid rgba(140,137,131,0.3);
  transition: all var(--transition); text-decoration: none;
}
.page-numbers.current,
.page-numbers:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.blog-empty { padding: 48px; color: var(--ash); }

/* Single Post */
.site-main.single-post { padding-top: 72px; }
.post-hero { position: relative; }
.post-hero-img { width: 100%; max-height: 500px; object-fit: cover; }
.post-hero-meta { padding: 48px 48px 0; }
.post-date { font-size: 11px; letter-spacing: 0.15em; color: var(--ash); display: block; margin-bottom: 12px; }
.post-title { font-family: var(--serif); font-size: clamp(28px,4vw,48px); font-weight: 300; color: var(--charcoal); }
.post-body { max-width: 760px; margin: 40px auto; padding: 0 48px 80px; font-size: 20px; line-height: 2; color: var(--charcoal); }
.post-body h2, .post-body h3 { font-family: var(--serif); font-weight: 300; margin: 32px 0 14px; }
.post-body p { margin-bottom: 20px; }
.post-nav { max-width: 760px; margin: 0 auto; padding: 0 48px 80px; }

/* Page Blog archive */
.page-blog .blog-grid { padding: 0 48px 80px; }

/* ══════════════════════════════════════════════════════════
   CONTACT INLINE (トップページ埋め込みフォーム)
══════════════════════════════════════════════════════════ */
.contact-inline-section { padding-bottom: 80px; }
.contact-inline-inner {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; padding: 64px 48px;
}
.contact-inline-left { display: flex; flex-direction: column; justify-content: flex-start; }
.contact-inline-body {
  font-size: 15px; font-weight: 300; line-height: 1.9;
  color: var(--ash); margin: 24px 0 28px;
}
.contact-inline-details {
  display: flex; flex-direction: column; gap: 10px; list-style: none;
}
.contact-inline-details li { font-size: 18px; color: var(--ash); }

.form-success {
  background: var(--forest-mist); border-left: 3px solid var(--forest-mid);
  padding: 16px 20px; margin-bottom: 24px;
}
.form-success p { font-size: 18px; color: var(--forest); font-weight: 400; }
.form-error {
  background: #fdf0f0; border-left: 3px solid #c0392b;
  padding: 16px 20px; margin-bottom: 24px;
}
.form-error p { font-size: 18px; color: #c0392b; }

/* ══════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════ */
.contact-section { padding: 0 0 80px; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 64px 48px; }
.contact-full { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; padding: 64px 48px 80px; }
.contact-body, .contact-intro { font-size: 20px; font-weight: 300; line-height: 1.9; color: var(--ash); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.contact-details li { font-size: 18px; color: var(--ash); }
.contact-details a { color: var(--forest-mid); }
.contact-services-title { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash); margin-bottom: 12px; }
.contact-services ul { display: flex; flex-direction: column; gap: 8px; }
.contact-services li { font-size: 18px; color: var(--ash); padding-left: 12px; position: relative; }
.contact-services li::before { content: '—'; position: absolute; left: 0; color: var(--forest-light); }

/* Form */
.youbi-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; gap: 20px; }
.form-row--half { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ash); }
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--sans); font-size: 18px; font-weight: 300;
  background: white; border: 0.5px solid rgba(140,137,131,0.4);
  padding: 12px 14px; color: var(--charcoal); width: 100%;
  transition: border-color var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--forest-mid); }
.form-privacy { font-size: 16px; color: var(--ash); }
.form-privacy a { color: var(--forest-mid); text-decoration: underline; }
.form-submit {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream); background: var(--forest); border: none;
  padding: 16px 32px; cursor: pointer; transition: background var(--transition);
  align-self: flex-start;
}
.form-submit:hover { background: var(--forest-mid); }

/* ══════════════════════════════════════════════════════════
   PAGE HEROES
══════════════════════════════════════════════════════════ */
.page-hero {
  padding: 120px 48px 64px;
  margin-top: 72px;
}
.page-hero--pale { background: var(--pale); }

/* About Hero — 写真背景+テキストオーバーレイ */
.about-hero {
  position: relative;
  margin-top: 72px;
  min-height: 72vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex; align-items: flex-end;
}
.about-hero--pale { background-color: var(--pale); min-height: 320px; }
.about-hero--has-img::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(20, 28, 22, 0.28);
}
.about-hero-overlay {
  position: relative; z-index: 1;
  padding: 64px 48px;
  width: 100%;
}
.about-hero-eyebrow {
  color: rgba(200,225,205,0.85) !important;
  margin-bottom: 16px;
}
.about-hero-title {
  color: white !important;
}
.about-hero-title em {
  color: rgba(200,225,205,0.9) !important;
  font-style: italic;
}
.page-hero--forest { background: var(--forest); }
.page-hero--forest .page-eyebrow { color: var(--forest-light); }
.page-hero--forest .page-title { color: var(--cream); }
.page-hero--forest .page-title em { color: rgba(234,240,234,0.65); }
.page-hero--forest .page-sub { color: rgba(234,240,234,0.82); }
.page-eyebrow { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--forest-mid); margin-bottom: 16px; }
.page-title { font-family: var(--serif); font-weight: 300; font-size: clamp(36px,5vw,64px); color: var(--charcoal); line-height: 1.2; margin-bottom: 20px; }
.page-title em { font-style: italic; }
.page-sub { font-size: 20px; font-weight: 300; line-height: 1.9; color: var(--ash); max-width: 560px; }
.page-anchors { display: flex; gap: 32px; margin-top: 32px; }
.page-anchors a { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(234,240,234,0.6); border-bottom: 0.5px solid rgba(234,240,234,0.3); padding-bottom: 3px; transition: color var(--transition); }
.page-anchors a:hover { color: var(--cream); }

/* ══════════════════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════════════════ */
.service-detail { padding: 80px 48px; }
.service-detail--alt { background: var(--forest-mist); }
.service-detail-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.service-detail-num { font-family: var(--serif); font-size: 56px; color: var(--forest-pale); display: block; line-height: 1; margin-bottom: 12px; }
.service-detail-title { font-family: var(--serif); font-weight: 300; font-size: clamp(28px,3vw,42px); color: var(--charcoal); margin-bottom: 24px; line-height: 1.25; }
.service-detail-title em { font-style: italic; color: var(--forest-mid); }
.service-detail-body { font-size: 20px; font-weight: 300; line-height: 2; color: var(--ash); margin-bottom: 24px; }
.service-detail-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.service-detail-list li { font-size: 18px; color: var(--ash); padding-left: 16px; position: relative; }
.service-detail-list li::before { content: '—'; position: absolute; left: 0; color: var(--forest-light); }
.service-detail-image { overflow: hidden; aspect-ratio: 4/5; }
.service-detail-image img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════ */
.about-main-photo { width: 100%; max-height: 600px; overflow: hidden; }
.about-main-photo img { width: 100%; max-height: 600px; object-fit: cover; display: block; }

.about-body-section { padding: 64px 48px; max-width: 860px; margin: 0 auto; }
.about-body-inner { display: flex; flex-direction: column; gap: 20px; }
.about-headline { font-family: var(--serif); font-weight: 300; font-size: clamp(26px,3vw,40px); color: var(--charcoal); margin: 12px 0 24px; line-height: 1.3; }
.about-headline em { font-style: italic; color: var(--forest-mid); }
.about-body-text p { font-size: 20px; font-weight: 300; line-height: 2; color: var(--ash); margin-bottom: 20px; }
.about-location { color: var(--forest-mid) !important; font-size: 16px !important; margin-top: 8px; }

.about-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.about-photo-grid-item { overflow: hidden; }
.about-photo-grid-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.about-headline { font-family: var(--serif); font-weight: 300; font-size: clamp(26px,3vw,40px); color: var(--charcoal); margin-bottom: 28px; line-height: 1.3; }
.about-headline em { font-style: italic; }
.about-text p { font-size: 20px; font-weight: 300; line-height: 2; color: var(--ash); margin-bottom: 20px; }
.about-location { color: var(--forest-mid) !important; font-size: 13px !important; }
.philosophy-strip { background: var(--cream); padding: 48px 48px 80px; border-top: 0.5px solid rgba(140,135,125,0.2); }
.philosophy-strip-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.phil-col {
  background: #ffffff;
  border: 0.5px solid rgba(160,155,142,0.4);
  border-radius: 10px;
  padding: 28px 24px;
}
.phil-col-title { font-size: 20px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 14px; font-family: var(--sans); font-weight: 600; }
.phil-col p { font-size: 16px; font-weight: 300; line-height: 1.8; color: var(--charcoal); margin: 0; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer { background: var(--forest); padding: 64px 48px 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { font-family: var(--sans); font-weight: 200; font-size: 15px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream); margin-bottom: 14px; }
.footer-tagline { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 18px; color: rgba(234,240,234,0.65); line-height: 1.9; }
.footer-col-title { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(234,240,234,0.65); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-links li { font-size: 18px; font-weight: 300; color: rgba(234,240,234,0.75); transition: color var(--transition); }
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 0.5px solid rgba(234,240,234,0.1); padding: 24px 0;
  display: flex; justify-content: space-between;
  font-size: 10px; letter-spacing: 0.1em; color: rgba(234,240,234,0.22);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 100svh;
    position: relative;
  }
  .hero-right {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-single-img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }
  .hero-photo-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(150deg, var(--forest), var(--forest-mid), var(--forest-light));
  }
  /* グラデーションオーバーレイ — 上は写真が見えて下でテキストを読みやすく */
  .hero-right::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(20,32,22,0.20) 0%,
      rgba(20,32,22,0.72) 55%,
      rgba(20,32,22,0.88) 100%
    );
  }
  .hero-left {
    position: relative;
    z-index: 1;
    padding: 72px 32px 64px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100svh;
  }
  /* テキストを白系に */
  .hero-eyebrow { color: rgba(200,225,205,0.85); }
  .hero-headline { color: white; }
  .hero-headline em { color: rgba(200,225,205,1); }
  .hero-sub { color: rgba(234,240,234,0.88); }
  .hero-cta { color: white; border-bottom-color: rgba(255,255,255,0.7); }
  /* バッジをhero-leftの外に出す */
  .hero-badge {
    position: fixed;
    top: 88px; right: 20px;
    z-index: 2;
  }
  .services-intro { grid-template-columns: 1fr; gap: 24px; padding: 48px 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-section-overlay { padding: 0 32px 48px; }
  .how-section-overlay { padding: 0 32px 64px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .works-grid { grid-template-columns: repeat(2, 1fr); padding: 0 32px; }
  .blog-grid { grid-template-columns: 1fr 1fr; padding: 0 32px; }
  .blog-grid--archive { grid-template-columns: 1fr 1fr; padding: 0 32px 48px; }
  .blog-cat-nav { padding: 24px 32px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 2px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-inner, .contact-full, .contact-inline-inner { grid-template-columns: 1fr; gap: 48px; padding: 48px 32px; }
  .service-detail-inner { grid-template-columns: 1fr; }
  .service-detail--alt .service-detail-image { order: -1; }
  .about-body-section { padding: 48px 24px; }
  .about-photo-grid { grid-template-columns: 1fr; }
  .philosophy-strip-inner { grid-template-columns: 1fr; }
  .ba-full { grid-template-columns: 1fr; }
  .section-divider { padding: 0 32px; }
  .header-inner { padding: 18px 24px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .primary-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--cream); padding: 24px; border-bottom: 0.5px solid rgba(140,137,131,0.3); }
  .primary-nav.is-open { display: block; }
  .nav-list { flex-direction: column; gap: 20px; }
  .header-cta { display: none; }
  /* スマホではバッジを非表示（ヒーローが背景になるため位置調整が難しい） */
  .hero-badge { display: none; }
  .hero-left { padding: 72px 24px 56px; }
  .badges-list { flex-direction: column; }
  .badge-item { border-right: none; border-bottom: 0.5px solid rgba(234,240,234,0.1); }
  .stats-strip { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 0.5px solid rgba(140,137,131,0.3); }

  /* スマホでstatsを縦の箇条書きに */
  .stats-strip { grid-template-columns: 1fr; }
  .stat-item {
    border-right: none;
    border-bottom: 0.5px solid rgba(140,137,131,0.2);
    padding: 18px 24px;
  }
  .stat-item:last-child { border-bottom: none; }
  .stat-label { font-size: 13px; }
  .stat-body { font-size: 14px; }
  .works-grid { grid-template-columns: 1fr; padding: 0 24px; }
  .blog-grid { grid-template-columns: 1fr; padding: 0 24px; }
  .blog-grid--archive { grid-template-columns: 1fr; padding: 0 24px 48px; }
  .blog-cat-nav { padding: 20px 24px; }
  .blog-cat-list { gap: 6px; }
  .blog-cat-btn { font-size: 11px; padding: 6px 12px; }
  .form-row--half { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 100px 24px 48px; }
  .how-section { padding: 64px 24px; }
  .testimonials-section { padding: 64px 24px; }
  .about-intro { padding: 64px 24px; }
  .philosophy-strip { padding: 0 24px 56px; }
  .steps-grid--services { grid-template-columns: 1fr; gap: 32px; }
  .step-item--services { border-right: none; border-bottom: 0.5px solid rgba(160,155,142,0.35); padding: 0 0 32px 0; }
  .step-item--services:last-child { border-bottom: none; padding-bottom: 0; }
  .step-item--services + .step-item--services { padding-left: 0; }
  .how-section--services { padding: 64px 24px; }
  .services-cta-bottom { padding: 64px 24px; }
  .service-detail { padding: 64px 24px; }
  .works-preview-header, .blog-preview-header { padding: 40px 24px 24px; }
  .page-anchors { flex-direction: column; gap: 12px; }

  /* ① Services: カード1カラム全幅・文字幅 */
  .services-section-overlay { padding: 0 20px 40px; }
  .services-intro-inner { grid-template-columns: 1fr; gap: 20px; padding: 32px 0; }
  .services-intro { grid-template-columns: 1fr; gap: 20px; padding: 32px 0; }
  .service-card { padding: 28px 20px; }
  .service-desc { font-size: 17px; }
  .service-bullets li { font-size: 16px; }

  /* ② How We Work: ステップ1カラム全幅 */
  .step-item { padding: 24px 20px; }
  .step-body { font-size: 17px; }
  .how-section-overlay { padding: 0 20px 40px; }
  .how-section { padding: 0; }

  /* ③ Stats: 縦1列・セパレーター */
  .stats-sub { flex-direction: column; padding: 24px 0; }
  .stat-sub {
    flex: none;
    width: 100%;
    padding: 16px 0 !important;
    border-right: none !important;
    border-bottom: 0.5px solid rgba(234,240,234,0.12);
  }
  .stat-sub:last-child { border-bottom: none; }
  .stat-label { font-size: 15px; }
  .stat-desc { font-size: 13px; }

  /* ④ 全セクション文字幅をpadding 20pxに統一 */
  .section-divider { padding: 0 20px; }
  .top-about-text-inner { padding: 28px 20px 40px; }
  .top-about-divider { padding: 0 20px; }
  .testimonials-section { padding: 48px 20px; }
  .works-preview-header, .blog-preview-header { padding: 32px 20px 20px; }
  .hero-left { padding: 72px 20px 56px; }
}
