.services-section {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.services-title {
  font-size: 2rem;
  color: #374769;
  margin-bottom: 50px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.services-list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 calc(33% - 30px);
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 2.8rem;
  color: #f99a54; /* 落ち着いたテクノロジー感あるブルーに変更 */
  margin-bottom: 20px;
}

.service-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.service-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* SP表示 */
@media screen and (max-width: 768px) {
  .services-list {
    flex-direction: column;
    gap: 20px;
  }

  .service-card {
    flex: 1 1 100%;
  }

  .services-section {
    padding: 80px 16px;
  }

  .services-title {
    font-size: 1.5rem;
  }

  .service-name {
    font-size: 1rem;
  }

  .service-desc {
    font-size: 0.9rem;
  }
}

.service-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: linear-gradient(90deg, #5c79a3, #9ab8e6);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  background: linear-gradient(90deg, #374769, #6b8fc8);
}

.services-heading {
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
}

.services-bg-label {
  position: absolute;
  top: -20px;
  left: 50%;
  width: 100%;
  max-width: 90vw;
  transform: translateX(-50%);
  font-size: 4.5rem;
  color: rgba(55, 71, 105, 0.05);
  font-weight: 900;
  letter-spacing: 0.5rem;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
  text-align: center;
}