/* FAVTOWNキャリア 特徴セクション Figma準拠CSS */
.features-section {
  background: #e8f3ff;
  border-radius: 40px;
  padding: 40px 24px;
  margin: 0 auto;
  box-sizing: border-box;
}
.features-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
}
.features-label {
  font-weight: 600;
  font-size: var(--12px);
  letter-spacing: 0.05em;
  color: #156fc6;
  margin-bottom: 0;
}
.features-title {
  font-weight: 600;
  font-size: var(--22px);
  letter-spacing: 0.05em;
  color: #27292b;
  margin: 0;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(21, 111, 198, 0.04);
}
.feature-badge {
  display: inline-block;
  background: #156fc6;
  color: #fff;

  font-weight: 600;
  font-size: var(--16px);
  border-radius: 999px;
  padding: 8px 14px;
  text-align: center;
  margin-bottom: 0;
  width: fit-content;
  line-height: 100%;
}
.feature-desc {
  font-weight: 600;
  font-size: var(--14px);
  color: #27292b;
  line-height: 1.9;
  margin: 0;
}
.features-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.company-link {
  color: #949494;

  font-weight: 600;
  font-size: var(--12px);
  text-decoration: none;
  margin-top: 8px;
}

.cta-banner {
  width: 100%;
  height: auto;
}
.cta-banner img {
  width: 100%;
  object-fit: contain;
  border-radius: 16px;
}
