/* 事例セクション */
.cases-section {
  background-color: #fff;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.case-item {
  display: flex;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.case-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.case-image {
  flex: 0 0 40%;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.case-item:hover .case-image img {
  transform: scale(1.1);
}

.case-content {
  flex: 1;
  padding: 25px;
}

.case-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 15px;
  color: var(--text-color);
}

.case-description {
  color: var(--light-text);
  margin: 0 0 20px;
  line-height: 1.6;
}

.case-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s;
}

.case-link i {
  margin-left: 5px;
  transition: transform 0.3s;
}

.case-link:hover {
  color: var(--secondary-color);
}

.case-link:hover i {
  transform: translateX(5px);
}

.cases-more {
  text-align: center;
}
