body {
  margin: 0;
  padding: 0;
  /* background: #cc3300; */
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', 'Meiryo', sans-serif;
}
.band {
  background: #cc3300;
  width: 100%;
  height: 300px;
  padding: 48px 64px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  display: flex; /* Flexboxを有効にする */
  justify-content: center; /* 主軸（行方向）の中央に配置 */
  align-items: center;   /* 交差軸（列方向）の中央に配置 */
}
.band h1 {
  color: #fff;
  font-size: 2.2rem;
  margin: 0 0;
  letter-spacing: 0.1em;
}


@media (max-width: 600px) {
  .band {
    padding: 24px 8vw;
  }
  .band h1 {
    font-size: 1.3rem;
  }
  .band p {
    font-size: 1rem;
  }
} 