/*=================================
簡易的表の枠線有り編。
===============
====================================================*/

/*枠付き簡単表の大枠*/
.table-simple-border-frame{
	margin-bottom:40px;
	padding-top:5px;
	font-family:sans-serif;
}
/*枠付き簡単表の大枠空白*/

/*枠線付き表*/
.table-simple-border-box{
	max-width:100%;
	margin-bottom:30px;
	padding:8px 24px;
	background-color:#fff;
	border:1px solid #e0e0e0;
	border-radius:7px;
	box-shadow:0 0 12px 1px rgba(0, 0, 0, 0.04);
	word-break:break-all;
	position:relative;
	/*cursor:pointer;*/
}
/*枠線付き表の最後の下部空白削除*/
.table-simple-border-box:last-child{
	margin-bottom:0;
}

/*表の基本設定*/
.table-simple-border-box table{
	border:none;
	margin:0;
}
/*表の行設定*/
.table-simple-border-box td{
	vertical-align:top;
}
.table-simple-border-box th,.table-simple-border-box td{
	padding:12px 10px;
	background-color:#fff;
	font-size:13px;
}
.table-simple-border-box tbody,.table-simple-border-box thead{
	border:none;
}
.table-simple-border-box td a{
	display:block;
}
/*表の列設定*/
.table-simple-border-box tr{
	border-bottom:1px solid #e0e0e0;
}
.table-simple-border-box tr:last-child{
	border-bottom:none;
}
.table-simple-border-box th{
	color:#2a4239;
	border-color:#e0e0e0;
}


/*表の連番用行幅設定*/
.table-serial-number-double-digit{
	width:70px;
}


/*-------------------------
英語編。
------------------------------*/
/*表の連番用行幅設定*/
.table-shortcutkey-frame{
	width:100%;
	display:flex;
	justify-content:space-between;
	position:relative;
	/*background-color:skyblue;*/
	border-bottom:1px solid #e0e0e0;
	font-size:13px;
}
.table-shortcutkey-frame:last-child{
	border-bottom:none;
}
.table-shortcutkey-frame a{
	color:#333;
}
.table-shorcutkey-cell{
	width:40%;
	padding:13px 10px;
}
.table-shorcutkey-result-cell{
	width:60%;
	padding:13px 10px;
	/*border-bottom:1px solid #e0e0e0;*/
}
.table-shorcutkey-result-cell a::before{
	content:"";
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	/*background-color:tomato;*/
}




/*.table-simple-border-box th:first-child,.table-simple-border-box td:first-child{
	border-right:1px solid #e0e0e0;
}*/