テキスト<a href="#" class="cp_textlink06">リンクテキスト-link text-</a>テキスト
.cp_textlink06 {
position: relative;
display: inline-block;
padding: 5px;
color: #FF8F00;
text-decoration: none;/*元々のアンダーラインを非表示にしておく*/
}
/*hover時の表示(背景塗りつぶし設定)*/
.cp_textlink06:after {
position: absolute;
bottom: 50%;
left: 0;
content: '';
width: 100%;
height: 2px;
border-radius: 20px;
background-color: #FF8F00;
opacity: 0;
transition: all 0.3s ease;
}
.cp_textlink06:hover:after {
bottom: 0;
height: 100%;
opacity: 0.3;
}