/* 基本 */
body {
  margin: 0;
  font-family: 'Comic Sans MS', 'Arial', sans-serif;
  background: #fffaf5;
  color: #333;
  line-height: 1.6;
  text-align: center;
}

/* ヘッダー */
.hero {
  background: linear-gradient(to right, rgb(135, 206, 235), rgb(255, 241, 118));
  color: #fff(31, 2, 3);
  padding: 80px 20px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1rem;
}
.btn {
  display: inline-block;
  background: #c4ecf8;
  color: #000;
  padding: 15px;
  border-radius: 30px;
  margin-top: 20px;
  font-weight: bold;
  text-decoration: none;
  width: 80%;
  max-width: 300px;
  transition: 0.3s;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
.btn:hover {
  background: #c4ecf8;
  transform: scale(1.05);
}

/* セクション */
section {
  padding: 40px 20px;
}
section h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #4c2dff;
}
section h2 i {
  margin-right: 8px;
  color: #ff008c;
}

/* 出演バンドリスト */
.bands ul {
  list-style: none;
  padding: 0;
}
.bands li {
  margin: 10px 0;
  font-size: 1.1rem;
  background: #fff;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* フッター */
footer {
  background: #222;
  color: white;
  padding: 20px;
  font-size: 0.8rem;
}
