/* =========================================================
   B-b「洗練・上質（Editorial）」
   b-light.css の上にさらに重ねる（エディトリアル構成）。
   ========================================================= */

/* ヒーロー：写真ありの2カラム */
.hero-editorial { padding-block: clamp(3rem, 7vw, 5.5rem); }
.hero-editorial .wrap { max-width: var(--maxw); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-copy h1 { font-size: clamp(1.9rem, 4.6vw, 3.1rem); }
.hero-figure { position: relative; }
.hero-figure img {
  width: 100%; display: block; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: calc(var(--radius) * 2); box-shadow: var(--shadow);
}
.hero-figure::after {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border: 1px solid var(--accent); border-radius: calc(var(--radius) * 2); z-index: -1;
}
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; }
  .hero-figure::after { inset: 12px -12px -12px 12px; }
}

/* ステータス帯（事業の前に挟む深緑バンド） */
.statband { background: var(--accent); color: #fff; padding: clamp(2.2rem, 5vw, 3.2rem) 0; }
.statband .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.statband .stat strong { display: block; font-family: var(--font-head); font-weight: var(--head-weight); font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.2; }
.statband .stat span { font-size: .8rem; opacity: .85; letter-spacing: .06em; }
@media (max-width: 640px) { .statband .wrap { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; } }

/* セクション見出し：左寄せのナンバリング見出しに */
.business .section-title,
.contact .section-title { text-align: center; }
