﻿.underline-grey-dot {
	text-decoration: underline;
	text-decoration-color: lightgrey;
	text-decoration-style: dotted;
}

.underline-grey-solid {
	text-decoration: underline;
	text-decoration-color: #7E7E7E;
	text-underline-offset: 3px;
}

.underline-green-solid {
	text-decoration: none; /* 移除默认下划线 */
	border-bottom: 3px solid #8DC985; /* 2px 是下划线粗细 */
	padding-bottom: 1px; /* 可选：调整下划线与文字的距离 */
}

.underline-note-wrap {
	background: #fff;
	padding: 2em 2em 1em 2em;
	/*width: 80%;*/
	margin: 30px auto;
	/*box-shadow: 5px 5px 20px 5px rgba(0,0,0,0.7);*/
}
.underline-note {
	background-image: linear-gradient( 90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, #ffff 50%, #ffff 50% ), /* 点線1の色 */
	linear-gradient( 180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 97%, #999 97%, #999 100% ); /* 点線2の色と太さ */
	background-size: 8px 100%, /* 点線1のサイズ */
	100% 2em; /* 点線2のサイズ */
	line-height: 2; /* 文字の高さ */
	padding-bottom: 1px; /* 最終行の下にも罫線を引く */
}

.underline-nami {
	text-decoration: 4px #C8B390 wavy underline;
	text-underline-offset: 15px;
}