@charset "utf-8";

/*============================
解答速報
=============================*/
/*****
解答速報LIVE
*****/
/***LIVE配信が無い場合***/
.no_live_section .no_live_ttl{
	background-color: rgba(47,81,209,0.65);
}

/*****
WEB採点サービス
*****/
/***タイトル***/
.ttl_gradingservice{
	border: solid 6px #2f51d1;
}
.icon_kentei{
	background-color: #2f51d1;
}

/*****
答案添削＆ランク評価サービス
*****/
/***申し込みフローイラスト***/
.flow_illust{}
.illust_box{
	width: 426px;
	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;
}

/*****
直前Check 早超直前ライブバナー
*****/
.bg_shiken_chokuzen{
	background-image: repeating-linear-gradient(0deg,transparent 0,transparent 20px,rgba(255,255,255,0.35) 20px,rgba(255,255,255,0.35) 21px),repeating-linear-gradient(90deg,transparent 0,transparent 20px,rgba(255,255,255,0.35) 20px,rgba(255,255,255,0.35) 21px);
	background-color: #daddde;
}
.bn_shiken_chokuzen_area{
	width: 94%;
	max-width: 1200px;
	margin: 0 auto;
}

/* ===========================================
	MediaQueries
=========================================== */

/* PC----------------------------- */
@media screen and (min-width: 768px){
	/*****
	ページナビ調整
	*****/
	#page_nav{
		font-size: clamp(1.2rem,1.2vw,1.5rem);
	}
	
	/*****
	答案添削＆ランク評価サービス
	*****/
	/***申し込みフローイラスト***/
	.flow_illust{
		margin-right: 1em;
	}
	.illust_box{
		margin-top: 2em;
	}
	
	/***ご利用の流れ***/
	.toan_img{
		flex-shrink: 0;
		margin-left: 2em;
	}
}

/* スマホ----------------------------- */
@media screen and (max-width: 767px){
	/*****
	ページナビ調整
	*****/
	#menu_list{
		flex-wrap: wrap;
		justify-content: center;
	}
	#menu_list li{
		width: calc(100% / 3);
		border-bottom: solid 1px #ccc;
	}
	#menu_list li:nth-of-type(3n){
		border-right: none;
	}
	#menu_list li.on_anchor a::after{
		display: none;
	}
	#menu_list li a{
		padding: 0.5em;
	}
	
	/*****
	答案添削＆ランク評価サービス
	*****/
	/***申し込みフローイラスト***/
	.illust_box{
		width: 80%;
	}
	
	/***添削例***/
	.tensaku_rei{
		margin-top: 2em;
	}
	
	/***ご利用の流れ***/
	.toan_img{
	}
}

