@charset "UTF-8";
/*----------------------------------------------------
    #入力フォーム
----------------------------------------------------*/
.inquiry .control-label {
  padding-top: 5px;
  padding-bottom: 5px;
}
.inquiry legend {
  text-align: center;
  border-bottom: none;
}
.inquiry .label-danger {
  background-color: #950000;
}
.inquiry .label-default {
  background-color: #373737;
}
.inquiry .well {
  margin-top: 5px;
}
.inquiry input[type=checkbox] {
  vertical-align: middle;
  transform: scale(2);
}
.inquiry small {
  display: block;
  padding-top: 3px;
  color: #222;
}
.inquiry .row {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dcdcdc;
}
.inquiry .checkbox {
  padding: 20px 0 15px;
}
.inquiry .help {
  font-size: 0.875em;
  line-height: 1.7142857143;
  color: #222;
}
.inquiry .text_l {
  margin-left: 10px;
  vertical-align: middle;
  font-size: 1.3125em;
  line-height: 1.1428571429;
}
.inquiry .text_ll {
  padding: 60px 0;
  font-size: 1.875em;
  line-height: 0.8;
}

/*----------------------------------------------------
    #ステップバー
----------------------------------------------------*/
.stepbar {
  display: flex;
  max-width: 400px;
  position: relative;
  margin: 20px auto 50px;
  text-align: center;
}
@media (min-width: 992px) {
  .stepbar {
    max-width: 700px;
  }
}
.stepbar li {
  font-size: 1.3125em;
  line-height: 1.1428571429;
  list-style: none;
  position: relative;
  width: 33.333%;
}
.stepbar li:after {
  background: white;
  content: "";
  width: calc(100% - 30px);
  height: 4px;
  position: absolute;
  left: calc(-50% + 15px);
  top: 14px;
}
.stepbar li:first-child:after {
  display: none;
}
.stepbar li span {
  font-size: 1.3125em;
  line-height: 1.1428571429;
  background: white;
  color: #222;
  display: inline-block;
  height: 30px;
  margin-bottom: 5px;
  line-height: 30px;
  width: 30px;
  border-radius: 50%;
}
.stepbar .is-current:after {
  background: #3174d1;
}
.stepbar .is-current span {
  color: #fff;
  background: #3174d1;
}