/*
|---------------------------------------------------------------
| qinc2026-section-cta.css - 汎用CTAセクション
|---------------------------------------------------------------
*/

/* ==========================================================================
   Section CTA
   ========================================================================== */
.section-cta {
  position: relative;
  background-color: #053271;
  padding: 153px 0 150px;
  overflow: hidden;
}

.section-cta__bg {
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1024px;
  pointer-events: none;
}

.section-cta__bg img {
  width: 100%;
  height: auto;
}

.section-cta__inner.container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-cta__title {
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  color: var(--color-white);
  margin: 0 0 32px;
}

.section-cta__lead {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-blue-light);
  margin: 0 0 64px;
}

.section-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 402px;
  height: 68px;
  padding: 0 32px;
  background-color: var(--color-gold);
  border: none;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-white);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.section-cta__btn:hover {
  opacity: 0.85;
  color: var(--color-white);
}

.section-cta__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.section-cta__btn-icon svg,
.section-cta__btn-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==========================================================================
   Responsive - Section CTA
   ========================================================================== */
@media screen and (max-width: 1024px) {
  .section-cta {
    padding: 100px 0;
  }

  .section-cta__title {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .section-cta__lead {
    font-size: 18px;
    margin-bottom: 48px;
  }

  .section-cta__btn {
    min-width: 320px;
    height: 60px;
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .section-cta {
    padding: 80px 0;
  }

  .section-cta__bg {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .section-cta__title {
    font-size: 28px;
    line-height: 1.333;
    margin-bottom: 24px;
  }

  .section-cta__lead {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
  }

  .section-cta__btn {
    min-width: auto;
    width: 100%;
    max-width: 320px;
    height: 56px;
    font-size: 16px;
    padding: 0 24px;
  }
}
