@charset "UTF-8";
.hgroup {
  background-color: #00ABA9;
}

.contact__tel, .contact__mail {
  font-family: "Abel", sans-serif;
  border: 1px solid #ddd;
  padding: 2%;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 10px;
  font-size: 50px;
  font-size: 5rem;
  line-height: 48%;
  text-decoration: none;
}
@media (max-width: 575px) {
  .contact__tel, .contact__mail {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 75%;
  }
}
.contact__tel:hover, .contact__mail:hover {
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  text-decoration: none;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/*----------------------------------------------------
    #入力フォーム
----------------------------------------------------*/
.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 .card {
  margin-top: 5px;
}
.inquiry input[type=checkbox] {
  vertical-align: middle;
  -moz-transform: scale(2, 2);
  -ms-transform: scale(2, 2);
  -webkit-transform: scale(2, 2);
  transform: scale(2, 2);
}
.inquiry small {
  display: block;
  padding-top: 3px;
  color: #222;
}
.inquiry .row {
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #dcdcdc;
}
.inquiry .checkbox {
  padding: 20px 0 15px;
}
.inquiry .help {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 171.42857%;
  color: #222;
}
.inquiry .text_l {
  margin-left: 10px;
  vertical-align: middle;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 114.28571%;
}
.inquiry .text_ll {
  padding: 60px 0;
  font-size: 30px;
  font-size: 3rem;
  line-height: 80%;
}

/*----------------------------------------------------
    #ステップバー
----------------------------------------------------*/
.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: 21px;
  font-size: 2.1rem;
  line-height: 114.28571%;
  list-style: none;
  position: relative;
  width: 33.333%;
}
.stepbar li:after {
  background: #cccccc;
  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: 21px;
  font-size: 2.1rem;
  line-height: 114.28571%;
  background: #cccccc;
  color: #828282;
  display: inline-block;
  height: 30px;
  margin-bottom: 5px;
  line-height: 30px;
  width: 30px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.stepbar .is-current:after {
  background: #000;
}
.stepbar .is-current span {
  color: #fff;
  background: #000;
}
