@charset "UTF-8";

* {
  box-sizing: border-box
}

.linkText{
text-decoration:underline;
position:relative;
color: #296a97;
}

.linkText::after {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid #296a97;
    border-right: 2px solid #296a97;
    transform: rotate(45deg) translateY(-50%);
    top: 50%;
    right: -1em;
}