@charset "utf-8";

/*============================
二次検定検証
=============================*/
.font_green{
	color: #006400;
}

.bg_white{
	background-color: #fff;
}
.bg_white_ray{
	background-color: rgba(255,255,255,0.65);
}

/*****
解答速報LIVE
*****/
/***LIVE配信が無い場合***/
.no_live_section .no_live_ttl{
	background-color: rgba(164,15,57,0.65);
}

/*****
WEB採点サービス
*****/
/***タイトル***/
.ttl_gradingservice{
	border: solid 6px #a40f39;
}
.icon_kentei{
	background-color: #a40f39;
}

/*****
答案添削＆ランク評価サービス
*****/
/***申し込みフローイラスト***/
.flow_illust{}
.illust_box{
	width: 420px;
	margin: 0 auto;
	padding: 1em;
	border: solid 2px #3e70ba;
	border-radius: 0.5em;
	background-color: #fff;
}

/***添削例***/
.tensaku_rei{
	text-align: center;
}
.tensaku_rei_ttl{
	display: inline-block;
	font-size: 1.2em;
	color: #fff;
	margin-bottom: 1.2em;
	padding: 0.5em;
	background-color: #e04536;
	position: relative;
}
.tensaku_rei_ttl::after{
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 1em 0.5em 0 0.5em;
	border-color: #e04536 transparent transparent transparent;
	position: absolute;
	top: 100%;
	right: 50%;
}

/***ご利用の流れ***/
.toan_img{}

.correction_address{
	display: flex;
	flex-wrap: wrap;
	margin-top: 1em;
	border-top: dashed 1px #ccc;
}
.correction_address dt{
	font-weight: bold;
	width: 6em;
	padding: 0.5em;
	border-bottom: dashed 1px #ccc;
}
.correction_address dd{
	width: calc(100% - 6em);
	padding: 0.5em;
	border-bottom: dashed 1px #ccc;
}

/*****
総評
*****/
.kakko_box{
	display: inline-block;
	border: solid 1px #000;
	width: 3em;
	height: 1em;
	margin: 0 0.5em 0.3em;
	vertical-align: text-bottom;
}

/*****
監理技術者
*****/
/***講習の特徴ポイント***/
.point_set{
	margin-bottom: 2em;
}
.point_ttl{}
.point_ttl h4{
	font-size: 1.1em;
	font-weight: bold;
	color: #389d38;
	margin-bottom: 1em;
}
.point_num{
	display: inline-block;
	margin-right: 1em;
	padding: 0.25em 1em;
	border: solid 1px #389d38;
	border-radius: 0.25em;
}
.point_img{}


/* ===========================================
	MediaQueries
=========================================== */

/* PC----------------------------- */
@media screen and (min-width: 768px){
	/*****
	答案添削＆ランク評価サービス
	*****/
	/***申し込みフローイラスト***/
	.flow_illust{
		margin-right: 1em;
	}
	.illust_box{
		margin-top: 2em;
	}
	
	/***ご利用の流れ***/
	.toan_img{
		flex-shrink: 0;
		margin-left: 2em;
	}
	
	/*****
	監理技術者
	*****/
	/***講習の特徴ポイント***/
	.point_set{
		display: flex;
		justify-content: space-between;
	}
	.point_ttl{
		flex-grow: 1;
		margin-right: 2em;
	}
	.point_img{
		flex-shrink: 0;
		width: 250px;
	}
}

/* スマホ----------------------------- */
@media screen and (max-width: 767px){
	/*****
	答案添削＆ランク評価サービス
	*****/
	/***申し込みフローイラスト***/
	.illust_box{
		width: 80%;
	}
	
	/***添削例***/
	.tensaku_rei{
		margin-top: 2em;
	}
	
	/***ご利用の流れ***/
	.toan_img{
	}
	
	/*****
	監理技術者
	*****/
	/***講習の特徴ポイント***/
	.point_num{
		display: block;
		text-align: center;
		margin-bottom: 0.5em;
	}
	
	.point_img{
		width: 80%;
		max-width: 250px;
		margin: 1em auto 0 auto;
	}
}

