@charset "utf-8";

/***************************************************************
Table of Contents Plus Plugin Style
****************************************************************/

/* TOC */
#toc_container {
	box-sizing: border-box;
	margin-top: 20px;
	padding: 8px 2.5vw;
	width: 100%;
	border: 2px solid #c7c7c7;
	border-right: none;
	border-left: none;
	background-color: #f5f5f5;
}
#toc_container .icon-toc-after::after {
	display: none;
}
#toc_container p.toc_title {
	position: relative;
	padding-left: 24rem;
	text-align: left;
}
#toc_container p.toc_title::before {
	content: '';
	position: absolute;
	top: 4px;
	left: 0;
	display: inline-block;
	border-radius: 2px;
	background-color: var(--mpee-light-green);
	width: 16rem;
	height: 16rem;
	top: 50%;
	transform: translateY(-50%);
}
#toc_container p.toc_title::after {
	font-family: "icomoon";
	content: "\e901";
	position: absolute;
	top: 4px;
	left: 2px;
	display: inline-block;
	color: #fff;
	font-weight: normal;
	font-size: 12rem;
}
#toc_container .toc_list {
	padding-left: 1em;
}
#toc_container a {
	line-height: 2;
	color: #0d0d0d;
}
@media screen and (min-width: 1200px) {
	#toc_container {
		padding-left: 44px;
	}
}