@charset "UTF-8";
table.basic {
	border: none;
	border-collapse: collapse;
	width: 100%;
	margin: 0 auto;
	font-size: 13px;
	max-width: 100%;
	border-spacing: 0;
}
table.basic.round {
	overflow: hidden;
}
table.basic.round thead th:first-child {
	border-top-left-radius: 10px;
	border-left: none;
    overflow: hidden;
}
table.basic.round thead th:last-child {
	border-top-right-radius: 10px;
	border-right: none;
    overflow: hidden;
}
table.basic.round thead th.no-radius {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
/*
table.basic.round tbody tr td.last {
    border-bottom: 3px solid #235C2A;
    padding-bottom: 10px;
}
*/
table.basic thead tr {
	background-color: #235C2A;
}
table.basic th {
	color: #fff;
	border: solid 1px #fff;
	padding: 6px 8px;
	font-weight: bold;
	white-space: nowrap;
}
table.basic th:first-child {
	border-left: none;
}
table.basic th:last-child {
	border-right: none;
}
table.basic td {
	padding: 6px 8px;
  	overflow: hidden; 
	width: auto;  
	border: solid 1px #9292AC;
}
table.basic tbody tr:nth-child(odd) {
	height: 30px;
}
table.basic tbody tr:nth-child(even) {
	height: 30px;
}
table.basic tbody tr.tr-red {
	background-color: #FEEBEA;
}
/*
table.basic tbody tr.tr-red td:nth-child(1) {
	border-left: solid 1px #F33937;
}
*/
table.basic tbody tr.tr-blue {
	background-color: #ECF6FF;
}
/*
table.basic tbody tr.tr-blue td:nth-child(1) {
	border-left: solid 1px #44A8FF;
}
*/
table.basic tbody tr.tr-dark {
	background-color: #DEDEE9;
}
/*
table.basic tbody tr.tr-dark td:nth-child(1) {
	border-left: solid 1px #9292AC;
}
*/
table.basic tbody tr.tr-yellow {
	background-color: #FFFDED;
}
/*
table.basic tbody tr.tr-yellow td:nth-child(1) {
	border-left: solid 1px #E8CF1D;
}
*/
table.basic tbody tr.tr-green {
	background-color: #F0F8E9;
}
/*
table.basic tbody tr.tr-green td:nth-child(1) {
	border-left: solid 1px #6BB52D;
}
*/
table.basic tbody tr.tr-white {
	background-color: #FFF;
}
table.basic tbody tr.tr-orange {
	background-color: #ffcc99;
}
table.basic tbody tr.tr-gray {
	background-color: #fdfdfd;
}
table.basic tbody tr td.td-title {
	background-color: #235C2A;
	color: #fff;
}
table.basic thead th a {
	color: #FFF645;
}
table.basic tbody td a {
	color: #0064D2;
	text-decoration: underline;
}
table.basic tbody td a:hover {
	color: #ff0000;
	text-decoration: none;
}
table.intable {
	font-size: 13px;
}
table.intable th {
	border: 2px solid #fff;
}
table.intable td {
	border: 2px solid #fff;
}
table.intable th {
	padding: 3px 13px;
	text-align: left;
}
table.intable th.mainte_td {
	color: #FFF;
	background: #235C2A;
	
}
table.intable td {
	padding: 3px 8px;
	color: #333;
	background: #EEEEF4;
}
/* ソート　上下ボタン */
.th-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sort {
  display: flex;
  justify-content: center;
}

.sort-buttons {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-left: 10px;
}

.sort-up,
.sort-down,
.sort-up_active,
.sort-down_active {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.sort-up_active {
  background-image: url('../img/sort-up_active.svg');
}

.sort-down_active {
  background-image: url('../img/sort-down_active.svg');
}
.sort-up {
  background-image: url('../img/sort-up.svg');
}

.sort-down {
  background-image: url('../img/sort-down.svg');
}

table.basic .td_icon img{
	margin-right: 2px;
	margin-left: 2px;
}