.cast-profiles {
  display: flex;
  gap: 2em;
  margin-top: 3em;
  flex-wrap: wrap;
  justify-content: space-between;
  justify-content: center;

}

.profile-card {
  flex: 1 1 300px;
  max-width: 400px;
  background: #f4f1e9;
  border-radius: 8px;
  box-shadow: 0 2px 8px #0001;
  padding: 1.5em;
  text-align: center;
}

.profile-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1em;
}

.profile-text h3 {
  margin: 0.2em 0 0.4em;
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
}

.profile-text p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #444;
  text-align: left;
}

/* スマホ対応：縦並び */
@media screen and (max-width: 600px) {
  .cast-profiles {
    flex-direction: column;
    gap: 1.5em;
  }
}