/* ============================================================
   Ascend Consulting — reclone styles
   - 配色・書体は既存を踏襲。
   - レイアウトと装飾でずらす。
============================================================ */

:root {
  --c-bg: #F8F7F6;
  --c-surface: #FFFFFF;
  --c-ink: #333333;
  --c-ink-strong: #000000;
  --c-accent: #BFD1DD;
  --c-accent-soft: #DCE5EB;
  --c-line: #E3E0DA;
  --c-line-strong: #111111;

  --overlay-hero: linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.92) 100%);
  --overlay-full: linear-gradient(180deg, rgba(0,0,0,.40) 0%, rgba(0,0,0,.81) 71%, rgba(0,0,0,1) 100%);

  --fs-hero: clamp(56px, 11vw, 120px);
  --fs-h2-en: clamp(36px, 6vw, 64px);
  --fs-h2-jp: clamp(22px, 3vw, 32px);
  --fs-h3: clamp(22px, 3.2vw, 36px);
  --fs-lead: clamp(18px, 2.2vw, 28px);
  --fs-body: 16px;
  --fs-label: 14px;

  --ls-hero: 0.10em;
  --ls-label: 0.15em;

  --ff-en: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-jp: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;

  --header-h: 72px;
  --radius: 12px;
  --shadow-card: 0 12px 24px -16px rgba(0,0,0,.15);
  --ease: cubic-bezier(.22,1,.36,1);
  --dur: 700ms;

  --pad-block: clamp(64px, 9vw, 140px);
  --container: min(1200px, 92vw);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--ff-jp);
  font-size: var(--fs-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* 最終行孤立対策 */
/* 長文段落: pretty（最終行のorphan対策に特化） */
p, li, dd,
.card__text, .ach__meta dd,
.about__body, .message__body,
.cta__text, .news__body, .contact__text,
.machigiwa__body, .promo__title {
  text-wrap: pretty;
}
/* 見出し・短文: balance（全行均等） */
.message__title, .ach__title, .card__title, .machigiwa__title,
.about__catch, .hero__lead {
  text-wrap: balance;
}
.about__body { max-inline-size: 48ch; }
.nobr { white-space: nowrap; }

/* 狭幅でのmessage__title hardcoded <br> を解除（balance任せにする） */
@media (max-width: 400px) {
  .message__title br { display: none; }
}

/* 320px帯：長文段落のfont-size微調整で孤立文字解消 */
@media (max-width: 360px) {
  .about__body { font-size: 14px; line-height: 1.9; max-inline-size: none; }
  .ach__meta dd { font-size: 13px; line-height: 1.85; }
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }

.container { width: var(--container); margin-inline: auto; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; }
.icon--launch { width: .85em; height: .85em; margin-left: .35em; }

/* ===== Header ===== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--header-h);
  background: rgba(248, 247, 246, .86);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--c-line); }
.site-header__inner {
  height: 100%;
  width: var(--container);
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.site-header__logo { display: inline-flex; align-items: center; }
.site-header__logo img { height: 28px; width: auto; filter: brightness(0); }
.site-nav__list {
  display: flex; align-items: center; gap: clamp(16px, 2.4vw, 32px);
  font-family: var(--ff-en);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: var(--ls-label);
}
.site-nav__list a {
  color: var(--c-ink);
  padding: 6px 0;
  position: relative;
}
.site-nav__list a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: currentColor;
  transition: right .35s var(--ease);
}
.site-nav__list a:hover::after { right: 0; }
.site-nav__cta {
  display: inline-flex; align-items: center; gap: 2px;
}
.site-header__menu {
  display: none;
  background: transparent; border: 0; padding: 8px;
  color: var(--c-ink);
  cursor: pointer;
  font-size: 28px;
}

/* Mobile drawer */
.site-drawer {
  position: fixed; inset: 0; z-index: 100;
  background: var(--c-bg);
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 24px;
}
.site-drawer[hidden] { display: none; }
.site-drawer__close {
  align-self: flex-end;
  background: transparent; border: 0; color: var(--c-ink);
  font-size: 32px; cursor: pointer; padding: 8px;
}
.site-drawer__list {
  display: flex; flex-direction: column; gap: 24px;
  font-family: var(--ff-en); font-size: 22px; font-weight: 600; letter-spacing: var(--ls-label);
}
.site-drawer__list a { display: inline-flex; align-items: center; gap: 6px; }

@media (max-width: 900px) {
  .site-nav { display: none; }
  .site-header__menu { display: inline-flex; align-items: center; }
}

/* ===== Common section bits ===== */
.section-num {
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  color: var(--c-ink);
  opacity: .55;
  margin: 0 0 12px;
}
.section-title {
  margin: 0 0 clamp(32px, 5vw, 56px);
  display: flex; flex-direction: column; gap: 10px;
}
.section-title__en {
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: var(--fs-h2-en);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--c-ink-strong);
}
.section-title__jp {
  font-family: var(--ff-jp);
  font-weight: 600;
  font-size: var(--fs-h2-jp);
  line-height: 1.4;
  color: var(--c-ink);
}
.section-title--light .section-title__en,
.section-title--light .section-title__jp { color: #fff; }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  margin-bottom: clamp(32px, 5vw, 56px);
  flex-wrap: wrap;
}
.section-head .section-title { margin-bottom: 0; }

.link-more {
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 0;
  color: var(--c-ink);
  position: relative;
}
.link-more::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px;
  height: 1px; background: var(--c-ink);
  transform-origin: left center;
  transform: scaleX(.4);
  transition: transform .5s var(--ease);
}
.link-more:hover::after { transform: scaleX(1); }
.link-more .icon { transition: transform .35s var(--ease); }
.link-more:hover .icon { transform: translateX(4px); }
.link-more--solid {
  background: var(--c-ink-strong);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
}
.link-more--solid::after { display: none; }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-jp);
  font-weight: 600;
  font-size: var(--fs-body);
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.btn .icon { transition: transform .35s var(--ease); }
.btn:hover .icon { transform: translateX(4px); }
.btn--outline-light { color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--c-ink-strong); }
.btn--outline-dark { color: var(--c-ink-strong); }
.btn--outline-dark:hover { background: var(--c-ink-strong); color: #fff; }

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

/* Variants */
.reveal--up         { transform: translateY(40px); }
.reveal--down       { transform: translateY(-24px); }
.reveal--left       { transform: translateX(-40px); }
.reveal--right      { transform: translateX(40px); }
.reveal--scale      { transform: scale(1.04); transition-duration: 900ms; }
.reveal--fade       { transform: none; }
.reveal--blur       { filter: blur(10px); transition: opacity var(--dur) var(--ease), filter var(--dur) var(--ease); transform: none; }
.reveal--blur.is-in { filter: none; }

.reveal.is-in.reveal--up,
.reveal.is-in.reveal--down,
.reveal.is-in.reveal--left,
.reveal.is-in.reveal--right,
.reveal.is-in.reveal--scale { transform: none; }

/* Split chars stagger */
.reveal--chars { opacity: 1; transform: none; overflow: hidden; }
.reveal--chars .word { display: inline-block; white-space: nowrap; }
.reveal--chars .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%) rotate(4deg);
  transition: opacity .7s var(--ease), transform .9s var(--ease);
  transition-delay: calc(var(--i, 0) * 35ms);
  will-change: opacity, transform;
}
.reveal--chars.is-in .char { opacity: 1; transform: none; }

/* Reveal line (ヘアライン描画) */
.reveal--line {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: .18;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1s var(--ease);
}
.reveal--line.is-in { transform: scaleX(1); }

/* Stagger children（親が画面入ったら子要素順番に発火） */
.stagger > .reveal { transition-delay: calc(var(--s, 0) * 1ms); }

/* 画像のKen Burns（ゆるやかズーム） */
.ken-burns {
  animation: kenBurns 24s ease-in-out infinite alternate;
  transform-origin: center 40%;
}
@keyframes kenBurns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.12); }
}

/* Hero overlay 深化 */
.hero__overlay {
  opacity: 0;
  animation: heroOverlayIn 2.4s var(--ease) .2s forwards;
}
@keyframes heroOverlayIn {
  to { opacity: 1; }
}

/* Hero scroll fade-in */
.hero__scroll {
  opacity: 0;
  animation: scrollIn 1.2s var(--ease) 2.2s forwards;
}
@keyframes scrollIn {
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--chars .char {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .ken-burns { animation: none !important; }
  .hero__overlay,
  .hero__scroll { opacity: 1 !important; animation: none !important; }
}

/* ===== Hero ===== */
.hero {
  display: grid;
  grid-template-columns: minmax(360px, 44%) 1fr;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--header-h);
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}
.hero__text {
  padding: clamp(40px, 6vw, 80px) clamp(24px, 4vw, 64px);
  display: flex; flex-direction: column; justify-content: center;
  gap: clamp(24px, 3vw, 40px);
  position: relative;
}
.hero__en {
  margin: 0;
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.05;
  letter-spacing: 0.06em;
  color: var(--c-ink-strong);
  display: flex; flex-direction: column;
  gap: clamp(4px, 0.6vw, 10px);
}
.hero__en span { display: block; }
.hero__lead {
  margin: 0;
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: var(--fs-lead);
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--c-ink);
}
.hero__scroll {
  position: absolute; right: clamp(20px, 3vw, 36px); bottom: 32px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  z-index: 2;
  pointer-events: none;
}
.hero__scroll-label {
  font-family: var(--ff-en); font-weight: 600; font-size: 11px;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
.hero__scroll-line {
  display: block; width: 1px; height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0) 100%);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: .7; }
  50% { transform: scaleY(.5); transform-origin: top; opacity: 1; }
}
.hero__image {
  position: relative; overflow: hidden;
}
.hero__image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: var(--overlay-hero);
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 80svh;
  }
  .hero__text {
    order: 2;
    padding: 48px 24px 72px;
  }
  .hero__en { font-size: clamp(44px, 14vw, 88px); letter-spacing: 0.08em; }
  .hero__image {
    order: 1;
    min-height: 52svh;
  }
  .hero__scroll { bottom: 16px; }
}

/* ===== About / What We Do ===== */
.about {
  position: relative;
  padding: var(--pad-block) 0;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.about__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.about__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: var(--overlay-full);
}
.about__inner { max-width: 860px; }
.about__catch {
  margin: 0 0 24px;
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: var(--fs-lead);
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.about__body {
  margin: 0;
  font-size: var(--fs-body);
  line-height: 2;
  color: rgba(255,255,255,.92);
}
.about .section-num { color: #fff; opacity: .7; }

/* ===== Service (Bento) ===== */
.service {
  padding: var(--pad-block) 0;
  background: var(--c-bg);
}
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.card {
  position: relative;
  background: var(--c-surface);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--c-line);
  text-decoration: none;
  color: inherit;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.card:hover,
.card.reveal.is-in:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -12px rgba(17,17,17,.18), 0 14px 28px -10px rgba(17,17,17,.10);
  border-color: rgba(17,17,17,.22);
}
.card:hover .card__media img {
  transform: scale(1.04);
}
.card:focus-visible {
  outline: 2px solid var(--c-ink-strong);
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .card { transition: none; }
  .card:hover { transform: none; }
  .card:hover .card__media img { transform: none; }
}
.card--wide {
  grid-column: span 6;
  flex-direction: row;
  align-items: stretch;
}
.card:not(.card--wide) { grid-column: span 2; }
.card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.card--wide .card__media {
  width: 42%;
  aspect-ratio: auto;
  min-height: 280px;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.card:hover .card__media img { /* limit by feedback — only on <a>, so skip hover scale */ }
.card__body {
  padding: clamp(20px, 2.4vw, 32px);
  display: flex; flex-direction: column;
  gap: 16px;
  flex: 1;
}
.card--wide .card__body { padding: clamp(28px, 3vw, 48px); gap: 20px; }
.card__title {
  margin: 0;
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: clamp(19px, 2.2vw, 26px);
  line-height: 1.45;
  color: var(--c-ink-strong);
  letter-spacing: 0.01em;
}
.card--wide .card__title {
  font-size: var(--fs-h3);
  line-height: 1.4;
}
/* CJKの語中改行を防ぎ、<wbr> 位置でのみ折り返す */
.card__title--keep-word {
  word-break: keep-all;
  overflow-wrap: normal;
}
.card__list {
  display: flex; flex-direction: column; gap: 6px;
  font-size: var(--fs-body);
  color: var(--c-ink);
}
.card__list li { position: relative; padding-left: 20px; }
.card__list li::before {
  content: ""; position: absolute; left: 0; top: 0.7em;
  width: 10px; height: 1px; background: var(--c-ink);
}
.card__text {
  margin: 0;
  line-height: 2;
  color: var(--c-ink);
}
.card__link {
  align-self: flex-start;
  margin-top: auto;
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 4px 0;
  color: var(--c-ink-strong);
  position: relative;
}
.card__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--c-ink-strong);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.card:hover .card__link::after { transform: scaleX(1); }
.card__link .icon { transition: transform .35s var(--ease); }
.card:hover .card__link .icon { transform: translateX(4px); }

@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .card--wide { grid-column: span 2; flex-direction: column; }
  .card--wide .card__media { width: 100%; aspect-ratio: 16/10; min-height: 0; }
  .card:not(.card--wide) { grid-column: span 1; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .card--wide, .card:not(.card--wide) { grid-column: span 1; }
}

/* ===== Message ===== */
.message {
  padding: var(--pad-block) 0;
  background: var(--c-accent-soft);
}
.message__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.message__image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
}
.message__image img { width: 100%; height: 100%; object-fit: cover; }
.message__card {
  background: var(--c-surface);
  padding: clamp(32px, 4vw, 56px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 24px;
}
.message__title {
  margin: 0;
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.6;
  color: var(--c-ink-strong);
  letter-spacing: 0.02em;
}
.message__body {
  margin: 0;
  line-height: 2;
  color: var(--c-ink);
}

@media (max-width: 900px) {
  .message__inner { grid-template-columns: 1fr; }
  .message__image { aspect-ratio: 16/10; }
}

/* ===== Achievement ===== */
.achievement { padding: var(--pad-block) 0; background: var(--c-bg); }
.achievement__list {
  display: flex; flex-direction: column; gap: clamp(24px, 3vw, 40px);
  border-top: 1px solid var(--c-line);
}
.ach {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(32px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--c-line);
  position: relative;
}
.ach::before {
  content: ""; position: absolute; left: 0; top: clamp(32px, 4vw, 48px);
  bottom: clamp(32px, 4vw, 48px);
  width: 1px; background: var(--c-ink-strong);
  opacity: .15;
}
.ach__num {
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--c-ink-strong);
  letter-spacing: 0.02em;
  line-height: 1;
  padding-top: 6px;
}
.ach__body { display: flex; flex-direction: column; gap: 16px; }
.ach__tag {
  display: inline-block;
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  padding: 6px 14px;
  border: 1px solid var(--c-ink-strong);
  border-radius: 999px;
  color: var(--c-ink-strong);
  align-self: flex-start;
}
.ach__title {
  margin: 0;
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.5;
  color: var(--c-ink-strong);
}
.ach__meta {
  margin: 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  font-size: var(--fs-body);
  line-height: 1.9;
}
.ach__meta dt {
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: var(--ls-label);
  color: var(--c-ink);
  opacity: .7;
  padding-top: 4px;
}
.ach__meta dd { margin: 0; color: var(--c-ink); }

@media (max-width: 640px) {
  .ach { grid-template-columns: 48px 1fr; }
  .ach::before { top: clamp(24px, 4vw, 32px); bottom: clamp(24px, 4vw, 32px); }
  .ach__num { font-size: 28px; padding-top: 4px; }
  .ach__meta { grid-template-columns: 64px 1fr; gap: 8px; font-size: 14px; }
}

/* ===== CTA band ===== */
.cta {
  position: relative;
  padding: var(--pad-block) 0;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.cta__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.cta__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: var(--overlay-full);
}
.cta__inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 24px;
}
.cta__text {
  margin: 0;
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: var(--fs-lead);
  line-height: 1.8;
  letter-spacing: 0.04em;
  max-width: 32em;
}
.cta__mail {
  margin: 0;
  font-family: var(--ff-en);
  font-size: var(--fs-label);
  letter-spacing: 0.06em;
  opacity: .85;
}

/* ===== Promo (match) ===== */
.promo {
  padding: var(--pad-block) 0;
  background: var(--c-bg);
}
.promo__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.promo__body {
  max-width: 860px;
  display: flex; flex-direction: column; gap: 20px;
}
.promo__eyebrow {
  margin: 0;
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  color: var(--c-ink);
  opacity: .7;
}
.promo__title {
  margin: 0;
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.8;
  color: var(--c-ink-strong);
}

/* ===== News ===== */
.news { padding: var(--pad-block) 0; background: var(--c-surface); }
.news__list {
  border-top: 1px solid var(--c-line);
}
.news__item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: clamp(20px, 2.4vw, 28px) 0;
  border-bottom: 1px solid var(--c-line);
  align-items: baseline;
}
.news__date {
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: var(--fs-label);
  letter-spacing: 0.08em;
  color: var(--c-ink-strong);
  font-variant-numeric: tabular-nums;
}
.news__body {
  margin: 0;
  font-size: var(--fs-body);
  line-height: 1.75;
}

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

/* ===== Machigiwa ===== */
.machigiwa {
  position: relative;
  padding: var(--pad-block) 0;
  background: var(--c-bg);
  overflow: hidden;
}
/* 外側の薄い装飾ドット（壁紙感） */
.machigiwa::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,.06) 1px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: .55;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.7) 30%, rgba(0,0,0,.7) 70%, rgba(0,0,0,0) 100%);
          mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.7) 30%, rgba(0,0,0,.7) 70%, rgba(0,0,0,0) 100%);
}
.machigiwa__inner {
  position: relative;
  isolation: isolate;
  max-width: 920px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(160deg, var(--c-accent-soft) 0%, var(--c-accent) 100%);
  border-radius: 20px;
  padding: clamp(48px, 7vw, 84px) clamp(28px, 5vw, 72px);
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 18px;
  box-shadow:
    0 24px 48px -28px rgba(40,60,90,.35),
    0 2px 0 rgba(255,255,255,.6) inset;
}
/* 山稜のSVGシルエット（ボトム） */
.machigiwa__inner::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 64px;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 920 64' preserveAspectRatio='none'><path d='M0 64 L0 50 L120 18 L210 38 L310 8 L420 32 L520 14 L640 36 L740 20 L840 42 L920 26 L920 64 Z' fill='rgba(0,0,0,0.06)'/><path d='M0 64 L0 56 L100 36 L200 48 L300 28 L420 50 L530 38 L640 50 L740 40 L860 54 L920 46 L920 64 Z' fill='rgba(0,0,0,0.10)'/></svg>") no-repeat bottom center / 100% 100%;
  pointer-events: none;
  z-index: 0;
}
/* 右上の柔らかい円光 */
.machigiwa__inner::after {
  content: "";
  position: absolute;
  top: -90px; right: -90px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.65) 0%, rgba(255,255,255,0) 65%);
  pointer-events: none;
  z-index: 0;
}
.machigiwa__eyebrow,
.machigiwa__title,
.machigiwa__body,
.machigiwa__inner > .btn {
  position: relative;
  z-index: 1;
}
.machigiwa__eyebrow {
  margin: 0;
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  color: var(--c-ink-strong);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.machigiwa__eyebrow::before,
.machigiwa__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--c-ink-strong);
  opacity: .35;
}
.machigiwa__title {
  margin: 0;
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.4;
  color: var(--c-ink-strong);
  letter-spacing: 0.04em;
}
.machigiwa__body {
  margin: 0;
  line-height: 1.9;
  color: var(--c-ink);
}

/* ===== Footer CTA band（共通・contact直前） ===== */
.footer-cta {
  display: none;
  background: var(--c-accent-soft);
  border-top: 1px solid var(--c-line);
  padding: clamp(48px, 7vw, 96px) clamp(20px, 4vw, 56px);
}
.footer-cta__inner {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
}
.footer-cta__head { display: grid; gap: 8px; min-width: 0; }
.footer-cta__en {
  margin: 0;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0.04em;
  color: var(--c-ink-strong);
}
.footer-cta__title {
  margin: 0;
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--c-ink-strong);
  letter-spacing: 0.02em;
}
.footer-cta__text {
  margin: 6px 0 0;
  font-size: var(--fs-body);
  line-height: 1.85;
  color: var(--c-ink);
  text-wrap: pretty;
}
@media (max-width: 768px) {
  .footer-cta__inner { grid-template-columns: 1fr; gap: 20px; }
}

/* ===== Contact split ===== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.contact__panel {
  padding: clamp(56px, 8vw, 120px) clamp(24px, 4vw, 56px);
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 20px;
  position: relative;
  background: var(--c-surface);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, .02);
}
.contact__panel + .contact__panel::before {
  content: ""; position: absolute; left: 0; top: 10%; bottom: 10%;
  width: 1px; background: var(--c-line);
}
.contact__panel--alt { background: var(--c-accent-soft); box-shadow: none; }
.contact__en {
  margin: 0;
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.04em;
  color: var(--c-ink-strong);
}
.contact__text {
  margin: 0;
  font-size: var(--fs-body);
  line-height: 1.8;
  color: var(--c-ink);
}

@media (max-width: 768px) {
  .contact { grid-template-columns: 1fr; }
  .contact__panel + .contact__panel::before {
    left: 10%; right: 10%; top: 0; bottom: auto; width: auto; height: 1px;
  }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--c-ink-strong);
  color: #fff;
  padding: 56px 0 32px;
}
.site-footer__inner {
  display: flex; flex-direction: column; gap: 28px;
  align-items: flex-start;
}
.site-footer__logo img {
  height: 28px; width: auto;
  filter: invert(1) brightness(1.2);
}
.site-footer__nav ul {
  display: flex; flex-wrap: wrap;
  gap: 20px 28px;
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
}
.site-footer__nav a {
  display: inline-flex; align-items: center; gap: 4px;
  opacity: .85;
  transition: opacity .3s ease;
}
.site-footer__nav a:hover { opacity: 1; }
.site-footer__meta {
  display: flex; flex-wrap: wrap;
  gap: 16px 28px; align-items: center;
  font-family: var(--ff-en);
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 24px;
  width: 100%;
  color: rgba(255,255,255,.75);
}
.site-footer__meta small { font-size: 12px; letter-spacing: 0.08em; }
