/* ============================================================
   Section styles
   ============================================================ */

/* ───────── About — niwaya Concept layout (3 photos + vertical title right) ───────── */
.about { background: var(--bg); position: relative; }
.about__main {
  display: grid;
  grid-template-columns: 26% 1fr auto;
  column-gap: clamp(28px, 4vw, 64px);
  position: relative;
  align-items: flex-start;
}

/* Left column — single photo with 創業 61年 badge overlapping */
.about__img-left {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  grid-column: 1;
  grid-row: 1;
}
.about__img-left02 {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
}
.about__img-left02 img,
.about__img-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 創業 61年 badge — v5 style, overlapping bottom-right */
.about__media-badge {
  position: absolute;
  right: -32px;
  bottom: -32px;
  background: var(--bg);
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 24px 60px rgba(27, 31, 28, 0.10);
  border: 1px solid var(--line-2);
  z-index: 3;
}
.about__media-eyebrow {
  font-family: var(--serif-jp);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  font-weight: 500;
}
.about__media-big {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  color: var(--ink);
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.about__media-unit {
  font-family: var(--serif-jp);
  font-size: 0.42em;
  letter-spacing: 0.04em;
}

/* Center column — body (More button is now a separate grid item) */
.about__text {
  align-self: flex-start;
  grid-column: 2;
  grid-row: 1;
}
.about__des-wrapper {
  max-width: 432px;
  margin: clamp(40px, 6vw, 96px) auto 0;
}
.about__des {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 2.2;
  letter-spacing: 0.06em;
  color: var(--ink-2);
}
@media (max-width: 900px) {
  .about__des { font-size: 0.75rem; }
}
.about__des p {
  margin: 0 0 1.6em;
}
.about__des p:last-child {
  margin-bottom: 0;
}
.about__more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 4px;
  font-family: var(--serif-en);
  font-size: clamp(16px, 1.2vw, 20px);
  letter-spacing: 0.04em;
  color: var(--ink);
  position: relative;
  width: 100%;
  max-width: 240px;
  /* PC placement: in col 2, after text */
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  margin: clamp(40px, 6vw, 96px) 0 0;
}
.about__more-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ink);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.about__more:hover .about__more-line {
  transform: scaleX(1.05);
}
.about__more-icon {
  position: relative;
  width: 36px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
  transition: width .4s var(--ease);
}
.about__more-icon::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.about__more:hover .about__more-icon { width: 48px; }

/* Right column — vertical title */
.about__title {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  gap: clamp(14px, 1.4vw, 22px);
  align-self: flex-start;
  margin-top: 4px;
  grid-column: 3;
  grid-row: 1;
}
.about__title-en {
  display: inline-block;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: clamp(13px, 1vw, 16px);
  letter-spacing: 0.18em;
  color: var(--ink-3);
  font-weight: 400;
  padding-top: 2px;
}
.about__title-ja-wrap {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: clamp(14px, 1.4vw, 22px);
  margin: 0;
  font-family: var(--serif-jp);
  font-weight: 500;
}
.about__title-ja01,
.about__title-ja02 {
  display: inline-block;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  white-space: pre;
  line-height: 1;
  letter-spacing: 0.16em;
  padding-right: clamp(12px, 1.2vw, 18px);
  border-right: 1px solid rgba(27, 31, 28, 0.18);
  font-size: clamp(26px, 2.6vw, 36px);
  color: var(--ink);
}
.about__title-ja02 {
  margin-top: clamp(40px, 4vw, 64px);
}

/* Bottom-right small accent photo — row 3, aligned to title's right edge */
.about__img-right {
  width: clamp(180px, 22vw, 320px);
  aspect-ratio: 1.618 / 1;
  overflow: hidden;
  background: var(--bg-2);
  grid-column: 2 / -1;
  grid-row: 3;
  justify-self: end;
  margin-top: 32px;
}

/* Mobile (≤900px): stack vertically — niwaya SP layout */
@media (max-width: 900px) {
  /* SP: photo on top, then body+title row, then more+img-right row */
  .about__main {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: clamp(16px, 4vw, 32px);
    row-gap: 0;
    position: relative;
  }
  .about__img-left {
    grid-column: 1 / -1;
    grid-row: 1;
    aspect-ratio: 5/4;
    margin-bottom: 56px;
  }
  .about__media-badge {
    right: 12px;
    bottom: -28px;
    padding: 18px 22px;
  }
  .about__text {
    grid-column: 1;
    grid-row: 2;
    align-self: flex-start;
  }
  .about__des-wrapper {
    max-width: 100%;
    margin: 0;
  }
  .about__title {
    grid-column: 2;
    grid-row: 2;
    align-self: flex-start;
    margin: -8px 0 0 0;
  }
  .about__title-en { font-size: clamp(10px, 2.6vw, 12px); }
  .about__title-ja01,
  .about__title-ja02 {
    font-size: clamp(16px, 4.6vw, 24px);
    padding-right: clamp(8px, 2vw, 12px);
    letter-spacing: 0.12em;
  }
  .about__title-ja02 {
    margin-top: clamp(20px, 4vw, 36px);
  }
  /* Bottom row: More (col 1) and small photo (col 2), same height */
  .about__more {
    grid-column: 1;
    grid-row: 3;
    align-self: stretch;
    margin: 36px 0 0;
    max-width: 100%;
    font-size: 18px;
    padding: 14px 4px;
  }
  .about__img-right {
    grid-column: 2;
    grid-row: 3;
    align-self: stretch;
    margin: 36px 0 0;
    width: clamp(140px, 30vw, 200px);
    min-width: auto;
    height: auto;
    aspect-ratio: 1.618 / 1;
    justify-self: end;
  }
}
@media (max-width: 540px) {
  .about__img-right {
    width: clamp(120px, 32vw, 160px);
  }
}
.about__body p { margin: 0 0 24px; }
.about__sign {
  margin-top: 40px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.about__sign-name {
  font-family: var(--serif-jp);
  font-size: 22px;
}


/* ───────── Strengths ───────── */
.strengths { background: var(--bg-2); }
.strengths__header {
  margin-bottom: 64px;
  display: flex;
  align-items: flex-start;
  gap: clamp(28px, 4vw, 80px);
}
.strengths__vt { flex-shrink: 0; padding-top: 6px; }
.strengths__head-text { flex: 1; }
.strengths__header .eyebrow { display: block; margin-bottom: 20px; }
@media (max-width: 720px) {
  .strengths__header { flex-direction: column; gap: 16px; }
}
.strengths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  perspective: 1800px;
}
.strengths__card {
  position: relative;
  min-height: 440px;
  background: transparent;
  padding: 0;
  border: 0;
}
.strengths__card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 440px;
  transform-style: preserve-3d;
  transition: transform .9s cubic-bezier(.55, .05, .25, 1);
  box-shadow: 0 18px 36px -22px rgba(20, 16, 12, 0.45);
}
.strengths__card:hover .strengths__card-inner { transform: rotateY(180deg); }
.strengths__card-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

/* Front: photo bg + dark gradient + huge italic number + JA title */
.strengths__card-face--front {
  background-color: var(--ink);
  background-image:
    linear-gradient(180deg, rgba(20, 16, 12, 0.20) 0%, rgba(20, 16, 12, 0.55) 55%, rgba(20, 16, 12, 0.92) 100%),
    var(--card-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 36px 38px;
  transition: background-size .9s var(--ease);
}
.strengths__card:hover .strengths__card-face--front {
  background-size: 108% auto, 108% auto;
}
.strengths__num {
  position: absolute;
  top: 18px;
  right: 26px;
  font-family: var(--serif-num);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(96px, 10vw, 168px);
  line-height: .85;
  color: rgba(250, 247, 242, 0.96);
  letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.strengths__front-foot {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.strengths__rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent);
}
.strengths__cat {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.strengths__ja {
  margin: 0;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.55;
  font-weight: 500;
  color: var(--bg);
  letter-spacing: 0.02em;
}
.strengths__mark {
  font-style: normal;
  background-image: linear-gradient(transparent 60%, rgba(199, 152, 71, 0.55) 60%, rgba(199, 152, 71, 0.55) 92%, transparent 92%);
  padding: 0 2px;
}
.strengths__hover-hint {
  position: absolute;
  bottom: 22px;
  right: 28px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.34em;
  color: rgba(250, 247, 242, 0.6);
  opacity: 1;
  transition: opacity .3s var(--ease), transform .4s var(--ease);
  z-index: 2;
}
.strengths__card:hover .strengths__hover-hint {
  opacity: 0;
  transform: translateY(6px);
}

/* Back: solid ink + accent rule + big ghost number + body */
.strengths__card-face--back {
  transform: rotateY(180deg);
  background: var(--ink);
  color: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px;
}
.strengths__back-num {
  position: absolute;
  top: 24px;
  right: 30px;
  font-family: var(--serif-num);
  font-style: italic;
  font-size: clamp(72px, 7vw, 108px);
  line-height: 1;
  color: rgba(199, 152, 71, 0.18);
  letter-spacing: -0.02em;
  pointer-events: none;
}
.strengths__back-rule {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 22px;
}
.strengths__card-face--back .strengths__desc {
  color: rgba(250, 247, 242, 0.92);
  font-size: 15px;
  line-height: 2.05;
  margin: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 980px) {
  .strengths__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .strengths__grid { grid-template-columns: 1fr; perspective: none; gap: 14px; }
  .strengths__card { min-height: auto; }
  .strengths__card-inner {
    min-height: auto;
    transform: none !important;
    transform-style: flat;
    transition: none;
    box-shadow: 0 12px 28px -18px rgba(20, 16, 12, 0.5);
  }
  .strengths__card-face {
    position: relative;
    inset: auto;
    height: auto;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
  }
  .strengths__card-face--front {
    min-height: 340px;
    padding: 28px 26px 30px;
  }
  .strengths__num {
    font-size: clamp(80px, 22vw, 120px);
    top: 12px;
    right: 18px;
  }
  .strengths__hover-hint { display: none; }
  .strengths__card-face--back {
    transform: none;
    padding: 28px 26px 30px;
    min-height: auto;
  }
  .strengths__back-num { display: none; }
}

/* ───────── Numbers ───────── */
.numbers {
  position: relative;
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(20, 16, 12, 0.82), rgba(20, 16, 12, 0.86)),
    url('assets/main/main_3.png');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  color: var(--bg);
  padding: 110px var(--gutter);
}
.numbers .inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: clamp(28px, 4vw, 80px);
  align-items: start;
}
.numbers__vt { padding-top: 4px; }
.numbers__grid { grid-column: 2; }
@media (max-width: 720px) {
  .numbers .inner {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
  .numbers__grid { grid-column: auto; }
}
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px;
  align-items: end;
}
.numbers__item {
  padding-top: 28px;
  border-top: 1px solid rgba(250, 247, 242, 0.22);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.numbers__label {
  font-family: var(--serif-jp);
  font-size: clamp(16px, 1.4vw, 20px);
  letter-spacing: 0.14em;
  color: rgba(250, 247, 242, 0.92);
  font-weight: 500;
  order: 1;
}
.numbers__big {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
  order: 2;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.numbers__num {
  font-size: clamp(60px, 7.5vw, 108px);
  font-weight: 400;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  color: var(--bg);
  white-space: nowrap;
}
.numbers__unit {
  font-family: var(--serif-jp);
  font-size: clamp(22px, 2.4vw, 30px);
  color: rgba(250, 247, 242, 0.92);
  margin-left: 6px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .numbers { padding: 80px var(--gutter); }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
  .numbers__label { font-size: 14px; }
  .numbers__num { font-size: clamp(54px, 14vw, 80px); }
  .numbers__unit { font-size: clamp(20px, 5vw, 26px); }
}

/* ───────── Cases ───────── */
.cases { background: var(--bg); }
.cases__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}
.cases__header-main {
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 3.4vw, 60px);
  flex: 1;
}
.cases__vt { flex-shrink: 0; padding-top: 6px; }
.cases__head-text { flex: 1; }
.cases__header .eyebrow { display: block; margin-bottom: 16px; }
.cases__header-aside { max-width: 320px; }
@media (max-width: 720px) {
  .cases__header-main { flex-direction: column; gap: 14px; }
}
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}
.cases__card--feat {
  grid-column: span 2;
  grid-row: span 2;
}
.cases__link { display: block; cursor: pointer; }
.cases__img {
  aspect-ratio: 4/3;
  margin-bottom: 20px;
  position: relative;
}
.cases__card--feat .cases__img { aspect-ratio: 16/11; }
.cases__cat {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--bg);
  color: var(--ink);
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  z-index: 1;
}
.cases__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cases__title {
  font-family: var(--serif-jp);
  font-size: clamp(16px, 1.4vw, 20px);
  margin: 0;
  font-weight: 500;
  line-height: 1.6;
  transition: color calc(.3s / var(--anim-speed)) var(--ease);
}
.cases__card--feat .cases__title { font-size: clamp(20px, 2vw, 28px); }
.cases__link:hover .cases__title { color: var(--accent); }
.cases__cta { margin-top: 80px; text-align: center; }
.cases__card { position: relative; }

/* 施工事例準備中バッジ（記事未公開のショーケースカード用） */
.cases__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(42, 36, 32, 0.85);
  color: var(--bg);
  padding: 6px 12px;
  font-family: var(--serif-jp);
  font-size: 11px;
  letter-spacing: 0.14em;
  z-index: 1;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

/* showcase カード（リンクなし）— ホバー効果のないクラス */
.cases__card--showcase .cases__link { cursor: default; }
.cases__card--showcase .cases__title { transition: none; }
.cases__card--showcase:hover .cases__title { color: inherit; }

/* ───────── Cases — category filters ───────── */
.cases__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 0 0 56px;
  align-items: center;
}
.cases__filter {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  font-family: var(--serif-jp);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
  transition: background calc(.3s / var(--anim-speed)) var(--ease),
              border-color calc(.3s / var(--anim-speed)) var(--ease),
              color calc(.3s / var(--anim-speed)) var(--ease);
  cursor: pointer;
}
.cases__filter:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.cases__filter--active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}
.cases__filter--active:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.cases__filter--external {
  border-style: dashed;
}
.cases__filter-ext {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.85em;
  color: var(--ink-3);
}

/* 外部サイト誘導カードの追加スタイル */
.cases__external-tag {
  font-family: var(--serif-en);
  font-style: italic;
  color: var(--accent) !important;
  letter-spacing: 0.06em;
}
.menu__badge--external {
  background: var(--accent);
  color: var(--bg);
  font-family: var(--serif-jp);
  font-style: normal;
  letter-spacing: 0.08em;
  padding: 8px 14px;
}

@media (max-width: 900px) {
  .cases__filters {
    gap: 8px 8px;
    margin-bottom: 44px;
    justify-content: center;
  }
  .cases__filter {
    padding: 8px 14px;
    font-size: 12px;
    letter-spacing: 0.04em;
  }
}
@media (max-width: 480px) {
  .cases__filters { gap: 6px 6px; margin-bottom: 36px; }
  .cases__filter { padding: 7px 12px; font-size: 11.5px; }
}

@media (max-width: 900px) {
  .cases__grid { grid-template-columns: 1fr; gap: 40px; }
  .cases__card--feat { grid-column: auto; grid-row: auto; }
}

/* ───────── Menu ───────── */
.menu { background: var(--bg-2); }
.menu__header {
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 32px;
}
.menu__header .eyebrow { display: block; margin-bottom: 16px; }
.menu__title-display { margin: 0; position: relative; }

/* ───── Section intro — shared magazine-style eyebrow with animated divider ───── */
.section-intro {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.section-intro-line {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform calc(1.2s / var(--anim-speed)) var(--ease) calc(0.3s / var(--anim-speed));
  flex-shrink: 0;
}
.section-intro.in .section-intro-line { transform: scaleX(1); }
.section-intro-en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.section-intro-dot {
  font-family: var(--serif-en);
  font-size: 14px;
  color: var(--ink-4);
  font-style: normal;
}
.section-intro-jp {
  font-family: var(--serif-jp);
  font-size: clamp(15px, 1.4vw, 19px);
  letter-spacing: 0.12em;
  color: var(--ink);
  font-weight: 500;
}

/* Dark background variant (Contact, Numbers, etc.) */
.section-intro--dark .section-intro-line { background: rgba(250, 247, 242, 0.7); }
.section-intro--dark .section-intro-en { color: rgba(250, 247, 242, 0.55); }
.section-intro--dark .section-intro-dot { color: rgba(250, 247, 242, 0.4); }
.section-intro--dark .section-intro-jp { color: var(--bg); }

/* Center variant (used by Contact section which is text-align: center) */
.contact .section-intro { justify-content: center; }
.faq__header .section-intro { justify-content: center; }

@media (max-width: 700px) {
  .section-intro { gap: 10px; }
  .section-intro-line { width: 36px; }
  .section-intro-en { font-size: 11.5px; letter-spacing: 0.14em; }
  .section-intro-jp { font-size: 14px; }
}
.menu__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(auto, auto);
  gap: 32px;
}
.menu__card {
  grid-column: span 2;
  background: var(--bg);
  transition: transform calc(.5s / var(--anim-speed)) var(--ease);
}
.menu__card:hover { transform: translateY(-4px); }
.menu__card--feat {
  grid-column: span 6;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
.menu__link {
  display: block;
  height: 100%;
  cursor: pointer;
}
.menu__card--feat .menu__link { display: contents; }
.menu__img {
  aspect-ratio: 4/3;
  position: relative;
}
.menu__card--feat .menu__img { aspect-ratio: auto; height: 100%; min-height: 420px; }
.menu__badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--ink);
  color: var(--bg);
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  z-index: 1;
  font-family: var(--serif-en);
  font-style: italic;
}
.menu__body { padding: 32px 28px; display: flex; flex-direction: column; gap: 12px; }
.menu__card--feat .menu__body { padding: 56px 48px; justify-content: center; }
.menu__en { font-size: 11px; }
.menu__title {
  font-family: var(--serif-jp);
  font-size: clamp(20px, 1.6vw, 24px);
  margin: 0;
  font-weight: 500;
}
.menu__card--feat .menu__title { font-size: clamp(28px, 3vw, 40px); }
.menu__desc { margin: 8px 0; font-size: 14px; }
.menu__card--feat .menu__desc { font-size: 16px; max-width: 420px; }
.menu__link-txt { margin-top: 8px; align-self: flex-start; font-size: 12px; }

@media (max-width: 900px) {
  .menu__grid { grid-template-columns: 1fr; gap: 24px; }
  .menu__card { grid-column: auto; }
  .menu__card--feat { grid-column: auto; grid-template-columns: 1fr; }
  .menu__card--feat .menu__img { min-height: 300px; aspect-ratio: 4/3; }
  .menu__card--feat .menu__body { padding: 32px 28px; }
}

/* ───────── Voices ───────── */
.voices { background: var(--bg); }
.voices__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 32px;
}
.voices__header--solo {
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 3.4vw, 60px);
  justify-content: flex-start;
}
.voices__vt { flex-shrink: 0; padding-top: 6px; }
.voices__head-text { flex: 1; }
.voices__header .eyebrow { display: block; margin-bottom: 16px; }
@media (max-width: 720px) {
  .voices__header--solo { flex-direction: column; gap: 14px; }
}
.voices__rating { text-align: right; }
.voices__stars { color: #D4A76A; font-size: 28px; letter-spacing: 0.12em; margin-bottom: 12px; }
.voices__score {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 14px;
  justify-content: flex-end;
}
.voices__score-by { font-size: 14px; color: var(--ink-3); letter-spacing: 0.08em; font-family: var(--sans-jp); font-weight: 400; }
.voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.voices__card {
  padding: 40px 32px;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.voices__card::before {
  content: '“';
  position: absolute;
  top: 0; right: 24px;
  font-family: var(--serif-en);
  font-size: 140px;
  line-height: 1;
  color: var(--bg-3);
  font-style: italic;
  z-index: 0;
}
.voices__card > * { position: relative; z-index: 1; }
.voices__card-stars { color: #D4A76A; font-size: 14px; letter-spacing: 0.2em; }
.voices__body {
  font-family: var(--serif-jp);
  font-size: 15px;
  line-height: 2;
  color: var(--ink);
  margin: 0;
}
.voices__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.voices__initial {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: var(--serif-en);
}
.voices__name { font-family: var(--serif-jp); font-size: 15px; font-weight: 500; }
.voices__area { font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.voices__ctas {
  margin-top: 60px;
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .voices__grid { grid-template-columns: 1fr; gap: 20px; }
  .voices__card { padding: 32px 24px; }
  .voices__header, .voices__rating { text-align: left; }
  .voices__score { justify-content: flex-start; }
}

/* ───────── Staff ───────── */
.staff { background: var(--bg-2); }
.staff__header { margin-bottom: 80px; }
.staff__header .eyebrow { display: block; margin-bottom: 16px; }
.staff__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}
.staff__card { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; align-items: center; }
.staff__img { aspect-ratio: 3/4; }
.staff__body { display: flex; flex-direction: column; gap: 14px; }
.staff__role { font-size: 11px; }
.staff__name { margin: 0; }
.staff__name-en {
  display: block;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: clamp(13px, 1vw, 15px);
  color: var(--ink-3);
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-top: 6px;
}
.staff__quote {
  font-family: var(--serif-jp);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 2;
  margin: 8px 0 0;
  padding-left: 16px;
  border-left: 1px solid var(--ink-3);
}
.staff__cta { margin-top: 60px; text-align: center; }

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

/* ───────── Flow ───────── */
.flow {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.flow::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/communication/uegami_4.png');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  z-index: 0;
}
.flow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(250, 247, 242, 0.78) 0%,
    rgba(250, 247, 242, 0.88) 35%,
    rgba(250, 247, 242, 0.88) 65%,
    rgba(250, 247, 242, 0.78) 100%);
  z-index: 1;
  pointer-events: none;
}
.flow .inner { position: relative; z-index: 2; }
.flow__header { margin-bottom: 60px; }
.flow__header .eyebrow { display: block; margin-bottom: 16px; }
.flow__list { border-top-color: var(--line); }
.flow__row {
  background: transparent;
  padding-left: 0;
  padding-right: 0;
  border-bottom-color: rgba(42, 36, 32, 0.18);
}
.flow__row:hover {
  background: transparent;
  padding-left: 16px;
}

@media (max-width: 900px) {
  .flow::before { background-position: center 30%; }
}
.flow__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.flow__row {
  display: grid;
  grid-template-columns: 120px 1fr 2fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding calc(.4s / var(--anim-speed)) var(--ease),
              background calc(.4s / var(--anim-speed)) var(--ease);
  padding-left: 0;
}
.flow__row:hover { padding-left: 24px; background: var(--bg-2); }
.flow__n {
  font-size: 40px;
  color: var(--ink-3);
  font-weight: 400;
  line-height: 1;
}
.flow__title { margin: 0; }
.flow__desc { margin: 0; color: var(--ink-2); }

@media (max-width: 900px) {
  .flow__row {
    grid-template-columns: auto 1fr;
    gap: 20px 24px;
    padding: 32px 0;
  }
  .flow__row:hover { padding-left: 12px; }
  .flow__n { font-size: 28px; grid-row: 1; }
  .flow__title { grid-row: 1; }
  .flow__desc { grid-column: 1 / -1; margin-top: 4px; }
}

/* ───────── News ───────── */
.news { background: var(--bg-2); }
.news__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.news__header { position: sticky; top: 120px; }
.news__header .eyebrow { display: block; margin-bottom: 16px; }
.news__cta { margin-top: 32px; }
.news__list { display: flex; flex-direction: column; }
.news__item { border-bottom: 1px solid var(--line); }
.news__item:first-child { border-top: 1px solid var(--line); }
.news__link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  padding: 28px 0;
  align-items: center;
  transition: padding calc(.3s / var(--anim-speed)) var(--ease);
}
.news__link:hover { padding-left: 16px; }
.news__meta { display: flex; flex-direction: column; gap: 6px; min-width: 160px; }
.news__date { font-size: 13px; }
.news__cat {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  border: 1px solid var(--line);
  padding: 3px 8px;
  align-self: flex-start;
}
.news__title {
  font-family: var(--serif-jp);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 500;
  line-height: 1.6;
}
.news__arrow { color: var(--ink-3); transition: transform calc(.3s / var(--anim-speed)) var(--ease); }
.news__link:hover .news__arrow { transform: translateX(6px); color: var(--ink); }

@media (max-width: 900px) {
  .news__grid { grid-template-columns: 1fr; gap: 40px; }
  .news__header { position: static; }
  .news__link { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
  .news__link:hover { padding-left: 0; }
  .news__arrow { display: none; }
}

/* ───────── FAQ ───────── */
.faq { background: var(--bg); }
.faq__header { margin-bottom: 60px; text-align: center; }
.faq__header .eyebrow { display: block; margin-bottom: 16px; }
.faq__list {
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  padding: 28px 0;
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  align-items: center;
  font-family: inherit;
  color: var(--ink);
}
.faq__q-mark {
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
  font-style: italic;
}
.faq__q-text {
  font-family: var(--serif-jp);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 500;
}
.faq__toggle {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.faq__toggle span {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: var(--ink);
  transform: translateY(-50%);
  transform-origin: center;
  transition: transform calc(.35s / var(--anim-speed)) var(--ease);
}
.faq__toggle span:nth-child(2) { transform: translateY(-50%) rotate(90deg); }
.faq__item.is-open .faq__toggle span:nth-child(2) { transform: translateY(-50%) rotate(0); }
.faq__a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows calc(.45s / var(--anim-speed)) var(--ease);
}
.faq__item.is-open .faq__a-wrap { grid-template-rows: 1fr; }
.faq__a {
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding-right: 40px;
}
.faq__a p { margin: 0 0 28px; padding-top: 8px; }
.faq__link {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color calc(.3s / var(--anim-speed)) var(--ease);
}
.faq__link:hover { color: var(--ink); }

@media (max-width: 900px) {
  .faq__q { grid-template-columns: auto 1fr auto; gap: 14px; }
  .faq__a { grid-template-columns: auto 1fr; gap: 14px; padding-right: 0; }
}

/* ───────── Contact ───────── */
.contact {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  padding: 140px var(--gutter);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(107, 79, 58, .25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(168, 155, 138, .08) 0%, transparent 50%);
  pointer-events: none;
}
.contact__inner { position: relative; z-index: 1; }
.contact__head {
  font-size: clamp(32px, 5vw, 56px);
  margin: 20px 0 24px;
  font-weight: 400;
  color: var(--bg);
}
.contact__body {
  color: rgba(250,247,242,.8);
  margin-bottom: 60px;
  font-family: var(--serif-jp);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 2.2;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 840px;
  margin: 0 auto;
}
.contact__card {
  padding: 40px 32px;
  border: 1px solid rgba(250,247,242,.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: all calc(.4s / var(--anim-speed)) var(--ease);
  cursor: pointer;
}
.contact__card:hover {
  border-color: var(--bg);
  background: rgba(250,247,242,.04);
  transform: translateY(-4px);
}
.contact__card--primary {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}
.contact__card--primary:hover { background: var(--bg-3); border-color: var(--bg-3); }
.contact__card--primary .eyebrow-num { color: var(--ink-3) !important; }
.contact__big {
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: 0.02em;
  font-weight: 500;
}
.contact__big--jp { font-family: var(--serif-jp); font-size: clamp(22px, 2.6vw, 28px); letter-spacing: 0.08em; }
.contact__sub {
  font-size: 12px;
  color: rgba(250,247,242,.6);
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.contact__hours {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 14px;
  margin-top: 2px;
}
.contact__hours-label {
  font-family: var(--serif-jp);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(250,247,242,.55);
  font-weight: 500;
}
.contact__hours-time {
  font-family: var(--serif-num);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: rgba(250,247,242,.95);
  font-variant-numeric: tabular-nums;
  font-weight: 400;
}
.contact__hours-rest {
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(250,247,242,.7);
  position: relative;
  padding-left: 14px;
  font-weight: 500;
}
.contact__hours-rest::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  height: 11px;
  width: 1px;
  background: rgba(250,247,242,.28);
  transform: translateY(-50%);
}
.contact__card--primary .contact__sub { color: var(--ink-3); }

@media (max-width: 700px) {
  .contact { padding: 100px var(--gutter); }
  .contact__grid { grid-template-columns: 1fr; }
}

/* ───────── Footer ───────── */
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 80px;
}
.footer__logo-jp {
  font-family: var(--serif-jp);
  font-size: 13px;
  color: rgba(250,247,242,.6);
  margin-top: 6px;
  letter-spacing: 0.14em;
}
.footer__addr { margin-top: 28px; font-size: 13px; line-height: 2; }
.footer__col .eyebrow { display: block; color: rgba(250,247,242,.5) !important; margin-bottom: 14px; }
.footer__h {
  font-family: var(--serif-jp);
  font-size: 18px;
  margin: 0 0 20px;
  font-weight: 500;
  color: var(--bg);
}
.footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__nav a {
  font-family: var(--serif-jp);
  font-size: 14px;
  color: rgba(250,247,242,.75);
  transition: color calc(.3s / var(--anim-speed)) var(--ease);
}
.footer__nav a:hover { color: var(--bg); }

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

/* ───────── About badge — Japanese ───────── */
.about__media-eyebrow {
  font-family: var(--serif-jp);
  font-size: 16px;
  letter-spacing: 0.18em;
  color: var(--ink-2);
  font-weight: 600;
}
@media (max-width: 900px) {
  .about__media-eyebrow { font-size: 14px; }
}
.about__media-unit {
  font-family: var(--serif-jp);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin-left: 4px;
  letter-spacing: 0;
}
@media (max-width: 900px) {
  .about__media-unit { font-size: 20px; }
}

/* ───────── Service Area strip ───────── */
.service-area {
  background: var(--bg-2);
  padding: 36px var(--gutter);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.service-area__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service-area__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-shrink: 0;
}
.service-area__eyebrow {
  display: inline-block;
}
.service-area__label {
  font-family: var(--serif-jp);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.12em;
}
.service-area__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.service-area__list li {
  position: relative;
  padding: 4px 18px;
  font-family: var(--serif-jp);
  font-size: 14px;
  color: var(--ink-2);
  letter-spacing: 0.08em;
  line-height: 1.5;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.service-area__list li + li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}
.service-area__pref {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-4);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .service-area { padding: 28px var(--gutter); }
  .service-area__inner { gap: 24px; justify-content: flex-start; }
  .service-area__head { width: 100%; }
  .service-area__list { gap: 0; }
  .service-area__list li { padding: 4px 14px; font-size: 13px; }
}

@media (max-width: 600px) {
  .service-area__list li { padding: 4px 10px; font-size: 12px; gap: 6px; }
  .service-area__pref { font-size: 10px; }
}

/* ───────── Voices header (no rating, just title) ───────── */
.voices__header--solo {
  display: block;
  margin-bottom: 48px;
}
.voices__title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
}
.voices__title-sub {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--ink-3);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ───────── Voices — Google review card ───────── */
.voices__google-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  max-width: 920px;
  margin: 0 auto 72px;
  padding: 32px 36px;
  background: var(--bg);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  transition: border-color calc(.4s / var(--anim-speed)) var(--ease),
              transform calc(.4s / var(--anim-speed)) var(--ease),
              box-shadow calc(.4s / var(--anim-speed)) var(--ease);
}
.voices__google-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(42, 36, 32, 0.08);
}
.voices__google-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right,
    #4285F4 0%, #4285F4 25%,
    #EA4335 25%, #EA4335 50%,
    #FBBC05 50%, #FBBC05 75%,
    #34A853 75%, #34A853 100%);
}
.voices__google-id {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.voices__google-id-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.voices__google-name {
  font-family: var(--sans-jp);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.voices__google-sub {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  margin-top: 3px;
  text-transform: uppercase;
}
.voices__google-divider {
  width: 1px;
  height: 48px;
  background: var(--line);
  display: block;
  flex-shrink: 0;
}
.voices__google-rating {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 0;
}
.voices__google-score {
  font-family: var(--serif-num);
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.voices__google-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.voices__google-stars {
  color: #D4A76A;
  font-size: 16px;
  letter-spacing: 0.18em;
  line-height: 1;
}
.voices__google-note {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}
.voices__google-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--accent);
  flex-shrink: 0;
}
.voices__google-cta .arrow {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width calc(.3s / var(--anim-speed)) var(--ease);
}
.voices__google-cta .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.voices__google-card:hover .voices__google-cta .arrow { width: 26px; }

@media (max-width: 900px) {
  .voices__google-card {
    padding: 26px 24px;
    gap: 18px;
  }
  .voices__google-divider { display: none; }
}
@media (max-width: 600px) {
  .voices__google-card { gap: 14px; padding: 24px 20px; }
  .voices__google-rating { gap: 14px; }
  .voices__google-cta { font-size: 12px; width: 100%; justify-content: flex-end; padding-top: 6px; border-top: 1px solid var(--line-2); }
}

/* ───────── Voices card — Google G mark + bold highlights ───────── */
.voices__card-mark {
  position: absolute;
  top: 20px;
  left: 28px;
  z-index: 1;
}
.voices__card { padding-top: 60px; }
.voices__body strong {
  color: var(--ink);
  font-weight: 600;
  background-image: linear-gradient(to bottom, transparent 65%, rgba(212, 167, 106, 0.32) 65%);
  padding: 0 1px;
}

@media (max-width: 900px) {
  .voices__card-mark { top: 18px; left: 24px; }
  .voices__card { padding-top: 52px; }
}

/* ───────── News — split layout (お知らせ / ブログ) ───────── */
.news__top {
  margin-bottom: 56px;
}
.news__top .eyebrow {
  display: block;
  margin-bottom: 16px;
}
.news__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.news__split::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
  transform: translateX(-50%);
}
@media (max-width: 900px) {
  .news__split::before { display: none; }
}
.news__col-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.news__col-titleblock {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.news__col-en {
  display: inline-block;
}
.news__col-title {
  margin: 0;
  font-family: var(--serif-jp);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
.news__col-cta {
  flex-shrink: 0;
  font-size: 12px;
}

/* Adjust news__link spacing for narrower split columns */
.news__split .news__meta { min-width: 100px; }
.news__split .news__link { gap: 28px; }

@media (max-width: 900px) {
  .news__split { grid-template-columns: 1fr; gap: 48px; }
  .news__split .news__link { gap: 12px; }
}

/* ───────── Company / 会社概要 ───────── */
.company { background: var(--bg-2); }
.company__grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: start;
}
.company__aside {
  position: sticky;
  top: 120px;
}
.company__aside .eyebrow {
  display: block;
}
.company__head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 48px;
}
.company__head-sub {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: clamp(14px, 1.2vw, 18px);
  color: var(--ink-3);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.company__profile {
  margin: 0;
  border-top: 1px solid var(--line);
}
.company__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.company__label {
  font-family: var(--serif-jp);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin: 0;
  font-weight: 500;
}
.company__value {
  font-family: var(--serif-jp);
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink);
  margin: 0;
}
.company__value-line { display: block; }
.company__value-sub {
  display: inline-block;
  font-size: 12px;
  color: var(--ink-3);
  margin-left: 4px;
  letter-spacing: 0.04em;
}
.company__value-line.company__value-sub {
  display: block;
  margin-left: 0;
  margin-top: 4px;
}
.company__access {
  margin-top: 56px;
}
.company__access-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.company__access-titleblock {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.company__access-en {
  display: inline-block;
}
.company__access-title {
  margin: 0;
  font-family: var(--serif-jp);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  color: var(--ink);
}
.company__access-cta { font-size: 12px; }
.company__map {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
}
.company__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .company__grid { grid-template-columns: 1fr; gap: 32px; }
  .company__aside { position: static; }
  .company__row { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .company__access { margin-top: 40px; }
}
