@charset "utf-8";

/*******************************************************************************
TinyMCE（WYSIWYG）エディタに追加したスタイル
*******************************************************************************/

.mce-content-body {
	font-family: -apple-system, system-ui, "Segoe UI", Roboto, Oxygen-Sans,
							 Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 14px;
}

.mce-content-body mark {
	background: #f9e0d6;
}

.mce-content-body a {
	color: #000;
}

.mce-content-body ol {
	counter-reset: num 0;
}

.mce-content-body ol,
.mce-content-body ul {
	list-style: none;
	padding-left: 16px;
}

.mce-content-body ul li,
.mce-content-body ol li {
	position: relative;
	padding-left: 16px;
}

.mce-content-body ul li::before,
.mce-content-body ol li::before {
	position: absolute;
}

.mce-content-body ul li::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #ea4f19;
	left: 0;
	top: 50%;

	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.mce-content-body  ol li::before {
	counter-increment: num 1;
	content: counter(num) ".";
	left: 0;
	top: 0;
	color: #ea4f19;
}

/*******************************************************************************
TinyMCE（WYSIWYG）エディタに追加したスタイル
*******************************************************************************/

/* 引用様 */
.singleMain__txt__quote {
	color: #898989;
}
