@charset "utf-8";
.character-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* メイン画像 */
.main-display {
  text-align: center;
  margin-bottom: 20px;
}
.main-display img {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
}

/* サムネイル */
.character-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.character-thumbs button {
  background: transparent;
  border-radius: 8px;
  padding: 4px;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
}
.character-thumbs button:hover {
  transform: scale(1.05);
  background: rgba(0,255,255,0.2);
}
.character-thumbs img {
  display: block;
  width: 90px;
  border-radius: 6px;
}

/* フェード */
.fade {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.fade.show {
  opacity: 1;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .character-thumbs img {
    width: 70px;
  }
}