#cta {
  background: #ffffff;
  padding: 80px 0;
  color: #333333;
}

#cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 60px;
}

#cta-content {
  flex: 1;
}

#cta-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.3;
  color: #34915a;
  text-align: left;
}

#cta-description {
  margin-bottom: 40px;
  text-align: left;
}

#cta-description p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #666666;
}

#cta-image {
  flex: 0 0 450px;
}

#cta-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* CTAセクション専用のボタンスタイル */
#cta .orange-btn {
  font-size: 18px;
  padding: 0 30px;
  box-shadow: 0 8px 20px rgba(243, 181, 65, 0.3);
}

#cta .orange-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 12px 25px rgba(243, 181, 65, 0.4);
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
  #cta-container {
    flex-direction: column;
    gap: 40px;
  }
  
  #cta-content {
    order: 1;
  }
  
  #cta-title {
    font-size: 36px;
    text-align: left;
  }
  
  #cta-description {
    text-align: left;
    margin-bottom: 0;
  }
  
  #cta-image {
    flex: none;
    max-width: 500px;
    order: 2;
    margin: 0 auto;
  }
  
  #cta .orange-btn {
    order: 3;
    margin: 40px auto 0;
    display: block;
    width: fit-content;
  }
}

@media (max-width: 768px) {
  #cta {
    padding: 60px 0;
  }
  
  #cta-container {
    padding: 0 20px;
  }
  
  #cta-image {
    max-width: 400px;
    margin: 0 auto;
  }
  
  #cta-title {
    font-size: 24px;
    text-align: left;
  }
  
  .cta-title-break::before {
    content: "\A";
    white-space: pre;
  }
  
  #cta-description {
    text-align: left;
  }
  
  #cta-description p {
    font-size: 16px;
  }
}