/* Google Fontsの導入 */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Noto+Sans+JP:wght@300;400;700&display=swap');

/* 全体のスタイル調整 */
body {
    font-family: 'Poppins', 'Noto Sans JP', sans-serif;
    color: #333;
    background-color: #ECF9DD;
    margin: 0;
    padding: 0;
}


/* ボタンスタイル */
button {
    background: #00A7EC;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
    width: 180px;
    height: 50px;
    text-align: center;
}
button:hover {
    background: #90DA23;
}

/* フッター */
footer {
    background-color: #ECF9DD;
    color: #333;
    text-align: left;
    padding: 15px 20px;
    margin-top: 30px;
    font-size: 10px;
}
/* 放送回選択ラベルのフォントサイズ変更 */
label[for="audio-select"] {
    font-size: 18px;
    font-weight: bold;
}