/* ボタンを押したとき */
button:active {
    background-color: #c0c0c0; /* ボタンの背景色を変更 */
    transform: scale(0.95);   /* ボタンを少し縮小して押した感を演出 */
}
