
/* =========================
   CTA本体
   ========================= */
.reform-cta {
  position: relative;
  background: url('https://www.houkikougei.com/jr/wp-content/uploads/2026/05/cta_back_0813_001.jpg') center / cover no-repeat;
  padding: 6%;
  margin: 40px auto;
  width: 100%;
  max-width: 1000px;
  box-sizing: border-box;
}

.reform-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(143, 158, 191, 0.7);
}

.reform-cta > * {
  position: relative;
  z-index: 1;
}


/* =========================
   レイアウト
   ========================= */
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  align-items: center;
}

.cta-left {}

.cta-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}


/* =========================
   タイトル・本文
   ========================= */
.cta-title {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: #fff !important;
}

.cta-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #7f152e;
  margin: 6px auto 0;
}

.cta-text {
  margin: 0;
  line-height: 1.9;
  text-align: center;
  color: #fff;
}


/* =========================
   ボタン共通（重要）
   ========================= */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  text-decoration: none;
  transition: 0.2s;
}


/* =========================
   メインボタン（main付き）
   ========================= */
.cta-btn.main {
  min-width: 250px;
  padding: 20px 32px;
  font-size: 18px;
  color: #fff !important;
  background: linear-gradient(135deg, #f25464, #ab1717);
  border-radius: 6px;
  box-shadow: 0 0.5px 1px rgba(0,0,0,0.2);
}

.cta-btn.main:hover {
  filter: brightness(1.1);
}


/* =========================
   サブボタン（通常cta-btn）
   ========================= */
.cta-btn:not(.main) {
  border: 1px solid #8f9ebf;
  color: #8f9ebf !important;
  background: #fff;
}

.cta-btn:not(.main):hover {
  background: #8f9ebf;
  color: #fff !important;
}


/* =========================
   SP
   ========================= */
@media (max-width: 768px) {

  .reform-cta {
    padding: 40px 20px;
    background: url('https://www.houkikougei.com/jr/wp-content/uploads/2025/08/202508_kv_sp_4.jpg') center / cover no-repeat;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}