.audio-wrapper {
  width: 100%;               
  margin: 20px auto 40px;
  padding: 15px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  font-family: sans-serif;
}

/* タイトル */
.audio-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 8px 12px 0px;
  background: #ffffff;
  text-align: center;
}

/* 速度調整ブロック */
.speed-control {
  display: flex;
  flex-wrap: wrap;  
  gap: 8px;
  padding: 10px;
  background: #ffffff;
  justify-content: center;
}

/* 速度ボタン */
.speed-btn {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fafafa;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight:bold;
  transition: background 0.2s;
}

.speed-btn:hover {
  background: #f0f0f0;
}

.speed-btn.active {
  background: #000;
  color: #fff;
}

/* audioタグのスタイル調整（モバイル対応） */
audio {
  width: 100%;
  margin-top: 10px;
}