/* AI活用開発工程セクション */
.ai-process {
  padding: 8rem 3rem;
  background: #f8f9fa;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.process-category {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.process-category:hover {
  transform: translateY(-5px);
}

.category-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.category-icon {
  width: 40px;
  height: 40px;
  color: #009fe8;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(0, 159, 232, 0.1) 0%,
    rgba(0, 120, 193, 0.1) 100%
  );
  border-radius: 10px;
  margin-bottom: 0.8rem;
}

.category-icon svg {
  width: 20px;
  height: 20px;
}

.category-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #009fe8;
  margin: 0;
  line-height: 1.2;
}

.process-items {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-grow: 1;
}

.process-items li {
  padding: 0.4rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 1.2rem;
  color: #666666;
  font-size: 0.85rem;
  line-height: 1.3;
}

.process-items li:last-child {
  border-bottom: none;
}

.process-items li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #009fe8;
  font-weight: bold;
}

.ai-tools-section {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ai-tools-section h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #009fe8;
  text-align: center;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.tool-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #009fe8;
  transition: all 0.3s ease;
}

.tool-item:hover {
  background: linear-gradient(
    135deg,
    rgba(0, 159, 232, 0.05) 0%,
    rgba(0, 120, 193, 0.05) 100%
  );
  transform: translateX(5px);
}

.tool-name {
  font-weight: 600;
  color: #333333;
}

.tool-category {
  font-size: 0.85rem;
  color: #009fe8;
  background: rgba(0, 159, 232, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 500;
  white-space: nowrap;
}
