@charset "utf-8";
.contact_wrap {
  padding-top: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid #cacaca;
}
.contact_wrap .content_inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.contact_wrap .steps {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact_wrap .step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 40px;
  background: #f8f4f1;
  font-size: 14px;
  margin-right: -15px;
  z-index: 1;
}
.contact_wrap .step01 {
  background: #e66700;
  color: white;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 100% 100%, 0 100%);
}
.contact_wrap .step02 {
  clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
}
.contact_wrap .step03 {
  margin-right: 0;
  clip-path: polygon(20px 0%, 100% 0%, 100% 100%, 0% 100%);
}

.contact_top .lead_box {
  width: 520px;
  margin: 40px auto;
  text-align: left;
}
.contact_top .lead_txt {
  display: block;
  font-size: 16px;
  color: #333;
  line-height: 1.625;
  text-align: center;
  margin-bottom: 20px;
}
.contact_top ul li {
  font-size: 12px;
  color: #666;
  line-height: 1.6667;
  padding-left: 15px;
  position: relative;
}
.contact_top ul li::before {
  display: block;
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.error-message {
  color: #e74c3c;
  font-size: 12px;
  font-weight: bold;
  display: block;
  margin: 5px 0;
  text-align: left;
}
.agree .error-message {
  text-align: center;
}
.error-field {
  border-color: #e74c3c !important;
}


/* 入力画面
---------------------------------------------------------------------- */
.form-wrap .contact_bg {
  padding: 60px 0;
  background: #f8f8f8;
  margin-bottom: 60px;
}
.form-wrap .contant_box {
  width: 493px;
  margin: 0 auto;
}
.form-wrap label {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  text-align: left;
  margin-top: 15px;
  margin-bottom: 5px;
}
.form-wrap .caution_txt {
  font-size: 12px;
  color: #ff0000;
  text-align: left;
  margin-bottom: 30px;
}
.form-wrap .required {
  font-size: 10px;
  color: #ff0000;
  margin-left: 4px;
  font-weight: bold;
}
.form-wrap input, 
.form-wrap textarea {
  width: 100%;
  padding: 6px 8px;
  border-radius: 3px;
  box-sizing: border-box;
  border: none;
  font-size: 14px;
}
.form-wrap input::placeholder,
.form-wrap textarea::placeholder {
  font-size: 14px;
  color: #cccccc;
  opacity: 1;
}
.form-wrap input::-moz-placeholder,
.form-wrap textarea::-moz-placeholder {
  font-size: 14px;
  color: #cccccc;
  opacity: 1;
}
.form-wrap input::-ms-input-placeholder,
.form-wrap textarea::-ms-input-placeholder {
  font-size: 14px;
  color: #cccccc;
}

.form-wrap .radio-group {
  display: flex;
  gap: 15px;
}
.form-wrap .radio-group label {
  display: flex;
  align-items: center;
  white-space: nowrap;
  margin-top: 10px;
  margin-bottom: 5px;
}
.form-wrap .radio-group input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border: 1px solid #000;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  outline: none;
  padding: 0;
  margin-right: 5px;
  background-color: #fff;
  transition: all 0.2s ease;
}
.form-wrap .radio-group input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  background-color: #000;
  border-radius: 50%;
}
.form-wrap .checkbox-label {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 20px;
}
.form-wrap .checkbox-label a {
  padding-bottom: 5px;
  border-bottom: 1px solid #333;
}
.form-wrap input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid #000;
  border-radius: 0;
  padding: 0;
  margin-top: 2px;
  margin-right: 5px;
  background: #f6f6f6;
  cursor: pointer;
  position: relative;
}
.form-wrap input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0px;
  width: 5px;
  height: 7px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-wrap .btn-area {
  display: flex;
  justify-content: center;
  margin: 15px auto 0;
}
.form-wrap .submit_btn {
  width: 220px;
  height: 37px;
  border-radius: 18px;
  background: linear-gradient(to right, #ff9658, #f55b00);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}
.form-wrap .submit_btn:hover {
  opacity: 0.7;
}
.form-wrap button[type=submit] {
  color: #fff;
}
.form-wrap .submit_btn img {
  width: 5px;
  height: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .contact_wrap {
    padding-bottom: 10.6667vw;
    padding-top: 8vw;
  }
  .contact_wrap .content_inner {
    max-width: 100%;
  }

  .contact_wrap .steps {
    margin-right: 3.3333vw;
  }
  .contact_wrap .step {
    width: 32.5333vw;
    height: 6.6667vw;
    font-size: 2.8vw;
    margin-right: -3.3333vw;
  }

  .contact_top .lead_box {
    width: 89.3333vw;
    margin: 6.6667vw auto;
  }
  .contact_top .lead_txt {
    font-size: 3.6vw;
    line-height: 1.56;
    margin-bottom: 5.3333vw;
  }
  .contact_top ul li {
    font-size: 2.8vw;
    line-height: 1.52;
    padding-left: 2.6667vw;
  }

  /* 入力画面
  ---------------------------------------------------------------------- */
  .form-wrap .contact_bg {
    padding: 8vw 0;
    margin-bottom: 8vw;
  }
  .form-wrap .contant_box {
    width: 89.6vw;
  }
  .form-wrap label {
    font-size: 3.2vw;
    margin-top: 3.3333vw;
    margin-bottom: 1.6vw;
  }
  .form-wrap .caution_txt {
    font-size: 2.8vw;
    margin-bottom: 4vw;
  }
  .form-wrap .required {
    font-size: 2vw;
  }
  .form-wrap input, 
  .form-wrap textarea {
    width: 100%;
    padding: 2vw 2vw 1.0667vw;
    font-size: 4vw;
  }
  .form-wrap input::placeholder,
  .form-wrap textarea::placeholder {
    font-size: 3.2vw;
  }
  .form-wrap input::-moz-placeholder,
  .form-wrap textarea::-moz-placeholder {
    font-size: 3.2vw;
  }
  .form-wrap input::-ms-input-placeholder,
  .form-wrap textarea::-ms-input-placeholder {
    font-size: 3.2vw;
  }

  .form-wrap .radio-group {
    gap: 2.6667vw;
  }
  .form-wrap .radio-group label {
    margin-top: 1.3333vw;
  }
  .form-wrap .radio-group input[type="radio"] {
    width: 3.2vw;
    height: 3.2vw;
  }
  .form-wrap .radio-group input[type="radio"]:checked::before {
    content: "";
    width: 1.6vw;
    height: 1.6vw;
  }

  .form-wrap .checkbox-label a {
    padding-bottom: 0.8vw;
  }
  .form-wrap input[type="checkbox"] {
    width: 2.8vw;
    height: 2.8vw;
    margin-top: 0.8vw;
  }
  .form-wrap input[type="checkbox"]:checked::after {
    left: 3px;
    top: 2px;
    width: 0.6667vw;
    height: 1.0667vw;
    border-width: 0 1px 1px 0;
  }

  .contact_check .btn-area {
    margin: 4vw auto 0;
  }
  .form-wrap .submit_btn {
    width: 58.6667vw;
    height: 9.6vw;
    border-radius: 4.8vw;
    font-size: 3.2vw;
  }
  .form-wrap .submit_btn img {
    width: 1.4667vw;
    height: 2.1333vw;
    right: 2.6667vw;
  }
}






/* 確認画面
---------------------------------------------------------------------- */
.contact_check .step01 {
  background: #a4a4a4;
}
.contact_check .step02 {
  background: #ee6d00;
  color: #fff;
}

.form-check-wrap .contant_box {
  width: 480px;
  margin: 0 auto;
}
.form-check-wrap .contant_box dl {
  text-align: left;
  margin-top: 20px;
}
.form-check-wrap .contant_box dl:first-child {
  margin-top: 0;
}
.form-check-wrap .contant_box dt {
  font-size: 14px;
}
.form-check-wrap .contant_box dd {
  font-size: 14px;
  color: #000;
  margin-top: 8px;
}

.contact_check .confirm-desabled {
  display: none;
}

.contact_check .btn-area {
  gap: 20px;
}
.contact_check .btn-area .submit_btn_back {
  width: 220px;
  height: 37px;
  border-radius: 18px;
  border: 1px solid #d8d8d8;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}
.contact_check .btn-area .submit_btn_back input {
  background: transparent;
  cursor: pointer;
}
.contact_check .btn-area .submit_btn_back img {
  width: 5px;
  height: 8px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .form-check-wrap .contant_box {
    width: 89.6vw;
  }
  .form-check-wrap .contant_box dl {
    margin-top: 4vw;
  }
  .form-check-wrap .contant_box dt {
    font-size: 3.2vw;
  }
  .form-check-wrap .contant_box dd {
    font-size: 3.2vw;
    margin-top: 1.0667vw;
  }

  .contact_check .btn-area {
    align-items: center;
    flex-direction: column-reverse;
    gap: 3.3333vw 0;
  }
  .contact_check .btn-area .submit_btn_back {
    width: 58.6667vw;
    height: 9.6vw;
    border-radius: 4.8vw;
    border: 2px solid #5b5b5b;
    font-size: 3.2vw;
  }
  .contact_check .btn-area .submit_btn_back img {
    width: 1.4667vw;
    height: 2.1333vw;
    left: 2.6667vw;
  }
}






/* 完了画面
---------------------------------------------------------------------- */
.completion_wrap .lead_box .lead_txt {
  margin-bottom: 40px;
}
.completion_wrap .lead_box strong {
  display: block;
  font-size: 16px;
  text-decoration: underline;
}
.completion_wrap .lead_box small {
  font-size: 14px;
}
.completion_wrap .step01,
.completion_wrap .step02 {
  background: #a4a4a4;
  color: #fff;
}
.completion_wrap .step03 {
  background: #ee6d00;
  color: #fff;
}

.completion_wrap .contact_top .lead_box {
  width: 600px;
  margin: 40px auto 60px;
  text-align: center;
}
.completion_wrap .contact_top .lead_box b {
  display: block;
  font-size: 24px;
  color: #ee6d00;
  margin-bottom: 40px;
}

.completion_wrap .go_contact a {
  width: 220px;
  height: 37px;
  margin: 0 auto;
  border-radius: 18px;
  background: linear-gradient(to right, #ff9658, #f55b00);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #fff;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}
.completion_wrap .go_contact img {
  width: 5px;
  height: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
} 
@media screen and (max-width: 768px) {
  .completion_wrap .lead_box strong {
    font-size: 3.6vw;
    line-height: 1.56;
  }
  .completion_wrap .lead_box small {
    font-size: 3.2vw;
    line-height: 1.5;
  }

  .completion_wrap .contact_top .lead_box {
    width: 89.3333vw;
    margin: 6.6667vw auto 10.6667vw;
    text-align: center;
  }

  .completion_wrap .contact_top .lead_box b {
    font-size: 3.6vw;
    margin-bottom: 6.6667vw;
  }

  .completion_wrap .go_contact a {
    width: 58.6667vw;
    height: 9.6vw;
    border-radius: 4.8vw;
    font-size: 3.2vw;
  }
  .completion_wrap .go_contact img {
    width: 1.4667vw;
    height: 2.1333vw;
    right: 2.6667vw;
  } 
}