@charset "UTF-8";
.service-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 2em;
  gap: 1em;
  padding: 1em;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
}

.card-image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  width: 250px;
}

.card-text {
  flex: 1;
  font-size: 0.95em;
}

.card-title {
  font-weight: bold;
  font-size: 1.1em;
  color: #000; /* 黒字に固定 */
  text-decoration: none;
  display: block;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 768px) {
  .service-card {
    flex-direction: column;
  }
  .card-image img {
    width: 100%;
  }
}