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