/* ソートボタンを表示するエリア  */
.tsImgArea{
    line-height: 1;
    position: absolute;
    top: calc(50% - 15px);
    right: 0;
    width:15px;
    white-space: normal;
}
/* ソートボタン  */
.tsImg{
  display    : inline-block;
  width      : 14px;
  height     : 12px;
  margin     : 0;
  padding    : 3px;
  cursor     : pointer;
}
/* ソートボタン（カーソルオーバー時） */
.tsImg:hover path,
.tsImg.selected path{
  fill       : rgba(256,256,256,1);
}
/* ソートボタン内の三角の色（SVG） */
.tsImg path{
  fill       : rgba(256,256,256,0.7);
  background-color: transparent;
}
/* ソートボタン内の三角の色（SVG） */
th:has(.tsImgArea){
  position: relative;
}