/* ==================================================
   SECTION CTA – FINAL
   - 中央配置
   - 形と色を分離
   - SPでは主張しすぎない
================================================== */

.section-cta {
  text-align: center;
}

/* ===============================
   BUTTON GROUP
=============================== */

.section-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
}

/* ===============================
   CTA BUTTON BASE
   （形・サイズ・挙動）
=============================== */

.section-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 40px;
  padding: 0 32px;
  min-width: 120px;

  box-sizing: border-box;

  border-radius: 0;          /* ← 丸めない */
  font-size: 16px;           /* ← 少し抑える */
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;

  transition: opacity 0.2s ease;
}

.section-cta__btn:hover {
  opacity: 0.85;
}

/* ===============================
   COLOR VARIANTS
=============================== */

/* solid */
.section-cta__btn.is-solid {
  background: #000;
  color: #fff;
  border: none;
}

/* outline */
.section-cta__btn.is-outline {
  background: transparent;
  color: #000;
  border: 1px solid #000;
}

/* ===============================
   RESPONSIVE（SP）
=============================== */

@media (max-width: 768px) {

  .section-cta__buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center; /* ← 中央寄せ */
  }

  .section-cta__btn {
    width: auto;        /* ← 100%をやめる */
    min-width: 160px;   /* ← 最低限の押しやすさ */
    height: 36px;
    padding: 0 20px;
    font-size: 14px;
  }
}
