
/* 見積もり＆LINEボタン */
.btn_area_repair {
  display: block;
  text-align: center;
  margin-top: 60px;
}
.btn_area_repair > .microcopy {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.btn_area_double {
  display: flex;
  justify-content: center;
  margin: 20px 0 0px;
  text-align: center;
}
.btn_area_double .btn_quota {
  width: 350px;
  display: inline-block;
  margin: 0 auto;
  padding: 20px 30px;
  background: #FF8104;
  border-radius: 5px;
  font-size: 2rem;
  font-weight: 600;
  color: #FFF;
  line-height: 1.6rem;
  box-sizing: border-box;
  line-height: 1.6;
}
.btn_area_double .btn_line {
  width: 350px;
  display: inline-block;
  margin: 0 auto;
  padding: 20px 30px;
  background: #06C755;
  border-radius: 5px;
  font-size: 2rem;
  font-weight: 600;
  color: #FFF;
  line-height: 1.6rem;
  box-sizing: border-box;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .btn_area_double {
    display: block;
  }
  .btn_area_double .btn_quota {
    margin: 20px auto;
    padding: 15px 30px;
  }
  .btn_area_double .btn_line {
    padding: 15px 30px;
  }
  .btn_area_double .btn_quota .btn_line {
    min-width: 400px;
  }
}


/* ご利用の流れ */
.use_flow {
  display: flex;
  justify-content: center;
  align-items: center;
}
.use_flow ul {
  padding: 0;
}
.use_flow li {
  list-style-type: none;
}
.use_flow dd {
  margin-left: 0;
  font-size: 2rem;
}
.use_flow_ul > li {
  padding: 30px 20px;
}
.use_flow_ul > li:not(:last-child) {
  border-bottom: 3px solid #243B75;
  position: relative;
}
.use_flow_ul > li:not(:last-child)::before,
.use_flow_ul > li:not(:last-child)::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 15%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.use_flow_ul > li:not(:last-child)::before {
  border-width: 22px;
  border-top-color: #243B75;
}
.use_flow_ul > li:not(:last-child)::after {
  border-width: 18px;
  border-top-color: #fff;
}
.use_flow_ul > li dl {
  margin: 0;
}
.use_flow_ul > li dl dt {
  font-size: 3rem;
  font-weight: 600;
  border-bottom: 2px dotted #878787;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  display: flex;
}
.use_flow_ul > li dl dt .flow_icon {
  font-size: 2rem;
  color: #fff;
  background: #243B75;
  border-radius: 5px;
  padding: 10px 10px;
  display: inline-block;
  margin-right: 0.5em;
}

@media (max-width: 768px) {
  .use_flow dd {
    font-size: 1.5rem;
  }
  .use_flow_ul > li dl dt {
    font-size: 2rem;
  }
  .use_flow_ul > li dl dt .flow_icon {
    font-size: 1.5rem;
  }
}


/*コース比較表*/
.course_hikaku {
  overflow-x: auto;
  display: flex;
  justify-content: center;
}
.course_hikaku_table {
  border-collapse: collapse;
  min-width: 1020px;
}
.course_hikaku_table th, .course_hikaku_table td {
  padding: .5em 1em;
  border: 2px solid #243B75;
  text-align: center;
  vertical-align: middle;
}
.course_hikaku_table th {
  background: #243B75;
  color: #fff;
  border-right: 2px solid #fff;
  border-top: 2px solid #243B75;
}
.course_hikaku_table th:last-of-type {
  border-right: 2px solid #243B75;
}

@media (max-width: 768px) {
  .course_hikaku {
    display: block;
    justify-content: start;
  }
}