テキスト<a href="#" class="cp_textlink04">リンクテキスト-link text-</a>テキスト
.cp_textlink04 {
position: relative;
padding: 5px;
transition: all 0.3s ease;
color: #EC407A;
text-decoration: none;/*元々のアンダーラインを非表示にしておく*/
}
/*hover時の表示(共通)*/
.cp_textlink04::before,
.cp_textlink04::after {
position: absolute;
left: 0;
content: '';
transition: all 0.3s ease;
}
/*hover前の表示(背景塗りつぶし)*/
.cp_textlink04::before {
bottom:0;
width: 100%;
height: 0;
opacity: 0;
background-color: #EC407A;
border-radius: 50px;
}
/*hover時の表示(背景塗りつぶし)*/
.cp_textlink04:hover::before {
height: 100%;
opacity: 0.4;
}
/*hover前の表示(アンダーライン)*/
.cp_textlink04::after {
bottom: -1px;
width: 100%;
height: 2px;
border-bottom: 2px solid #EC407A;
opacity: 1;
}
/*hover時の表示(アンダーライン)真ん中を起点に消える*/
.cp_textlink04:hover::after {
left: 50%;
right: 50%;
width: 0%;
opacity: 0;
}