.header_div {
	padding: 15px;
	text-align: left;
	border-bottom: 2px solid #DDD;
	background-color: #008CD6;
	color: #FFF;
}

/* ヘッダーで使用 */
h1{
	margin: 0;
}
/* セレクトボックス */
select {
	cursor: pointer;
	height: 26px;
}

/** テキストエリアの高さ */
input[type=text] {
	height: 20px;
}

/* submitボタンをクリックした際に出るラインをなくしてカーソルをポインターにする */
input[type='submit'], button {
	width  : 100px;
	height : 26px;
	cursor : pointer;
	outline: none;
}

/** チェックボックスのサイズ */
input[type=checkbox] {
	transform: scale(1.3);
}

/* 入力エリア用FORM */
.input-form {
	text-align: left;
	height: 40px;
	margin: 10px;
}

/* 入力エリア用FORMのラベル */
.input-form label {
	display: inline-block;
	/* 横幅は各FORMで設定する。 */
	text-align: left;
	margin-left: 5px;
}

/* CSVダウンロード・カウント件数取得ボタンのレイアウト */
.csv-download, .cnt-get-btn {
	width: 150px;
}

/* ログアウトボタン */
#logout-form {
	display: inline-block;
	margin-bottom: 2px;
}

/*******************************************************
* テーブルレイアウト
*/
table {
	border-collapse: collapse;
	margin: 0 auto;
	padding: 0;
	width: 650px;
	table-layout: auto;
	color: #000;
	border: 1px solid #7D7D7D;
	margin-left : 0 ;
	margin-right : auto;
}

table thead {
	border-bottom: 1px solid #7D7D7D;
}

table th {
	padding: 5px; /* テーブル見出しの幅 */
	border-right: 1px solid #7D7D7D;
	text-align: center;
	background-color: #E4E4E4;
	white-space: nowrap;
}

table tr {
	background-color: #fff;
	padding: 30px;
	border-bottom: 1px solid #7D7D7D;
}

table tr:last-child{
	border-bottom: none;
}

table td {
	padding: 5px; /* テーブルセルの幅 */
	border-right: 1px solid #7D7D7D;
	text-align: center;
	white-space: nowrap;
}

/* 昇順が設定されているカラム */
.asc-order {
	background-color: #F0F8FF;
}
/* 降順が設定されているカラム */
.desc-order {
	background-color: #FEEEED;
}

/* エラーメッセージ */
#err-msg {
	display: block;
	color: #FF0000;
}
#err-msg:empty {
	margin: 1.6em;
}
/* 子要素を同じ行にして左右に配置する */
.child-element-line {
	display:flex;
	justify-content: space-between;
}

/*******************************************************
* padding設定
*/
.p-5 {
	padding: 5px;
}

/*******************************************************
* margin設定
*/
.m-5 {
	margin: 5px;
}

.mt-6 {
	margin-top: 6px;
}


/*******************************************************
* Loading設定
*/
#loader-bg {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 1;
	background-color: transparent;
}

#loader {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 200px;
	height: 200px;
	margin-top: -100px;
	margin-left: -100px;
	text-align: center;
	z-index: 2;
}
.loading-img {
	width:150px;
	height:150px;
	border:0; 
}
