.character-lead {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.6;
}

/* セクション */
.character-section {
  margin-top: 50px;
}

.character-section-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  border-left: 5px solid #E9617B;
  padding-left: 10px;
}

/* グリッド */
.character-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* カード */
.character-item a {
  display: block;
  text-decoration: none;
  color: #231815;
}

.character-item a:hover img {
transform: scale(1.2);
}

.character-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f2f2f2;
  border-radius: 10px;
  overflow: hidden;
}

.character-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.character-name {
  display: block;
  margin-top: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
