.cta-box.bordered-gradient {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* 左寄せに調整 */
  padding: 48px 48px 40px 48px;
  max-width: 1140px;
  margin: 50px auto;
  gap: 32px;
  border-radius: 16px;
  border: 2px solid transparent;
  background-image: linear-gradient(#ffffff, #ffffff),
                    linear-gradient(135deg, #0072ff, #00c2ff);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

.cta-image img {
  max-width: 200px;           /* ← 小さく */
  height: auto;
  display: block;
  margin-right: 50px;         /* ← 左寄せに見える調整 */
  margin-left: 40px;
}

.cta-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.cta-title {
  font-size: 2.4rem;        /* ← タイトルをよりインパクト大きく */
  font-weight: 700;
  margin-bottom: 16px;
  color: #1b3a57;
}

.cta-desc {
  font-size: 1.4rem;        /* ← 段落も読みやすく */
  line-height: 1.8;
  color: #3c4858;
  margin-bottom: 24px;
}

.cta-button {
  display: inline-block;
  background-color: #0072ff;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;          /* ← 大きさはそのままでOK */
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 114, 255, 0.2);
}

}

.cta-button:hover {
  background-color: #005dd1;
  box-shadow: 0 6px 18px rgba(0, 114, 255, 0.3);
  transform: translateY(-2px);
}
