/*
|---------------------------------------------------------------
| qinc2026-top-cta.css - トップページCTA（カード形式）
|---------------------------------------------------------------
*/

/* ==========================================================================
   Top CTA Section
   ========================================================================== */
.top-cta {
  position: relative;
  background-color: #1e2c63;
  padding: 128px 0 150px;
  overflow: hidden;
}

.top-cta__bg {
  position: absolute;
  top: 62px;
  left: 50%;
  transform: translateX(-50%);
  width: 1250px;
  height: 651px;
  opacity: 0.1;
  pointer-events: none;
}

.top-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.top-cta__title {
  font-weight: 900;
  font-size: 60px;
  line-height: 1.5;
  color: var(--color-white);
  margin: 0 0 32px;
}

.top-cta__lead {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-white);
  margin: 0 0 80px;
}

/* Card */
.top-cta__card {
  background-color: var(--color-white);
  border-radius: 24px;
  padding: 40px;
  max-width: 512px;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--color-blue01);
  transition: transform 0.5s ease;
}

.top-cta__card:hover {
  transform: scale(1.05);
}

.top-cta__card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.top-cta__card-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.33;
  margin: 0;
}

.top-cta__card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  background-color: #dbeafe;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.33;
}

.top-cta__card-list {
  background-color: #eff6ff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.top-cta__card-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-cta__card-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.top-cta__card-item__icon svg,
.top-cta__card-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top-cta__card-item__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
}

/* Card Button */
.top-cta__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  margin-top: 8px;
  background-color: var(--color-blue01);
  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: 700;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-white);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.top-cta__card-btn:hover {
  opacity: 0.85;
  color: var(--color-white);
  text-decoration: none;
}

.top-cta__card-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.top-cta__card-btn__icon svg,
.top-cta__card-btn__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

  .top-cta__title {
    font-size: 42px;
  }

  .top-cta__lead {
    font-size: 18px;
    margin-bottom: 60px;
  }
}

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

  .top-cta__bg {
    display: none;
  }

  .top-cta__title {
    font-size: 28px;
  }

  .top-cta__lead {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .top-cta__card {
    padding: 24px;
    border-radius: 16px;
  }

  .top-cta__card-title {
    font-size: 20px;
  }

  .top-cta__card-list {
    padding: 16px;
  }

  .top-cta__card-item__text {
    font-size: 14px;
  }

  .top-cta__card-btn {
    font-size: 16px;
    padding: 14px 24px;
  }
}

@media screen and (max-width: 480px) {
  .top-cta__title br,
  .top-cta__lead br {
    display: none;
  }
}
