body {
  font-family: "Arial", sans-serif; /* フォントはお好みで変更 */
  margin: 0;
  color: #333;
  background-color: #f9f9f9; /* 背景色もお好みで */
  text-align: center;
}

header {
  background-color: #ffe0b2; /* ヘッダー背景色 */
  padding: 20px 0;
}

header h1 {
  margin: 0;
  font-size: 2em;
  color: #ff7043; /* ヘッダーテキスト色 */
}

#hero {
  padding: 50px 0;
}

.hero-image img {
  max-width: 80%;
  height: auto;
}

.hero-text {
  margin-top: 30px;
}

.teaser-copy {
  font-size: 1.5em;
  color: #777;
}

#character {
  background-color: #fff;
  padding: 50px 0;
}

#character h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.character-intro {
  margin-bottom: 20px;
}

.character-intro h3 {
  font-size: 1.5em;
  color: #ff7043;
  margin-bottom: 10px;
}

.character-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.character-images img {
  max-width: 200px;
  height: auto;
  border-radius: 10px; /* 角丸 */
}

footer {
  background-color: #eee;
  padding: 20px 0;
  margin-top: 50px;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.5em;
  }
  .hero-image img {
    max-width: 100%;
  }
  .teaser-copy {
    font-size: 1.2em;
  }
  #character h2 {
    font-size: 1.8em;
  }
  .character-images img {
    max-width: 150px;
  }
}
