<h2 class="border-under-fade">ここにタイトル</h2>
<div class="small-tt mb-4">サブタイトル</div>
.border-under-fade {
position: relative;
width: 100%;
margin: 50px 0;
padding: 20px 0;
text-align: center;
}
.toph2::before {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 1px;
margin: 0 auto;
text-align: center;
background: #fff;
}
.toph2::before {
background-image: -webkit-linear-gradient(left, transparent, #212121 25%, #212121 75%, transparent);
background-image: linear-gradient(to right, transparent, #212121 25%, #212121 75%, transparent);
background-position: center;
background-repeat: no-repeat;
}
.small-tt {
text-align: center;
font-size: 20px;
color: #9e9e9e;
}