/*仕様１*/
.progressbar {
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.progressbar li {
  list-style-type: none;
  width: 25%;
  float: left;
  font-size: 0.67rem;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  color: #7d7d7d;
}
.progressbar li:before {
  width: 1.7rem;
  height: 1.7rem;
  content: counter(step);
  counter-increment: step;
  line-height: 1.7rem;
  border: 0.12rem solid #7d7d7d;
  display: block;
  text-align: center;
  margin: 0 auto 0.56rem auto;
  border-radius: 50%;
  background-color: white;
}
.progressbar li:after {
  width: 100%;
  height: 0.12rem;
  content: '';
  position: absolute;
  background-color: #7d7d7d;
  top: 10.28rem;
  left: -50%;
  z-index: -1;
}
.progressbar li:first-child:after {
  content: none;
}
.progressbar li.active {
  color: green;
}
.progressbar li.active:before {
  border-color: #55b776;
}
.progressbar li.active + li:after {
  background-color: #55b776;
}
/*仕様２*/
*, *:after, *:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Form Progress */
.progress {
  /*width: auto;*/
  /*margin: 0.1rem auto;*/
  text-align: center;
}
.progress .circle,
.progress .bar {
  display: inline-block;
  background: #fff;
  width: 2.3rem; height: 2.3rem;
  border-radius: 2.3rem;
  border: 0.1rem solid #d5d5da;
}
.progress .bar {
  position: relative;
  width: 28%;
  height: 0.34rem;
  top: -1.84rem;
  margin-left: -0.28rem;
  margin-right: -0.28rem;
  border-left: none;
  border-right: none;
  border-radius: 0;
}
.progress .circle .label {
  display: inline-block;
  width: 1.78rem;
  height: 1.78rem;
  line-height: 1.78rem;
  border-radius: 1.78rem;
  margin-top: 0.17rem;
  color: #b5b5ba;
  font-size: 0.95rem;
}
.progress .circle .title {
  color: #b5b5ba;
  font-size: 0.56rem;
  text-align: center;
  line-height: 1.7rem;
  margin-left: -0.28rem;
  width: 4.5rem;
}

/* Done / Active */
.progress .bar.done,
.progress .circle.done {
  background: #eee;
}
.progress .bar.active {
  background: linear-gradient(to right, #EEE 40%, #FFF 60%);
}
.progress .circle.done .label {
  color: #FFF;
  background: #8bc435;
  box-shadow: inset 0 0 0.12rem rgba(0,0,0,.2);
}
.progress .circle.done .title {
  color: #444;
}
.progress .circle.active .label {
  color: #FFF;
  background: #0c95be;
  box-shadow: inset 0 0 0.12rem rgba(0,0,0,.2);
}
.progress .circle.active .title {
  color: #0c95be;
}


.progress0 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: table;
  table-layout: fixed;
  width: 100%;
  color: #849397;
}
.progress0 > li {
  position: relative;
  display: table-cell;
  text-align: center;
  font-size: 1.4rem;
}
.progress0 > li:before {
  content: attr(data-step);
  display: block;
  margin: 0 auto;
  background: #DFE3E4;
  width: 3rem;
  height: 3rem;
  text-align: center;
  margin-bottom: 0.25rem;
  line-height: 3rem;
  border-radius: 100%;
  position: relative;
  z-index: 1000;
}
.progress0 > li:after {
  content: '';
  position: absolute;
  display: block;
  background: #DFE3E4!important;
  width: 100%;
  height: 0.5rem;
  top: 1.25rem;
  left: 50%;
  margin-left: 1.5rem;
  /*z-index: -1;*/
}
.progress0 > li:last-child:after {
  display: none;
}
.progress0 > li.is-complete {
  color: rgba(51, 204, 204, 0.9)!important;
}
.progress0 > li.is-complete:before, .progress0 > li.is-complete:after {
  color: #FFF!important;
  background: rgba(51, 204, 204, 0.9)!important;
}
.progress0 > li.is-active {
  color: #3498DB;
}
.progress0 > li.is-active:before {
  color: #FFF;
  background: #3498DB;
}

/**
 * Needed for IE8
 */
.progress0__last:after {
  display: none !important;
}

/**
 * Size Extensions
 */
.progress0--medium {
  font-size: 1.5rem;
}

.progress0--large {
  font-size: 2rem;
}


.progress0 {
  margin-bottom: 0.5rem;
  margin-top:0.5rem;
}