@charset "UTF-8";
/* CSS Document */

/*教育セミナー*/

/*説明ブロック*/
.explanation {
	display: block;
	position: relative;
	width: 100%;
	padding: 4px 10px;
	border-radius: 6px;
	background-color: #F6F6F6;
	box-shadow:2px 2px 3px rgba(0,0,0,0.3);
	z-index: 0;
}
.explanation::before, .explanation::after {
	position: absolute;
	content: "";
	width: 20px;
	height: 40px;
	background-color: #FF6362;
	z-index: -1;
}
.explanation::before {
	top: 0;
	left: 0;
	border-radius: 6px 0 0 0;
	clip-path:polygon(0 0, 100% 0, 0 100%)
}
.explanation::after {
	bottom: 0;
	right: 0;
	border-radius: 0 0 6px 0;
	clip-path:polygon(100% 0, 100% 100%, 0 100%)
}
.explanation_item {
	display: inline-block;
	height: 22px;
	padding: 4px 10px;
	border: 1px solid #FF6362;
	font-size: 14px;
	line-height: 14px;
	color: #FF6362;
	background-color: white;
}
.explanation_item + p {
	padding-left: 1em;
	font-weight: 600;
	font-size: 15px;
}
.content_inner .note {
	font-size: 14px;
	line-height: 1.5em;
	margin: 0;
}

/*プログラム*/
