@charset "UTF-8";
/* ==========================================================================
   一覧
   ========================================================================== */

:root {
	--list_cell_height: 35px;
	--div_table_header-background: #C5D9F1;
}

/*==================================*/
/* テーブル                         */
/*==================================*/

table.row_table {
	width: fit-content;
	table-layout: fixed;
	border-collapse: collapse;
	border: var(--primary-border);
}

.row_table th, .row_table td{
	padding: 0 5px;
	white-space: nowrap;
}

.row_table th {
	background: var(--div_table_header-background);
	border: var(--primary-border);	
}

.row_table tr {
	line-height: 40px;
}

.row_table tr:nth-child(even) {
	background: #FFFFFF;
}

.row_table tr:nth-child(odd) {
	background: #DCE6F1;
}

.row_table tr:hover {
	background: #ffeaa7;
}

/*==================================*/
/* DIV テーブル                     */
/*==================================*/

.div_table {
	display: flex;		/* 縦並び   */
	max-width: 100%;
	flex-flow: column;
	font-size: 1.05rem;
	overflow-x: auto;
	box-sizing:border-box;
}

/*----------------------------------*/
/* ヘッダー                         */
/*----------------------------------*/

.div_table .div_table_header {
	display: flex;		/* 横並び   */
	width: 100%;
	height: var(--list_cell_height);
}

.div_table .div_table_header .div_table_cell {
	background: var(--div_table_header-background);
	border-top: var(--primary-border);
	border-bottom: var(--primary-border);
	border-right: var(--primary-border);
}

.div_table .div_table_header .div_table_cell:first-child {
	border-left: var(--primary-border);
}

.div_table .div_table_header .div_table_cell.is_hidden {
	display: none;
}

/*----------------------------------*/
/* 行                               */
/*----------------------------------*/

.div_table .div_table_row {
	display: flex;		/* 横並び   */
	flex-wrap : nowrap;
	height: 100%;
	width: fit-content;
}

.div_table .div_table_row .div_table_cell:first-child {
	border-left: var(--primary-border);
}

.div_table .div_table_row .div_table_cell {
	border-bottom: var(--primary-border);
	border-right: var(--primary-border);
}

.div_table .div_table_row:nth-of-type(even) {
	/* 奇数行 背景設定 */
	background: #FFFFFF;
}

.div_table .div_table_row:nth-of-type(odd) {
	/* 偶数行 背景設定 */
	background: #DCE6F1;
}

.div_table .div_table_row:hover {
	background: #ffeaa7;
}

/*----------------------------------*/
/* 列                               */
/*----------------------------------*/

.div_table_colomn {
	display: flex;
	flex-direction: column;		/* 縦並び   */
	flex-wrap : nowrap;
	height: 100%;
	width: fit-content;
}

/*----------------------------------*/
/* セル                             */
/*----------------------------------*/

.div_table_cell {
	padding: 5px;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	overflow: hidden;
}

.div_table_cell.u-text-left {
	justify-content: flex-start;
}

.div_table_cell.u-text-center {
	justify-content: center;
}

.div_table_cell.u-text-right {
	justify-content: flex-end;
}

.div_table_cell input[type=text], .div_table_cell input[type=password], .div_table_cell textarea {
	padding: 5px;
}

.div_table_cell input[type=checkbox] {
	width:			17px;
	height:			17px;
	-moz-transform:		scale(1.2);
	-webkit-transform:	scale(1.2);
	transform:		scale(1.2);
}

.div_table_cell label {
	-webkit-box-sizing: border-box;  /*webkit系*/
	-moz-box-sizing: border-box;  /*Firefox*/
	box-sizing: border-box;
}

.row_table td {
	border-left: var(--primary-border);
	border-right: var(--primary-border);
}

.div_table_cell a {
	padding: 0px;
}

.div_table_cell button {
	/*セルを埋めるサイズにする*/
	border: none;
	height: var(--list_cell_height);
	margin-top: -10px;
	margin-bottom: -10px;
	margin-right: -10px;
	margin-left: -10px;
	font-size: var(--primary-font-size);
}

/*----------------------------------*/
/* Graph                            */
/*----------------------------------*/
.colgraph_value {
	margin: 0px;
	display: inline-block;
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	z-index: 1;
}

.colgraph_graph {
	margin: 0px;
	display: inline-block;
	position: relative;
	margin-left: -100%;
	height: 80%;
	text-align: left;
	z-index: 2;
	background-color: rgba(255,112,80, 0.5);
}

.colgraph_graph_comp {
	background-color: rgba(0,176,80,0.4);
}

.colgraph_graph_uncomp {
	background-color: rgba(255,0,0,0.4);
}
