@charset "utf-8";
/*=============================

評価員関連講習　選択画面

===============================*/

/*-----------------------------
　PCスマホ、共通
------------------------------*/
/*****
講習選択エリア
*****/
.select_area *{
	font-size: 1em;
	box-sizing: border-box;
}
.select_area{
	padding: 1em;
	border: solid 3px #dddcdc;
	border-radius: 1em;
}
.select_wrap{}
.select_box{
	margin-top: 2em;
}
.select_box .select_ttl{
	font-weight: bold;
}

.btn_select{
	margin-top: 1em;
	border-radius: 0.5em;
}
.btn_select a{
	display: block;
	font-size: 1.6em;
	color: #fff;
	text-align: center;
	padding: 0.5em;
	border-radius: 0.5em;
	position: relative;
}
.btn_select a::before{
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	margin-right: 0.5em;
	border-style: solid;
	border-width: 0.5em 0 0.5em 0.75em;
	border-color: transparent transparent transparent #fff;
	transform: translateY(0.15em);
}
.btn_select a:hover{
	text-decoration: none;
	background-color: rgba(255,255,255,0.25);
}

.bg_orage{
	background-color: #ff6900;
}

/*****
右ナビゲーション
*****/
.lnav li.navbtn_hyoukain{}
.lnav li.navbtn_hyoukain a{
	font-size: 14px;
	font-weight: bold;
	line-height: 1.2;
	color: #3887bb;
	text-indent: 0;
	padding: 8px 10px 8px 35px;
	background-image: url("../../img/icon_arrow_blue.png");
	background-repeat: no-repeat;
	background-position: left 10px center;
	white-space: normal;
}
.lnav li.navbtn_hyoukain a:hover{
	text-decoration: none;
	color: #fff;
	background-color: #3887bb;
	background-image: url("../../img/icon_arrow.png");
}


/*-----------------------------
PC専用スタイル
------------------------------*/
@media (min-width: 768px) {
	/*****
	講習選択エリア
	*****/
	.select_area{}
	.select_wrap{
		display: flex;
		justify-content: space-between;
	}
	.select_box{
		width: 48%;
	}
	.select_box .select_ttl{
		font-size: 18px;
	}
}

/*-----------------------------
スマホ専用スタイル
------------------------------*/
@media (max-width: 768px) {
	/*****
	index　講習選択
	*****/
	.select_area{
		width: 94%;
		margin: 0 auto;
	}
	.select_box{}
	.btn_select a{
		font-size: 1.25em;
	}
}