@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600&family=Roboto:wght@400;500;700&display=swap");
/* =============================================== 
  お問い合わせ
=============================================== */
ul.step {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 30px;
  margin: 0 auto 30px;
  text-align: center;
  font-weight: 500;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  ul.step {
    gap: 0 25px;
  }
}
ul.step li {
  border: 1px solid #707070;
  width: 200px;
  height: 50px;
  line-height: 50px;
  color: #A7A7A7;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  ul.step li {
    width: 150px;
    height: 40px;
    line-height: 40px;
  }
}
ul.step li.now {
  background: #009EE7;
  border-color: #009EE7;
  color: #fff;
}
ul.step li:not(:last-child):after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #B2AEAE;
  position: absolute;
  top: 16px;
  right: -24px;
  color: #ccc;
}
@media screen and (max-width: 768px) {
  ul.step li:not(:last-child):after {
    border-width: 6px 0 6px 10px;
    top: 15px;
    right: -19px;
  }
}

.lead {
  text-align: center;
  margin-bottom: 30px;
  line-height: 2;
}

span.required::before, th.required::after {
  content: "必須";
  display: inline-block;
  border-radius: 5px;
  background: #E50C0C;
  width: 42px;
  padding: 4px 0;
  margin-right: 0.5em;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  span.required::before, th.required::after {
    width: 40px;
    font-size: 12px;
  }
}

.container {
  width: min(100%, 900px);
}

.bg {
  background: #F5F5F5;
  border-radius: 20px;
  padding: 50px 20px 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .bg {
    padding: 30px 20px 10px;
  }
}
.bg h2 {
  margin-bottom: 15px;
  font-size: 22px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .bg h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

table.info {
  width: min(100%, 780px);
  margin: 0 auto;
  font-size: 16px;
  overflow: hidden;
}
table.info tr:not(:last-of-type) th, table.info tr:not(:last-of-type) td {
  border-bottom: 1px dotted #BABABA;
}
@media screen and (max-width: 768px) {
  table.info tr:not(:last-of-type) th {
    border: none;
  }
}
table.info th, table.info td {
  padding: 20px 0;
  line-height: 1.5;
  font-weight: normal;
  vertical-align: top;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  table.info th, table.info td {
    display: block;
    font-size: 16px;
  }
}
table.info th {
  width: 31%;
  padding-left: 55px;
  padding-right: 25px;
  font-weight: 500;
  vertical-align: middle;
  position: relative;
}
@media screen and (max-width: 768px) {
  table.info th {
    width: 100%;
    padding: 20px 0 15px !important;
  }
}
table.info th.top {
  vertical-align: top;
  padding-top: 32px;
}
table.info th.required::after {
  position: absolute;
  top: 33px;
  left: 0;
}
@media screen and (max-width: 768px) {
  table.info th.required::after {
    display: inline-block;
    margin-left: 1em;
    position: static;
  }
}
@media screen and (max-width: 768px) {
  table.info td {
    padding-top: 0;
  }
}

.postal_code {
  margin-bottom: 20px;
  color: #909090;
  font-weight: 500;
}
.postal_code li {
  display: inline-block;
  margin-right: 5px;
}

.privacy_lead {
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}

.privacy_box {
  border: 1px solid #707070;
  padding: 35px 20px;
}
.privacy_box > p {
  font-weight: 500;
  text-align: center;
}
.privacy_box > p span {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .privacy_box > p span {
    font-size: 16px;
  }
}
.privacy_box .agree {
  margin-top: 25px;
  text-align: center;
}

/* チェックボックスカスタム */
.checkbox-parts {
  display: inline-block;
  padding-left: 35px;
  font-size: 20px;
  font-weight: bold;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 768px) {
  .checkbox-parts {
    padding-left: 30px;
    font-size: 18px;
  }
}
.checkbox-parts::before {
  content: "";
  background: #fff;
  border: 1px solid #707070;
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 5px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .checkbox-parts::before {
    width: 20px;
    height: 20px;
  }
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox]:checked + .checkbox-parts::after {
  content: "";
  display: inline-block;
  border-bottom: 2px solid #E50C0C;
  border-right: 2px solid #E50C0C;
  width: 5px;
  height: 11px;
  position: absolute;
  transform: rotate(40deg);
  top: 8px;
  left: 9px;
}
@media screen and (max-width: 768px) {
  input[type=checkbox]:checked + .checkbox-parts::after {
    width: 4px;
    height: 9px;
    top: 8px;
    left: 7px;
  }
}

.btn_box {
  overflow: hidden;
  position: relative;
}
.btn_box ul.btn_list {
  margin-top: 60px;
  text-align: center;
  position: relative;
}
.btn_box ul.btn_list li {
  display: table;
  width: min(100%, 340px);
  height: 80px;
  margin: 0 auto;
  position: relative;
  color: #fff;
  font-size: 21px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .btn_box ul.btn_list li {
    height: 70px;
    font-size: 18px;
  }
}
.btn_box ul.btn_list li a {
  background: #0075AC;
  display: table-cell;
  height: 100%;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
}
.btn_box ul.btn_list li a::after {
  content: "";
  display: inline-block;
  width: 19px;
  height: 6px;
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: #fff;
  transform: translateY(-50%) skew(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .btn_box ul.btn_list li a::after {
    width: 22px;
    height: 4px;
  }
}
.btn_box ul.btn_list li:not(:first-child) {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .btn_box ul.btn_list li:not(:first-child) {
    margin-top: 30px;
  }
}
.btn_box ul.btn_list li.back {
  border: 1px solid #707070;
  width: min(100%, 290px);
  height: 60px;
  color: #333;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .btn_box ul.btn_list li.back {
    font-size: 16px;
  }
}
.btn_box ul.btn_list li.back a {
  background: #fff;
}
.btn_box ul.btn_list li.back a::after {
  border-color: #000;
  border-width: 0 0 1px 1px;
  transform: translateY(-50%) skew(-45deg);
  left: 20px;
  right: auto;
}

/* =============================================== 
  確認画面
=============================================== */
.conf table.info th {
  vertical-align: top;
  padding-left: 0;
}
.conf .bg {
  padding: 30px 20px;
}
@media screen and (max-width: 768px) {
  .conf .bg {
    padding: 20px;
  }
}

/* =============================================== 
  完了画面
=============================================== */
.thanks h2.lead {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .thanks h2.lead {
    font-size: 20px;
    line-height: 1.6;
  }
}
.thanks .txt {
  line-height: 1.8;
  margin: 0 auto 2em;
}
.thanks .back_top_btn {
  display: flex;
  justify-content: center;
}
.thanks .back_top {
  border: 1px solid #707070;
  width: min(100%, 290px);
  height: 60px;
  color: #333;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.thanks .back_top::after {
  content: "";
  display: inline-block;
  width: 19px;
  height: 6px;
  border-style: solid;
  border-color: #000;
  border-width: 0 0 1px 1px;
  transform: translateY(-50%) skew(-45deg);
  position: absolute;
  top: 50%;
  left: 20px;
  right: auto;
}
@media screen and (max-width: 768px) {
  .thanks .back_top {
    font-size: 16px;
  }
}