
/*=======================================================

Created: 2026-2-18


=======================================================*/

.icon-orange {
	width: 12px;
	height: 12px;
	background-color: rgb(255, 81, 0);
	border-radius: 50%;
	margin: 0 8px 0 28px;
}
.vertical-line-orange {
	width: 4px;
	height:18px; /* 縦線の高さを文字サイズに合わせる */
	border-radius: 20%;
	background-color: rgb(255, 81, 0);
	margin: 0 6px 0 0; /* 縦線の右側に5pxのマージンを追加 */;
}
.vertical-line-orange-c {
	width: 4px;
	height:40px; /* 縦線の高さを文字サイズに合わせる */
	border-radius: 20%;
	background-color: rgb(255, 81, 0);
	margin: 0 6px 0 0; /* 縦線の右側に5pxのマージンを追加 */;
}
.with-border {
	display: flex; 
	align-items: center;
	flex-grow: 1;
	border-bottom: 1px solid rgb(195, 190, 190); /* 文字の下にボーダーラインを追加 */
	padding: 5px 0;
}

.left-aligned {
	color: black;
	font-size: 14px; /* .repと同じ文字サイズ */
	text-align: left; /* 左寄せ */
	font-weight: bold;
	flex-grow: 1;
}