/********************
* 簡易カードリスト画面CSS
*********************/
body {
	background-image: url("../../img/common/background.png");
}
/** メインフレーム */
.mainFrame {
	max-width: 95%;						/*横幅最大*/
	margin: 50px auto;					/*マージン*/
	padding:20px;						/*パディング*/
	border: solid 1px #3aaacc;			/*枠線*/
	border-radius: 10px;				/*角の丸み*/
	background:rgb(255 255 255 / 90%);	/*背景色透過*/
}
.titleName {
	position: relative;
	background: linear-gradient(to right, #0082ff, #aed0ff);
	padding: 8px 5px 8px 30px;
	font-size: 20px;
	font-weight:bold;
	color: white;
	border-radius: 0 5px 5px 0;
}
.titleName:before {
	font-family: "Font Awesome 5 Free";
	content: "\f303";
	display: inline-block;
	line-height: 40px;
	position: absolute;
	padding: 0em;
	color: white;
	background: #0082ff;
	font-weight: 900;
	font-size: 28px;
	width: 53px;
	text-align: center;
	height: 53px;
	line-height: 50px;
	left: -30px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	border-radius: 50%;
	box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.29);
	border-bottom: solid 2px #4967b4;
}
.infoBox {
	padding: 4px;
	margin-top: 10px;
	color: #2c2c2f;
	border-bottom: solid 1px #eaeaea;
}
.infoBox p {
	margin: 0; 
}
.dataField {
	white-space: nowrap;
	margin: 0px;
	padding: 0px;
}
/* ヘッダ固定のCSS */
.tablelock thead{
	display:block;
}
.tablelock tbody{
	overflow-x: hidden;
	overflow-y: auto;
	-ms-overflow-x: hidden;
	-ms-overflow-y: auto;
	position: absolute;
	display:block;
	height: 100px;
}
.accordion-container {
	position: relative;
	width: 100%;
	border-top: none;
	outline: 0;
	cursor: pointer
}
.accordion-container .accordion-title {
	display: block;
	position: relative;
	margin: 5px;
	padding: 5px;
	font-size: 12px;
	font-weight: normal;
	background: #dcf3ff;
	cursor: pointer;
}
.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-container .content-entry.open .accordion-title {
	background-color: #80d0ff;
}
.accordion-container .accordion-title:hover i:before,
.accordion-container .accordion-title:hover i:active,
.accordion-container .content-entry.open i {
	color: white;
}
.accordion-title{
	position: relative;
}
.accordion-title:after {
	content: "";
	position: absolute;
	right: 25px;
	top: 38%;
	transition: all 0.2s ease-in-out;
	display: block;
	width: 8px;
	height: 8px;
	border-top: solid 2px #000;
	border-right: solid 2px #000;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
.accordion-title.open:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 45%;
}
.accordion-content {
	display: none;
}
img.enImgMin {
	width: 13px;
	margin-left: 4px;
	margin-right: 6px;
}