/* 共通スタイル */
body {
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
  background-color: #fdfdfd;
  color: #333;
  text-align: center;
}

header {
  padding: 2rem 1rem;
  background-color: #e0f7fa;
  border-bottom: 2px solid #ccc;
}

.icon {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.2rem;
}

main {
  padding: 2rem 1rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* オーディオプレイヤーのスタイル */
audio {
  margin-top: 1rem;
  width: 90%;
  max-width: 400px;
}

/* スマホ・タブレット対応 */
@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
  }

  .icon {
    width: 80px;
  }

  h2 {
    font-size: 1.3rem;
  }

  audio {
    width: 95%;
  }
}