色が変わるver1
Button
HTML
<div class="btn anime-hanten">
<span>Button</span>
</div>
CSS
.anime-hanten {
transition: all .3s;
}
.anime-hanten:hover {
background-color: #4B321B;
color: #FFFA8B;
}
// ボタンのスタイル
.btn {
background-color: #eb6100;
width: 240px;
height: 54px;
border-radius: 100px;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
font-weight: 700;
margin: 0 auto;
box-shadow: 0px 4px 4px rgba($color: #000000, $alpha: .16);
cursor: pointer;
color: #fff;
}