.actress-profile-card {
  display: flex;
  align-items: stretch; /* ← ここがポイント！ */
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.actress-profile-card img {
  width: 125px;
  height: 100%; /* ← 高さを親に合わせる */
  object-fit: cover;
  border-radius: 6px 0 0 6px;
  border-right: 1px solid #eee;
}


.actress-profile-card:hover {
  background-color: #f0f8ff;
  box-shadow: 0 0 12px rgba(0, 123, 255, 0.2);
}


.actress-profile-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9em;
  line-height: 1.4;
  color: #555;
}

.actress-profile-card ul li {
  margin-bottom: 4px;
}

.actress-profile-info ul {
  font-size: 1em; /* ← 0.9em → 1em に変更で少し大きく */
  line-height: 1.6;
}
