@charset "utf-8";

/*
.ss1000 ul.select {
	border-width: 1px;
	border-style: solid;
	border-color: rgb(0, 0, 0);
}

.ss1000 ul.select li{
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: rgb(0, 0, 0);
	background-color: #FFFFFF;
}

.ss1000 ul.select li[selected]{
	background-color: #00BFFF;
}

.ss1000 ul.select li:hover{
	cursor: pointer;
	background-color: rgb(244, 231, 132);
}

.ss1000 ul.select li[selected]:hover{
	cursor: pointer;
	background-color: #00BFFF;
}
*/

.ss1000 table.where {
	border-collapse: separate;
	border-spacing: 10px 0px;
	padding-bottom: 10px;
	margin-left: -10px;
	float:left;
}

.ss1000 table.where th,.ss1000 table.where td {
	padding: 3px 3px;
}

.ss1000 table.where th {
	border-width: 1px;
	border-style: solid;
	border-color: rgb(0, 0, 0);
	background-color: rgb(255, 255, 157);
	border-radius: 3px;
/*	line-height: 20px; */
	color: rgb(0, 0, 0);
	-webkit-transition: none;
	transition: none;
	font-weight: 100;
	overflow: hidden;
	font-family: inherit;
	white-space: nowrap;
}


.ss1000 table.input {
	margin-bottom: 10px;
	height: 23px;
}

.ss1000 table.input th,.ss1000 table.input td {
	border: 1px rgb(204, 204, 204) solid;
	padding: 2px 5px;
	white-space:nowrap;
/*	vertical-align: text-top; */
	text-align: left;
}

.ss1000 table.input th {
	color: rgb(255,255,255);
	background-color: rgb(0, 123, 187);
/*
	width: 200px;
*/
}

.ss1000 table.input caption {
	caption-side: top;
	text-align: left;
}

.ss1000 table.input .border-left-none {
	border-left-width: 0px;
}

.ss1000 table.input .border-right-none {
	border-right-width: 0px;
}
.ss1000 table.input th.left,.ss1000 table.input td.left {
	text-align: left;
}

.ss1000 table.input th.center,.ss1000 table.input td.center {
	text-align: center;
}

.ss1000 table.input th.right,.ss1000 table.input td.right {
	text-align: right;
}


.ss1000 table [type="text"]{
	width: 263px;
}

.ss1000 table [type="text"][data-compare="数字範囲開始"]{
	width: 100px;
}
.ss1000 table [type="text"][data-compare="数字範囲終了"]{
	width: 100px;
}
.ss1000 table [type="text"][data-compare="日付範囲開始"]{
	width: 100px;
}
.ss1000 table [type="text"][data-compare="日付範囲終了"]{
	width: 100px;
}

/*--------------------------------------------------------*/
/*radio    ss1000->radio                                  */
/*--------------------------------------------------------*/
.ss1000 input[type="radio"][data-ss1000="radio"] {
	display: none;
	margin: 0;
}

.ss1000 input[type="radio"][data-ss1000="radio"] + label {
	position: relative;
	display: inline-block;
	margin: 2px 0px;
	white-space: normal;
	background-color: #fafafa;
	border-width: 1px;
	border-style: solid;
	border-color: #cacece;
	box-shadow: inset 0px -15px 10px -12px rgba(0,0,0,0.05);
	padding: 1px 10px 1px 27px;
	cursor: pointer;
	min-height: 18px;
}

/* 先頭の左を丸くする*/
.ss1000 input[type="radio"][data-ss1000="radio"] + label:first-of-type{ 
	border-radius: 4px 0 0 4px; 
}
/* 最後の右を丸くする*/
.ss1000 input[type="radio"][data-ss1000="radio"] + label:last-of-type{ 
	border-radius: 0 4px 4px 0; 
}

/* ホバー */
.ss1000 input[type="radio"][data-ss1000="radio"] + label:hover{
	background-color: rgb(244, 231, 132);
}
/* ○ */
.ss1000 input[type="radio"][data-ss1000="radio"] + label::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 5px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 18px;
	height: 18px;
	margin-top: -9px;
	background-color: #FFF;
	border: 2px solid #ccc;
	border-radius: 30px;
}
/* 選択されている */
.ss1000 input[type="radio"][data-ss1000="radio"]:checked + label{
	background-color: #00BFFF;
	box-shadow: inset 15px 10px 12px rgba(255,255,255,0.1);
}
/* ○の中の● */
.ss1000 input[type="radio"][data-ss1000="radio"]:checked + label::after {
	content: "";
	position: absolute;
	top: 50%;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	left: 10px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	background-color: #00BFFF;
	border-radius: 8px;
}
/*--------------------------------------------------------*/
/*chkeckbox    ss1000->chkeckbox                          */
/*--------------------------------------------------------*/
.ss1000 input[type="checkbox"][data-ss1000="checkbox"] {
	display: none;
	margin: 0;
}

.ss1000 input[type="checkbox"][data-ss1000="checkbox"] + label {
	position: relative;
	display: inline-block;
	cursor: pointer;
	padding: 0 0 0 20px;
	min-height: 18px;
}
/* □ */
.ss1000 input[type="checkbox"][data-ss1000="checkbox"] + label::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 18px;
	height: 18px;
	margin-top: -9px;
	background-color: #ffffff;
	border: 1px solid #000000;
}
/* レ点 */
.ss1000 input[type="checkbox"][data-ss1000="checkbox"]:checked + label::after {
	content: "";
	position: absolute;
	top: 50%;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	left: 3px;
	width: 16px;
	height: 8px;
	margin-top: -8px;
	border-left: 3px solid #E71063;
	border-bottom: 3px solid #E71063;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/*--------------------------------------------------------*/
/*chkeckbox    ss1000->reversecheckbox                    */
/*--------------------------------------------------------*/
.ss1000 input[type="checkbox"][data-ss1000="reversecheckbox"] {
	display: none;
	margin: 0;
}

.ss1000 input[type="checkbox"][data-ss1000="reversecheckbox"] + label {
	position: relative;
	display: inline-block;
	cursor: pointer;
	padding: 0 0 0 20px;
	min-height: 18px;
}
/* □ */
.ss1000 input[type="checkbox"][data-ss1000="reversecheckbox"] + label::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 18px;
	height: 18px;
	margin-top: -9px;
	background-color: #ffffff;
	border: 1px solid #000000;
}
/* レ点 */
.ss1000 input[type="checkbox"][data-ss1000="reversecheckbox"] + label::after {
	content: "";
	position: absolute;
	top: 50%;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	left: 3px;
	width: 16px;
	height: 8px;
	margin-top: -8px;
	border-left: 3px solid #E71063;
	border-bottom: 3px solid #E71063;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.ss1000 input[type="checkbox"][data-ss1000="reversecheckbox"]:checked + label::after {
	display:none;
}
/*--------------------------------------------------------
	ダイアログ
--------------------------------------------------------*/
.ss1000 div.ss1000dialog {
	border-width: 1px;
	border-style: solid;
	border-color: rgb(0, 0, 0);
	background-color: #FFFFFF;
	position: absolute;
	display:none;
	padding: 3px 3px;
}

.ss1000 div.ss1000dialog table {
}

.ss1000 div.ss1000dialog table tr[data-order]:hover{
	cursor: pointer;
	background-color: #00BFFF;
}

.ss1000 div.ss1000dialog table th,.ss1000 div.ss1000dialog table td {
	padding: 3px 3px;
}

.ss1000 div.ss1000dialog div.filter {
	border-width: 1px;
	border-style: dotted;
	border-color: #555555;
	overflow: auto;
	max-height: 210px;
}
/*--------------------------------------------------------
	ボタン（グレー）
--------------------------------------------------------*/
.button[data-ss1000name] {
	padding: 2px 2px;
	margin: 2px 0px;
	border-width: 1px;
	border-style: solid;
	border-radius: 3px;
/*	line-height: 20px; */
	-webkit-transition: none;
	transition: none;
	font-weight: 100;
	overflow: visible;
	font-family: inherit;
	white-space: nowrap;
	transition: 0;
	border-color: rgb(102,102,102);
	background-color: rgb(222, 222, 222);
	color: rgb(0, 0, 0);
}
.button[data-ss1000name]:hover {
	transition: .5s;
	cursor: pointer;
	border-color: rgb(102,102,102);
	background-color: rgb(102,102,102);
	color: #FFFFFF;
}
/*--------------------------------------------------------
	検索して一致した文字列の編集
--------------------------------------------------------*/
.searchMatch {
	color: red;
	background-color: yellow;
}

/* K.Nakazaki 2020/03/10 開始 */
tr[data-ss1000id] th{
	padding-right: 25px;
}
/* K.Nakazaki 2020/03/10 終了 */
