テキスト<a href="#" class="cp_textlink02">リンクテキスト-link text-</a>テキスト
.cp_textlink02 {
position: relative;
padding: 5px;
text-decoration: none;
color: #00bcd4;
}
.cp_textlink02::before {
position: absolute;
bottom: -2px;
left: 0;
content: '';
width: 100%;
height: 1px;
transition: all 0.3s ease;
background-color: #00bcd4;
}
.cp_textlink02:hover::before {
transform: scaleY(4);/*hover時にラインを縦4倍のサイズにする*/
}