/* ページ全体 */
body {
    font-family: Arial, sans-serif;
    font-size: 14px;
    padding: 80px 20px 20px;
    background: #1c1c1c;
    color: white;
    margin: 0;
  }

  h1 {
    text-align: center;
  }
  
  /* キャラクタータイルを並べるグリッド */
  .character-list-grid {
    display: grid;
    grid-template-columns: repeat(5, 260px); /* 横に3人並べる */
    gap: 24px;
    padding: 24px;
    justify-content: center; /* 真ん中に寄せる */
  }
  
  /* 各キャラクタータイル */
  .character-tile {
    background: #222;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 0 12px rgba(0,0,0,0.5);
  }
  
  /* キャラクターのアイコン */
  .character-icon {
    width: 180px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
  }
  
  /* キャラクター情報 */
  .character-info {
    font-size: 16px;
    color: #ddd;
  }
  
  .character-eno {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 6px;
    text-decoration: none;
  }
  
  .character-name {
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
  }
  
  /* TOPに戻るボタン */
  .button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 18px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s;
    text-align: center;
  }
  
  /* フッター */
  .footer {
    text-align: center;
    padding: 10px;
    background: #333;
    color: white;
    margin-top: 20px;
  }
  