@charset "utf-8";
/* CSS Document */

.text-main {color: var(--main-color);}

/* テキスト(文字へ太下線) */
[class*="font-underline__"] {
	display: inline-block;
}
.font-underline__yellow {
	background: linear-gradient(transparent 70%, var(--yellow) 70%);
} 

/* テキスト(文字前に記号) */
[class*="text-marker__"]::before {
	content: "";
	display: inline-block;
	margin-right: .3rem;
	background-color: var(--red);
}
.text-marker__circle::before {
	width: 14px;
	height: 14px;
	border-radius: 50%;
}
.text-marker__square::before {
	width: 14px;
	height: 14px;
}

/* テキスト(帯文字) */
.text-bg-clone {
	line-height: 2.5em;
    white-space: nowrap;
}
.text-bg-clone span {
	display: inline;
    padding: .2em .5em;
    background-color: var(--light-gray);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* テキスト(縦組み) */
.text-vertical {writing-mode: vertical-rl;}

