/* ヒーロー全体を相対配置にしてカードを右下固定 */
.hero {
  position: relative;
}

/* 右下カード */
.hero-info {
  position: absolute;
  right: 0;
  bottom: 12px;
  z-index: 2;
  width: min(360px, 38vw);
  background: #fff;
  border: 1px solid #e9eef1;
  padding: 16px 18px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
}

/* 定義リストの体裁 */
.hero-info__list {
  margin: 0;
}

.hero-info__list>div {
  display: grid;
  grid-template-columns: 7.5em 1fr;
  gap: 8px 12px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed #edf1f4;
}

.hero-info__list>div:last-child {
  border-bottom: 0;
}

.hero-info__list dt {
  color: #6b7680;
  font-size: 13px;
  letter-spacing: .02em;
}

.hero-info__list dd {
  margin: 0;
  color: #111;
  font-size: 14px;
}

/* TELを目立たせる（テーマカラーに合わせて調整） */
.hero-info__tel {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  color: #0250a0;
}

.hero-info__tel:hover {
  border-color: currentColor;
}

/* 任意：ミニバナー */
.hero-info__banner {
  display: block;
  margin-top: 12px;
  border-radius: 8px;
  overflow: hidden;
}

.hero-info__banner img {
  display: block;
  width: 100%;
  height: auto;
}

/* スマホ時はヒーローの下に通常配置 */
@media (max-width: 768px) {
  .hero-info {
    position: static;
    width: 100%;
    margin: 12px auto 0;
    border-radius: 10px;
  }

  .hero-info__list>div {
    grid-template-columns: 6.5em 1fr;
  }
}

.top-latest {
  background-color: #fff;
  /* 背景は白 */
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  /* コンテンツを中央寄せ */
  justify-content: center;
  /* 横方向中央 */
}

.top-latest__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  text-decoration: none;
  max-width: 1320px;
  /* 中央の内容幅を制限 */
  width: 100%;
}

.top-latest__badge {
  font-size: 10px;
  letter-spacing: .08em;
  padding: 2px 8px;
  border: 2px solid #0250a0;
  border-radius: 999px;
  color: #0250a0;
}

.top-latest__date {
  color: #7a7a7a;
  font-feature-settings: "tnum" 1;
  /* 等幅数字 */
  font-size: 12px;
}

.top-latest__title {
  color: #222;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

@media (max-width: 640px) {
  .top-latest__item {
    gap: 10px;
    padding: 10px 12px;
  }

  .top-latest__title {
    font-size: 12px;
  }
}

/* スマホでは hero-info を非表示にする */
@media (max-width: 768px) {
  .hero-info {
    display: none !important;
  }
}
/* ===== ABOUT slice ===== */
.about-slice {
  padding: clamp(32px, 6vw, 72px) 0;
  background: #fff;
}

.about-slice__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  /* 画像:テキスト ≒ 6:4 */
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
}

.about-slice__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  /* お好みで 4/3 や 3/2 に */
  display: block;
  border-radius: 8px;
}


/* 右側テキストを縦書きレイアウトに */
.about-slice__text {
  position: relative;
  /* writing-mode: vertical-rl;  ← 消す */
  height: clamp(520px, 62vh, 760px);
  display: grid;
  grid-template-columns: 1fr auto;
  /* 左=desc, 右=title の2カラム */
  column-gap: 28px;
  align-items: start;
  padding-right: 36px;
  /* 右端の「ABOUT US」柱用 */
}

.about-slice__eyebrow {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #0250a0;
  font-weight: 700;
}

.about-slice__eyebrow::before {
  content: "";
  display: block;
  width: 1px;
  /* 線の太さ */
  height: 56px;
  /* 線の長さ */
  background: #0250a0;
  border-radius: 2px;
}

/* ← 文字部分だけ横向きにする */
.about-slice__eyebrow span {
  transform: rotate(90deg);
  display: inline-block;
  padding-left: 5rem;
}

/* ▼ SPでは通常の横書き＋横線に戻す */
@media (max-width: 1024px) {
  .about-slice__eyebrow {
    position: static;
    flex-direction: row;
    gap: 8px;
  }

  .about-slice__eyebrow::before {
    width: 56px;
    height: 1px;
  }

  .about-slice__eyebrow span {
    transform: none;
  }
}


/* タイトル列（右端） */
.about-slice__title {
  grid-column: 2;
  grid-row: 1;
  /* 右カラム */
  margin: 0;
  padding-right: 60px;
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.65;
  letter-spacing: 0;

}

.about-slice__desc {
  grid-column: 1;
  grid-row: 1;
  /* ← 説明も1行目に固定 */
  align-self: start;
  /* 左カラム */
  margin: 0;
  white-space: normal;
  line-height: 2;
  color: #333;
  font-size: 16px;
  max-inline-size: 22em;
  /* 行の長さを制御（読みやすさ） */
  text-indent: 0;
}


.about-slice__title,
.about-slice__desc {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* 数字を縦中横に（必要に応じて） */
.about-slice__desc time,
.about-slice__desc .tcy,
.about-slice__title .tcy {
  text-combine-upright: all;
}


/* ====== Responsive ====== */
@media (max-width: 1024px) {
  .about-slice__inner {
    grid-template-columns: 1fr;
  }

  .about-slice__text {
    display: block;
    height: auto;
    padding-right: 0;
  }

  .about-slice__title,
  .about-slice__desc {
    writing-mode: horizontal-tb;
  }

  .about-slice__title {
    border-inline-start: none;
    padding-inline-start: 0;
  }
}
.lb-about {
  --lb-accent: #0250a0;
  --lb-ink: #222;
  --lb-text: #555;
  --lb-shadow: 0 6px 24px rgba(0, 0, 0, .06);
  background: #faf7f2;
  padding: clamp(32px, 5vw, 72px) 0;
}

/* linear-gradient(#1071ae, #0250a0) */
.lb-about__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ================= ヘッダー帯 ================= */
.lb-about__head {
  position: relative;
  padding: clamp(18px, 3vw, 28px) clamp(16px, 3vw, 24px) clamp(22px, 4vw, 36px);
}

.lb-about__bar {
  display: flex;
  justify-content: space-between;
  /* ← 両端揃え */
  align-items: center;
  width: 100%;
  margin-bottom: clamp(20px, 4vw, 36px);
}

/* 左側 LEASEBACK */
.lb-about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lb-accent);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .12em;
}

.lb-about__eyebrow::before {
  content: "";
  width: 56px;
  height: 2px;
  background: var(--lb-accent);
  border-radius: 2px;
}

/* タイトル・リード文 */
.lb-about__title {
  color: var(--lb-ink);
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.7;
  margin: 0 0 10px;
  font-weight: 800;
}

.lb-about__lead {
  color: var(--lb-text);
  margin: 0;
  line-height: 1.9;
}

/* 右上のリンクバッジ（丸がかぶる演出） */
.lb-about__cta {
  position: relative;
  display: inline-block;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px;
  color: var(--lb-accent);
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: underline;
  z-index: 0;
  margin: 0;
  font-size: 20px;
}

.lb-about__cta::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
  height: 72px;
  background: #9dcfff68;
  border-radius: 50%;
  z-index: -1;
}

/* ================= カードグリッド ================= */
.lb-about__grid {
  margin-top: clamp(20px, 4vw, 36px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2.6vw, 24px);
}

.lb-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--lb-shadow);
  padding: 18px 18px 12px;
  display: grid;
  grid-template-rows: auto auto 1fr;
}

.lb-card__title {
  margin: 0 0 6px;
  color: var(--lb-ink);
  font-size: clamp(16px, 1.1vw, 16px);
  font-weight: 800;
  letter-spacing: .02em;
}

.lb-card__text {
  margin: 0 0 10px;
  color: var(--lb-text);
  font-size: 14px;
  line-height: 1.7;
}

.lb-card__img {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
}

.lb-card__img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.lb-card:hover .lb-card__img img {
  transform: scale(1.04);
}

/* ===== レスポンシブ調整 ===== */
@media (max-width: 768px) {
  .lb-about__bar {
    align-items: center;
    gap: 10px;
  }

  .lb-about__eyebrow {
    font-size: 12px;
  }

  .lb-about__eyebrow::before {
    width: 40px;
  }

  .lb-about__cta {
    background: none;
    padding: 0;
    font-size: 12px;
  }

  .lb-about__lead {
    font-size: 12px;
  }

  .lb-card__text {
    font-size: 12px;
  }
}

/* ================= レスポンシブ ================= */
@media (max-width: 1100px) {
  .lb-about__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .lb-about__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lb-about__cta {
    position: static;
  }
}

@media (max-width: 520px) {
  .lb-about__grid {
    grid-template-columns: 1fr;
  }

  .lb-card__img img {
    height: 48vw;
  }
}
/* ========== REASON セクション ========== */
.lb-reason {
  /* ページ地の色に合わせて（必要なら調整） */
  padding: clamp(32px, 5vw, 72px) 0;
}

.lb-reason__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

/* 上部バー（左：EYE、右：CTA） */
.lb-reason__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(18px, 3.6vw, 32px);
}

.lb-reason__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0250a0;
  /* アクセント */
  font-weight: 700;
  letter-spacing: .12em;
  font-size: 20px;
}

.lb-reason__eyebrow::before {
  content: "";
  width: 56px;
  height: 2px;
  background: #0250a0;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .lb-reason__eyebrow {
    font-size: 12px;
  }
}

/* CTA：背景なしで右円だけ重ねる */
.lb-reason__cta {
  position: relative;
  display: inline-block;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px;
  color: #0250a0;
  font-weight: 700;
  text-decoration: underline;
  z-index: 0;
  margin: 0;
  font-size: 20px;
}

@media (max-width: 768px) {
  .lb-reason__cta {
    font-size: 12px;
    padding: 8px 38px 8px 0;
  }
}

.lb-reason__cta::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
  height: 72px;
  background: #9dcfff68;
  /* 右の円だけ */
  border-radius: 50%;
  z-index: -1;
}

/* タイトル・リード */
.lb-reason__title {
  margin: 0 0 8px;
  text-align: left;
  color: #222;
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .lb-reason__title {
    font-size: 18px;
  }
}

.lb-reason__lead {
  margin: 0 0 clamp(18px, 3.8vw, 32px);
  color: #555;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .lb-reason__lead {
    font-size: 12px;
  }
}

/* ===== カードグリッド ===== */
.lb-reason__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2.6vw, 24px);
}

/* カード */
.lb-r-card {
  display: block;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}

.lb-r-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
}

/* 画像（固定比率） */
.lb-r-card__media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  /* 必要に応じて 3/2 などへ */
  overflow: hidden;
}

.lb-r-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.lb-r-card:hover .lb-r-card__media img {
  transform: scale(1.04);
}

/* 画像下部を少し暗く（帯の可読性UP） */
.lb-r-card__media::after {
  background: linear-gradient(to top,
      rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, 0) 60%);
}

/* 横いっぱいの青帯（ポイントラベル） */
.lb-r-card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38px;
  /* ← 高さ固定（お好みで調整：60〜70pxが自然） */
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  background: #0250a0;
  color: #fff;
  font-weight: 600;
}

/* 左側の「POINT 01」 */
.lb-r-card__point {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  min-width: 70px;
  /* ← 幅固定でPOINT番号が揃う */
  text-align: left;
}

/* 右側の見出し（2行OK） */
.lb-r-card__caption {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: .02em;
  margin: 0;
}

/* ===== Responsive ===== */
@media (max-width:1100px) {
  .lb-reason__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:820px) {
  .lb-reason__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lb-reason__bar {
    gap: 10px;
  }
}

@media (max-width:520px) {
  .lb-reason__grid {
    grid-template-columns: 1fr;
  }
}
/* ===== tokens (section-local) ===== */
.lb-col {
  --lbcl-accent: #0250a0;
  --lbcl-ink: #222;
  --lbcl-text: #555;
  --lbcl-muted: #f6f3ed;
  --lbcl-surface: #fff;
  --lbcl-shadow: 0 8px 28px rgba(0, 0, 0, .08);
  --lbcl-cta-circle: #1071ae73;
}

/* ===== section ===== */
.lb-col {
  background: #fbf7f1;
  padding: clamp(32px, 5vw, 72px) 0;
}

.lb-col__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

/* top bar */
.lb-col__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(14px, 3.2vw, 28px);
}

.lb-col__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lbcl-accent);
  font-weight: 800;
  letter-spacing: .14em;
  font-size: 20px;
}

.lb-col__eyebrow::before {
  content: "";
  width: 56px;
  height: 2px;
  background: #0250a0;
  border-radius: 2px;
}

/* CTA（右側の円のみ） */
.lb-col__cta {
  position: relative;
  display: inline-block;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px;
  color: #0250a0;
  font-weight: 700;
  text-decoration: underline;
  z-index: 0;
  margin: 0;
  font-size: 20px;
}

.lb-col__cta::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
  height: 72px;
  background: #9dcfff68;
  border-radius: 50%;
  z-index: -1;
}

@media (max-width: 768px) {
  .lb-col__cta {
    font-size: 12px;
    padding: 8px 38px 8px 0;
  }
}

/* heading */
.lb-col__title {
  margin: 0 0 6px;
  color: var(--lbcl-ink);
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .lb-col__title {
    font-size: 18px;
  }
}


.lb-col__lead {
  margin: 0 0 clamp(18px, 3.6vw, 28px);
  color: var(--lbcl-text);
  line-height: 1.9;
}

@media (max-width: 768px) {
  .lb-col__lead {
    font-size: 12px;
  }
}


/* grid */
.lb-col__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2.6vw, 24px);
}

.lb-col-card {
  background: var(--lbcl-surface);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--lbcl-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.lb-col-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .1);
}

.lb-col-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.lb-col-card__media {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.lb-col-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* ← contain に変更 */
  background-color: #fff;
  /* 背景白（余白が目立たないように） */
  display: block;
  transition: transform .5s ease;
}


.lb-col-card:hover .lb-col-card__media img {
  transform: scale(1.04);
}

.lb-col-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px 0;
  color: #6b7280;
  /* muted */
  font-size: 12px;
}

.lb-col-card__category {
  color: var(--lbcl-accent);
  font-weight: 700;
  font-size: 12px;
}

.lb-col-card__sep {
  opacity: .6;
}

.lb-col-card__title {
  margin: 4px 14px 6px;
  font-weight: 800;
  color: var(--lbcl-ink);
  line-height: 1.6;
  font-size: clamp(15px, 1.2vw, 16px);
}

@media (max-width: 768px) {
  .lb-col__title {
    font-size: 16px;
  }
}

.lb-col-card__excerpt {
  margin: 0 14px 14px;
  color: var(--lbcl-text);
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .lb-col-card__excerpt {
    font-size: 12px;
  }
}


.lb-col__empty {
  color: var(--lbcl-text);
}

/* responsive */
@media (max-width: 1100px) {
  .lb-col__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .lb-col__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .lb-col__grid {
    grid-template-columns: 1fr;
  }
}
/* ================== News section ================== */
.lb-news {
  --news-accent: #0250a0;
  --news-ink: #222;
  --news-text: #444;
  --news-line: #e9ecef;
  --news-pill-bg: #9dcfff68;
  --news-pill-text: #0250a0;
  --news-important-bg: #fff3cd;
  --news-important-text: #8a6d3b;
  background: linear-gradient(180deg, #faf9f6 0, #fff 24px) padding-box;
  padding: clamp(28px, 5vw, 64px) 0 72px;
  /* ← 下方向を少し多めに */
  position: relative;
  overflow: visible;
}


.lb-news__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

.lb-news__link {
  display: grid;
  grid-template-columns: auto 120px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  /* ← 均等でスッキリ */
  text-decoration: none;
  color: inherit;
}


.lb-news__head {
  padding-top: 4px;
  margin-bottom: 18px;
}

.lb-news__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(20px, 4vw, 36px);
}

.lb-news__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--news-accent);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .12em;
}

.lb-news__eyebrow::before {
  content: "";
  width: 56px;
  height: 2px;
  background: var(--news-accent);
  border-radius: 2px;
}

.lb-news__title {
  margin: .2rem 0 18px;
  font-weight: 800;
  color: var(--news-ink);
  font-size: clamp(22px, 2.2vw, 28px);
}

/* list */
.lb-news__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--news-line);
}

.lb-news__item {
  border-bottom: 1px solid var(--news-line);
}

.lb-news__link {
  display: grid;
  grid-template-columns: auto 120px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  text-decoration: none;
  color: inherit;
}

.lb-news__cat {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 9999px;
  background: var(--news-pill-bg);
  color: var(--news-pill-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .lb-news__cat {
    display: inline-block;
    width: auto !important;
    /* 横いっぱい禁止 */
    max-width: max-content;
    /* 内容の幅に縮める */
  }

  .lb-news__eyebrow {
    font-size: 12px;
  }
}

.lb-news__item.is-important .lb-news__cat {
  background: var(--news-important-bg);
  color: var(--news-important-text);
}

.lb-news__date {
  color: #96a09d;
  font-size: 14px;
  white-space: nowrap;
}

.lb-news__ttl {
  color: var(--news-ink);
  line-height: 1.8;
}

.lb-news__link:hover .lb-news__ttl {
  text-decoration: underline;
}

.lb-news__empty {
  color: var(--news-text);
  margin: 12px 0;
}

/* ================== News CTA 修正 ================== */
/* CTAセクション */
/* 親に十分な余白 + スタッキングコンテキスト */
.lb-news__more {
  padding-bottom: 24px;
}

/* CTA を最前面に＆クリック可能に */
.lb-news__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-weight: 700;
  color: var(--news-accent);
  text-decoration: underline;
  z-index: 0;
  font-size: 20px;
}

/* 丸背景 */
.lb-news__cta::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: #9dcfff68;
  z-index: -1;
  pointer-events: none;
}

/* responsive */
@media (max-width:640px) {
  .lb-news__link {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .lb-news__date {
    order: 3;
  }
}
/* ================= CTA セクション ================= */
.lb-contact {
  background: #faf7f2;
  padding: clamp(32px, 5vw, 72px) 0 clamp(56px, 6vw, 96px);
}

.lb-contact__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  row-gap: clamp(24px, 4vw, 32px);
}

.lb-contact__banner {
  margin: 0 auto;
}

/* ================= CTAヘッダー帯 ================= */

.lb-contact__head {
  position: relative;
  padding: clamp(18px, 3vw, 28px) clamp(16px, 3vw, 24px) 0;
}

.lb-contact__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* 左の EYE */
.lb-contact__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0250a0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .12em;
}

.lb-contact__eyebrow::before {
  content: "";
  width: 56px;
  height: 2px;
  background: #0250a0;
  border-radius: 2px;
}

/* 右のリンク CTA */
.lb-contact__cta {
  position: relative;
  display: inline-block;
  padding: 8px 18px;
  font-weight: 700;
  color: #0250a0;
  text-decoration: underline;
  letter-spacing: .12em;
  z-index: 0;
  font-size: 20px;
}

.lb-contact__cta::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
  height: 72px;
  background: #9dcfff68;
  border-radius: 50%;
  z-index: -1;
}

/* スマホ調整 */
@media (max-width: 768px) {

  .lb-contact__eyebrow::before {
    width: 40px;
  }

  .lb-contact__cta {
    padding: 6px 12px;
    font-size: 12px;
  }
}