ボタンの角が角ばる
HTML
<div class="btn anime-kakubaru">
<span>Button</span>
</div>
CSS
.anime-kakubaru {
transition: border-radius 0.3s ease;
}
.anime-kakubaru:hover {
border-radius: 4px;
}
// ボタンのスタイル
.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;
}