body {
    margin: 0;
    font-family: "Hiragino Kaku Gothic ProN", "Meiryo", "\30E1\30A4\30EA\30AA", Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #f3efef;
  }

label{
  margin: 0;
  padding-top: 1px;
  width: 100%;
}

textarea {  
  resize: vertical;
  min-height: 50px;
  /* resize: none;  */
}


#main{
  background-color: #fff;
  /* min-height: 80vh; */
}
  


.input-table th:first-child
,.input-table td:first-child
{
    width: 100px;    
}
  
.label-td{
    width: 100px;    
    text-align: center;
}


.data-list-area{
    width: 100%;
}

.data-table{
  width: 100%;
}

.data-table th{
    text-align: center;
    vertical-align: middle;    
    padding: 2px 2px 1px 2px;
    background-color: rgb(242, 241, 245);
    border: 2px solid rgb(189, 190, 189);     
       
}

.data-table td{    
    padding: 1px 2px;;
    background-color: white;
    border: 1px solid rgb(189, 190, 189);    
}

/* .data-table td:first-child {
  border-left: 1px solid rgb(189, 190, 189);
}

.data-table td:last-child {
  border-right: 1px solid rgb(189, 190, 189);
} */






/* ここは変えない */
.loader-area
,.processing-area{
	position: fixed;
	background: rgba(0, 0, 0, 0.1);
	width: 100%;
	height: 100%;
	top: 0; 
	left: 0;
	z-index: 1000;
}

/* ここは変えない */
.loader
,.processing {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
}


/* 参考URL */
/* https://css-loaders.com/colorful/ */
/* 上記のサイトからコピーして下記に貼り付け start */
.loader {
  width: 60px;
  aspect-ratio: 1;
  border: 15px solid #ddd;
  border-radius: 50%;
  position: relative;
  /* transform: rotate(45deg); */
}
.loader::before {
  content: "";
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 15px solid #514b82;
  animation: l18 2s infinite linear;
}
@keyframes l18 {
    0%   {clip-path:polygon(50% 50%,0 0,0    0,0    0   ,0    0   ,0    0   )}
    25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0   ,100% 0   ,100% 0   )}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
    75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0    100%,0    100%)}
    100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0    100%,0    0   )}
}

.processing {
  width: 120px;
  height: 22px;
  border-radius: 20px;
  color: #666096;
  border: 2px solid;
  position: relative;
}
.processing::before {
  content: "";
  position: absolute;
  margin: 2px;
  inset: 0 100% 0 0;
  border-radius: inherit;
  background: currentColor;
  animation: l6 2s infinite;
}
@keyframes l6 {
    100% {inset:0}
}
/* 上記のサイトからコピーして下記に貼り付け end */

/* 数字のみテキストボックス */
.form-control.numeric{
  padding:0.375rem 0.375rem;
  width: 105px;
  text-align: right;
}

/* yyyy-mm テキストボックス */
.form-control[type="month"] {
  width: 145px;
}

/* yyyy-mm-dd テキストボックス */
.form-control[type="date"] {
  width: 145px;
}


/* 一覧画面のsortボタン
  start
*/
.sort-button{    
  border: none;
  background: transparent;
}

.button-wrapper {
display: inline-flex;
flex-direction: column;
}

.asc-triangle{
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;    
  border-bottom: 8px solid #007bff;
  cursor: pointer;
  margin-bottom: 1px;
}

.desc-triangle{
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;    
  border-top: 8px solid #007bff;
  cursor: pointer;
}

/* 一覧画面のsortボタン
  end
*/