<a href="#" class="cp_link">リンクテキスト-link text-</a>
.cp_link {
padding: 5px;
position: relative;
display: inline-block;
transition: .3s;
color: #AB47BC;
text-decoration: none;/*元々のアンダーラインを非表示にしておく*/
}
.cp_link::after {
position: absolute;
bottom: 0;
left: 0;
content: '';
width: 0;
height: 1px;
background-color: #AB47BC;
transition: .3s;
}
.cp_link:hover::after {
width: 100%;
}