/*　ステップバー　*/
.stepBar {
  display: flex;
  position: relative;
  margin: 20px auto;
  text-align: center;
}
.stepBar li {
  list-style: none;
  position: relative;
  width: 33.333%;
}
.stepBar li:after {
  background: #D0E1F9;
  content: "";
  width: calc(100% - 50px);
  height: 4px;
  position: absolute;
  left: calc(-50% + 25px);
  top: 22px;
}
.stepBar li:first-child:after {
  display: none;
}
.stepBar li span {
  background: #D0E1F9;
  color: #ffffff;
  display: inline-block;
  height: 50px;
  margin-bottom: 5px;
  line-height: 50px;
  width: 50px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.stepBar .visited:after {
  background: #4D648D;
}
.stepBar .visited span {
  background: #4D648D;
}

@media screen and (max-width: 768px) {
  .stepBar li span {
    height: 40px;
    line-height: 40px;
    width: 40px;
  }
  .stepBar li:after {
    width: calc(100% - 40px);
    left: calc(-50% + 20px);
    top: 18px;
  }
  .stepBar li {
    font-size: 0.8rem;
  }
  .stepBar li span {
    font-size: 1rem;
  }
}

/* signin.html */
.form-signin {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: auto;
}
.form-signin .checkbox {
  font-weight: 400;
}
.form-signin .form-control {
  position: relative;
  box-sizing: border-box;
  height: auto;
  padding: 10px;
  font-size: 16px;
}
.form-signin .form-control:focus {
  z-index: 2;
}

/* サイドバー */
@media screen and (min-width: 768px) {
  .aside {
    align-items: center;
    justify-content: center;
    position: -webkit-sticky;
    position: sticky;
    top: 10px;
    width: 140px;
    height: 140px;
  }
}
  
/* order-1 */
h3.lb-title {
  font-weight: bold;
  color: #4d648d;
  font-size: 1.15rem;
  border-bottom: 1px solid #4d648d;
  padding: 0 0 5px 0;
  margin: 0 0 15px 0;
}