/* カスタム CSS をここに入力してください */

h2 {
  border-bottom: solid 3px skyblue;
  position: relative;
	font-size : 24px;
	margin : 10px;
}

h2:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #ffc778;
  bottom: -3px;
  width: 10%;
}