/*------------------------------------
- データテーブル
------------------------------------*/
.div-contentpage-top {
  border-width: 4px !important;
}

.datatable-width100 {
  width: 100% !important;
}

/*------------------------------------
- 進捗
------------------------------------*/
.progressbar {
  margin: 0;
  padding: 0;
  counter-reset: step;
  z-index: 0;
  position: relative;
}
.progressbar li {
  list-style-type: none;
  width: 25%;
  float: left;
  font-size: 11px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  color: #aaa;
}
.progressbar li:before {
  width: 20px;
  height: 20px;
  content: counter(step);
  counter-increment: step;
  line-height: 20px;
  display: block;
  text-align: center;
  margin: 0 auto 7px auto;
  border-radius: 50%;
  background-color: #eee;
}
.progressbar li:after {
  width: 100%;
  height: 2px;
  content: "";
  position: absolute;
  background-color: #eee;
  top: 10px;
  left: -50%;
  z-index: -1;
}
.progressbar li:first-child:after {
  content: none;
}
.progressbar li.active {
  color: #2F8568;
}
.progressbar li.active:before {
  background-color: #2F8568;
  color: #fff;
}
.progressbar li.active + li:after {
  background-color: #55b776;
}
