/* ========== 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;
  }
}