/* CTA Section - お問い合わせ・資料請求 */
#cta-section {
  background-image: url("../images/backgrounds/grad_req.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 40px 0 80px 0;
  position: relative;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.cta-title {
  font-family: "Inter-SemiBold", Helvetica;
  font-weight: 600;
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.cta-content {
  display: flex;
  justify-content: center;
  width: 100%;
}

.cta-buttons-wrapper {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 60px 120px;
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-button {
  display: inline-block;
  padding: 20px 80px;
  border-radius: 50px;
  font-family: "Inter-SemiBold", Helvetica;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 380px;
}

.contact-btn {
  background-color: #192f60;
  color: #ffffff;
}

.contact-btn:hover {
  background-color: #1a3465;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(25, 47, 96, 0.3);
}

.request-btn {
  background-color: #FBB03B;
  color: #ffffff;
}

.request-btn:hover {
  background-color: #ffa94d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 184, 92, 0.3);
}

.cta-description {
  font-family: "Inter-Regular", Helvetica;
  font-weight: 400;
  font-size: 18px;
  color: #192f60;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* Responsive design for CTA Section */
@media (max-width: 1024px) {
  .cta-buttons-wrapper {
    padding: 50px 60px;
    gap: 60px;
  }

  .cta-button {
    min-width: 180px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .cta-container {
    padding: 0 12px;
  }

  .cta-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .cta-content {
    width: 100%;
  }

  .cta-buttons-wrapper {
    padding: 40px 12px;
    gap: 40px;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0;
  }

  .cta-button-group {
    width: 100%;
    align-items: center;
  }

  .cta-button {
    min-width: 90%;
    width: 90%;
    font-size: 16px;
  }

  .cta-description {
    font-size: 13px;
    width: 90%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  #cta-section {
    padding: 20px 0 60px 0;
  }

  .cta-container {
    padding: 0 8px;
  }

  .cta-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .cta-content {
    width: 100%;
  }

  .cta-buttons-wrapper {
    padding: 30px 8px;
    gap: 30px;
    width: 100%;
    margin: 0;
  }

  .cta-button-group {
    width: 100%;
    align-items: center;
  }

  .cta-button {
    min-width: 95%;
    width: 95%;
    padding: 15px 16px;
    font-size: 14px;
  }

  .cta-description {
    font-size: 12px;
    width: 95%;
    text-align: center;
  }
}
