@charset "UTF-8";

/*
======= xx: 下線 =======
*/

h4 {
	position: relative;
font-size:1.375em;
}
h4::after {
	content: '';
	display: block;
	position: absolute;
	left: 50%; /* 位置調整 */
	transform: translate(-50%); /* 位置調整 */
	bottom: -20px; /* 下線の上下位置調整 */
	width: 100px; /* 下線の幅 */
	height: 10px; /* 下線の太さ */
	background-color: #fed500; /* 下線の色 */
}